python/python3-gast: Downgrade to 0.5.5
I didn't notice this update broke python/python3-pythran (and packages depending on that, like academic/python3-scipy). Currently, pythran only supports 0.6.x versions of gast in it's master branch. Downgrading to 0.5.5 until pythran on SBo supports newer versions of gast. Thanks to Alexander Verbovetsky for the heads up! Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
ec484d107f
commit
5e5f68adaa
|
@ -1,3 +1,7 @@
|
|||
GAST provides a compatibility layer between the AST
|
||||
(Abstract Syntax Tree) of various Python versions, as produced by
|
||||
ast.parse from the standard ast module.
|
||||
|
||||
NOTE: Unable to support newer versions than 0.5.5 due to breaking
|
||||
python/python3-pythran. As of 19 JUL 24, only the master branch of
|
||||
pythran supports gast 0.6.x.
|
||||
|
|
|
@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd)
|
|||
|
||||
PRGNAM=python3-gast
|
||||
SRCNAM=gast
|
||||
VERSION=${VERSION:-0.6.0}
|
||||
VERSION=${VERSION:-0.5.5}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="python3-gast"
|
||||
VERSION="0.6.0"
|
||||
VERSION="0.5.5"
|
||||
HOMEPAGE="https://github.com/serge-sans-paille/gast"
|
||||
DOWNLOAD="https://github.com/serge-sans-paille/gast/archive/0.6.0/gast-0.6.0.tar.gz"
|
||||
MD5SUM="a7d75f4f4b7f45682dfb6d759ffd2953"
|
||||
DOWNLOAD="https://github.com/serge-sans-paille/gast/archive/0.5.5/gast-0.5.5.tar.gz"
|
||||
MD5SUM="a33b800eaa894f8c5d64892240021769"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue