mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
testing/py-elasticsearch: new aport
This commit is contained in:
parent
062d97789d
commit
fc4ea7a20e
2 changed files with 57 additions and 1 deletions
56
testing/py-elasticsearch/APKBUILD
Normal file
56
testing/py-elasticsearch/APKBUILD
Normal file
|
@ -0,0 +1,56 @@
|
|||
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
||||
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
||||
pkgname=py-elasticsearch
|
||||
_pkgname=elasticsearch-py
|
||||
pkgver=5.4.0
|
||||
pkgrel=0
|
||||
pkgdesc="Official Python low-level client for Elasticsearch"
|
||||
url="http://elasticsearch-py.rtfd.org/"
|
||||
arch="noarch"
|
||||
license="ASL-2.0"
|
||||
depends="py-urllib3"
|
||||
#checkdepends="py-requests py-nose py-coverage py-mock py-yaml py-nosexcover"
|
||||
checkdepends="py-requests py-nose py-coverage py-mock py-yaml" # add nosexcover next release
|
||||
makedepends="python2-dev python3-dev py-setuptools"
|
||||
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/elastic/$_pkgname/archive/$pkgver.tar.gz"
|
||||
builddir="$srcdir/"$_pkgname-$pkgver
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
python2 setup.py build
|
||||
python3 setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir"
|
||||
}
|
||||
|
||||
_py2() {
|
||||
replaces="$pkgname"
|
||||
depends="${depends//py-/py2-}"
|
||||
_py python2
|
||||
}
|
||||
|
||||
_py3() {
|
||||
depends="${depends//py-/py3-}"
|
||||
_py python3
|
||||
}
|
||||
|
||||
_py() {
|
||||
local python="$1"
|
||||
pkgdesc="$pkgdesc (for $python)"
|
||||
depends="$depends $python"
|
||||
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
||||
|
||||
cd "$builddir"
|
||||
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$builddir"
|
||||
python2 setup.py test
|
||||
python3 setup.py test
|
||||
}
|
||||
|
||||
sha512sums="9d30ffa810f495662769e6d2f2627f9ef6aa3849bc2eecd09df28c05a036b8fb15ae465914c38eeb3d854683bc150a3c56425388312bcd112bd5cc7b33ad41ae py-elasticsearch-5.4.0.tar.gz"
|
Loading…
Add table
Add a link
Reference in a new issue