arch-pkgs/commitizen/PKGBUILD

63 lines
1.7 KiB
Bash

# Maintainer: George Rawlinson <grawlinson@archlinux.org>
# Contributor: Jayson Reis <santosdosreis@gmail.com>
pkgname=commitizen
pkgver=2.20.3
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-install'
'python-build'
'python-poetry'
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha512sums=('e7cb917541f97e658b970d18694e989d2f4960ffc4a979f99dab8bea1e8e717c83bf221384462734782154bd2509d088a96ef1cc984beebaef3b2971b3efb76d')
b2sums=('3418447960d6832213c694f769ee0cc259e4647cb2bbe0221856af1d9a3dc591a2a8f1d48d599e8ae1acc346807691bf42e3958152165c8fa6da3950dd951a6e')
prepare () {
cd "$pkgname-$pkgver"
# create completions
mkdir completions
register-python-argcomplete --shell bash cz > completions/bash
register-python-argcomplete --shell fish cz > completions/fish
}
build() {
cd "$pkgname-$pkgver"
python -m build --wheel --skip-dependency-check --no-isolation
}
package() {
cd "$pkgname-$pkgver"
python -m install \
--optimize=1 \
--destdir="$pkgdir" \
dist/*.whl
# license
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
# shell completions
install -vDm644 completions/bash "$pkgdir/usr/share/bash-completion/completions/cz"
install -vDm644 completions/fish "$pkgdir/usr/share/fish/vendor_completions.d/cz.fish"
}