summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAnthony Scemama <scemama@gmx.com>2020-02-20 16:50:21 +0100
committerGitHub <noreply@github.com>2020-02-20 09:50:21 -0600
commitd98b98aae67246331c1ae0078351c53be41ce8b3 (patch)
treef6ec0fa4394000541a926bf9f0b16a819219fc8a /var
parent4d62dda17ae9cbbb025a4a7b5536c47bc18a0aa4 (diff)
downloadspack-d98b98aae67246331c1ae0078351c53be41ce8b3.tar.gz
spack-d98b98aae67246331c1ae0078351c53be41ce8b3.tar.bz2
spack-d98b98aae67246331c1ae0078351c53be41ce8b3.tar.xz
spack-d98b98aae67246331c1ae0078351c53be41ce8b3.zip
Package for IRPF90 (#15076)
* Added IRPF90 package * PEP8 * SHA256 * Update var/spack/repos/builtin/packages/py-irpf90/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-irpf90/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-irpf90/package.py b/var/spack/repos/builtin/packages/py-irpf90/package.py
new file mode 100644
index 0000000000..ffab335699
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-irpf90/package.py
@@ -0,0 +1,23 @@
+# 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 PyIrpf90(PythonPackage):
+ """IRPF90 is a Fortran90 preprocessor written in Python for programming
+ using the Implicit Reference to Parameters (IRP) method. It simplifies the
+ development of large fortran codes in the field of scientific high
+ performance computing."""
+
+ homepage = "http://irpf90.ups-tlse.fr"
+ url = "https://pypi.io/packages/source/i/irpf90/irpf90-1.7.7.tar.gz"
+
+ maintainers = ['scemama']
+
+ version('1.7.7', sha256='c6b2eecb9180f1feaab9644bbed806637a4a30a0fad2c4775a985fcc01a99530')
+
+ depends_on('python@2.7.0:2.8.999', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')