summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2018-03-22 13:49:07 -0700
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2018-03-22 21:49:07 +0100
commit8d4ef999d7e303df58ddc201b3d9328ac9d668cc (patch)
treea9cd46844ea4a1dbbcf9666cb1bab8b76c7c02de /var
parentbe3f08d0dee19e41f595b7145b9021700d3f9972 (diff)
downloadspack-8d4ef999d7e303df58ddc201b3d9328ac9d668cc.tar.gz
spack-8d4ef999d7e303df58ddc201b3d9328ac9d668cc.tar.bz2
spack-8d4ef999d7e303df58ddc201b3d9328ac9d668cc.tar.xz
spack-8d4ef999d7e303df58ddc201b3d9328ac9d668cc.zip
package/py-pyutilib: create new package (#7555)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pyutilib/package.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyutilib/package.py b/var/spack/repos/builtin/packages/py-pyutilib/package.py
new file mode 100644
index 0000000000..14e797151a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pyutilib/package.py
@@ -0,0 +1,51 @@
+##############################################################################
+# 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 PyPyutilib(PythonPackage):
+ """The PyUtilib project supports a collection of Python utilities,
+ including a well-developed component architecture and extensions to the
+ PyUnit testing framework. PyUtilib has been developed to support several
+ Python-centric projects, especially Pyomo. PyUtilib is available under the
+ BSD License."""
+
+ homepage = "https://github.com/PyUtilib/pyutilib"
+ url = "https://github.com/PyUtilib/pyutilib/archive/5.5.1.tar.gz"
+
+ version('5.6.2', '60c6ea5083e512211984347ffeca19d2')
+ version('5.6.1', 'ddc7e896304b6fabe4d21eb5fdec386e')
+ version('5.6', '5bfcdbf118264f1a1b8c6cac9dea8bca')
+ version('5.5.1', 'c4990cbced152d879812d109aaa857ff')
+ version('5.5', '7940563bf951332cf836f418d67b2134')
+ version('5.4.1', 'b34b5798757e4ab73868b7655c5c8f8a')
+ version('5.4', '9410e5a76885412310b03074d2f97e55')
+ version('5.3.5', '85e41e65f24f6711261229bcde6eb825')
+ version('5.3.4', '4fe1a8387c027f64b62ca99424275368')
+ version('5.3.3', '27a713ca8d49714244646e1ce38778b9')
+
+ depends_on('py-nose', type=('build', 'run'))
+ depends_on('py-six', type=('build', 'run'))