Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

9 changes: 9 additions & 0 deletions scripts/clone_all.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down