From 843f23e394ed1d29c808bcec33ba51c53f8b459b Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Mon, 25 Mar 2024 16:22:23 -0400 Subject: [PATCH] Extract GEOSldas_GridComp into new repo This is a work-in-progress PR for extracting out the `GEOSldas_GridComp` into its own components (for work with @saraqzhang and @rtodling in integrating LDAS into the ADAS). Using RepoExtractor, the repo was extracted with: ``` ./extract_repo.bash -r "GEOSldas" -d "GEOSldas_GridComp" --newrepo "GEOSldas_GridComp" --develop --create-repo --push ``` After that these branches were also pushed to the new repo: * `release/MAPL-v3` * `BRIDGE` * `feature/wjiang/add_landice` * `feature/stefanocasirati/irrigation` --- components.yaml | 8 +++++++- src/Components/.gitignore | 3 +++ src/Components/CMakeLists.txt | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 src/Components/.gitignore diff --git a/components.yaml b/components.yaml index 36d4d1e6..35f02de8 100644 --- a/components.yaml +++ b/components.yaml @@ -46,8 +46,14 @@ MAPL: tag: v2.44.1 develop: develop +GEOSldas_GridComp: + local: ./src/Components/@GEOSldas_GridComp + remote: ../GEOSldas_GridComp.git + branch: develop + develop: develop + GEOSgcm_GridComp: - local: ./src/Components/GEOSldas_GridComp/@GEOSgcm_GridComp + local: ./src/Components/@GEOSldas_GridComp/@GEOSgcm_GridComp remote: ../GEOSgcm_GridComp.git branch: develop sparse: ./config/GEOSgcm_GridComp_ldas.sparse diff --git a/src/Components/.gitignore b/src/Components/.gitignore new file mode 100644 index 00000000..afe16bcd --- /dev/null +++ b/src/Components/.gitignore @@ -0,0 +1,3 @@ +/@GEOSldas_GridComp +/GEOSldas_GridComp +/GEOSldas_GridComp@ diff --git a/src/Components/CMakeLists.txt b/src/Components/CMakeLists.txt index f3130832..4ad9bf41 100644 --- a/src/Components/CMakeLists.txt +++ b/src/Components/CMakeLists.txt @@ -1 +1 @@ -add_subdirectory (GEOSldas_GridComp) +esma_add_subdirectory (GEOSldas_GridComp)