mirror of
https://github.com/ivabus/pantry
synced 2024-11-14 12:35:10 +03:00
39 lines
970 B
YAML
39 lines
970 B
YAML
|
distributable:
|
||
|
url: https://opendev.org/opendev/git-review/archive/{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
url: https://opendev.org/api/v1/repos/opendev/git-review/tags
|
||
|
match: /"name":"\d+\.\d+\.\d+"/
|
||
|
strip:
|
||
|
- /^"name":"/
|
||
|
- /"$/
|
||
|
|
||
|
dependencies:
|
||
|
python.org: ^3
|
||
|
|
||
|
build:
|
||
|
script: |
|
||
|
python-venv.py {{prefix}}/bin/git-review
|
||
|
|
||
|
{{prefix}}/venv/bin/pip install setuptools
|
||
|
|
||
|
provides:
|
||
|
- bin/git-review
|
||
|
|
||
|
test:
|
||
|
dependencies:
|
||
|
git-scm.org: '*'
|
||
|
working-directory: test
|
||
|
script:
|
||
|
- git-review --version | tee /dev/stderr | grep -q -w '{{version}}'
|
||
|
|
||
|
- git init --initial-branch main
|
||
|
- git config user.name PkgxTestBot
|
||
|
- git config user.email PkgxTestBot@test.com
|
||
|
- git remote add gerrit https://github.com/pkgxdev/pkgx
|
||
|
- touch .git/hooks/commit-msg
|
||
|
- chmod +x .git/hooks/commit-msg
|
||
|
- git commit --message "Test commit" --allow-empty
|
||
|
- git-review --dry-run main | tee /dev/stderr | grep -q -w 'git push'
|