guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: Merge branch 'wip-guix-home'


From: guix-commits
Subject: 03/03: Merge branch 'wip-guix-home'
Date: Mon, 27 Sep 2021 10:37:08 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 6ae4644984608b7eff7ab54d3a5787c661d85b2e
Merge: 86d316b a2b9379
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Mon Sep 27 17:27:12 2021 +0300

    Merge branch 'wip-guix-home'

 Makefile.am                           |   3 +
 doc/guix.texi                         | 738 +++++++++++++++++++++++++++++++++-
 doc/he-config-bare-bones.scm          |  24 ++
 etc/news.scm                          |  30 ++
 gnu/home-services.scm                 | 524 ++++++++++++++++++++++++
 gnu/home-services/configuration.scm   | 107 +++++
 gnu/home-services/fontutils.scm       |  65 +++
 gnu/home-services/mcron.scm           | 115 ++++++
 gnu/home-services/shells.scm          | 634 +++++++++++++++++++++++++++++
 gnu/home-services/shepherd.scm        | 134 ++++++
 gnu/home-services/symlink-manager.scm | 247 ++++++++++++
 gnu/home-services/utils.scm           |  77 ++++
 gnu/home-services/xdg.scm             | 476 ++++++++++++++++++++++
 gnu/home.scm                          | 106 +++++
 gnu/local.mk                          |  11 +
 guix/scripts/home.scm                 | 512 +++++++++++++++++++++++
 guix/scripts/home/import.scm          | 241 +++++++++++
 guix/self.scm                         |  13 +-
 18 files changed, 4053 insertions(+), 4 deletions(-)

