From df3bc3906d5a509e5b338a51d7fd362521845f4b Mon Sep 17 00:00:00 2001 From: Jim Galarowicz Date: Thu, 10 Aug 2017 16:08:32 -0700 Subject: Update Krell products: Add new OpenSpeedShop gui package based on qt4/qt5 gui toolkit. (#5056) * Update the krell institute products to use the latest features of spack for building on cluster platforms. * Address travis error messages and resubmit the pull request. * Update the contents of openspeedshop package.py so it passes the flake8 tests. * Fix flake8 error-whitespack issue in mrnet package.py file. * Add updates based on spack reviewer feedback. * More fixes based on comments from reviewers. Switch using extend to using append, remove additional setting of PATH and LD_LIBRARY_PATH that should not be required due to RPATH. * More review related changes. Update MPIOption.append lines and take out xercesc references. * Create a base options function for common openspeedshop base cmake options to reduce redundencies. * Add libxml2+python depends on to get around issues with the libxml2 package file. * Using boost over 1.60.0 causes compile errors. This is a known boost bug. Also, dyninst-9.2.0 is set to be the vesrion of dyninst to use with OSS, as of now. The newer version fails to build. * Fix bad syntax in specifying the boost version range. * Update the version numbers for the krell institute components and tools: cbtf and openspeedshop. * Do not build glib for qt3, it is not needed and causes build problems at this time anyway. * A fix was added for setting LD_LIBRARY_PATH in the qt3 build, but if LD_LIBRARY_PATH is not set the qt build fails. So so check and set LD_LIBRARY_PATH if not set, update if it is set. * Update the fix for qt3 build by setting LD_LIBRARY_PATH instead of checking for whether it is set or not per Adams comment that spack clears LD_LIBRARY_PATH. * A fix was added for setting LD_LIBRARY_PATH in the qt3 build, but if LD_LIBRARY_PATH is not set the qt build fails. So so check and set LD_LIBRARY_PATH if not set, update if it is set. * Trim comments to fit more concisely. * Fix tabs versus spaces and swap if and else clause check from a negative to a positive check. * Add new OpenSpeedShop gui package based on qt4/qt5 gui toolkit. * Fix flake8 errors. * Fix flake8 errors. --- .../builtin/packages/cbtf-argonavis-gui/package.py | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 var/spack/repos/builtin/packages/cbtf-argonavis-gui/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/cbtf-argonavis-gui/package.py b/var/spack/repos/builtin/packages/cbtf-argonavis-gui/package.py new file mode 100644 index 0000000000..83a44592ef --- /dev/null +++ b/var/spack/repos/builtin/packages/cbtf-argonavis-gui/package.py @@ -0,0 +1,97 @@ +############################################################################## +# 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/llnl/spack +# Please also see the LICENSE file 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 +############################################################################## +########################################################################## +# Copyright (c) 2015-2017 Krell Institute. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# +# 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 GNU General Public License for more +# details. +# +# You should have received a copy of the GNU 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 CbtfArgonavisGui(QMakePackage): + """CBTF Argo Navis GUI project contains the GUI that views OpenSpeedShop + performance information by loading in the Sqlite database files. + """ + homepage = "http://sourceforge.net/p/cbtf/wiki/Home/" + + version('0.8.1', branch='master', + git='https://github.com/OpenSpeedShop/cbtf-argonavis-gui.git') + + depends_on("cmake@3.0.2", type='build') + depends_on("openspeedshop+cuda gui='qt4'") + depends_on('qt@4.8.6:') + depends_on("boost@1.50.0:1.59.0") + depends_on("cbtf") + depends_on("cbtf-krell") + depends_on("cbtf-argonavis") + depends_on("cuda") + depends_on("mrnet@5.0.1:+lwthreads") + depends_on("xerces-c@3.1.1:") + depends_on("graphviz") + depends_on("qtgraph") + + parallel = False + + def setup_environment(self, spack_env, run_env): + """Set up the compile and runtime environments for a package.""" + spack_env.set('BOOSTROOT', self.spec['boost'].prefix) + spack_env.set('CBTF_ROOT', self.spec['cbtf'].prefix) + spack_env.set('CBTF_KRELL_ROOT', self.spec['cbtf-krell'].prefix) + spack_env.set('CBTF_ARGONAVIS_ROOT', + self.spec['cbtf-argonavis'].prefix) + spack_env.set('OSS_CBTF_ROOT', self.spec['openspeedshop'].prefix) + spack_env.set('GRAPHVIZ_ROOT', self.spec['graphviz'].prefix) + spack_env.set('QTGRAPHLIB_ROOT', self.spec['qtgraph'].prefix) + spack_env.set('KRELL_ROOT_MRNET', self.spec['mrnet'].prefix) + spack_env.set('KRELL_ROOT_XERCES', self.spec['xerces-c'].prefix) + spack_env.set('INSTALL_ROOT', self.spec.prefix) + + # The implementor of qtgraph has set up the library and include + # paths in a non-conventional way. We reflect that here. + run_env.prepend_path( + 'LD_LIBRARY_PATH', join_path( + self.spec['qtgraph'].prefix.lib64, + '{0}'.format(self.spec['qt'].version.up_to(3)))) + # The openspeedshop libraries are needed to actually load the + # performance information into the GUI. + run_env.prepend_path( + 'LD_LIBRARY_PATH', self.spec['openspeedshop'].prefix.lib64) + + def qmake_args(self): + options = ['-o', 'Makefile', 'openss-gui.pro'] + return options -- cgit v1.2.3-70-g09d2