Created
January 14, 2020 13:06
-
-
Save gardar/f198cad0501ecd3619bdbe2924f843a7 to your computer and use it in GitHub Desktop.
python-testinfra-3.4.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Morten Linderud <[email protected]> | |
# Maintainer: gardar <[email protected]> | |
pkgbase="python-testinfra" | |
pkgname=("python-testinfra" "python2-testinfra") | |
_pkgname='testinfra' | |
pkgver=3.4.0 | |
pkgrel=1 | |
pkgdesc='Testinfra test your infrastructures' | |
url='https://github.com/philpep/testinfra' | |
arch=('any') | |
license=('Apache') | |
makedepends=('python' 'python-setuptools' 'python-pbr' 'python-sphinx' | |
'python2' 'python2-setuptools' 'python2-pbr') | |
source=("git+git://github.com/philpep/testinfra.git#tag=$pkgver") | |
sha256sums=('SKIP') | |
prepare() { | |
cp -a ${_pkgname}{,-py2} | |
} | |
build() { | |
# export PBR_VERSION=$pkgver | |
cd "${srcdir}/${_pkgname}" | |
python setup.py build | |
make -C doc html man | |
cd "${srcdir}/${_pkgname}-py2" | |
python2 setup.py build | |
make -C doc html man | |
} | |
package_python-testinfra() { | |
depends=('python-six') | |
cd "${srcdir}/${_pkgname}" | |
# export PBR_VERSION=$pkgver | |
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build | |
install -d "${pkgdir}/usr/share/doc/${pkgname}" | |
cp -r doc/build/html/* "${pkgdir}/usr/share/doc/${pkgname}" | |
install -Dm 644 doc/build/man/testinfra.1 "${pkgdir}/usr/share/man/man1/${pkgname}.1" | |
} | |
package_python2-testinfra() { | |
depends=('python2-six') | |
cd "${srcdir}/${_pkgname}-py2" | |
# export PBR_VERSION=$pkgver | |
python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build | |
install -d "${pkgdir}/usr/share/doc/${pkgname}" | |
cp -r doc/build/html/* "${pkgdir}/usr/share/doc/${pkgname}" | |
install -Dm 644 doc/build/man/testinfra.1 "${pkgdir}/usr/share/man/man1/${pkgname}.1" | |
} | |
# vim:set ft=sh ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment