[arch-commits] Commit in python-testinfra/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Tue Nov 10 05:14:06 UTC 2020
Date: Tuesday, November 10, 2020 @ 05:14:05
Author: felixonmars
Revision: 749374
archrelease: copy trunk to community-staging-any
Added:
python-testinfra/repos/community-staging-any/
python-testinfra/repos/community-staging-any/PKGBUILD
(from rev 749372, python-testinfra/trunk/PKGBUILD)
----------+
PKGBUILD | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
Copied: python-testinfra/repos/community-staging-any/PKGBUILD (from rev 749372, python-testinfra/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2020-11-10 05:14:05 UTC (rev 749374)
@@ -0,0 +1,57 @@
+# Maintainer: Christian Rebischke <chris.rebischke at archlinux.org>
+# Contributor: David Runge <dvzrv at archlinux.org>
+# Contributor: Lex Black <autumn-wind at web.de>
+# Contributor: gardar <aur at gardar.net>
+# Contributor: Morten Linderud <morten at linderud.pw>
+
+_name=testinfra
+pkgname=python-testinfra
+pkgver=5.3.1
+pkgrel=2
+pkgdesc='Testinfra test your infrastructures'
+url="https://github.com/philpep/testinfra"
+arch=('any')
+license=('Apache')
+depends=('python-pytest')
+makedepends=('python-hacking' 'python-setuptools_scm' 'python-sphinx')
+checkdepends=('ansible' 'python-mock' 'python-paramiko' 'python-pytest-cov'
+'python-pytest-xdist' 'python-pywinrm' 'python-tornado' 'salt')
+# TODO: add salt to optdepends, after it has been ported to python3
+optdepends=('ansible: for tests using ansible inventories'
+ 'docker: for test running docker containers'
+ 'kubectl: for test running containers in kubernetes'
+ 'lxd: for test running LXC or LXD containers'
+ 'podman: for test running podman containers'
+ 'python-paramiko: for testing remote hosts'
+ 'python-pywinrm: for testing on Windows hosts')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
+sha512sums=('f28cb5fdd811a1c9fcd7f5ee9257f85eed3d23bbfc37ab11f6df59061bd51fe2289b2ce4e3868aa63dd7e83e8dc7c00f731f8384fcf0beca42f966eacc90bc8d')
+b2sums=('a859513f8ace452e264c8a0fb55e2bb65fc0444dcab5230a60975ee3a212b0e2bcdbb2e2249caa9a503f4c0e304095424d90ba396ca7e0c04c652c600f07e6ef')
+
+prepare() {
+ mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py build
+ make -C doc man
+}
+
+check() {
+ cd "${pkgname}-${pkgver}"
+ export PYTHONPATH="build:$PYTHONPATH"
+ # salt is not python3 (yet): https://bugs.archlinux.org/task/61129
+ pytest -v -k 'not test_backend_importables'
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+ # man page
+ install -Dm 644 doc/build/man/${_name}.1 \
+ "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+ # docs
+ install -vDm 644 {CHANGELOG,CONTRIBUTING,README}.rst \
+ -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
More information about the arch-commits
mailing list