Skip to content

Commit e64d68c

Browse files
committed
update HDF5 Git url (GitHub)
1 parent 8e3dfd2 commit e64d68c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ endif()
66

77
project(h5fortran
88
LANGUAGES C Fortran
9-
VERSION 3.3.2
9+
VERSION 3.3.3
1010
DESCRIPTION "thin, light object-oriented HDF5 Fortran interface"
1111
HOMEPAGE_URL https://github.com/geospace-code/h5fortran)
1212

cmake/build_hdf5.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if(HDF5OK)
6262
add_custom_command(OUTPUT ${HDF5_LIBRARIES})
6363
else()
6464
ExternalProject_Add(HDF5proj
65-
GIT_REPOSITORY https://bitbucket.hdfgroup.org/scm/hdffv/hdf5.git
65+
GIT_REPOSITORY https://github.com/HDFGroup/hdf5.git
6666
GIT_TAG hdf5_1_10_7
6767
GIT_SHALLOW true
6868
# URL https://hdf-wordpress-1.s3.amazonaws.com/wp-content/uploads/manual/HDF5/HDF5_1_12_0/source/CMake-hdf5-1.12.0.tar.gz

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('h5fortran', 'fortran',
22
meson_version : '>=0.52.0',
3-
version : '3.3.2',
3+
version : '3.3.3',
44
default_options : ['default_library=static', 'buildtype=release', 'warning_level=3'])
55

66
subdir('meson')

scripts/build_hdf5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def hdf5(dirs: T.Dict[str, Path], env: T.Mapping[str, str]):
7272
install_dir = dirs["prefix"] / name
7373
source_dir = dirs["workdir"] / name
7474
build_dir = source_dir / BUILDDIR
75-
git_url = "https://bitbucket.hdfgroup.org/scm/hdffv/hdf5.git"
75+
git_url = "https://github.com/HDFGroup/hdf5.git"
7676

7777
git_download(source_dir, git_url, HDF5_TAG)
7878

0 commit comments

Comments
 (0)