arch-pkgs/commitizen/PKGBUILD

64 lines
1.5 KiB
Bash
Raw Normal View History

# Maintainer: George Rawlinson <grawlinson@archlinux.org>
pkgname=commitizen
2021-09-27 22:12:12 +00:00
pkgver=2.19.0
pkgrel=1
pkgdesc="A tool for enforcing descriptive commit messages and version/changelog management"
arch=('any')
url="https://github.com/commitizen-tools/commitizen"
license=('MIT')
depends=(
'python'
'python-questionary'
'python-decli'
'python-colorama'
'python-termcolor'
'python-packaging'
'python-tomlkit'
'python-jinja'
'python-pyaml'
'python-argcomplete'
'python-prompt_toolkit'
)
makedepends=('python-pip' 'python-poetry')
#checkdepends=('python-pytest' 'python-pytest-mock' 'python-pytest-freezegun' 'python-pytest-regressions' 'git')
optdepends=()
#checkdepends=(
# 'python-pytest'
# 'python-pytest-mock'
#)
source=("$pkgname-$pkgver.tar.gz::$url/archive//v$pkgver.tar.gz")
2021-09-27 22:12:12 +00:00
b2sums=('1e9781b9d599906d74cd171cbc80b93c63d9ffb6ace606baa07102e5e8b80b9f9db7c4dea6807cdce7535b0ea8382d3683307d252356b32578c9a6b9f07a2dd8')
#prepare() {
#cd "$pkgname-$pkgver"
# Skip test that checks the root folder of the repo but as we download the tar ball
# it would detect aur as its root
#sed -i'' 's/test_find_git_project_root/skip_find_git_project_root/' tests/test_conf.py
#}
#check() {
# cd "$pkgname-$pkgver"
# pytest tests/
#}
build() {
cd "$pkgname-$pkgver"
poetry build --format wheel
}
package() {
cd "$pkgname-$pkgver"
PIP_CONFIG_FILE=/dev/null pip \
install \
--isolated \
--root="$pkgdir" \
--ignore-installed \
--no-deps \
dist/*.whl
# license
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}