diff options
author | Daniel Bershatsky | 2023-12-08 04:37:07 +0300 |
---|---|---|
committer | Daniel Bershatsky | 2023-12-08 04:37:07 +0300 |
commit | e2c6c28f64f996a09602140fc4ab1331a9d94bb7 (patch) | |
tree | a07ffd1afe76698da717e9e551533e834aa818fb /PKGBUILD | |
parent | 4f7dc823ab7264789d41e371223009ce4e166944 (diff) | |
download | aur-e2c6c28f64f996a09602140fc4ab1331a9d94bb7.tar.gz |
Bump to version 2.1.0
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -1,7 +1,7 @@ # Maintainer: Daniel Bershatsky <bepshatsky@yandex.ru> pkgname=python-triton _pkgname=${pkgname#python-} -pkgver=2.0.0 +pkgver=2.1.0 pkgrel=1 pkgdesc='Triton compiler' arch=('x86_64') @@ -9,10 +9,17 @@ url='https://github.com/openai/triton' license=('MIT') groups=('openai') depends=() -makedepends=('cmake' 'ninja' 'python-build' 'python-installer' 'python-wheel') +makedepends=('cmake' 'ninja' 'python-build' 'python-installer' 'python-setuptools' 'python-wheel') optdepends=() -source=("$_pkgname-$pkgver.tar.gz::https://github.com/openai/$_pkgname/archive/refs/tags/v$pkgver.tar.gz") -sha256sums=('19b6de0d0bcce86e973258d112169cd321b677146808bcc5fed7f69046775cfd') +source=("$_pkgname-$pkgver.tar.gz::https://github.com/openai/$_pkgname/archive/refs/tags/v$pkgver.tar.gz" + 'triton.diff') +sha256sums=('4338ca0e80a059aec2671f02bfc9320119b051f378449cf5f56a1273597a3d99' + 'SKIP') + +prepare() { + cd triton-$pkgver + patch -p 1 -i ../triton.diff +} build() { python -m build -nw $_pkgname-$pkgver/python |