Skip to content

Commit

Permalink
Update LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
tkphd committed Sep 19, 2023
1 parent 3effefb commit b962b7c
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 31 deletions.
27 changes: 0 additions & 27 deletions LICENSE.md

This file was deleted.

31 changes: 31 additions & 0 deletions LICENSE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
************
Terms of Use
************

NIST-developed software is provided by NIST as a public service. You may use,
copy, and distribute copies of the software in any medium, provided that you
keep intact this entire notice. You may improve, modify, and create derivative
works of the software or any portion of the software, and you may copy and
distribute such modifications or works. Modified works should carry a notice
stating that you changed the software and should note the date and nature of
any such change. Please explicitly acknowledge the National Institute of
Standards and Technology as the source of the software.

NIST-developed software is expressly provided "AS IS." NIST MAKES NO WARRANTY
OF ANY KIND, EXPRESS, IMPLIED, IN FACT, OR ARISING BY OPERATION OF LAW,
INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND DATA ACCURACY. NIST NEITHER
REPRESENTS NOR WARRANTS THAT THE OPERATION OF THE SOFTWARE WILL BE
UNINTERRUPTED OR ERROR-FREE, OR THAT ANY DEFECTS WILL BE CORRECTED. NIST DOES
NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OF THE SOFTWARE OR
THE RESULTS THEREOF, INCLUDING BUT NOT LIMITED TO THE CORRECTNESS, ACCURACY,
RELIABILITY, OR USEFULNESS OF THE SOFTWARE.

You are solely responsible for determining the appropriateness of using and
distributing the software and you assume all risks associated with its use,
including but not limited to the risks and costs of program errors, compliance
with applicable laws, damage to or loss of data, programs or equipment, and the
unavailability or interruption of operation. This software is not intended to
be used in any situation where a failure could cause risk of injury or damage
to property. The software developed by NIST employees is not subject to
copyright protection within the United States.
4 changes: 2 additions & 2 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ _build/latex/hiperc.tex:
_build/latex/hiperc.pdf: _build/latex/hiperc.tex
latexmk -cd $<

_build/html/index.html: _build/latex/hiperc.tex
_build/html/index.html: _build/latex/hiperc.pdf
sphinx-build -b html . _build

.PHONY: clean html pdf
clean:
rm -rf _build _static html latex rst
rm -rf _build rst
html: _build/html/index.html
pdf: _build/latex/hiperc.pdf
10 changes: 8 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,13 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "README.md"]
exclude_patterns = [
".github",
"_build",
"Thumbs.db",
".DS_Store",
"README.md"
]

# The reST default role (used for this markup: `text`) to use for all documents.
default_role = "cpp:any"
Expand Down Expand Up @@ -239,7 +245,7 @@ def setup(app):

# -- Options for Breathe output ---------------------------------------------

breathe_projects = {"HiPerC": "xml"}
breathe_projects = {"HiPerC": "_build/xml"}

breathe_default_project = "HiPerC"

Expand Down

0 comments on commit b962b7c

Please sign in to comment.