blob: 0fdc515c755026f7268cdeeb7d1372c9aec205dc (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: xiota / aur.chaotic.cx
## useful links
# https://pypi.org/project/climage
: ${_build_git:=false}
unset _pkgtype
[[ "${_build_git::1}" == "t" ]] && _pkgtype+="-git"
_module="climage"
_pkgname="python-$_module"
pkgname="$_pkgname${_pkgtype:-}"
pkgdesc="Convert images to beautiful ANSI escape codes"
pkgver=0.2.2
pkgrel=1
url='https://github.com/pnappa/CLImage'
license=('GPL-3.0-or-later')
arch=('any')
depends=(
'python'
'python-kdtree' # AUR
'python-pillow'
)
makedepends=(
'python-build'
'python-installer'
'python-setuptools'
'python-wheel'
)
if [ "${_build_git::1}" != "t" ]; then
_pkgsrc="$_module-${pkgver%%.r*}"
_pkgext="tar.gz"
source=(
"$_pkgsrc.$_pkgext"::"https://files.pythonhosted.org/packages/source/${_module::1}/$_module/$_pkgsrc.$_pkgext"
)
sha256sums=(
'e6116b2f5f3d313adb0856657efe4a6d119e2218cdef23c28a993d94b871ab8e'
)
pkgver() {
echo "${pkgver%%.r*}"
}
else
makedepends+=('git')
provides=("$_pkgname")
conflicts=("$_pkgname")
_pkgsrc="$_pkgname"
source=("$_pkgsrc"::"git+$url.git")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgsrc"
git describe --long --tags --abbrev=7 \
| sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
fi
build() {
cd "$_pkgsrc"
python -m build --no-isolation --wheel
}
package() {
cd "$_pkgsrc"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|