summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Bhatia <bhatia4@llnl.gov>2022-05-03 21:10:49 -0700
committerGitHub <noreply@github.com>2022-05-03 23:10:49 -0500
commit17c1808ef74ea1b7f2964bb6fb50828885ac6b10 (patch)
treeccf29b4077fee6b1cf56fdb48ed0f53c2331de96
parent157ee3458fc6ad360f48380654319ae17ea956bd (diff)
downloadspack-17c1808ef74ea1b7f2964bb6fb50828885ac6b10.tar.gz
spack-17c1808ef74ea1b7f2964bb6fb50828885ac6b10.tar.bz2
spack-17c1808ef74ea1b7f2964bb6fb50828885ac6b10.tar.xz
spack-17c1808ef74ea1b7f2964bb6fb50828885ac6b10.zip
new package: py-pytaridx (#30444)
* new package: pytaridx * fixed copyright year * Update git link Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * added type in python depends * added pypi link * Update package.py * Update package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-rw-r--r--var/spack/repos/builtin/packages/py-pytaridx/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytaridx/package.py b/var/spack/repos/builtin/packages/py-pytaridx/package.py
new file mode 100644
index 0000000000..14cf9f252b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pytaridx/package.py
@@ -0,0 +1,24 @@
+# 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 PyPytaridx(PythonPackage):
+ """Python module/library for creating and maintaining a rapidly searchable
+ index for a tar-file. This allows "direct access" of members (files) in
+ the tar archive."""
+
+ homepage = "https://github.com/LLNL/pytaridx"
+ git = "https://github.com/LLNL/pytaridx.git"
+ pypi = "pytaridx/pytaridx-1.0.2.tar.gz"
+
+ maintainers = ['bhatiaharsh']
+
+ version('1.0.2', sha26='702c42ade13ae8688a56a8edfcd7e0e7512a489a22796c6cfdbcef677010ee47')
+ version('master', branch='master')
+
+ depends_on('python@3:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')