First sample dependent libraries

This commit is contained in:
Alejandro R. Mosteo
2018-01-29 00:38:32 +01:00
parent bcb199257a
commit 8d30da8959
13 changed files with 128 additions and 71 deletions
+11 -6
View File
@@ -1,11 +1,16 @@
with Alire.Index.Libhello;
package Alire.Index.Hello is
Hello : constant Project := Git_Project ("hello",
"git@bitbucket.org:aleteolabs/hello.git");
Name : constant Project_Name := "hello";
Repo : constant URL := "git@bitbucket.org:aleteolabs/hello.git";
V_1_0_0 : constant Milestone := Register (Git_Release (
Hello,
V ("1.0.0"),
"8cac0afddc505794ae3e5634745ce0830129d241"));
V_1_0_0 : constant Release :=
Register_Git (Name,
V ("1.0.0"),
Repo,
"8cac0afddc505794ae3e5634745ce0830129d241",
-- Depends_On ("libhello", At_Least_Within_Major (V ("1.0.0"))));
Depends_On => At_Least_Within_Major (Libhello.V_1_0_0));
end Alire.Index.Hello;