1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 19:55:26 +03:00
aports/community/py3-ansible-compat/APKBUILD

54 lines
1.5 KiB
Text

# Contributor: Sean McAvoy <seanmcavoy@gmail.com>
# Maintainer: Sean McAvoy <seanmcavoy@gmail.com>
pkgname=py3-ansible-compat
pkgver=25.1.5
pkgrel=0
pkgdesc="functions that help interacting with various versions of Ansible"
url="https://github.com/ansible/ansible-compat"
arch="noarch"
license="MIT"
depends="
python3
py3-jsonschema
py3-packaging
py3-subprocess-tee
py3-yaml
"
makedepends="
ansible-core
py3-gpep517
py3-installer
py3-setuptools
py3-setuptools_scm
py3-wheel
"
subpackages="$pkgname-pyc"
checkdepends="py3-pytest py3-flaky py3-pytest-mock"
#subpackages="$pkgname-doc $pkgname-pyc"
source="ansible-compat-$pkgver.tar.gz::https://github.com/ansible/ansible-compat/archive/refs/tags/v$pkgver.tar.gz"
builddir="$srcdir/ansible-compat-$pkgver"
# the tests don't clean up after themselves, and fail if something is left in
# /tmp, and every release they add even more broken tests like this
options="!check"
build() {
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
check() {
# FIXME: bad tests leave around state and fail on builders
# on subsequent runs
PYTHONPATH="$builddir/build/lib:$PYTHONPATH" pytest -v \
-k "not test_runtime_install_role and not test_install_galaxy_role"
}
package() {
python3 -m installer --destdir="$pkgdir" --compile-bytecode 0 \
.dist/*.whl
}
sha512sums="
0a22b7f355718ae05f51982f1d4b0e7d17fccdf237a5593dcadb9e04191af2b20e1aac26c202a54f3de28fbbf75dcb0e32221ab8ef1fcb77580e1a2c1769ae05 ansible-compat-25.1.5.tar.gz
"