From a8a0def6b3dfdc601fbbe0e380b7de3d8b9e8e28 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Fri, 16 Jan 2026 16:50:35 +1100 Subject: [PATCH 01/26] changing over to our forks for CMEPS, CDEPS and CESM_share --- .gitmodules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 2fe70e7..f5c365c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,9 @@ [submodule "CMEPS/CMEPS"] path = CMEPS/CMEPS - url = https://github.com/ESCOMP/CMEPS + url = https://github.com/access-nri/cmeps [submodule "CDEPS/CDEPS"] path = CDEPS/CDEPS - url = https://github.com/ESCOMP/CDEPS + url = https://github.com/access-nri/cdeps [submodule "share/CESM_share"] path = share/CESM_share - url = https://github.com/ESCOMP/CESM_share.git + url = https://github.com/access-nri/cesm_share From dcbe86bb28540d4ef28614a59ae4c1b91eb295d1 Mon Sep 17 00:00:00 2001 From: anton-seaice Date: Thu, 22 Jan 2026 10:40:16 +1100 Subject: [PATCH 02/26] Update the CESM_share 1.1.18 --- share/CESM_share | 2 +- share/CMakeLists.txt | 6 ++++-- share/patches/shr_const_mod.F90.patch | 21 --------------------- share/stubs/mct_mod.F90 | 13 ------------- 4 files changed, 5 insertions(+), 37 deletions(-) delete mode 100644 share/patches/shr_const_mod.F90.patch delete mode 100644 share/stubs/mct_mod.F90 diff --git a/share/CESM_share b/share/CESM_share index b2fa120..1b15cc8 160000 --- a/share/CESM_share +++ b/share/CESM_share @@ -1 +1 @@ -Subproject commit b2fa120301f09323bfd3b7467a9b1fd13cf08ea3 +Subproject commit 1b15cc8542908190ba8caa7df323e035e54fe57d diff --git a/share/CMakeLists.txt b/share/CMakeLists.txt index d69c0eb..e19cdf4 100755 --- a/share/CMakeLists.txt +++ b/share/CMakeLists.txt @@ -27,6 +27,7 @@ target_sources(share PRIVATE CESM_share/src/nuopc_shr_methods.F90 CESM_share/src/shr_abort_mod.F90 CESM_share/src/shr_cal_mod.F90 + CESM_share/src/shr_const_mod.F90 CESM_share/src/shr_file_mod.F90 CESM_share/src/shr_kind_mod.F90 CESM_share/src/shr_log_mod.F90 @@ -44,11 +45,11 @@ target_sources(share PRIVATE CESM_share/src/shr_timer_mod.F90 CESM_share/src/shr_wv_sat_mod.F90 CESM_share/src/water_isotopes/water_isotopes.F90 + CESM_share/src/water_isotopes/shr_wtracers_mod.F90 # The following file is a stub. - stubs/mct_mod.F90 + CESM_share/src/stubs/access3/mct_mod.F90 ) -add_patched_source(share CESM_share/src/shr_const_mod.F90) if(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") # CESM reduces the precision and increases speed for the following file @@ -129,3 +130,4 @@ install(EXPORT Access3Sharetiming_Targets NAMESPACE Access3:: DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/Access3Share ) + diff --git a/share/patches/shr_const_mod.F90.patch b/share/patches/shr_const_mod.F90.patch deleted file mode 100644 index 6d5d57a..0000000 --- a/share/patches/shr_const_mod.F90.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff --git a/src/shr_const_mod.F90 b/src/shr_const_mod.F90 -index 8437190..bd4b687 100644 ---- a/src/shr_const_mod.F90 -+++ b/src/shr_const_mod.F90 -@@ -17,7 +17,7 @@ MODULE shr_const_mod - real(R8),parameter :: SHR_CONST_CDAY = 86400.0_R8 ! sec in calendar day ~ sec - real(R8),parameter :: SHR_CONST_SDAY = 86164.0_R8 ! sec in siderial day ~ sec - real(R8),parameter :: SHR_CONST_OMEGA = 2.0_R8*SHR_CONST_PI/SHR_CONST_SDAY ! earth rot ~ rad/sec -- real(R8),parameter :: SHR_CONST_REARTH = 6.37122e6_R8 ! radius of earth ~ m -+ real(R8),parameter :: SHR_CONST_REARTH = 6.371229e6_R8 ! radius of earth used by UM13 ~ m - real(R8),parameter :: SHR_CONST_G = 9.80616_R8 ! acceleration of gravity ~ m/s^2 - - real(R8),parameter :: SHR_CONST_STEBOL = 5.67e-8_R8 ! Stefan-Boltzmann constant ~ W/m^2/K^4 -@@ -87,7 +87,6 @@ contains - !----------------------------------------------------------------------------- - - elemental logical function shr_const_isspval(rval) --!$omp declare simd(shr_const_isspval) - - real(r8), intent(in) :: rval - diff --git a/share/stubs/mct_mod.F90 b/share/stubs/mct_mod.F90 deleted file mode 100644 index 4591721..0000000 --- a/share/stubs/mct_mod.F90 +++ /dev/null @@ -1,13 +0,0 @@ -module m_MCTWorld - implicit none - -contains - - subroutine init(ncomps, globalcomm, mycomms, myids) - integer, intent(in) :: ncomps - integer, intent(in) :: globalcomm - integer, dimension(:), pointer :: mycomms - integer, dimension(:), pointer :: myids - end subroutine init - -end module m_MCTWorld From 49003b59127186da24b810c12d841a8e52be63b0 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Mon, 26 Jan 2026 14:52:43 +1100 Subject: [PATCH 03/26] first attempt at reverting the patch and extra file change to cdeps (but upgrading the cdeps version) --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index debc545..85ef371 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit debc5453e75195fac8bc418318322a1a63402d16 +Subproject commit 85ef3711966e305df229c40685dcb550575b24f6 From b4ba1059e8824d1e60ff71c593131161dc547fdf Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Mon, 26 Jan 2026 17:06:53 +1100 Subject: [PATCH 04/26] another attempt at reverting the patch and extra file change to cdeps (but now removing the cdeps upgrade) --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 85ef371..debc545 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 85ef3711966e305df229c40685dcb550575b24f6 +Subproject commit debc5453e75195fac8bc418318322a1a63402d16 From 0e4091a73edb78031c0ed52223fd4308bd63e430 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 13:30:43 +1100 Subject: [PATCH 05/26] testing CDEPS commit 772409097978b5d140c828a5c1297908972e8bab --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index debc545..7724090 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit debc5453e75195fac8bc418318322a1a63402d16 +Subproject commit 772409097978b5d140c828a5c1297908972e8bab From ae17f237e1977f79ff6f104f71a6c4a99210fe6a Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:00 +1100 Subject: [PATCH 06/26] testing build of CDEPS commit 0595593400cae8dd65f50a13d9167fb248be9dfb --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 7724090..0595593 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 772409097978b5d140c828a5c1297908972e8bab +Subproject commit 0595593400cae8dd65f50a13d9167fb248be9dfb From 00af8029b7843b6686fd46b3c09bc9d656d1165b Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:04 +1100 Subject: [PATCH 07/26] testing build of CDEPS commit 2400bd594803f4359df74022a2807d75cf5eed10 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 0595593..2400bd5 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 0595593400cae8dd65f50a13d9167fb248be9dfb +Subproject commit 2400bd594803f4359df74022a2807d75cf5eed10 From 718091d7f5998cba799fb29f33c99b00babf1ea1 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:07 +1100 Subject: [PATCH 08/26] testing build of CDEPS commit 0e5c95588678fe813da249def51920ad3b4fa33b --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 2400bd5..0e5c955 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 2400bd594803f4359df74022a2807d75cf5eed10 +Subproject commit 0e5c95588678fe813da249def51920ad3b4fa33b From bc1ec76bfaae6f61271e13e5cb6d57dbe76f0e4f Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:11 +1100 Subject: [PATCH 09/26] testing build of CDEPS commit 293774652f41d5daf5614135fc41b676e8bc59d8 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 0e5c955..2937746 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 0e5c95588678fe813da249def51920ad3b4fa33b +Subproject commit 293774652f41d5daf5614135fc41b676e8bc59d8 From 124294ba8393895775078b14ac5899554a880a61 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:14 +1100 Subject: [PATCH 10/26] testing build of CDEPS commit 7e51a85aa2f4a645ca6795ff63cd3eaa54e85453 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 2937746..7e51a85 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 293774652f41d5daf5614135fc41b676e8bc59d8 +Subproject commit 7e51a85aa2f4a645ca6795ff63cd3eaa54e85453 From 727f429b5c44447142bf0d5e1a5505ba6e82be4c Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:18 +1100 Subject: [PATCH 11/26] testing build of CDEPS commit 8e629741667ea4dd1416d89e69bb385bc85ae82e --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 7e51a85..8e62974 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 7e51a85aa2f4a645ca6795ff63cd3eaa54e85453 +Subproject commit 8e629741667ea4dd1416d89e69bb385bc85ae82e From efc334afdbc698d281f14182d73b6b5cb2605236 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:21 +1100 Subject: [PATCH 12/26] testing build of CDEPS commit 87ed584beaf11c0135fcc0c3c84df3d906577344 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 8e62974..87ed584 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 8e629741667ea4dd1416d89e69bb385bc85ae82e +Subproject commit 87ed584beaf11c0135fcc0c3c84df3d906577344 From fa689c8ca00b10404ee6ef198348db680b29d0bb Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:25 +1100 Subject: [PATCH 13/26] testing build of CDEPS commit a2ffcb754a41c9e059eb9e9d2e7cd27ab6a5883d --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 87ed584..a2ffcb7 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 87ed584beaf11c0135fcc0c3c84df3d906577344 +Subproject commit a2ffcb754a41c9e059eb9e9d2e7cd27ab6a5883d From 48632c2aefd7b0a8561ca91908cb242921da83ba Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:28 +1100 Subject: [PATCH 14/26] testing build of CDEPS commit 7d93a2ef3243e054e07151b81a67829385bcc82c --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index a2ffcb7..7d93a2e 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit a2ffcb754a41c9e059eb9e9d2e7cd27ab6a5883d +Subproject commit 7d93a2ef3243e054e07151b81a67829385bcc82c From 9f3a1e32771b153fcab696d365e5ad3fcc8c7c5b Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:34 +1100 Subject: [PATCH 15/26] testing build of CDEPS commit 05949dda698e5feee92fba40af1273a42b9498d8 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 7d93a2e..05949dd 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 7d93a2ef3243e054e07151b81a67829385bcc82c +Subproject commit 05949dda698e5feee92fba40af1273a42b9498d8 From e615f9e43b9ab449778cb49a2631f84d22ce25a1 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:39 +1100 Subject: [PATCH 16/26] testing build of CDEPS commit a95f92f6c0979c20681a29a479f2a776c49bc079 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 05949dd..a95f92f 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 05949dda698e5feee92fba40af1273a42b9498d8 +Subproject commit a95f92f6c0979c20681a29a479f2a776c49bc079 From 3036294e041f55eafe43a96e628e99824e2a51d4 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:44 +1100 Subject: [PATCH 17/26] testing build of CDEPS commit d6a74c252db5e0cee1d00bfc091d26023bb9832a --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index a95f92f..d6a74c2 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit a95f92f6c0979c20681a29a479f2a776c49bc079 +Subproject commit d6a74c252db5e0cee1d00bfc091d26023bb9832a From a8d38ae1be6ab84a3d381a7d8bfe25dcc3bb5db2 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:48 +1100 Subject: [PATCH 18/26] testing build of CDEPS commit d476c0338e5d050434c1b7044962efe9daf13cc5 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index d6a74c2..d476c03 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit d6a74c252db5e0cee1d00bfc091d26023bb9832a +Subproject commit d476c0338e5d050434c1b7044962efe9daf13cc5 From 876c3512db4057efb4360ded19e85afab942de27 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:53 +1100 Subject: [PATCH 19/26] testing build of CDEPS commit 69ca579c28d82408511054ec9a0fcc53a29daa3f --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index d476c03..69ca579 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit d476c0338e5d050434c1b7044962efe9daf13cc5 +Subproject commit 69ca579c28d82408511054ec9a0fcc53a29daa3f From e6f1aadbf34ae34fc826206261d8d8747fa22e9a Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:05:58 +1100 Subject: [PATCH 20/26] testing build of CDEPS commit bdd4317b47c0fc27d7dac468212f8a6c34c53d8c --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 69ca579..bdd4317 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 69ca579c28d82408511054ec9a0fcc53a29daa3f +Subproject commit bdd4317b47c0fc27d7dac468212f8a6c34c53d8c From 9614fde96d9e1bda5f2693b83452344962de085f Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:06:04 +1100 Subject: [PATCH 21/26] testing build of CDEPS commit 069321478b2c8733198f0c7e3383fad0a459a3b5 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index bdd4317..0693214 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit bdd4317b47c0fc27d7dac468212f8a6c34c53d8c +Subproject commit 069321478b2c8733198f0c7e3383fad0a459a3b5 From 6087112e41ce3bb9212e9af804194e1850794e18 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:06:10 +1100 Subject: [PATCH 22/26] testing build of CDEPS commit 3d97bac8ed37de52b4e87256d71b7c8ea20e5ef5 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 0693214..3d97bac 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 069321478b2c8733198f0c7e3383fad0a459a3b5 +Subproject commit 3d97bac8ed37de52b4e87256d71b7c8ea20e5ef5 From 890f660f54bf7bb37a8ded416efb8939946a75d6 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:06:15 +1100 Subject: [PATCH 23/26] testing build of CDEPS commit 6381d84625754001e3c229585d341c14fce046be --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 3d97bac..6381d84 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 3d97bac8ed37de52b4e87256d71b7c8ea20e5ef5 +Subproject commit 6381d84625754001e3c229585d341c14fce046be From a6cd38395c354bd96bbc11c2d9d51e8bd28a1a48 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:06:21 +1100 Subject: [PATCH 24/26] testing build of CDEPS commit 4877267eb7e87640d33fbf3ee1a0324644b60712 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 6381d84..4877267 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 6381d84625754001e3c229585d341c14fce046be +Subproject commit 4877267eb7e87640d33fbf3ee1a0324644b60712 From 6a42b9e2b6cc52965e4a13af65781e76acb56baf Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:06:26 +1100 Subject: [PATCH 25/26] testing build of CDEPS commit 410ce304ee485207dfa176c6b6d5449ed1978d13 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 4877267..410ce30 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 4877267eb7e87640d33fbf3ee1a0324644b60712 +Subproject commit 410ce304ee485207dfa176c6b6d5449ed1978d13 From bdc731e635340a236e201c1526e63de3f12ff959 Mon Sep 17 00:00:00 2001 From: Christopher Bull <5499680+chrisb13@users.noreply.github.com> Date: Tue, 27 Jan 2026 14:06:32 +1100 Subject: [PATCH 26/26] testing build of CDEPS commit 8a1b5a4c26780ea3e07c75740e0a6e3bd1776205 --- CDEPS/CDEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS/CDEPS b/CDEPS/CDEPS index 410ce30..8a1b5a4 160000 --- a/CDEPS/CDEPS +++ b/CDEPS/CDEPS @@ -1 +1 @@ -Subproject commit 410ce304ee485207dfa176c6b6d5449ed1978d13 +Subproject commit 8a1b5a4c26780ea3e07c75740e0a6e3bd1776205