TITAN project migration to eclipse gitlab

As announced in https://www.eclipse.org/forums/index.php/t/1107586/
TITAN is migrating both their github and git.eclipse.org repositories to
eclipse gitlab.

Let's adjust our Makefile accordingly

Change-Id: I6a501d50891c4fda78d33d3efd6030244a4aaf50
This commit is contained in:
Harald Welte 2021-05-21 20:50:20 +02:00
parent 26f4a62642
commit 65b3ca781a
1 changed files with 20 additions and 30 deletions

50
deps/Makefile vendored
View File

@ -13,25 +13,40 @@
# See the License for the specific language governing permissions and
# limitations under the License.
ECLIPSEGITHUB:=https://github.com/eclipse
ECLIPSEGIT2:=https://git.eclipse.org/r/titan
ECLIPSEGITLAB:=https://gitlab.eclipse.org/eclipse/titan
OSMOGITHUB:=https://github.com/osmocom
OSMOGIT:=git://git.osmocom.org
ECLIPSEGITHUB_REPOS= titan.Libraries.TCCUsefulFunctions \
ECLIPSEGITLAB_REPOS= titan.Libraries.TCCUsefulFunctions \
titan.ProtocolEmulations.M3UA \
titan.ProtocolModules.BSSAPP_v7.3.0 \
titan.ProtocolModules.DIAMETER_ProtocolModule_Generator \
titan.ProtocolModules.DNS \
titan.ProtocolModules.GRE \
titan.ProtocolModules.GTP_v13.5.0 \
titan.ProtocolModules.GTPv2_v13.7.0 \
titan.ProtocolModules.ICMP \
titan.ProtocolModules.ICMPv6 \
titan.ProtocolModules.IP \
titan.ProtocolModules.ISUP_Q.762 \
titan.ProtocolModules.JSON_v07_2006 \
titan.ProtocolModules.L2TP \
titan.ProtocolModules.LLC_v7.1.0 \
titan.ProtocolModules.M3UA \
titan.ProtocolModules.MobileL3_v13.4.0 \
titan.ProtocolModules.SMPP \
titan.ProtocolModules.TCP \
titan.ProtocolModules.UDP \
titan.ProtocolModules.RTP \
titan.ProtocolModules.DIAMETER_ProtocolModule_Generator \
titan.ProtocolModules.M2PA \
titan.ProtocolModules.ROSE \
titan.ProtocolModules.SCTP \
titan.ProtocolModules.SDP \
titan.ProtocolModules.SUA \
titan.ProtocolModules.NAS_EPS_15.2.0.1 \
titan.ProtocolModules.NS_v7.3.0 \
titan.ProtocolModules.SGsAP_13.2.0 \
titan.ProtocolModules.SNDCP_v7.0.0 \
titan.TestPorts.Common_Components.Socket-API \
titan.TestPorts.Common_Components.Abstract_Socket \
titan.TestPorts.HTTPmsg \
@ -44,25 +59,6 @@ ECLIPSEGITHUB_REPOS= titan.Libraries.TCCUsefulFunctions \
titan.TestPorts.TCPasp \
titan.TestPorts.UNIX_DOMAIN_SOCKETasp
ECLIPSEGIT2_REPOS= titan.ProtocolEmulations.M3UA \
titan.ProtocolModules.GRE \
titan.ProtocolModules.M2PA \
titan.ProtocolModules.ROSE \
titan.ProtocolModules.SCTP \
titan.ProtocolModules.SUA \
titan.ProtocolModules.SDP \
titan.ProtocolModules.BSSAPP_v7.3.0 \
titan.ProtocolModules.GTPv2_v13.7.0 \
titan.ProtocolModules.ISUP_Q.762 \
titan.ProtocolModules.LLC_v7.1.0 \
titan.ProtocolModules.MobileL3_v13.4.0 \
titan.ProtocolModules.NAS_EPS_15.2.0.1 \
titan.ProtocolModules.NS_v7.3.0 \
titan.ProtocolModules.SGsAP_13.2.0 \
titan.ProtocolModules.SNDCP_v7.0.0
ECLIPSEGITLAB_REPOS= titan.ProtocolModules.GTP_v13.5.0
OSMOGITHUB_REPOS= titan.TestPorts.SCTPasp \
titan.TestPorts.MTP3asp \
titan.TestPorts.UDPasp \
@ -75,7 +71,7 @@ OSMOGIT_REPOS= titan.ProtocolModules.MAP \
titan.TestPorts.AF_PACKET \
osmo-uecups
ALL_REPOS=$(ECLIPSEGITHUB_REPOS) $(ECLIPSEGIT2_REPOS) $(ECLIPSEGITLAB_REPOS) $(OSMOGITHUB_REPOS) $(OSMOGIT_REPOS)
ALL_REPOS=$(ECLIPSEGITLAB_REPOS) $(OSMOGITHUB_REPOS) $(OSMOGIT_REPOS)
# Tag names from 'git-describe --tags'; if not available, a commit hash may be used instead.
# Do not put references to branches here, except for local testing: this breaks the caching
@ -183,12 +179,6 @@ else
endif
endef
$(foreach dir,$(ECLIPSEGITHUB_REPOS), \
$(eval $(call GIT_template,$(dir),$(ECLIPSEGITHUB))))
$(foreach dir,$(ECLIPSEGIT2_REPOS), \
$(eval $(call GIT_template,$(dir),$(ECLIPSEGIT2))))
$(foreach dir,$(ECLIPSEGITLAB_REPOS), \
$(eval $(call GIT_template,$(dir),$(ECLIPSEGITLAB))))