blob: c10d5cc4621f849a1cd87943d54bcc41efec2004 (
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
|
# Maintainer: Maik93 <michael.mugnai@gmail.com>
# Contributor: Ethan Zonca <e@ethanzonca.com>
pkgname=python-cantools
_gitname=cantools
provides=('python-cantools')
conflicts=('python-cantools')
pkgdesc="Python CAN bus tools in Python 3"
url="https://github.com/eerimoq/cantools"
pkgver=40.2.1
pkgrel=2
arch=('any')
license=('MIT')
makedepends=(
'python-build'
'python-installer'
'python-wheel'
'python-setuptools'
'python-setuptools-scm'
)
depends=(
'python>=3.8'
'python-bitstruct>=8.16.1'
'python-can>=3.3.4'
'python-textparser>=0.21.1'
'python-diskcache'
'python-argparse-addons'
'python-crccheck'
'python-matplotlib'
)
optdepends=(
'mypy'
'python-pipx'
'python-ruff'
'python-tox'
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
md5sums=('db377436979894c5cf43900f95a24d11')
build() {
cd "$srcdir/$_gitname-$pkgver"
SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver \
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/$_gitname-$pkgver"
SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver \
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE
}
|