diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2025-12-13 22:31:09 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-12-13 23:14:27 +0100 |
| commit | 812fc780d4fc27479cfca0a4fab255a1e8ccca64 (patch) | |
| tree | f2948358a94238e559c0352b5a71f612cb788b10 /tests | |
| parent | f82549d9f6321e8b3554d20d84030c2afc9b55c6 (diff) | |
tests: Use ‘https’ for ‘home-page’ in ‘guix import pypi’ tests.
Fixes a regression introduced in d66e9698a18a6be2d6b670f5a31c23f87afece68.
* tests/import/pypi.scm ("pypi->guix-package, no wheel")
("pypi->guix-package, no wheel, no requires.txt, but pyproject.toml")
("pypi->guix-package, no wheel, but requires.txt and pyproject.toml")
("pypi->guix-package, no requires.txt, but wheel.")
("pypi->guix-package, no usable requirement file, no wheel.")
("pypi->guix-package, package name contains \"-\" followed by digits"): Change
‘home-page’ to ‘https://’.
Fixes: guix/guix#4646
Reported-by: Rutherther <rutherther@ditigal.xyz>
Change-Id: Id3ddac832d9688f2eb8a055c13f62a9642a20766
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/import/pypi.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/import/pypi.scm b/tests/import/pypi.scm index 2f6ec650a2d..59d0bfc2104 100644 --- a/tests/import/pypi.scm +++ b/tests/import/pypi.scm @@ -329,7 +329,7 @@ files specified by SPECS. Return its file name." (native-inputs (list python-pytest python-setuptools python-wheel)) - (home-page "http://example.com") + (home-page "https://example.com") (synopsis "summary") (description "summary.") (license license:lgpl2.0)) @@ -366,7 +366,7 @@ files specified by SPECS. Return its file name." (propagated-inputs (list python-dummy-dep-a python-dummy-dep-b)) (native-inputs (list python-dummy-build-dep-a python-dummy-build-dep-b python-dummy-test-dep-a python-dummy-test-dep-b)) - (home-page "http://example.com") + (home-page "https://example.com") (synopsis "summary") (description "summary.") (license license:lgpl2.0)) @@ -408,7 +408,7 @@ files specified by SPECS. Return its file name." (native-inputs (list python-dummy-build-dep-a python-dummy-build-dep-b python-dummy-test-dep-a python-dummy-test-dep-b python-pytest)) - (home-page "http://example.com") + (home-page "https://example.com") (synopsis "summary") (description "summary.") (license license:lgpl2.0)) @@ -449,7 +449,7 @@ files specified by SPECS. Return its file name." (native-inputs (list python-pytest python-setuptools python-wheel)) - (home-page "http://example.com") + (home-page "https://example.com") (synopsis "summary") (description "summary.") (license license:lgpl2.0)) @@ -478,7 +478,7 @@ files specified by SPECS. Return its file name." (base32 ,(? string? hash))))) (build-system pyproject-build-system) (native-inputs (list python-setuptools python-wheel)) - (home-page "http://example.com") + (home-page "https://example.com") (synopsis "summary") (description "summary.") (license license:lgpl2.0)) @@ -510,7 +510,7 @@ files specified by SPECS. Return its file name." (native-inputs (list python-pytest python-setuptools python-wheel)) - (home-page "http://example.com") + (home-page "https://example.com") (synopsis "summary") (description "summary.") (license license:lgpl2.0)) |
