aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/common.sh')
-rw-r--r--scripts/common.sh22
1 files changed, 16 insertions, 6 deletions
diff --git a/scripts/common.sh b/scripts/common.sh
index 1081859..46bf9c3 100644
--- a/scripts/common.sh
+++ b/scripts/common.sh
@@ -13,7 +13,8 @@ OSMO_RELEASE_REPOS="
libosmo-gprs
libosmo-netif
libosmo-pfcp
- libosmo-sccp
+ libosmo-sccp-legacy
+ libosmo-sigtran
libosmocore
libsmpp34
libusrp
@@ -80,6 +81,9 @@ osmo_git_last_commits_tags() {
local url ret pattern
case "$project" in
+ strongswan-epdg)
+ pattern='refs/tags/osmo-epdg-[0-9.]*$'
+ ;;
gapk|osmo-fl2k|rtl-sdr)
pattern='refs/tags/v[0-9.]*$'
;;
@@ -130,10 +134,7 @@ osmo_git_last_tags() {
# $1: Osmocom project (e.g. "osmo-hlr")
osmo_git_clone_url() {
case "$1" in
- libgtpnl|libasn1c|libsmpp34)
- echo "$OSMO_GIT_URL_GITEA"/cellular-infrastructure/"$1"
- ;;
- rtl-sdr|osmo-fl2k|libosmo-dsp|libusrp)
+ rtl-sdr|osmo-fl2k|libosmo-dsp)
echo "$OSMO_GIT_URL_GITEA"/sdr/"$1"
;;
osmo-gmr)
@@ -142,9 +143,18 @@ osmo_git_clone_url() {
osmo-isdntap)
echo "$OSMO_GIT_URL_GITEA"/retronetworking/"$1"
;;
- osmo_dia2gsup)
+ strongswan-epdg)
+ echo "$OSMO_GIT_URL_GITEA"/ims-volte-vowifi/strongswan
+ ;;
+ libosmo-sccp-legacy)
+ echo "$OSMO_GIT_URL_GITEA"/osmocom/"$1"
+ ;;
+ osmo_dia2gsup|osmo-epdg|osmo-s1gw)
echo "$OSMO_GIT_URL_GERRIT"/erlang/"$1"
;;
+ pyosmocom)
+ echo "$OSMO_GIT_URL_GERRIT"/python/"$1"
+ ;;
*)
echo "$OSMO_GIT_URL_GERRIT"/"$1"
;;