From d1ceee4e10daadf7f5a1e7140bfc09242466b2ba Mon Sep 17 00:00:00 2001 From: Alejandro R Mosteo Date: Fri, 8 Jun 2018 16:52:43 +0200 Subject: [PATCH] Mathpaqs v_20180327 --- index/alire-index-mathpaqs.ads | 84 +++++++++++++++++++--------------- 1 file changed, 47 insertions(+), 37 deletions(-) diff --git a/index/alire-index-mathpaqs.ads b/index/alire-index-mathpaqs.ads index 4aab3e59..4836292c 100644 --- a/index/alire-index-mathpaqs.ads +++ b/index/alire-index-mathpaqs.ads @@ -8,46 +8,56 @@ package Alire.Index.Mathpaqs is Prj_Author : constant String := "Gautier de Montmollin"; Prj_Website : constant URL := "https://mathpacks.sourceforge.io/"; - V_20180114 : constant Release := - Project.Register - (V ("20180114"), - Git (Prj_Repo, "c17a6725c4b559ea55b64f0cf3c3660e558777ea"), + Base : constant Release := + Project.Unreleased + (Properties => + GPR_Scenario ("Build_Mode", "Debug" or "Style_Checks" or "Fast") and - Properties => - GPR_Scenario ("Build_Mode", "Debug" or "Style_Checks" or "Fast") and + Author (Prj_Author) and + Website (Prj_Website) and + License (Unknown) + ); - Executable ("arenstorf") and - Executable ("arithmetic_compression") and - Executable ("biomorph") and - Executable ("champ_vt") and - Executable ("cr_demo") and - Executable ("fractal") and - Executable ("gnat_int") and - Executable ("ppm2func") and - Executable ("show_floats_limits") and - Executable ("test_beta") and - Executable ("test_cholesky") and - Executable ("test_copulas") and - Executable ("test_ert") and - Executable ("test_estimators") and - Executable ("test_formulas") and - Executable ("test_gamma") and - Executable ("test_generic_real_linear_equations") and - Executable ("test_normal") and - Executable ("test_pareto") and - Executable ("test_poisson") and - Executable ("test_qr") and - Executable ("test_random_performance") and - Executable ("test_rsa") and - Executable ("test_samples") and - Executable ("test_sparse") and - Executable ("test_u_rand") and - Author (Prj_Author) and - Website (Prj_Website) and - License (Unknown) - ); + package V_20180327 is new Project_Release + (Base + .Replacing + (Origin => Git (Prj_Repo, "0f406899a339b654b247a4017557b0943c431486")) + .Extending + (Properties => + Executable ("test_discrete_random_simulation"))); - V_Pi_Day : Release renames V_20180114; -- Let's celebrate! + package V_20180114 is new Project_Release + (Base + .Replacing + (Origin => Git (Prj_Repo, "c17a6725c4b559ea55b64f0cf3c3660e558777ea")) + .Extending + (Properties => + Executable ("arenstorf") and + Executable ("arithmetic_compression") and + Executable ("biomorph") and + Executable ("champ_vt") and + Executable ("cr_demo") and + Executable ("fractal") and + Executable ("gnat_int") and + Executable ("ppm2func") and + Executable ("show_floats_limits") and + Executable ("test_beta") and + Executable ("test_cholesky") and + Executable ("test_copulas") and + Executable ("test_ert") and + Executable ("test_estimators") and + Executable ("test_formulas") and + Executable ("test_gamma") and + Executable ("test_generic_real_linear_equations") and + Executable ("test_normal") and + Executable ("test_pareto") and + Executable ("test_poisson") and + Executable ("test_qr") and + Executable ("test_random_performance") and + Executable ("test_rsa") and + Executable ("test_samples") and + Executable ("test_sparse") and + Executable ("test_u_rand"))); end Alire.Index.Mathpaqs;