mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-30 10:51:39 +02:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-fs
|
|
_pkgname=fs
|
|
pkgver=0.5.1
|
|
pkgrel=0
|
|
pkgdesc="A Python Filesystem abstraction layer"
|
|
url="https://pypi.python.org/pypi/fs"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python2 py-boto py-paramiko py-six py-django py-dexml"
|
|
depends_dev=""
|
|
makedepends="python2-dev py-setuptools py-six"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python2 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="7abd892a7534cab3a81775b92ca949ad fs-0.5.1.tar.gz"
|
|
sha256sums="18e0f3b183bedb326a3c95a320ad202730aa1358affdebedb27b939a18f87f8b fs-0.5.1.tar.gz"
|
|
sha512sums="237e8352c9b070b8ffc7e14db38ad442edd463c212851b1be569c84134052d2c1b58c9f32988c7500a1363e459abb99ca47a4908186f681fc9fcac8c1c55cbd4 fs-0.5.1.tar.gz"
|