deps/Makefile: replace git://git.osmocom.org urls

Change-Id: I49d4ee141eb97ac58c0aff493531f120b21bb22d
This commit is contained in:
Oliver Smith 2023-02-21 18:40:46 +01:00 committed by osmith
parent a1cbec52f0
commit a80e7a9c78
1 changed files with 12 additions and 7 deletions

19
deps/Makefile vendored
View File

@ -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 @@ OSMOGITHUB_REPOS= titan.TestPorts.SCTPasp \
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,$(ECLIPSEGITLAB_REPOS), \
$(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))))