osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/31447 )
Change subject: deps/Makefile: replace git://git.osmocom.org urls ......................................................................
deps/Makefile: replace git://git.osmocom.org urls
Change-Id: I49d4ee141eb97ac58c0aff493531f120b21bb22d --- M deps/Makefile 1 file changed, 21 insertions(+), 7 deletions(-)
Approvals: fixeria: Looks good to me, but someone else must approve pespin: Looks good to me, approved Jenkins Builder: Verified
diff --git a/deps/Makefile b/deps/Makefile index 83ce761..d7e3dd4 100644 --- a/deps/Makefile +++ b/deps/Makefile @@ -15,7 +15,8 @@
ECLIPSEGITLAB:=https://gitlab.eclipse.org/eclipse/titan OSMOGITHUB:=https://github.com/osmocom -OSMOGIT:=git://git.osmocom.org +OSMOGERRIT:=https://gerrit.osmocom.org +OSMOGITEA:=https://gitea.osmocom.org/ttcn3
ECLIPSEGITLAB_REPOS= titan.Libraries.TCCUsefulFunctions \ titan.ProtocolEmulations.M3UA \ @@ -66,12 +67,13 @@ titan.ProtocolEmulations.SCCP \ titan.ProtocolModules.BSSGP_v13.0.0
-OSMOGIT_REPOS= titan.ProtocolModules.MAP \ - titan.ProtocolModules.BSSMAP \ - titan.TestPorts.USB \ - titan.TestPorts.AF_PACKET \ +OSMOGERRIT_REPOS= titan.ProtocolModules.BSSMAP \ osmo-uecups
+OSMOGITEA_REPOS= titan.ProtocolModules.MAP \ + titan.TestPorts.USB \ + titan.TestPorts.AF_PACKET + ALL_REPOS=$(ECLIPSEGITLAB_REPOS) $(OSMOGITHUB_REPOS) $(OSMOGIT_REPOS) $(FORKEDGITLAB_REPOS)
# Tag names from 'git-describe --tags'; if not available, a commit hash may be used instead. @@ -187,8 +189,11 @@ $(foreach dir,$(OSMOGITHUB_REPOS), \ $(eval $(call GIT_template,$(dir),$(OSMOGITHUB))))
-$(foreach dir,$(OSMOGIT_REPOS), \ - $(eval $(call GIT_template,$(dir),$(OSMOGIT)))) +$(foreach dir,$(OSMOGERRIT_REPOS), \ + $(eval $(call GIT_template,$(dir),$(OSMOGERRIT)))) + +$(foreach dir,$(OSMOGITEA_REPOS), \ + $(eval $(call GIT_template,$(dir),$(OSMOGITEA))))
$(foreach dir,$(FORKEDGITLAB_REPOS), \ $(eval $(call GIT_template,$(dir),$(FORKEDGITLAB))))