diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-10-16 23:54:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-16 17:54:42 +0200 |
commit | 01cf1d79dbf9b2634743841f9b59cc797b711661 (patch) | |
tree | 830ff42e1adf72a97d74ae8fb7149b754c7f71dc | |
parent | 506d2795a844e254d078a7f5c903ac7035e62ae9 (diff) | |
download | spack-01cf1d79dbf9b2634743841f9b59cc797b711661.tar.gz spack-01cf1d79dbf9b2634743841f9b59cc797b711661.tar.bz2 spack-01cf1d79dbf9b2634743841f9b59cc797b711661.tar.xz spack-01cf1d79dbf9b2634743841f9b59cc797b711661.zip |
parquet-format: added new package at v2.8.0 (#18544)
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
-rw-r--r-- | var/spack/repos/builtin/packages/parquet-format/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/parquet-format/package.py b/var/spack/repos/builtin/packages/parquet-format/package.py new file mode 100644 index 0000000000..ae65ccd211 --- /dev/null +++ b/var/spack/repos/builtin/packages/parquet-format/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 ParquetFormat(MavenPackage): + """ParquetFormat is a columnar storage format that supports nested data.""" + + homepage = "https://github.com/apache/parquet-format/" + url = "https://github.com/apache/parquet-format/archive/apache-parquet-format-2.8.0.tar.gz" + + version('2.8.0', sha256='345c044cea73997162e0c38ae830509ee424faf49c90974e4f244079a3df01b0') + version('2.7.0', sha256='e821ffc67f61b49afce017ce2d1d402b4df352ca49dbeae167b06c4d3264b6ba') + + depends_on('thrift@0.12.0', when='@2.7.0:') + depends_on('java@8', type=('build', 'run')) |