mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 00:45:07 +03:00
b9f45d2bd6
* new file: projects/rye-up.com/package.yml * \n * Update package.yml
39 lines
772 B
YAML
39 lines
772 B
YAML
distributable:
|
|
url: git+https://github.com/mitsuhiko/rye
|
|
ref: ${{version.tag}}
|
|
|
|
versions:
|
|
github: mitsuhiko/rye
|
|
|
|
companions:
|
|
curl.se/ca-certs: '*'
|
|
|
|
build:
|
|
dependencies:
|
|
rust-lang.org: '>=1.65'
|
|
rust-lang.org/cargo: '*'
|
|
script:
|
|
- cargo install $ARGS
|
|
env:
|
|
ARGS:
|
|
- --path=rye
|
|
- --locked
|
|
- --root={{prefix}}
|
|
|
|
provides:
|
|
- bin/rye
|
|
|
|
test:
|
|
fixture: |
|
|
[project]
|
|
name = "testproj"
|
|
requires-python = ">=3.9"
|
|
version = "1.0"
|
|
license = {text = "MIT"}
|
|
script:
|
|
- rye --version | grep {{version}}
|
|
- cp $FIXTURE pyproject.toml
|
|
- rye add requests==2.24.0
|
|
- rye sync
|
|
- cat pyproject.toml | grep 'requests==2.24.0'
|
|
- rye run python -c 'import requests;print(requests.__version__)' | grep 2.24.0
|