summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorTrougnouf (Benoit Brummer)2023-05-15 19:24:52 +0200
committerTrougnouf (Benoit Brummer)2023-05-15 19:24:52 +0200
commitd11e57d776f6297325724fbb3431426250390118 (patch)
tree0f8e8222b57fb98424f1cf4ce079257925eddb0b /PKGBUILD
parent92e4b5c7c68459f3a864fedcbfa7a943abb63005 (diff)
downloadaur-d11e57d776f6297325724fbb3431426250390118.tar.gz
fix for "modified" in __version__
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 2b632d7cd99b..a379f4ad360c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_name='pycma'
pkgname="python-${_name}-git"
-pkgver=r249.038bcb3
+pkgver=r796.6080396
pkgrel=1
pkgdesc="Python implementation of CMA-ES"
provides=(python-${_name})
@@ -23,6 +23,7 @@ sha256sums=('SKIP')
build() {
cd "${srcdir}/${_name}"
+ sed -i '/^__version__ =/ s/modified//' "cma/__init__.py"
python setup.py build
}