mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
d95529e9f5
closes #6530 closes #6531
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
distributable:
|
|
url: https://github.com/astral-sh/ruff/archive/refs/tags/{{ version.tag }}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: astral-sh/ruff
|
|
strip: /^v /
|
|
|
|
build:
|
|
dependencies:
|
|
rust-lang.org: '>=1.60'
|
|
rust-lang.org/cargo: '*'
|
|
crates.io/semverator: '*'
|
|
script: |
|
|
if semverator lt {{version}} 0.0.242; then
|
|
CRATE=ruff_cli
|
|
elif semverator lt {{version}} 0.1.14; then
|
|
CRATE=crates/ruff_cli
|
|
else
|
|
CRATE=crates/ruff
|
|
fi
|
|
cargo install --locked --path $CRATE --root {{prefix}}
|
|
|
|
renamed-to: astral.sh/ruff
|
|
|
|
# provides:
|
|
# - bin/ruff
|
|
|
|
test:
|
|
script:
|
|
# v0.1.12 introduced this test error:
|
|
# ruff failed
|
|
# Cause: Failed to create cache file '/__w/pantry/pantry/testbeds/astral.sh__ruff-0.1.12/.ruff_cache/0.1.12/10391082687706843805'
|
|
# Cause: No such file or directory (os error 2)
|
|
- run: mkdir -p .ruff_cache/{{version}}
|
|
if: '>=0.1.12'
|
|
- run:
|
|
- ruff -e $FIXTURE | grep "\`os\` imported but unused"
|
|
- ruff --fix $FIXTURE
|
|
if: <0.5
|
|
- run:
|
|
- (ruff check $FIXTURE || true) | grep "\`os\` imported but unused"
|
|
- ruff check --fix $FIXTURE
|
|
if: '>=0.5'
|
|
- test ! -s $FIXTURE
|
|
fixture: |
|
|
import os
|