diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-09 10:21:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 21:21:35 -0500 |
commit | 0f4f4a2e950edae813fee06dfe76fe208a5c0853 (patch) | |
tree | e846b07bdb2881a8733d5b9fc9f5d913fe11d686 /var | |
parent | 97b7af01d90272a4fdd19fe146c824ebce5c7e0d (diff) | |
download | spack-0f4f4a2e950edae813fee06dfe76fe208a5c0853.tar.gz spack-0f4f4a2e950edae813fee06dfe76fe208a5c0853.tar.bz2 spack-0f4f4a2e950edae813fee06dfe76fe208a5c0853.tar.xz spack-0f4f4a2e950edae813fee06dfe76fe208a5c0853.zip |
Add new package: orientdb (#18542)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/orientdb/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/orientdb/package.py b/var/spack/repos/builtin/packages/orientdb/package.py new file mode 100644 index 0000000000..bc605566dd --- /dev/null +++ b/var/spack/repos/builtin/packages/orientdb/package.py @@ -0,0 +1,19 @@ +# 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 Orientdb(MavenPackage): + """OrientDB is an Open Source Multi-Model NoSQL DBMS with the support + of Native Graphs, Documents Full-Text, Reactivity, Geo-Spatial and Object + Oriented concepts. It's written in Java and it's amazingly fast.""" + + homepage = "https://orientdb.com/" + url = "https://github.com/orientechnologies/orientdb/archive/3.1.2.tar.gz" + + version('3.1.2', sha256='3c8e1f55de9e1a6c3cd714832deb7369f50096e85f1e048f0c0328e611970850') + version('3.1.1', sha256='d5cc6b6048b71696a4a592705c2a3aec65757eca3cfadb03905306ceb4348d37') + version('3.1.0', sha256='84f7ced66847fc5a7b987c701d60302e2aff63cdac2869941eee158251515b99') |