diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-09 10:29:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 21:29:26 -0500 |
commit | e3cd3fb9eb5ad0b76c8e0a9cb8460e8400645599 (patch) | |
tree | f10f2aa74fd66f7056896ed625c6fbe1a8d7cf84 | |
parent | ab51edecb5becd17d172e33581a5f00f6553466c (diff) | |
download | spack-e3cd3fb9eb5ad0b76c8e0a9cb8460e8400645599.tar.gz spack-e3cd3fb9eb5ad0b76c8e0a9cb8460e8400645599.tar.bz2 spack-e3cd3fb9eb5ad0b76c8e0a9cb8460e8400645599.tar.xz spack-e3cd3fb9eb5ad0b76c8e0a9cb8460e8400645599.zip |
Add new package: quartz (#18539)
-rw-r--r-- | var/spack/repos/builtin/packages/quartz/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/quartz/package.py b/var/spack/repos/builtin/packages/quartz/package.py new file mode 100644 index 0000000000..1ae0cea830 --- /dev/null +++ b/var/spack/repos/builtin/packages/quartz/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2020 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 Quartz(MavenPackage): + """Quartz is a richly featured, open source job scheduling + library that can be integrated within virtually any Java + application - from the smallest stand-alone application + to the largest e-commerce system.""" + + homepage = "http://www.quartz-scheduler.org/" + url = "https://github.com/quartz-scheduler/quartz/archive/v2.3.2.tar.gz" + + version('2.3.2', sha256='058c64777956aeaad3e79e2307f0f512c66d29acf026ea8373ad359050f6856c') + version('2.3.1', sha256='3b92fc4d562bb428ebc4c1fc7cbb5b764830d8317c20a011fbcee42601b72415') + + depends_on('java@8', type=('build', 'run')) |