mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
29 lines
864 B
Text
29 lines
864 B
Text
# Contributor: <xmingske@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=py3-flup
|
|
_pkgname=flup
|
|
pkgver=1.0.3
|
|
pkgrel=2
|
|
pkgdesc="WSGI modules for Python"
|
|
options="!check" # No testsuite
|
|
url="https://www.saddi.com/software/flup/"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
replaces="py-flup" # Backwards compatibility
|
|
provides="py-flup=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
builddir="${srcdir}/${_pkgname}-${pkgver}"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="f165685b39a8539d29d48d0ad3c9c0495f428892b8935545a128730687c658a1e8b74a09c8084dd4a2490b1d26f1382b48c95ba43401171fd46876b068ba2f8e flup-1.0.3.tar.gz"
|