diff options
| author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2022-08-27 13:05:33 +0200 |
|---|---|---|
| committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2022-12-26 17:15:06 +0100 |
| commit | a274a6a1acb99738f02de7b226e6a0d3883ec353 (patch) | |
| tree | 5c9220de0cd6ba44865c443e0581c8472244f4b9 /tests/transformations.scm | |
| parent | c50cd1bbece27097456242f246f89c053e7cc1a2 (diff) | |
upstream-updater: Rename record field.
The next commits will make the functions, which are currently importing the
latest version of a package, change into importing the latest or a given
version of the package (for those updaters supporting specifying a version).
Thus the name ‘latest‘ is no longer appropriate.
* guix/upstream.scm (upstream-updater) Rename field [latest] to
[import]. (lookup-updater, package-latest-release) Adjust fieldname
accordingly.
* guix/gnu-maintenance.scm (%gnu-updater, %gnu-ftp-updater,
%savannah-updater, %sourceforge-updater, %xorg-updater,
%kernel.org-updater, %generic-html-updater),
guix/import/cpan.scm (%cpan-updater),
guix/import/cran.scm (%cran-updater, %bioconductor-updater),
guix/import/crate.scm (%crate-updater),
guix/import/egg.scm (%egg-updater),
guix/import/elpa.scm (%elpa-updater),
guix/import/gem.scm (%gem-updater),
guix/import/git.scm (%generic-git-updater),
guix/import/github.scm (%github-updater),
guix/import/gnome.scm (%gnome-updater),
guix/import/hackage.scm (%hackage-updater),
guix/import/hexpm.scm (%hexpm-updater),
guix/import/kde.scm (%kde-updater),
guix/import/launchpad.scm (%launchpad-updater),
guix/import/minetest.scm (%minetest-updater),
guix/import/opam.scm (%opam-updater),
guix/import/pypi.scm (%pypi-updater),
guix/import/stackage.scm (%stackage-updater),
tests/import-github.scm (found-sexp)
tests/transformations.scm ("options->transformation, with-latest"):
Adjust fieldname accordingly.
Diffstat (limited to 'tests/transformations.scm')
| -rw-r--r-- | tests/transformations.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/transformations.scm b/tests/transformations.scm index 47b1fc650dd..5c136e1d48e 100644 --- a/tests/transformations.scm +++ b/tests/transformations.scm | |||
| @@ -488,10 +488,10 @@ | |||
| 488 | (name 'dummy) | 488 | (name 'dummy) |
| 489 | (pred (const #t)) | 489 | (pred (const #t)) |
| 490 | (description "") | 490 | (description "") |
| 491 | (latest (const (upstream-source | 491 | (import (const (upstream-source |
| 492 | (package "foo") | 492 | (package "foo") |
| 493 | (version "42.0") | 493 | (version "42.0") |
| 494 | (urls '("http://example.org"))))))))) | 494 | (urls '("http://example.org"))))))))) |
| 495 | (let* ((p (dummy-package "foo" (version "1.0"))) | 495 | (let* ((p (dummy-package "foo" (version "1.0"))) |
| 496 | (t (options->transformation | 496 | (t (options->transformation |
| 497 | `((with-latest . "foo"))))) | 497 | `((with-latest . "foo"))))) |
