spack/var/spack/repos/builtin/packages/py-radical-saga/package.py
Mikhail Titov d7e7542486
Update package versions: RADICAL-Cybertools (RE, RP, RS, RU) (#28523)
* rct: update packages (RE, RP, RS, RU) with new versions

* rct: minor version release for RP

* rct: fixed versions for dependencies (RS and RU)
2022-02-01 11:35:14 +01:00

33 lines
1.5 KiB
Python

# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class PyRadicalSaga(PythonPackage):
"""RADICAL-SAGA (RS) implements the interface specification of the Open
Grid Forum (OGF) Simple API for Grid Applications (SAGA) standard. RS works
as a light-weight access layer for distributed computing infrastructures,
providing adaptors for different middleware systems and services."""
homepage = 'https://radical-cybertools.github.io'
git = 'https://github.com/radical-cybertools/radical.saga.git'
pypi = 'radical.saga/radical.saga-1.11.1.tar.gz'
maintainers = ['andre-merzky']
version('develop', branch='devel')
version('1.11.1', sha256='edb1def63fadd192a4be4f508e9e65669745843e158ce27a965bf2f43d18b84d')
version('1.8.0', sha256='6edf94897102a08dcb994f7f107a0e25e7f546a0a9488af3f8b92ceeeaaf58a6')
version('1.6.10', sha256='8fe7e281e9f81234f34f5c7c7986871761e9e37230d2a874c65d18daeccd976a')
version('1.6.8', sha256='d5e9f95a027087fb637cef065ff3af848e5902e403360189e36c9aa7c3f6f29b')
depends_on('py-radical-utils', type=('build', 'run'))
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-apache-libcloud', type=('build', 'run'))
depends_on('py-parse', type=('build', 'run'))
depends_on('py-setuptools', type='build')