summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/yorick/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/yorick/package.py')
-rw-r--r--var/spack/repos/builtin/packages/yorick/package.py47
1 files changed, 8 insertions, 39 deletions
diff --git a/var/spack/repos/builtin/packages/yorick/package.py b/var/spack/repos/builtin/packages/yorick/package.py
index c30f9ca4ed..45f767a7ba 100644
--- a/var/spack/repos/builtin/packages/yorick/package.py
+++ b/var/spack/repos/builtin/packages/yorick/package.py
@@ -1,31 +1,10 @@
-##############################################################################
-# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
-# Produced at the Lawrence Livermore National Laboratory.
+# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
-# 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
-##############################################################################
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
from spack import *
import os
-import shutil
-import glob
class Yorick(Package):
@@ -40,12 +19,11 @@ class Yorick(Package):
homepage = "http://dhmunro.github.io/yorick-doc/"
url = "https://github.com/dhmunro/yorick/archive/y_2_2_04.tar.gz"
+ git = "https://github.com/dhmunro/yorick.git"
+ version('master', branch='master')
version('2.2.04', '1b5b0da6ad81b2d9dba64d991ec17939')
- version('master', branch='master',
- git='https://github.com/dhmunro/yorick.git')
- version('f90-plugin', branch='f90-plugin',
- git='https://github.com/trmwzm/yorick.git')
+ version('f90-plugin', branch='f90-plugin')
variant('X', default=False, description='Enable X11 support')
@@ -75,13 +53,4 @@ class Yorick(Package):
make()
make("install")
- try:
- os.makedirs(prefix)
- except OSError:
- pass
- os.chdir("relocate")
- for f in glob.glob('*'):
- if os.path.isdir(f):
- shutil.copytree(f, os.path.join(prefix, f))
- else:
- shutil.copy2(f, os.path.join(prefix, f))
+ install_tree('relocate', prefix)