Preparations for github migration

This commit is contained in:
Alejandro R Mosteo
2018-03-12 15:38:25 +01:00
parent d73933af0c
commit dfddd0764a
3 changed files with 12 additions and 8 deletions
+2 -3
View File
@@ -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
+5 -1
View File
@@ -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"),
+5 -4
View File
@@ -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;