blob: 1eb6b6ba45d386f4f7a778b0707c18e1f756bf46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Maintainer: Aleksandr Beliaev <trap000d@gmail.com>
pkgname=python-wsgidav-seafile
pkgver=12.0.11
pkgrel=1
pkgdesc="Seafile webdav server"
arch=('any')
url="https://github.com/haiwen/seafdav"
license=('MIT')
depends=('python'
'python-json5'
'python-seafobj'
'python-defusedxml'
'python-jinja'
'python-sqlalchemy'
'python-yaml')
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-setuptools' 'libyaml')
conflicts=('python-wsgidav')
source=("${url}/archive/v${pkgver}-server.tar.gz")
sha256sums=('f0aaf17056309e9425bc190287de40d72e3ea744b9e7710a315233470cfdf0b0')
prepare() {
cd "$srcdir/seafdav-$pkgver-server"
# exclude deprecated and broken [data_files] section
sed -i '/options.data_files/ { N; d; }' setup.cfg
}
build() {
cd "$srcdir/seafdav-$pkgver-server"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/seafdav-$pkgver-server"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|