aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-hash.sh
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-04-27 06:37:23 +0200
committerRicardo Wurmus <rekado@elephly.net>2023-04-27 06:37:23 +0200
commite5619147d4ec12dfdc3eb15d6a1cb563ac0b7712 (patch)
treec999b8fe9bb0b80213876377ca31b033332fe12f /tests/guix-hash.sh
parent3b19fc18012c80d2af24ab83bd705ac59b2b7134 (diff)
downloadguix-e5619147d4ec12dfdc3eb15d6a1cb563ac0b7712.tar.gz
guix-e5619147d4ec12dfdc3eb15d6a1cb563ac0b7712.zip
gnu: python-httpx: Update to 0.24.0.
* gnu/packages/python-web.scm (python-httpx): Update to 0.24.0. [build-system]: Use pyproject-build-system. [arguments]: Remove custom check phase in favor of specifying #:test-flags. [native-inputs]: Add python-hatchling and python-hatch-fancy-pypi-readme. (python-httpx-bootstrap)[native-inputs]: Add python-hatchling and python-hatch-fancy-pypi-readme.
Diffstat (limited to 'tests/guix-hash.sh')
0 files changed, 0 insertions, 0 deletions
arah Morgensen * guix/import/utils.scm (recursive-import): Skip packages when the package returned by 'repo->guix-package' is false. * tests/import-utils.scm: New tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2020-12-27import/utils: alist->package: Handle SPDX license names only as fallback.Ricardo Wurmus Fixes <https://bugs.gnu.org/45453>. * guix/import/utils.scm (alist->package): Find plain license names in (guix licenses) first, and only fall back to SPDX names on error. * tests/import-utils.scm ("alist->package with SPDX license name 1/2", "alist->package with SPDX license name 2/2"): New tests. 2020-12-02import: utils: 'recursive-import' accepts an optional version parameter.Martin Becze This adds a key VERSION to 'recursive-import' and moves the parameter REPO to a key. This also changes all the places that rely on 'recursive-import'. * guix/import/utils.scm (recursive-import): Add the VERSION key. Make REPO a key. (package->definition): Add optional 'append-version?'. * guix/scripts/import/crate.scm (guix-import-crate): Add the VERSION key. * guix/import/crate.scm (crate->guix-package): Add the VERSION key. (crate-recursive-import): Pass VERSION to recursive-import, remove now unnecessary code. * guix/import/cran.scm (cran->guix-package, cran-recursive-import): Change the REPO parameter to a key. * guix/import/elpa.scm (elpa->guix-package, elpa-recursive-import): Likewise. * guix/import/gem.scm (gem->guix-package, recursive-import): Likewise. * guix/import/opam.scm (opam-recurive-import): Likewise. * guix/import/pypi.scm (pypi-recursive-import): Likewise. * guix/import/stackage.scm (stackage-recursive-import): Likewise. * guix/scripts/import/cran.scm (guix-import-cran): Likewise. * guix/scripts/import/elpa.scm (guix-import-elpa): Likewise. * tests/elpa.scm (eval-test-with-elpa): Likewise. * tests/import-utils.scm (recursive-import): Likewise. Co-authored-by: Hartmut Goebel <h.goebel@crazy-compilers.com>