aboutsummaryrefslogtreecommitdiff
path: root/tests/gexp.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2017-08-10 23:28:15 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2017-08-11 00:20:57 +0200
commit12313cd071f9260c971198c35b1a93e757a31d40 (patch)
treef965232cdce46bcd10a6f0cc234961837dffc7a0 /tests/gexp.scm
parentaeb4e61e750428e1cc99700881a427cd2df3827b (diff)
downloadguix-12313cd071f9260c971198c35b1a93e757a31d40.tar.gz
guix-12313cd071f9260c971198c35b1a93e757a31d40.zip
gnu: ruby-nenv: Update to 0.3.0.
* gnu/packages/ruby.scm (ruby-nenv): Update to 0.3.0.
Diffstat (limited to 'tests/gexp.scm')
0 files changed, 0 insertions, 0 deletions
r more digits in its name, e.g., “AV-98”, the importer would interpret “98” as the version of the package and thus mistake the “AV-98” package for the “av” package on PyPI. $ ./pre-inst-env guix refresh av-98 following redirection to `https://pypi.org/pypi/av/json'... /home/yoctocell/src/guix/gnu/packages/web-browsers.scm:914:13: av-98 would be upgraded from 1.0.1 to 8.0.3 Setting the ‘upstream-name’ property to “AV-98” would solve the problem. $ ./pre-inst-env guix refresh av-98 /home/yoctocell/src/guix/gnu/packages/web-browsers.scm:914:13: 1.0.1 is already the latest version of av-98 * guix/import/pypi.scm (guix-package->pypi-name): Honor ‘upstream-name’ property. (make-pypi-sexp): Set ‘upstream-name’ property when appropriate. * tests/pypi.scm (test-json): Rename to ... (test-json-1): ... this. (test-json-2): New variable ("guix-package->pypi-name, honor 'upstream-name'"): New test. ("pypi->guix-package, package name contains \"-\" followed by digits"): Likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Xinglu Chen 2021-07-11import: pypi: Emit new-style package inputs....* guix/import/pypi.scm (maybe-inputs): Wrap PACKAGE-INPUTS in 'list' instead of 'quasiquote'. (compute-inputs)[requirement->package-name/sort]: Return a list of symbols. * tests/pypi.scm ("pypi->guix-package, no wheel") ("pypi->guix-package, wheels"): Adjust accordingly. Ludovic Courtès