34 lines
1.1 KiB
Ada
34 lines
1.1 KiB
Ada
with Alire.Index.GNATCOLL;
|
|
|
|
package Alire.Index.XStrings is
|
|
|
|
function Project is new Catalogued_Project
|
|
("Renaming of gnatcoll.strings without further dependencies");
|
|
|
|
Repo : constant URL := "https://github.com/alire-project/xstrings";
|
|
|
|
Base : constant Release :=
|
|
Project.Unreleased
|
|
(Dependencies =>
|
|
GNATCOLL.Strings.V_20180425.Within_Major or
|
|
GNATCOLL.Slim.V_20180425.Within_Major,
|
|
|
|
Properties =>
|
|
Author ("alejandro@mosteo.com") and
|
|
License (GPL_3_0));
|
|
|
|
package V_1_0_0 is new Released
|
|
(Base
|
|
.Replacing (Git (Repo, "40d3871dd644473aabac104666b4c83285b65ba6")));
|
|
|
|
Experiment : constant Release :=
|
|
Project.Register
|
|
(V ("99"),
|
|
Git (Repo, "40d3871dd644473aabac104666b4c83285b65ba6"),
|
|
Dependencies =>
|
|
GNATCOLL.Strings.Project /= GNATCOLL.Strings.V_20180425.Version and
|
|
(GNATCOLL.Strings.V_20180425.Within_Major or
|
|
GNATCOLL.Slim.V_20180425.Within_Major));
|
|
|
|
end Alire.Index.XStrings;
|