2025-10-08 05:50:14 +02:00

48 lines
1.4 KiB
Bash

# Maintainer: Alexandre Ferreira <contact@alexjorgef.com>
pkgname=ansible
# Note: When packaging a new version of ansible, bump version of ansible-core in
# depends, if required.
pkgver=12.1.0
pkgrel=1
pkgdesc='Official assortment of Ansible collections'
arch=('any')
url='https://pypi.org/project/ansible/'
msys2_references=(
"cpe: cpe:/a:ansible:ansible"
"cpe: cpe:/a:redhat:ansible"
"cpe: cpe:/a:redhat:ansible_engine"
"purl: pkg:pypi/ansible"
)
license=('spdx:GPL-3.0-or-later')
depends=(
'python'
# Bump the version of ansible-core at least whenever a new major version of
# ansible is packaged / released. Check the ansible release notes to get the
# corresponding version of ansible-core. It usually has a statement like
# "Ansible x.y.z depends on ansible-core a.b.c" in it.
'ansible-core>=2.19.3'
)
makedepends=(
'python-setuptools'
'python-build'
'python-installer'
'python-setuptools'
)
source=("https://pypi.python.org/packages/source/a/ansible/ansible-${pkgver}.tar.gz")
sha512sums=('68eccd1a11058fc5d3ee67e70afb36a1b3b45b63d7942c0771e3b326afb97c5a9d31d01a5a6615f3bb7d7b81c6a1fce3afcb463035c5ff65dd50d84accbbf2f4')
build() {
cd ansible-${pkgver}
python -m build --wheel --skip-dependency-check --no-isolation
}
package() {
cd ansible-${pkgver}
python -m installer --destdir="${pkgdir}" dist/*.whl
install -Dm644 COPYING "${pkgdir}"/usr/share/doc/${pkgname}/COPYING
}