First approach

This commit is contained in:
Jano at Zelda
2018-01-26 17:38:36 +01:00
parent b14bcd40d5
commit bcb199257a
8 changed files with 164 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
package Alire.Repositories.Git with Preelaborate is
type Repository (<>) is new Repositories.Repository with private;
subtype Commit_ID is String (1 .. 40);
function New_Git_Repo (URL : String) return Repository;
private
type Repository (URL_Length : Natural) is new Repositories.Repository with record
URL : String (1 .. URL_Length);
end record;
end Alire.Repositories.Git;