From f9a45c782b3a7e6ea03df8a96e9e24c2a5b8e6aa Mon Sep 17 00:00:00 2001 From: slopqueue Date: Sat, 8 Aug 2026 22:59:14 +0000 Subject: [PATCH] docs: record retired magdif, NEO-EQ, and magfie repositories --- README.md | 10 ++++++++++ scripts/clone_all.sh | 9 +++++++++ 2 files changed, 19 insertions(+) diff --git a/README.md b/README.md index 4669b05..3957ad8 100644 --- a/README.md +++ b/README.md @@ -103,3 +103,13 @@ Integration tests are run by pytest tests/ This will perform all the tests in `tests/` and its subfolders. + +## Retired repositories + +The following `itpplasma` repositories are obsolete and have been retired +(see issue #17); they are neither maintained nor cloned by `scripts/clone_all.sh`: + +- `magdif` — obsolete, functionality superseded by `itpplasma/MEPHIT` +- `NEO-EQ` — obsolete, functionality superseded by `itpplasma/MEPHIT` +- `magfie` — retired/removed + diff --git a/scripts/clone_all.sh b/scripts/clone_all.sh index 08a4bcd..456f1ec 100755 --- a/scripts/clone_all.sh +++ b/scripts/clone_all.sh @@ -1,7 +1,16 @@ #!/usr/bin/env bash +# GitHub repositories maintained and cloned by this meta-repository +# (see https://github.com/itpplasma). Retired/obsolete repositories are +# intentionally omitted; see "Retired repositories" below. GITHUB_REPOS="libneo spline BOOZER_MAGFIE SIMPLE GORILLA GORILLA_APPLETS NEO-2 NEO-RT MEPHIT KAMEL" +# Retired repositories (archived/deleted, no longer cloned): +# magdif - obsolete, successor is itpplasma/MEPHIT (issue #17) +# NEO-EQ - obsolete, successor is itpplasma/MEPHIT (issue #17) +# magfie - retired/removed (issue #17) +# Keep these names out of GITHUB_REPOS above. + for REPO in $GITHUB_REPOS; do clone_github $REPO done