diff --git a/projects/github.com/psf/black/package.yml b/projects/github.com/psf/black/package.yml new file mode 100644 index 00000000..7c97abb4 --- /dev/null +++ b/projects/github.com/psf/black/package.yml @@ -0,0 +1,24 @@ +distributable: + url: https://github.com/psf/black/archive/refs/tags/{{ version }}.tar.gz + strip-components: 1 + +versions: + github: psf/black/releases/tags + strip: /^v/ + +dependencies: + python.org: '>=3.7' + +build: + script: | + python-venv.py {{prefix}}/bin/black --extra d + cp {{prefix}}/bin/black {{prefix}}/bin/blackd + +provides: + - bin/black + - bin/blackd + +test: + script: | + test "$(black --version | grep black | sed 's/.*, \([^ ]*\) .*/\1/')" = "{{ version }}" + test "$(blackd --version | sed 's/.* //')" = "{{ version }}"