diff --cc etc/news.scm
index 63d832a,dcf0748..dc45aaf
--- a/etc/news.scm
+++ b/etc/news.scm
@@@ -22,89 -23,36 +23,118 @@@
  
  (channel-news
   (version 0)
+ (entry (commit "a2324d8b56eabf8117bca220a507cc791edffd2e")
+         (title
+          (en "Guix Home is a part of GNU Guix")
+          (ru "Guix Home теперь поставляется в составе GNU Guix"))
+         (body
+          (en "Guix Home splitted out from rde project and now is a part of
+ Guix proper.  The new @command{guix home} with its actions allows users to
+ manage their packages and configurations (aka. dotfiles) in a declarative way,
+ similar to how many people manage their system with @command{guix system}.
+ 
+ Take a look at available actions and arguments:
+ @example
+ guix home --help
+ @end example
+ 
+ See @command{info \"(guix) Home Configuration\"} for more information.")
+          (ru "Guix Home отделился от проекта rde и теперь является частью
+ Guix.  Новая команда @command{guix home} даёт возможность пользователям
+ управлять их пакетами и конфигурациями (дотфайлами) для них в декларативном
+ стиле, аналогично тому, как многие люди управляют своими системами с помощью
+ @command{guix system}.
+ 
+ Чтобы получить список доступных действий и аргументов:
+ @example
+ guix home --help
+ @end example
+ 
+ Смотрите @command{info \"(guix) Home Configuration\"} для получения более
+ детальных сведений.")))
  
 + (entry (commit "5b32ad4f6f555d305659cee825879df075b06331")
 +        (title
 +         (en "New @option{--max-depth} option for @command{guix graph}")
 +         (de "Neue Option @option{--max-depth} für @command{guix graph}")
 +         (fr "Nouvelle option @option{--max-depth} pour @command{guix 
graph}"))
 +        (body
 +         (en "The @command{guix graph} command has a new @option{--max-depth}
 +(or @option{-M}) option, which allows you to restrict a graph to the given
 +depth---very useful when visualizing large graphs.  For example, the command
 +below displays, using the @code{xdot} package, the dependency graph of
 +LibreOffice, including only nodes that are at most at distance 2 of
 +LibreOffice itself:
 +
 +@example
 +guix graph -M 2 libreoffice | xdot -
 +@end example
 +
 +See @command{info \"(guix) Invoking guix graph\"} for more information.")
 +         (de "Der Befehl @command{guix graph} verfügt über eine neue
 +Befehlszeilenoption @option{--max-depth} (oder @option{-M}), mit der
 +Sie einen Graphen auf die angegebene Tiefe einschränken. Das ist vor
 +allem bei großen Graphen nützlich; zum Beispiel zeigt der folgende
 +Befehl, unter Verwendung des Pakets @code{xdot}, den
 +Abhängigkeitsgraphen von LibreOffice unter Ausschluss der Knoten, die
 +eine Distanz größer als 2 von LibreOffice selbst haben:
 +
 +@example
 +guix graph -M 2 libreoffice | xdot -
 +@end example
 +
 +Führen Sie @code{info \"(guix.de) Aufruf von guix graph\"} aus, um mehr zu
 +erfahren.")
 +         (fr "La commande @command{guix graph} dispose d'une nouvelle option
 +@option{--max-depth} (ou @option{-M}) pour restreindre la profondeur d'un
 +graphe---très utile pour visualiser des gros graphes.  Par exemple, la
 +commande ci-dessous affiche, en utilisant @code{xdot}, le graphe de dépendance
 +de LibreOffice en n'incluant que les nœuds qui sont au plus à distance 2 de
 +LibreOffice soi-même :
 +
 +@example
 +guix graph -M 2 libreoffice | xdot -
 +@end example
 +
 +Voir @command{info \"(guix.fr) Invoquer guix graph\"} pour plus
 +d'informations.")))
 +
 + (entry (commit "05f44c2d858a1e7b13c90362c35fa86bdc4d5a24")
 +        (title
 +         (en "Channel clones fall back to Software Heritage")
 +         (de "Zum Klonen von Kanälen wird notfalls auf Software Heritage 
zurückgegriffen")
 +         (fr "Les clones de canaux peuvent recourir à Software Heritage"))
 +        (body
 +         (en "When @command{guix time-machine} or @command{guix pull} fetches
 +a channel pinned to a specific commit, it now automatically falls back to
 +cloning it from the Software Heritage archive if the original URL is
 +unreachable.  This contributes to long-term reproducibility.  See
 +@command{info \"(guix) Replicating Guix\"}.
 +
 +Automatic fallback also works for other Git clones made on your behalf, such
 +as when using @option{--with-commit} and related package transformation
 +options.")
 +         (de "Wenn bei @command{guix time-machine} oder @command{guix
 +pull} ein bestimmter Commit eines Kanals bezogen werden soll, wird
 +jetzt für den Fall, dass die ursprüngliche URL unerreichbar ist,
 +automatisch vom Software-Heritage-Archiv geklont. Das trägt zur
 +langfristigen Reproduzierbarkeit bei. Siehe @command{info \"(guix.de)
 +Guix nachbilden\"}.
 +
 +Der automatische Rückgriff auf Software Heritage findet auch
 +Verwendung bei anderen Arten von Git-Klon, die Guix durchführt, z.B.@:
 +wenn Sie @option{--with-commit} und ähnliche Paketumwandlungsoptionen
 +einsetzen.")
 +         (fr "Quand la commande @command{guix time-machine} ou @command{guix
 +pull} récupère un canal fixé à une révision spécifique, elle est maintenant
 +capable de le cloner depuis l'archive Software Heritage si l'URL initiale
 +n'est plus disponible.  Cela contribue à la reproductibilité à long terme.
 +Voir @command{info \"(guix.fr) Répliquer Guix\"}.
 +
 +Ce recours à Software Heritage fonctionne aussi pour les autres clones Git que
 +Guix peut faire, comme lorsqu'on utilise @option{--with-commit} et les options
 +de transformation de paquet similaires.")))
 +
   (entry (commit "82daab42811a2e3c7684ebdf12af75ff0fa67b99")
          (title
           (en "New @samp{deb} format for the @command{guix pack} command")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]