From dfddd0764a58a28bc06508f7b5454533f3fe6386 Mon Sep 17 00:00:00 2001 From: Alejandro R Mosteo Date: Mon, 12 Mar 2018 15:38:25 +0100 Subject: [PATCH] Preparations for github migration --- .gitmodules | 5 ++--- index/alire-index-semantic_versioning.ads | 6 +++++- index/alire-index-simple_logging.ads | 9 +++++---- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitmodules b/.gitmodules index ea4dc09d..8688b9ec 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,6 @@ [submodule "deps/semver"] path = deps/semver - url = https://bitbucket.org/aleteolabs/semver.git - branch = master + url = git@github.com:alire-project/semantic_versioning.git [submodule "deps/simple_logging"] path = deps/simple_logging - url = git@github.com:mosteo/simple_logging.git + url = git@github.com:alire-project/simple_logging.git diff --git a/index/alire-index-semantic_versioning.ads b/index/alire-index-semantic_versioning.ads index 67585f43..5c49a1e4 100644 --- a/index/alire-index-semantic_versioning.ads +++ b/index/alire-index-semantic_versioning.ads @@ -2,7 +2,11 @@ package Alire.Index.Semantic_Versioning is function Project is new Catalogued_Project (Projects.Semantic_Versioning); - Repo : constant URL := "https://bitbucket.org/aleteolabs/semver.git"; + Repo : constant URL := "https://github.com/alire-project/semantic_versioning.git"; + + V_0_2 : constant Release := Project.Register + (V ("0.2"), + Git (Repo, "2937c650511ad3c87af64be963eca7eba7aebb68")); V_0_1_2 : constant Release := Project.Register (V ("0.1.2"), diff --git a/index/alire-index-simple_logging.ads b/index/alire-index-simple_logging.ads index 9b662763..95523e04 100644 --- a/index/alire-index-simple_logging.ads +++ b/index/alire-index-simple_logging.ads @@ -2,10 +2,11 @@ package Alire.Index.Simple_Logging is function Project is new Catalogued_Project (Projects.Simple_Logging); - Repo : constant URL := "https://github.com/mosteo/simple_logging.git"; + Repo : constant URL := "https://github.com/alire-project/simple_logging.git"; - V_1_0_0 : constant Release := - Project.Register (V ("1.0.0"), - Git (Repo, "d98242b8bd1c7f964cebc454e9b1206ffdbb0ca9")); + V_1_0 : constant Release := + Project.Register + (V ("1.0"), + Git (Repo, "d98242b8bd1c7f964cebc454e9b1206ffdbb0ca9")); end Alire.Index.Simple_Logging;