Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
f56b521b
Unverified
Commit
f56b521b
authored
4 years ago
by
darmac
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add new package: hudi (#18041)
parent
a9116ac9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
var/spack/repos/builtin/packages/hudi/package.py
+24
-0
24 additions, 0 deletions
var/spack/repos/builtin/packages/hudi/package.py
with
24 additions
and
0 deletions
var/spack/repos/builtin/packages/hudi/package.py
0 → 100644
+
24
−
0
View file @
f56b521b
# 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
Hudi
(
Package
):
"""
Apache Hudi stands for Hadoop Upserts Deletes and Incrementals.
Hudi manages the storage of large analytical datasets on DFS.
"""
homepage
=
"
https://hudi.apache.org/
"
url
=
"
https://github.com/apache/hudi/archive/release-0.5.3.tar.gz
"
version
(
'
0.5.3
'
,
sha256
=
'
8cbf52007fddd07eebd20c8962cd630b05a8ae4c597523fd63db837a45a0b227
'
)
depends_on
(
'
maven
'
,
type
=
'
build
'
)
depends_on
(
'
java@8
'
,
type
=
(
'
build
'
,
'
run
'
))
def
install
(
self
,
spec
,
prefix
):
mvn
=
which
(
'
mvn
'
)
mvn
(
'
package
'
,
'
-DskipTests
'
)
install_tree
(
'
.
'
,
prefix
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment