mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
32 lines
1 KiB
Text
32 lines
1 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-fs
|
|
_pkgname=fs
|
|
pkgver=2.4.11
|
|
pkgrel=1
|
|
pkgdesc="Python's filesystem abstraction layer."
|
|
options="!check" # Tests fail on builder
|
|
url="https://pypi.org/project/fs/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
replaces="py-fs" # for backwards compatibility
|
|
provides="py-fs=$pkgver-r$pkgrel" # for backwards compatibility
|
|
depends="python3 py3-appdirs py3-six py3-tz"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-mock py3-nose py3-openssl py3-psutil py3-pyftpdlib"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="8a4e25b47427d8467e697ac5eff645130f159f0479386c958ebcc87839e6b8d4b2d46c3bb078208eb067629078960fde551fa14842cf65ff29afb0238911b4f5 fs-2.4.11.tar.gz"
|