testing on 7.2

This commit is contained in:
Alejandro R. Mosteo
2018-03-07 12:54:38 +01:00
parent 2a1496728a
commit b596c8386a
7 changed files with 16 additions and 12 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ package Alire.Index.Alire is
(Preferred => Within_Major ("alire_alt", V ("1.0")),
Otherwise => Within_Major ("alire", V ("0.5")))),
Alr_Properties => -- These are only interesting to alr, not users
Private_Properties => -- These are only interesting to alr, not users
GPR_External ("Profile", "False"),
-- Sample extra params for build
+2 -2
View File
@@ -23,7 +23,7 @@ package Alire.Index.DAK is
Register (Base & "strings_edit",
V ("4.27"),
Desc_Pre & "(strings)" & Desc_Post,
Git (Repo, "44ac8e0c817558b8641f746ce225b3d2fa90b7a1"),
Git (Repo, "8ac67a28d666dde3a0f96b5a08a7016e4f29d491"),
Properties =>
GPR_File ("strings_edit.gpr") and
@@ -249,7 +249,7 @@ package Alire.Index.DAK is
Author (DAK_Author) and
Website (DAK_Website),
Alr_Properties =>
Private_Properties =>
On_Condition
(System_Is (GNU_Linux),
GPR_External ("odbc", "unixODBC")) and
+6 -2
View File
@@ -34,13 +34,17 @@ package Alire.Index.Libadacrypt is
License (GMGPL_2_0) and
License (GMGPL_3_0),
Alr_Properties =>
Private_Properties =>
On_Condition
(System_Is (GNU_Linux),
GPR_External ("system", "unix")) and
On_Condition
(System_Is (Windows),
GPR_External ("system", "windows"))
GPR_External ("system", "windows")),
Available_When =>
not Compiler_Is (GNAT_FSF_7_2)
-- It fails self-tests; might be a spureous warning
);
end Alire.Index.Libadacrypt;
+1 -1
View File
@@ -42,7 +42,7 @@ package Alire.Index.OpenGLAda is
Website (Prj_Website) and
License (MIT),
Alr_Properties =>
Private_Properties =>
On_Condition
(System_Is (GNU_Linux), GPR_External ("Windowing_System", "x11")),
+1 -1
View File
@@ -28,7 +28,7 @@ package Alire.Index.SDLAda is
Author (Prj_Author) and
License (Zlib),
Alr_Properties =>
Private_Properties =>
GPR_Path ("build/gnat") and
GPR_File ("build/gnat/sdlada.gpr") and
+3 -3
View File
@@ -52,7 +52,7 @@ package body Alire.Index is
-- Optional
Dependencies : Release_Dependencies := No_Dependencies;
Properties : Release_Properties := No_Properties;
Alr_Properties : Build_Properties := No_Properties;
Private_Properties : Build_Properties := No_Properties;
Available_When : Alire.Requisites.Tree := No_Requisites)
return Release
is
@@ -69,7 +69,7 @@ package body Alire.Index is
-- end if;
-- end loop;
--
-- for P of Alr_Properties.All_Values loop
-- for P of Private_Properties.All_Values loop
-- if P not in Alire.Properties.Labeled.Label and then
-- Alire.Properties.Labeled.Label (P).Name /= GPR_Config
-- then
@@ -83,7 +83,7 @@ package body Alire.Index is
Version,
Origin,
Dependencies,
Properties => Alr_Properties and Properties,
Properties => Private_Properties and Properties,
Available => Available_When)
do
if Catalog.Contains (Rel) then
+2 -2
View File
@@ -59,11 +59,11 @@ package Alire.Index is
-- Optional
Dependencies : Release_Dependencies := No_Dependencies;
Properties : Release_Properties := No_Properties;
Alr_Properties : Build_Properties := No_Properties;
Private_Properties : Build_Properties := No_Properties;
Available_When : Alire.Requisites.Tree := No_Requisites)
return Release;
-- Properties are generally interesting to the user
-- Alr_Properties are only interesting to alr
-- Private_Properties are only interesting to alr
subtype Platform_Independent_Path is String with Dynamic_Predicate =>
(for all C of Platform_Independent_Path => C /= '\');