-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from LLNL/develop
Merge of v1.0.0 into master
- Loading branch information
Showing
58 changed files
with
649 additions
and
1,015 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
This work was produced under the auspices of the U.S. Department of | ||
Energy by Lawrence Livermore National Laboratory under Contract | ||
DE-AC52-07NA27344. | ||
|
||
This work was prepared as an account of work sponsored by an agency of | ||
the United States Government. Neither the United States Government nor | ||
Lawrence Livermore National Security, LLC, nor any of their employees | ||
makes any warranty, expressed or implied, or assumes any legal liability | ||
or responsibility for the accuracy, completeness, or usefulness of any | ||
information, apparatus, product, or process disclosed, or represents that | ||
its use would not infringe privately owned rights. | ||
|
||
Reference herein to any specific commercial product, process, or service | ||
by trade name, trademark, manufacturer, or otherwise does not necessarily | ||
constitute or imply its endorsement, recommendation, or favoring by the | ||
United States Government or Lawrence Livermore National Security, LLC. | ||
|
||
The views and opinions of authors expressed herein do not necessarily | ||
state or reflect those of the United States Government or Lawrence | ||
Livermore National Security, LLC, and shall not be used for advertising | ||
or product endorsement purposes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,10 @@ | ||
############################################################################# | ||
# Copyright (c) 2018, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Copyright 2017-2019 Lawrence Livermore National Security, LLC and other | ||
# UMAP Project Developers. See the top-level LICENSE file for details. | ||
# | ||
# Created by Marty McFadden, 'mcfadden8 at llnl dot gov' | ||
# LLNL-CODE-733797 | ||
# | ||
# All rights reserved. | ||
# | ||
# This file is part of UMAP. | ||
# | ||
# For details, see https://github.com/LLNL/umap | ||
# Please also see the COPYRIGHT and LICENSE files for LGPL license. | ||
# SPDX-License-Identifier: LGPL-2.1-only | ||
############################################################################# | ||
|
||
# Set up the language supported for the build environment | ||
set (CMAKE_CXX_STANDARD 11) | ||
set (CMAKE_C_STANDARD 99) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,7 @@ | ||
############################################################################# | ||
# Copyright (c) 2018, Lawrence Livermore National Security, LLC. | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# Copyright 2017-2019 Lawrence Livermore National Security, LLC and other | ||
# UMAP Project Developers. See the top-level LICENSE file for details. | ||
# | ||
# Created by Marty McFadden, 'mcfadden8 at llnl dot gov' | ||
# LLNL-CODE-733797 | ||
# | ||
# All rights reserved. | ||
# | ||
# This file is part of UMAP. | ||
# | ||
# For details, see https://github.com/LLNL/umap | ||
# Please also see the COPYRIGHT and LICENSE files for LGPL license. | ||
# SPDX-License-Identifier: LGPL-2.1-only | ||
############################################################################# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env zsh | ||
############################################################################# | ||
# Copyright 2017-2019 Lawrence Livermore National Security, LLC and other | ||
# UMAP Project Developers. See the top-level LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: LGPL-2.1-only | ||
############################################################################# | ||
|
||
setopt extended_glob | ||
|
||
RED="\033[1;31m" | ||
GREEN="\033[1;32m" | ||
NOCOLOR="\033[0m" | ||
|
||
LIC_CMD=$(which lic) | ||
if [ ! $LIC_CMD ]; then | ||
echo "${RED} [!] This script requires the lic command." | ||
exit 255 | ||
fi | ||
|
||
echo "Applying licenses to files" | ||
|
||
files_no_license=$(grep -L 'This file is part of Umpire.' \ | ||
benchmarks/**/*(^/) \ | ||
cmake/**/*(^/) \ | ||
docs/**/*~*rst(^/)\ | ||
examples/**/*(^/) \ | ||
host-configs/**/*(^/) \ | ||
scripts/**/*(^/) \ | ||
src/**/*~*tpl*(^/) \ | ||
tests/**/*(^/) \ | ||
CMakeLists.txt umpire-config.cmake.in) | ||
|
||
echo $files_no_license | xargs $LIC_CMD -f scripts/umpire-license.txt | ||
|
||
echo "${GREEN} [Ok] License text applied. ${NOCOLOR}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env zsh | ||
############################################################################# | ||
# Copyright 2017-2019 Lawrence Livermore National Security, LLC and other | ||
# UMAP Project Developers. See the top-level LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: LGPL-2.1-only | ||
############################################################################# | ||
|
||
# This is used for the ~*tpl* line to ignore files in bundled tpls | ||
setopt extended_glob | ||
|
||
autoload colors | ||
|
||
RED="\033[1;31m" | ||
GREEN="\033[1;32m" | ||
NOCOLOR="\033[0m" | ||
|
||
files_no_license=$(grep -L 'Lawrence Livermore National Security' \ | ||
cmake/**/*(^/) \ | ||
docs/**/*~*rst(^/)\ | ||
config/config.h.in\ | ||
examples/*(^/) \ | ||
host-configs/**/*(^/) \ | ||
scripts/**/*(^/) \ | ||
src/**/*~*tpl*(^/) \ | ||
tests/**/*~*csv~*xlsx~*sysinfo(^/) \ | ||
tests/CMakeLists.txt \ | ||
CMakeLists.txt) | ||
|
||
if [ $files_no_license ]; then | ||
print "${RED} [!] Some files are missing license text: ${NOCOLOR}" | ||
echo "${files_no_license}" | ||
exit 255 | ||
else | ||
print "${GREEN} [Ok] All files have required license info." | ||
exit 0 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
############################################################################# | ||
# Copyright 2017-2019 Lawrence Livermore National Security, LLC and other | ||
# UMAP Project Developers. See the top-level LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: LGPL-2.1-only | ||
############################################################################# | ||
|
||
TAR_CMD=tar | ||
VERSION=1.0.0 | ||
|
||
git archive --prefix=umap-${VERSION}/ -o umap-${VERSION}.tar HEAD 2> /dev/null | ||
|
||
gzip umap-${VERSION}.tar |
Oops, something went wrong.