From 0bdff95246418cd85b5d94e5b8272cf0263c9a3f Mon Sep 17 00:00:00 2001 From: Michael Duda Date: Mon, 14 Feb 2022 17:12:57 -0700 Subject: [PATCH 1/2] Increment version number to 7.3 --- README.md | 2 +- src/core_atmosphere/Registry.xml | 2 +- src/core_init_atmosphere/Registry.xml | 2 +- src/core_landice/Registry.xml | 2 +- src/core_ocean/Registry.xml | 2 +- src/core_seaice/Registry.xml | 2 +- src/core_sw/Registry.xml | 2 +- src/core_test/Registry.xml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3884a9cb0f..819b62c321 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -MPAS-v7.2 +MPAS-v7.3 ==== The Model for Prediction Across Scales (MPAS) is a collaborative project for diff --git a/src/core_atmosphere/Registry.xml b/src/core_atmosphere/Registry.xml index 68fe74c8cd..42f47d5e78 100644 --- a/src/core_atmosphere/Registry.xml +++ b/src/core_atmosphere/Registry.xml @@ -1,5 +1,5 @@ - + diff --git a/src/core_init_atmosphere/Registry.xml b/src/core_init_atmosphere/Registry.xml index 8d80216aaa..8215399415 100644 --- a/src/core_init_atmosphere/Registry.xml +++ b/src/core_init_atmosphere/Registry.xml @@ -1,5 +1,5 @@ - + diff --git a/src/core_landice/Registry.xml b/src/core_landice/Registry.xml index ff1b26a23a..4eb4971c3b 100644 --- a/src/core_landice/Registry.xml +++ b/src/core_landice/Registry.xml @@ -1,5 +1,5 @@ - + diff --git a/src/core_ocean/Registry.xml b/src/core_ocean/Registry.xml index d261ded66f..689775d2f5 100644 --- a/src/core_ocean/Registry.xml +++ b/src/core_ocean/Registry.xml @@ -1,5 +1,5 @@ - + - + - + diff --git a/src/core_test/Registry.xml b/src/core_test/Registry.xml index f9944c7d50..e6f12148ad 100644 --- a/src/core_test/Registry.xml +++ b/src/core_test/Registry.xml @@ -1,5 +1,5 @@ - + From 4fa617c1fde9e546dda1b248ddc494390791678d Mon Sep 17 00:00:00 2001 From: Michael Duda Date: Wed, 23 Mar 2022 21:35:02 +0000 Subject: [PATCH 2/2] Switch from unencrypted Git protocol to HTTPS when obtaining MPAS-Data repo On 15 March 2022, GitHub removed support for the unencrypted Git protocol (i.e., for obtaining repositories with URLs beginning with git://). As part of the MPAS-Atmosphere build process, the checkout_data_files.sh script first tries to obtain the MPAS-Data repository, which contains look-up tables used by physics schemes, using the URL git://github.com/MPAS-Dev/MPAS-Data.git. Doing so results in the messages *** Trying git to obtain WRF physics tables *** Cloning into 'MPAS-Data'... fatal: remote error: The unauthenticated git protocol on port 9418 is no longer supported. Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information. The simple solution is to switch to the use of HTTPS when obtaining the MPAS-Data repository. --- src/core_atmosphere/physics/checkout_data_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core_atmosphere/physics/checkout_data_files.sh b/src/core_atmosphere/physics/checkout_data_files.sh index 7e8ab49bf3..c0b7b92c45 100755 --- a/src/core_atmosphere/physics/checkout_data_files.sh +++ b/src/core_atmosphere/physics/checkout_data_files.sh @@ -73,7 +73,7 @@ fi which git if [ $? -eq 0 ]; then echo "*** Trying git to obtain WRF physics tables ***" - git clone git://github.com/${github_org}/MPAS-Data.git + git clone https://github.com/${github_org}/MPAS-Data.git if [ $? -eq 0 ]; then cd MPAS-Data git checkout v${mpas_vers}