Date: Wednesday, January 25, 2023 @ 15:33:56
Author: idevolder
Revision: 1388238
upgpkg: awxkit 21.11.0-1
Modified:
awxkit/trunk/PKGBUILD
----------+
PKGBUILD | 44 ++++++++------------------------------------
1 file changed, 8 insertions(+), 36 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2023-01-25 15:33:15 UTC (rev 1388237)
+++ PKGBUILD 2023-01-25 15:33:56 UTC (rev 1388238)
@@ -2,52 +2,24 @@
pkgname=awxkit
_pkgname=awx
-pkgver=21.10.2
-_commit=5dd0eab8060c16623bf6c5395767cd421dc09c4d # refs/tags/21.10.2
-pkgrel=2
-pkgdesc="The official command line interface for Ansible AWX"
+pkgver=21.11.0
+pkgrel=1
+pkgdesc="cli client and python library for ansible awx (tower)"
arch=('any')
url="https://github.com/ansible/awx"
license=('Apache')
-depends=(
- 'python'
- 'python-pytest' # unreferenced, required in awxkit/yaml_file.py
- 'python-pyyaml'
- 'python-requests'
- 'python-setuptools' # unreferenced, required in awxkit/cli/client.py
-)
-makedepends=('git' 'python-build' 'python-installer' 'python-setuptools'
'python-setuptools-scm' 'python-wheel')
-checkdepends=(
- 'jq'
- 'python-pytest'
- 'python-cryptography'
- # 'python-websocket-client' # TODO: needs to be packaged
-)
-optdepends=(
- 'jq: for formatting'
- # 'python-websocket-client: for websockets support' # TODO: needs to be
packaged
- 'python-cryptography: for cryptography support'
-)
+depends=('python-six' 'python-yaml' 'python-requests' 'python-wheel')
+makedepends=('python-pip' 'python-setuptools' 'git')
options=(!emptydirs)
-source=("${_pkgname}::git+https://github.com/ansible/${_pkgname}#tag=$_commit")
+source=("${_pkgname}::git+https://github.com/ansible/${_pkgname}#tag=${pkgver}")
sha512sums=('SKIP')
build() {
cd "${_pkgname}/${pkgname}"
- python -m build --wheel --no-isolation
+ python setup.py build
}
-check() {
- local deselected=(
- # NOTE: deselect tests that require python-websocket-client
- --deselect test/test_ws.py::test_explicit_hostname
- --deselect test/test_ws.py::test_urlparsing
- )
- cd "${_pkgname}/${pkgname}"
- pytest -vv "${deselected[@]}"
-}
-
package() {
cd "${_pkgname}/${pkgname}"
- python -m installer --destdir="$pkgdir" dist/*.whl
+ python setup.py install --root="$pkgdir/" --optimize=1
}