summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/dataspaces/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/dataspaces/package.py')
-rw-r--r--var/spack/repos/builtin/packages/dataspaces/package.py35
1 files changed, 9 insertions, 26 deletions
diff --git a/var/spack/repos/builtin/packages/dataspaces/package.py b/var/spack/repos/builtin/packages/dataspaces/package.py
index 37121c2b47..552d0a0219 100644
--- a/var/spack/repos/builtin/packages/dataspaces/package.py
+++ b/var/spack/repos/builtin/packages/dataspaces/package.py
@@ -1,28 +1,11 @@
-##############################################################################
-# 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 LICENSE file for our notice and the LGPL.
+# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
-# 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
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
##############################################################################
+# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
+
from spack import *
import six
@@ -41,9 +24,9 @@ class Dataspaces(AutotoolsPackage):
homepage = "http://www.dataspaces.org"
url = "http://personal.cac.rutgers.edu/TASSL/projects/data/downloads/dataspaces-1.6.2.tar.gz"
+ git = "https://github.com/melrom/dataspaces.git"
- version('develop', git='https://github.com/melrom/dataspaces.git',
- branch='master')
+ version('develop', branch='master')
version('1.6.2', '73caa4920b6f2c0c6d6cb87640ff04be')
variant('dimes',
@@ -70,7 +53,7 @@ class Dataspaces(AutotoolsPackage):
depends_on('libtool', type='build')
depends_on('mpi', when='+mpi')
- def autoreconf(spec, prefix, self):
+ def autoreconf(self, spec, prefix):
bash = which('bash')
bash('./autogen.sh')