Files
alire-index-community/index/alire-index-mathpaqs.ads
T
Alejandro R Mosteo d1ceee4e10 Mathpaqs v_20180327
2018-06-08 16:52:43 +02:00

64 lines
2.3 KiB
Ada

package Alire.Index.Mathpaqs is
function Project is
new Catalogued_Project
("A collection of mathematical, 100% portable, packages");
Prj_Repo : constant URL := "https://github.com/svn2github/Mathpaqs.git";
Prj_Author : constant String := "Gautier de Montmollin";
Prj_Website : constant URL := "https://mathpacks.sourceforge.io/";
Base : constant Release :=
Project.Unreleased
(Properties =>
GPR_Scenario ("Build_Mode", "Debug" or "Style_Checks" or "Fast") 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")));
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;