diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-05-27 17:16:45 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-05-27 17:16:45 +0200 |
commit | 52b4ce275fda390172fcce9797300ba0d5a89d59 (patch) | |
tree | bc65643e9756d6fcc3d8dd58f8b50d59ea3f0ee5 /etc/news.scm | |
parent | 00d8a4116427fb69f79e334bfbf91920a0d871d2 (diff) | |
parent | b96b82bcd4bc24529941ff74a91432481f1a71b5 (diff) | |
download | guix-52b4ce275fda390172fcce9797300ba0d5a89d59.tar.gz |
Merge branch 'master' into gnome-team
Diffstat (limited to 'etc/news.scm')
-rw-r--r-- | etc/news.scm | 50 |
1 files changed, 47 insertions, 3 deletions
diff --git a/etc/news.scm b/etc/news.scm index f5dc3ca0d5..314f0ab352 100644 --- a/etc/news.scm +++ b/etc/news.scm @@ -26,6 +26,50 @@ (channel-news (version 0) + (entry (commit "ba5da5125a81307500982517e2f458d57b024668") + (title + (en "New @code{arguments} rule for @command{guix style}") + (de "Neue Stilregel @code{arguments} für @command{guix style}") + (fr "Nouvelle règle @code{arguments} pour @command{guix style}")) + (body + (en "The @command{guix style} command has a new @dfn{styling rule} +for package definitions. Package writers may now run the following command: + +@example +guix style -L /path/to/channel -S arguments @var{package} +@end example + +This command rewrites the @code{arguments} field of @var{package} so that it +uses G-expressions instead of classical quasiquotation. + +Run @command{info \"(guix) Invoking guix style\"} for more info.") + (de "Der Befehl @command{guix style} verfügt über eine neue @dfn{Stilregel} +für Paketdefinitionen. Paketautoren können jetzt folgenden Befehl benutzen: + +@example +guix style -L /pfad/zum/kanal -S arguments @var{Paket} +@end example + +Dadurch wird das Feld @code{arguments} in @var{Paket} so umgeschrieben, dass +G-Ausdrücke (gexps) anstelle von klassischer Quasiquotierung verwendet +werden. + +Führen Sie @command{info \"(guix.de) Aufruf von guix style\"} aus, um +mehr Informationen zu erhalten.") + (fr "La commande @command{guix style} a une nouvelle @dfn{règle de +style} pour les définitions de paquets. Les auteurices de paquets peuvent +maintenant lancer la commande suivante : + +@example +guix style -L /chemin/vers/canal -S arguments @var{paquet} +@end example + +Cette commande réécrit le champ @code{arguments} de @var{paquet} pour qu'il +utilise des G-expressions plutôt que des quasicitations classiques. + +Lancer @command{info \"(guix.fr) Invoquer guix style\"} pour plus +d'informations."))) + (entry (commit "ae11fcb84ac478dfa56d322ef08890645183a087") (title (en "New @option{--with-configure-flag} transformation option") @@ -39,7 +83,7 @@ the build system of the @code{lapack} package: @example guix build lapack \\ - --with-configure-flag=lapack=-DBUILD_COMPLEX=OFF + --with-configure-flag=lapack=-DBUILD_SHARED_LIBS=OFF @end example Run @command{info \"(guix) Package Transformation Options\"} for more info.") @@ -50,7 +94,7 @@ Befehlszeilenoption für configure mitzugeben. Zum Beispiel können Sie dem @example guix build lapack \\ - --with-configure-flag=lapack=-DBUILD_COMPLEX=OFF + --with-configure-flag=lapack=-DBUILD_SHARED_LIBS=OFF @end example Führen Sie für mehr Informationen @command{info \"(guix.de) @@ -63,7 +107,7 @@ un drapeau à @command{cmake}, le système de construction du logiciel @example guix build lapack \\ - --with-configure-flag=lapack=-DBUILD_COMPLEX=OFF + --with-configure-flag=lapack=-DBUILD_SHARED_LIBS=OFF @end example Voir @command{info \"(guix.fr) Options de transformation de paquets\"} pour |