blob: bf0f7c5d1643817d5ebb62c560726704e24ad323 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/bin/bash
# Maintainer: PumpkinCheshire <me at pumpkincheshire dot com>
# Contributor: Gardar <aur@gardar.net>
# Contributor: Morten Linderud <morten@linderud.pw>
pkgname=python-anyconfig
_name=anyconfig
pkgver=0.14.0
pkgrel=1
pkgdesc='Provides common APIs to load and dump configuration files in various formats'
url='https://github.com/ssato/python-anyconfig'
arch=('any')
license=('MIT')
depends=(
'python-toml'
'python-ruamel-yaml'
'python-jinja'
'python-jmespath'
'python-jsonschema'
'python-simplejson'
'python-yaml'
)
optdepends=(
'python-anyconfig-bson-backend: BSON support using pymongo'
'python-anyconfig-ion-backend: Amazon ion load and dump support'
'python-anyconfig-cbor-backend: CBOR support using cbor'
'python-anyconfig-cbor2-backend: CBOR support using cbor2'
'python-anyconfig-configobj-backend: ConfigObj load and dump support'
'python-anyconfig-msgpack-backend: MessagePack load and dump support'
'python-anyconfig-json5-backend: Json5 load and dump support'
'python-anyconfig-fortios-backend: Fortios load and parse support'
)
makedepends=(
'python-setuptools'
'python-build'
'python-installer'
'python-wheel'
)
conflicts=('python-anyconfig-git')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
b2sums=('1f30b21066b5cf06784d96047d63baf7647db7612f6dff10a50917a980f8366eda3f7c253762f00133e82cee25d5632655ac0658aadbce629b53b727c766014b')
build() {
cd "$srcdir/$_name-$pkgver" || exit
# export PYTHONHASHSEED=0
# python setup.py build
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/$_name-$pkgver" || exit
# python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE* -t "$pkgdir/usr/share/licenses/$pkgname"
}
|