Skip to content

Commit

Permalink
Remove Project where applicable (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwaldrop107 authored Dec 8, 2023
1 parent b09d58e commit b874e72
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:
Common-Merge:
uses: NWChemEx-Project/.github/.github/workflows/common_merge.yaml@master
uses: NWChemEx/.github/.github/workflows/common_merge.yaml@master
with:
doc_target: 'parallelzone_cxx_api'
generate_module_docs: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:
Common-Pull-Request:
uses: NWChemEx-Project/.github/.github/workflows/common_pull_request.yaml@master
uses: NWChemEx/.github/.github/workflows/common_pull_request.yaml@master
with:
config_file: '.github/.licenserc.yaml'
source_dir: 'include src tests'
Expand Down
9 changes: 0 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

################################################################################
#
# The master .gitignore lives at NWChemEx-Project/DeveloperTools. The .gitignore
# file contained in all other NWChemEx-Project repositories is a synchronized
# copy of the master .gitignore. Thus to make changes to the .gitignore file
# please make them to the master .gitignore file.
#
################################################################################

# These are extensions commonly used to denote temporary files
*.tmp
*.autosave
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ project(parallelzone VERSION "${VERSION}" LANGUAGES CXX)
include(FetchContent)
FetchContent_Declare(
nwx_cmake
GIT_REPOSITORY https://github.com/NWChemEx-Project/NWXCMake
GIT_REPOSITORY https://github.com/NWChemEx/NWXCMake
)
FetchContent_MakeAvailable(nwx_cmake)
list(APPEND CMAKE_MODULE_PATH "${nwx_cmake_SOURCE_DIR}/cmake")
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
~ limitations under the License.
-->

[![Actions](https://github.com/NWChemEx-Project/ParallelZone/workflows/C_C++_CI/badge.svg)](https://github.com/NWChemEx-Project/ParallelZone)
[![Actions](https://github.com/NWChemEx/ParallelZone/workflows/C_C++_CI/badge.svg)](https://github.com/NWChemEx/ParallelZone)

<!-- TODO: Uncomment when code coverage works again
[![Codecov](https://codecov.io/github/NWChemEx-Project/ParallelZone/branch/master/graphs/sunburst.svg?token=gdemefzIU7)](https://codecov.io/github/NWChemEx-Project/ParallelZone/branch/master)
[![Codecov](https://codecov.io/github/NWChemEx/ParallelZone/branch/master/graphs/sunburst.svg?token=gdemefzIU7)](https://codecov.io/github/NWChemEx/ParallelZone/branch/master)
-->

# ParallelZone
Expand All @@ -30,7 +30,7 @@ dynamically based on the needs of its consumers (primarily the NWChemEx
project).

A more detailed, user-centric, description of the project can be found
[here](https://nwchemex-project.github.io/ParallelZone/about.html).
[here](https://nwchemex.github.io/ParallelZone/about.html).

# Features

Expand All @@ -44,21 +44,21 @@ ParallelZone relies on CMake for configuring and building, meaning that
installation is usually achieved via a variation on:

```.cmake
git clone https://github.com/NWChemEx-Project/ParallelZone
git clone https://github.com/NWChemEx/ParallelZone
cd ParallelZone
cmake -H. -Bbuild -D...
cmake --build build
cmake --build build --target install
```
More detailed install instructions can be found
[here](https://nwchemex-project.github.io/ParallelZone/install.html).
[here](https://nwchemex.github.io/ParallelZone/install.html).

# Contributing

- [Contributor Guidelines](https://github.com/NWChemEx-Project/.github/blob/1a883d64519f62da7c8ba2b28aabda7c6f196b2c/.github/CONTRIBUTING.md)
- [Contributor License Agreement](https://github.com/NWChemEx-Project/.github/blob/master/.github/CONTRIBUTING.md#contributor-license-agreement-cla)
- [Developer Documentation](https://nwchemex-project.github.io/ParallelZone/developer/index.html)
- [Code of Conduct](https://github.com/NWChemEx-Project/.github/blob/master/.github/CODE_OF_CONDUCT.md)
- [Contributor Guidelines](https://github.com/NWChemEx/.github/blob/1a883d64519f62da7c8ba2b28aabda7c6f196b2c/.github/CONTRIBUTING.md)
- [Contributor License Agreement](https://github.com/NWChemEx/.github/blob/master/.github/CONTRIBUTING.md#contributor-license-agreement-cla)
- [Developer Documentation](https://nwchemex.github.io/ParallelZone/developer/index.html)
- [Code of Conduct](https://github.com/NWChemEx/.github/blob/master/.github/CODE_OF_CONDUCT.md)

# Acknowledgments

Expand Down
11 changes: 0 additions & 11 deletions cmake/build_device.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

################################################################################
#
# The master version of this file lives at
# NWChemEx-Project/DeveloperTools/cmake/build_device.cmake. The version contained in
# all other NWChemEx-Project repositories is a synchronized copy of the master
# version. Any changes made to the non-master version will be lost the next time
# the master version is updated. To make changes please make them to the master
# version.
#
################################################################################

include_guard()

function(build_device)
Expand Down
11 changes: 0 additions & 11 deletions cmake/build_papi.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

################################################################################
#
# The master version of this file lives at
# NWChemEx-Project/DeveloperTools/cmake/build_papi.cmake. The version contained in
# all other NWChemEx-Project repositories is a synchronized copy of the master
# version. Any changes made to the non-master version will be lost the next time
# the master version is updated. To make changes please make them to the master
# version.
#
################################################################################

include_guard()

function(build_papi)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/developer/design/parallel_zone.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ What is the Scope of the ParallelZone?

ParallelZone will ultimately be a C++ library used by most pieces of our
software stack. We also want ParallelZone to be useful to developers/projects
outside the NWChemEx-Project organization, and in turn we want to limit bloat.
outside the NWChemEx organization, and in turn we want to limit bloat.

To that end we limit ParallelZone to low-level, very general C++ operations
focused on parallelism and supporting that parallelism. Notably this excludes
Expand Down
2 changes: 1 addition & 1 deletion docs/source/developer/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interested in developing for, or understanding the internals of ParallelZone.
The documentation in this section is specific to the design and development of
ParallelZone. Since ParallelZone is developed by the NWChemEx organization,
developers may also find the more general `NWChemEx Developer Documentation
<https://nwchemex-project.github.io/.github/>`__ to be useful.
<https://nwchemex.github.io/.github/>`__ to be useful.

.. toctree::
:maxdepth: 2
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ Planned features:
user/index
developer/index

`C++ API <https://nwchemex-project.github.io/ParallelZone/parallelzone_cxx_api/index.html>`_
`C++ API <https://nwchemex.github.io/ParallelZone/parallelzone_cxx_api/index.html>`_
2 changes: 1 addition & 1 deletion docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ In many cases ParallelZone can be installed by:

.. code-block:: console
git clone https://github.com/NWChemEx-Project/ParallelZone
git clone https://github.com/NWChemEx/ParallelZone
cd ParallelZone
cmake -H. -Bbuild -DCMAKE_TOOLCHAIN_FILE=<path/to/toolchain/file> \
-DCMAKE_INSTALL_PREFIX=<where/to/install/parallelzone>
Expand Down

0 comments on commit b874e72

Please sign in to comment.