blob: 2c9f9407d031d0cd92288f9781a1bf41a177fff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Takuya Noguchi <takninnovationresearch@gmail.com>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=ansible
pkgver=2.7.16
pkgrel=0
pkgdesc="A configuration-management, deployment, task-execution, and multinode orchestration framework"
url="https://ansible.com/"
arch="noarch"
license="GPL-3.0-or-later"
_py=py3
depends="python3 $_py-yaml $_py-paramiko $_py-jinja2 $_py-markupsafe $_py-crypto"
makedepends="python3-dev py3-setuptools"
options="!check" # not included in release tarball
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://releases.ansible.com/ansible/$pkgname-$pkgver.tar.gz
add-lxc-container_shell-option.patch
"
builddir="$srcdir/$pkgname-$pkgver"
# secfixes:
# 2.7.16-r0:
# - CVE-2019-14864
# - CVE-2019-14904
# - CVE-2019-14905
# 2.7.14-r0:
# - CVE-2019-14846
# - CVE-2019-14856
# - CVE-2019-14858
# 2.7.13-r0:
# - CVE-2019-10206
# 2.7.12-r0:
# - CVE-2019-101562
# 2.7.8-r0:
# - CVE-2019-38287
# 2.7.5-r0:
# - CVE-2018-16876
# 2.7.3-r0:
# - CVE 2018-16859
# 2.7.1-r0:
# - CVE-2018-16837
# 2.6.3-r0:
# - CVE-2018-10875
prepare() {
# Windows-only scripts
rm -r examples/scripts
}
build() {
cd "$builddir"
python3 setup.py build
}
package() {
cd "$builddir"
python3 setup.py install --prefix=/usr --root="$pkgdir"
mkdir -p "$pkgdir"/usr/share/man/man1
install -Dm644 "$builddir"/docs/man/man1/*.1 \
"$pkgdir"/usr/share/man/man1/
mkdir -p "$pkgdir"/usr/share/doc/$pkgname/examples/
install -m644 examples/* \
"$pkgdir"/usr/share/doc/$pkgname/examples/
install -m644 README.rst "$pkgdir"/usr/share/doc/$pkgname
}
sha512sums="daae5c495f60a6b1b7fbce7c1b964e946ffa85e57791f9e07765aacfea8a490e39e3fad7f319684fc98dcc2e59ed8e9daf058e03a5dfcdf2cd6de5166ecb5767 ansible-2.7.16.tar.gz
e1bd1affec585abf4556d1f2598df2689c2341fc0ddaec3eadc0a9c6df5725b8ab97092771f2c57da6ecaa72ae1bb5e5ccce55db8c4d74bfc785f611dd5b8c32 add-lxc-container_shell-option.patch"
|