The Debian Science group exists on salsa (and Anton has imported most
projects from alioth). But the alioth import instructions at
http://www.df7cb.de/blog/2017/Salsa_batch_import.html tell us to get
the group id (namespace_id) using
curl https://salsa.debian.org/api/v4/groups | jq . | less
But there is no entry for the Debian Science Team there.
That command itself does not report all salsa groups, we need to expand
to
curl -I https://salsa.debian.org/api/v4/groups | sed -n -e
'/Link/p' | awk -F'<|>' '{print $2}' | xargs curl | jq . | less
But even then, Debian Science is still not listed.
Is the registration of the Debian Science team on salsa incomplet?
Drew