summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJustin S <3630356+codeandkey@users.noreply.github.com>2019-07-30 16:16:41 -0500
committerAdam J. Stewart <ajstewart426@gmail.com>2019-07-30 16:16:41 -0500
commit175abecc0b0688b2626175ef2e6f5400ca8c6b89 (patch)
treea183fb4c855a348fc8ed270f41fe2550c3c6f445 /var
parent544914f34b4f57e51f05f3d3b60d72fedc0a995a (diff)
downloadspack-175abecc0b0688b2626175ef2e6f5400ca8c6b89.tar.gz
spack-175abecc0b0688b2626175ef2e6f5400ca8c6b89.tar.bz2
spack-175abecc0b0688b2626175ef2e6f5400ca8c6b89.tar.xz
spack-175abecc0b0688b2626175ef2e6f5400ca8c6b89.zip
mii: new package at 1.0.2 (#12184)
* mii: new package at 1.0.2 * mii: fix improper formatting in description * mii: add 1.0.3
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mii/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mii/package.py b/var/spack/repos/builtin/packages/mii/package.py
new file mode 100644
index 0000000000..063ec4072d
--- /dev/null
+++ b/var/spack/repos/builtin/packages/mii/package.py
@@ -0,0 +1,25 @@
+# Copyright 2013-2019 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 Mii(MakefilePackage):
+ """Mii is an inverted indexing system for environment modules.
+ After installation you will no longer need to load modules to run
+ applications.
+
+ NOTE: Additional steps are required after installing the
+ Spack package to enable Mii in your shell. Please see the README
+ on the homepage for more information."""
+
+ homepage = "https://github.com/codeandkey/mii"
+ url = "https://github.com/codeandkey/mii/archive/1.0.2.tar.gz"
+
+ version('1.0.3', sha256='9b5a0e4e0961cf848677ed61b4f6c03e6a443f8592ed668d1afea302314b47a8')
+ version('1.0.2', sha256='1c2c86ec37779ecd3821c30ce5b6dd19be4ec1813da41832d49ff3dcf615e22d')
+
+ def setup_environment(self, spack_env, run_env):
+ spack_env.set('PREFIX', self.prefix)