1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/testing/py3-soappy/APKBUILD
psykose a435ef42d2 */*: remove pointless python optimise
this doesn't really "optimise" the python or do much to improve
performance.

it's identical to running python with -O or setting PYTHONOPTIMISE= in
the environment.

doing it here just doubles the disk space for the pre-cached files
generated by python on startup with optimisations
2023-01-10 04:18:42 +01:00

26 lines
809 B
Text

# Contributor: Noel Kuntze <noel.kuntze@thermi.consulting>
# Maintainer: Noel Kuntze <noel.kuntze@thermi.consulting>
pkgname=py3-soappy
pkgver=0.52.25
pkgrel=4
pkgdesc="Simple to use SOAP library for Python"
url="https://github.com/Synerty/SOAPpy-py3"
options="!check" # Requires running servere
arch="noarch"
license="BSD-3-Clause-Attribution"
depends="py3-defusedxml py3-wstools py3-m2crypto"
makedepends="py3-setuptools"
source="https://pypi.io/packages/source/S/SOAPpy-py3/SOAPpy-py3-$pkgver.tar.gz"
builddir="$srcdir/SOAPpy-py3-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --root="$pkgdir"
}
sha512sums="
5a81f863f3ba61c507767bdbef3fd7830f0a435280cf0ccc2ff0d74f98cf6b917294e96fb5a5bf3c132545cb28c2203e00707ea9c31a5bb2b0be1f37863b821f SOAPpy-py3-0.52.25.tar.gz
"