summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2021-03-04 10:57:41 +0800
committerGitHub <noreply@github.com>2021-03-03 20:57:41 -0600
commitf1d0a819e9ddd7b024acbd8161c5e116c9cfc9be (patch)
tree227a1c4224a5766b106ef7f4e34dc595be9d3b91 /var
parent631598014a26e99d6dde75f795399601192870cb (diff)
downloadspack-f1d0a819e9ddd7b024acbd8161c5e116c9cfc9be.tar.gz
spack-f1d0a819e9ddd7b024acbd8161c5e116c9cfc9be.tar.bz2
spack-f1d0a819e9ddd7b024acbd8161c5e116c9cfc9be.tar.xz
spack-f1d0a819e9ddd7b024acbd8161c5e116c9cfc9be.zip
py-adb-enhanced: update version to fix runtime error (#22036)
* py-adb-enhanced: update version to fix runtime error * py-adb-enhanced: fix dependencies
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-adb-enhanced/package.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-adb-enhanced/package.py b/var/spack/repos/builtin/packages/py-adb-enhanced/package.py
index 96ba05d049..a2ae86872a 100644
--- a/var/spack/repos/builtin/packages/py-adb-enhanced/package.py
+++ b/var/spack/repos/builtin/packages/py-adb-enhanced/package.py
@@ -15,13 +15,15 @@ class PyAdbEnhanced(PythonPackage):
homepage = "https://opencollective.com/ashishb"
url = "https://github.com/ashishb/adb-enhanced/archive/2.5.4.tar.gz"
+ version('2.5.10', sha256='9e913d09814ce99974c455a766c5b616a92bca551e657517d6e079882eb19bdb')
version('2.5.4', sha256='329ee2e0cfceaa41c591398b365d9acdfd45ffe913c64ac06e1538041986fffb')
version('2.5.3', sha256='5a1d5182d1a073b440e862e5481c7a21073eccc3cda7a4774a2aa311fee9bbdc')
version('2.5.2', sha256='055676156c1566b8d952b9fdfdd89fc09f2d5d1e3b90b4cdf40858ce9947e2ca')
depends_on('python@3:', type=('build', 'run'))
+ depends_on('python@3.4:', when='@2.5.10:', type=('build', 'run'))
depends_on('py-setuptools', type=('build', 'run'))
depends_on('py-docopt', type=('build', 'run'))
- depends_on('py-future', type=('build', 'run'))
+ depends_on('py-future', when='@:2.5.4', type=('build', 'run'))
depends_on('py-psutil', type=('build', 'run'))
- depends_on('py-asyncio', type=('build', 'run'))
+ depends_on('py-asyncio', when='@:2.5.4', type=('build', 'run'))