Skip to content

Commit ac2827b

Browse files
committed
ENH: Update references to Cleaver repository to account for project rename
The table describes the renaming of the Cleaver 1 and Cleaver 2 GitHub repositories: | | From July 2013 to April 2023 | Since April 2023 | |-------------|------------------------------|-------------------------| | Cleaver 1.x | `SCIInstitute/Cleaver` | `SCIInstitute/Cleaver1` | | Cleaver 2.x | `SCIInstitute/Cleaver2` | `SCIInstitute/Cleaver` | Source: https://github.com/SCIInstitute/Cleaver1#readme
1 parent 2e90127 commit ac2827b

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*.app
3333

3434
# Cleaver Repository
35-
Cleaver2
35+
Cleaver
3636
examples/.ipynb_checkpoints/
3737
examples/triangle_mesh.vtk
3838

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
2626
endif()
2727
set(_itk_build_shared ${BUILD_SHARED_LIBS})
2828
set(BUILD_SHARED_LIBS OFF)
29-
set(cleaver_GIT_REPOSITORY "https://github.com/SCIInstitute/Cleaver2")
29+
set(cleaver_GIT_REPOSITORY "https://github.com/SCIInstitute/Cleaver")
3030
set(cleaver_GIT_TAG "02ba7b5fda5578b348a1dd54fb1660ef6cc7faf2")
31-
# Add https://github.com/SCIInstitute/Cleaver2/pull/122
31+
# Add https://github.com/SCIInstitute/Cleaver/pull/122
3232
set(cleaver_GIT_REPOSITORY "https://github.com/thewtex/Cleaver2")
3333
set(cleaver_GIT_TAG "2a4d7406b760e7af9f3a0d1f97d6168ddde7d1c7")
3434
FetchContent_Declare(
@@ -40,8 +40,8 @@ if(NOT cleaver_lib_POPULATED)
4040
FetchContent_Populate(cleaver_lib)
4141
add_subdirectory(${cleaver_lib_SOURCE_DIR}/src ${cleaver_lib_BINARY_DIR})
4242
endif()
43-
# Debugging / development, symlink Cleaver2 into the source tree
44-
#add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/Cleaver2/src)
43+
# Debugging / development, symlink Cleaver into the source tree
44+
#add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/Cleaver/src)
4545
set(BUILD_TESTING ${_itk_build_testing} CACHE BOOL "Build testing code" FORCE)
4646
set(BUILD_SHARED_LIBS ${_itk_build_shared})
4747

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Overview
2929

3030
An ITK module to wrap Cleaver functionality for MultiMaterial Tetrahedral Meshing.
3131

32-
`Cleaver <https://github.com/SCIInstitute/Cleaver2/releases>`_ is a free multimaterial tetrahedral meshing tool developed by the NIH Center for Integrative Biomedical Computing at the University of Utah Scientific Computing and Imaging (SCI) Institute.
32+
`Cleaver <https://github.com/SCIInstitute/Cleaver/releases>`_ is a free multimaterial tetrahedral meshing tool developed by the NIH Center for Integrative Biomedical Computing at the University of Utah Scientific Computing and Imaging (SCI) Institute.
3333

3434
Acknowledgments
3535
---------------

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"build:emscripten:debug": "itk-wasm -i itkwasm/emscripten:20230328-71e6501e-debug build -- -DCMAKE_BUILD_TYPE:STRING=Debug",
1010
"build:wasi": "itk-wasm -i itkwasm/wasi:20230328-71e6501e build",
1111
"build:wasi:debug": "itk-wasm -i itkwasm/wasi:20230328-71e6501e-debug build -- -DCMAKE_BUILD_TYPE:STRING=Debug",
12-
"bindgen:typescript": "itk-wasm -b emscripten-build bindgen --output-dir wasm/typescript --package-name @itk-wasm/cleaver --package-description \"The Cleaver multimaterial tetrahedral meshing tool.\" --repository 'https://github.com/SCIInstitute/Cleaver2'",
12+
"bindgen:typescript": "itk-wasm -b emscripten-build bindgen --output-dir wasm/typescript --package-name @itk-wasm/cleaver --package-description \"The Cleaver multimaterial tetrahedral meshing tool.\" --repository 'https://github.com/SCIInstitute/Cleaver'",
1313
"test": "npm run test:wasi",
1414
"test:wasi": "itk-wasm test --test-dir wasm",
1515
"clean": "git clean -fdx -e node_modules"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
package_dir={'itk': 'itk'},
2020
download_url=r'https://github.com/SCIInstitute/ITKCleaver',
2121
description=r'An ITK interface to the Cleaver multi-material tetrahedral meshing library',
22-
long_description='Cleaver2 ( https://github.com/SCIInstitute/Cleaver2/releases) is a free multimaterial tetrahedral meshing tool developed by the NIH Center for Integrative Biomedical Computing at the University of Utah Scientific Computing and Imaging (SCI) Institute.',
22+
long_description='Cleaver ( https://github.com/SCIInstitute/Cleaver/releases) is a free multimaterial tetrahedral meshing tool developed by the NIH Center for Integrative Biomedical Computing at the University of Utah Scientific Computing and Imaging (SCI) Institute.',
2323
classifiers=[
2424
"License :: OSI Approved :: MIT License",
2525
"Programming Language :: Python :: 3",

wasm/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@
6666
},
6767
"repository": {
6868
"type": "git",
69-
"url": "https://github.com/SCIInstitute/Cleaver2"
69+
"url": "https://github.com/SCIInstitute/Cleaver"
7070
}
7171
}

0 commit comments

Comments
 (0)