summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLevi Baber <baberlevi@gmail.com>2017-11-09 08:21:56 -0600
committerChristoph Junghans <christoph.junghans@gmail.com>2017-11-09 07:21:56 -0700
commit74d38b3150f3ded12e8c94f857b0654e49a0d92e (patch)
tree045af7e4503d2672b4bd341e4ae30345227e943d
parentacf6653933c1d13e2498a0908d712bbbfcf0c610 (diff)
downloadspack-74d38b3150f3ded12e8c94f857b0654e49a0d92e.tar.gz
spack-74d38b3150f3ded12e8c94f857b0654e49a0d92e.tar.bz2
spack-74d38b3150f3ded12e8c94f857b0654e49a0d92e.tar.xz
spack-74d38b3150f3ded12e8c94f857b0654e49a0d92e.zip
py-dlcpar (#6229)
* py-dlcpar: new package * py-dlcpar: whitespace
-rw-r--r--var/spack/repos/builtin/packages/py-dlcpar/package.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-dlcpar/package.py b/var/spack/repos/builtin/packages/py-dlcpar/package.py
new file mode 100644
index 0000000000..22e1ccd5a6
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-dlcpar/package.py
@@ -0,0 +1,36 @@
+##############################################################################
+# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/spack/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class PyDlcpar(PythonPackage):
+ """FIXME: Put a proper description of your package here."""
+
+ homepage = "https://www.cs.hmc.edu/~yjw/software/dlcpar/"
+ url = "https://www.cs.hmc.edu/~yjw/software/dlcpar/pub/sw/dlcpar-1.0.tar.gz"
+
+ version('1.0', '0bf684436df3554e46d5e992349eeaec')
+
+ depends_on('py-numpy', type=('build', 'run'))