summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric <erimar77@users.noreply.github.com>2018-01-31 09:52:34 -0600
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2018-01-31 16:52:34 +0100
commit60cc0b0b903a37612025459eb4952d7568958355 (patch)
tree59e8326dfce2a37334dfdca9912c6039a25d986a
parentcb5919b98138a9273237fe41c0d837b29bacf286 (diff)
downloadspack-60cc0b0b903a37612025459eb4952d7568958355.tar.gz
spack-60cc0b0b903a37612025459eb4952d7568958355.tar.bz2
spack-60cc0b0b903a37612025459eb4952d7568958355.tar.xz
spack-60cc0b0b903a37612025459eb4952d7568958355.zip
py-setuptools-git: Create new package (#7131)
-rw-r--r--var/spack/repos/builtin/packages/py-setuptools-git/package.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-setuptools-git/package.py b/var/spack/repos/builtin/packages/py-setuptools-git/package.py
new file mode 100644
index 0000000000..232eb774f5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-setuptools-git/package.py
@@ -0,0 +1,37 @@
+##############################################################################
+# 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 PySetuptoolsGit(PythonPackage):
+ """Setuptools revision control system plugin for Git"""
+
+ homepage = "https://pypi.python.org/pypi/setuptools-git"
+ url = "https://pypi.io/packages/source/s/setuptools-git/setuptools-git-1.2.tar.gz"
+
+ version('1.2', '40b2ef7687a384ea144503c2e5bc67e2')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('git')