summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeoffrey Oxberry <goxberry@gmail.com>2018-02-14 00:42:05 -0800
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2018-02-14 09:42:05 +0100
commit24beadbdd2e5e222f7a9c32c02fdc46059e8ac77 (patch)
treec3b6e1e8a953097d16fd63f06e967769d880c9bf /var
parente5bc6e7056c6be30945dff8c8b624cc3f7716d57 (diff)
downloadspack-24beadbdd2e5e222f7a9c32c02fdc46059e8ac77.tar.gz
spack-24beadbdd2e5e222f7a9c32c02fdc46059e8ac77.tar.bz2
spack-24beadbdd2e5e222f7a9c32c02fdc46059e8ac77.tar.xz
spack-24beadbdd2e5e222f7a9c32c02fdc46059e8ac77.zip
stow: new package (#7235)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/stow/package.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/stow/package.py b/var/spack/repos/builtin/packages/stow/package.py
new file mode 100644
index 0000000000..07480bf066
--- /dev/null
+++ b/var/spack/repos/builtin/packages/stow/package.py
@@ -0,0 +1,46 @@
+##############################################################################
+# 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 Stow(AutotoolsPackage):
+ """GNU Stow: a symlink farm manager
+
+ GNU Stow is a symlink farm manager which takes distinct
+ packages of software and/or data located in separate
+ directories on the filesystem, and makes them appear to be
+ installed in the same place."""
+
+ homepage = "https://www.gnu.org/software/stow/"
+ url = "https://mirrors.kernel.org/gnu/stow/stow-2.2.2.tar.bz2"
+
+ version('2.2.2', 'af1e1de9d973c835bee80c745b5ee849')
+ version('2.2.0', '5bb56592eff9aaf9dfb6c975b3004240')
+ version('2.1.3', '533651c25b29c3630f01d0be33849a7c')
+ version('2.1.2', '0b8154a2165e4004ddc9579e3499af98')
+ version('2.1.1', '882d2490d05723b4b78029c2973775d3')
+ version('2.1.0', 'aa3a2389b6cbf3bd555e15c80a0be6ab')
+
+ depends_on('perl@5.6.1:')