64 lines
1.6 KiB
Text
64 lines
1.6 KiB
Text
|
# Maintainer: George Rawlinson <grawlinson@archlinux.org>
|
||
|
|
||
|
pkgname=commitizen
|
||
|
pkgver=2.17.13
|
||
|
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' # AUR
|
||
|
'python-decli' # AUR
|
||
|
'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")
|
||
|
b2sums=('da8414d261ac7a1ad5217f6965e2819a936692e5e282d98a1bebcd7e21da4446b75f677e58408301f12c3903c25f1e3149c7d2958aefe7c672a5b673bb3f8edf')
|
||
|
|
||
|
#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
|
||
|
}
|