blob: 12f636834c6adf071d872d98e31b3adbd8fb7575 (
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
|
# Maintainer: Martin Chang <marty188586@gmail.com>
pkgname=python-tt-tools-common-git
pkgver=1.4.6
pkgrel=1
pkgdesc="Common utilities shared across Tentorrent tools."
arch=('any')
url='https://github.com/tenstorrent/tt-tools-common'
license=('Apache')
makedepends=(python-build python-installer python-wheel)
depends=(python-distro python-elasticsearch python-psutil python-pyyaml python-rich python-textual python-requests python-tqdm python-pydantic python-typish python-luwen)
provides=("python-tt-tools-common")
source=("tt-tools-common::git+https://github.com/tenstorrent/tt-tools-common.git")
sha256sums=('SKIP')
pkgver() {
cd tt-tools-common
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd tt-tools-common
python -m build --wheel --no-isolation
}
package() {
cd tt-tools-common
python -m installer --destdir="$pkgdir" dist/*.whl
}
|