void-packages/srcpkgs/ansible-core/template

45 lines
1.4 KiB
Bash

# Template file for 'ansible-core'
pkgname=ansible-core
version=2.16.2
revision=1
hostmakedepends="python3-setuptools python3-wheel python3-packaging
python3-straight.plugin python3-docutils python3-Jinja2 python3-yaml"
depends="python3-cryptography python3-Jinja2 python3-paramiko python3-yaml
python3-packaging python3-resolvelib python3-pytz git"
checkdepends="${depends} python3-pytest python3-pytest-xdist
python3-pytest-forked unzip openssh python3-pytest-mock libselinux
python3-passlib"
short_desc="Simple deployment, configuration management and execution framework"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-3.0-or-later"
homepage="https://www.ansible.com/"
changelog="https://raw.githubusercontent.com/ansible/ansible/stable-${version%.*}/changelogs/CHANGELOG-v${version%.*}.rst"
distfiles="${PYPI_SITE}/a/ansible-core/ansible-core-${version}.tar.gz"
checksum=e4ab559e7e525b1c6f99084fca873bb014775d5ecbe845b7c07b8e9d6c9c048b
conflicts="ansible<2.10.1_1"
replaces="ansible-base<2.11.0_1"
do_build() {
python setup.py build
}
do_check() {
bin/ansible-test units
}
do_install() {
python setup.py install --root="${DESTDIR}"
mkdir man
./packaging/cli-doc/build.py man --output-dir man
for page in man/*.1; do
vman ${page}
done
}
ansible-base_package() {
build_style=meta
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" (transitional dummy package)"
}