diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-01-07 15:56:40 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-01-16 13:42:43 +0100 |
commit | 2e652e687e23f95a5a2f5ef9dd895fe1f01251a3 (patch) | |
tree | 6589ca0201978c4da31d9f89b49f2363ef11d7eb /etc/news.scm | |
parent | 20c923c40d3eb0057498c7c6b7f64f5c634944fb (diff) | |
download | guix-2e652e687e23f95a5a2f5ef9dd895fe1f01251a3.tar.gz |
news: Add entry for '--with-version'.
* etc/news.scm: Add entry. Co-authored-by: Florian Pelz <pelzflorian@pelzflorian.de>
Diffstat (limited to 'etc/news.scm')
-rw-r--r-- | etc/news.scm | 52 |
1 files changed, 51 insertions, 1 deletions
diff --git a/etc/news.scm b/etc/news.scm index 1f0f1e43b7..96f7a195c4 100644 --- a/etc/news.scm +++ b/etc/news.scm @@ -1,6 +1,6 @@ ;; GNU Guix news, for use by 'guix pull'. ;; -;; Copyright © 2019-2022 Ludovic Courtès <ludo@gnu.org> +;; Copyright © 2019-2023 Ludovic Courtès <ludo@gnu.org> ;; Copyright © 2019–2021 Tobias Geerinckx-Rice <me@tobias.gr> ;; Copyright © 2019, 2020 Miguel Ángel Arruga Vivas <rosen644835@gmail.com> ;; Copyright © 2019, 2020 Konrad Hinsen <konrad.hinsen@fastmail.net> @@ -26,6 +26,56 @@ (channel-news (version 0) + (entry (commit "137b91f03bbb7f1df71cf10c4f79ae57fbcea400") + (title + (en "New @option{--with-version} package transformation option") + (fr "Nouvelle option de transformation @option{--with-version}")) + (body + (en "The new @option{--with-version} package transformation option +generalizes @option{--with-latest}: it gets the specified upstream release of +a package and uses it instead of the currently-packaged version. + +For example, the command below would spawn GNOME Clocks built against GTK +4.7.0, skipping its test suite: + +@example +guix shell gnome-clocks --with-version=gtk=4.7.0 \ + --without-tests=gtk -- gnome-clocks +@end example + +Run @command{info \"(guix) Package Transformation Options\"} for more info.") + (de "Die neue Paketumwandlungsoption @option{--with-version} +verallgemeinert @option{--with-latest}: Mit ihr kann man angeben, welche +vom Anbieter veröffentlichte Version man anstelle der derzeit im Paket +vorgegebenen haben möchte. + +Zum Beispiel kann mit folgendem Befehl ein für die GTK-Version 4.7.0 +erstelltes GNOME Clocks aufgerufen werden, wobei der Testkatalog dafür +übersprungen wird. + +@example +guix shell gnome-clocks --with-version=gtk=4.7.0 \ + --without-tests=gtk -- gnome-clocks +@end example + +Führen Sie für mehr Informationen @command{info \"(guix.de) +Paketumwandlungsoptionen\"} aus.") + (fr "La nouvelle option de transformation de paquets +@option{--with-version} généralise @option{--with-latest} : elle permet de +spécifier quelle version amont d'un logiciel utiliser à la place de celle +actuellement fournie. + +Par exemple, la commande ci-dessous démarre GNOME Clocks construit avec GTK +4.7.0, sans lancer sa suite de tests : + +@example +guix shell gnome-clocks --with-version=gtk=4.7.0 \ + --without-tests=gtk -- gnome-clocks +@end example + +Voir @command{info \"(guix.fr) Options de transformation de paquets\"} pour +plus de détails."))) + (entry (commit "9ea37eb9f5329c213757bbfe5d9241cde8433858") (title (en "Linux-libre 6.0 removed due to end of upstream support") |