blob: 59711ec73ec81d1376cef732db1e20db099f513e (
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
|
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=py3-twine
_pkgname=twine
pkgver=3.0.0
pkgrel=0
pkgdesc="Collection of utilities for publishing packages on PyPI"
options="!check" # Requires unpackaged 'pretend'
url="https://twine.readthedocs.io/en/latest/"
arch="noarch"
license="Apache-2.0"
depends="
python3
py3-pkginfo
py3-readme_renderer
py3-requests
py3-requests-toolbelt
py3-setuptools
py3-tqdm
"
checkdepends="py3-pytest"
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() {
PYTHONPATH="$PWD/build/lib" py.test-3
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="fdbb3c2a457327168d462cd391d32324edd05e6a4681901c24c3800ea23d0b344ec8af2cc8aecf6bbf948498bdfefb7784941fc5ae3012a7f231649377f2dcfe twine-3.0.0.tar.gz"
|