46 lines
1.3 KiB
Ada
46 lines
1.3 KiB
Ada
package Alire.Licensing with Preelaborate is
|
|
|
|
-- From https://github.com/github/choosealicense.com
|
|
|
|
type Licenses is (AFL_3_0,
|
|
AGPL_3_0,
|
|
Apache_2_0,
|
|
Artistic_2_0,
|
|
BSD_2_Clause,
|
|
BSD_3_Clause_Clear,
|
|
BSD_3_Clause,
|
|
BSL_1_0,
|
|
CC0_1_0,
|
|
CC_BY_4_0,
|
|
CC_BY_SA_4_0,
|
|
ECL_2_0,
|
|
EPL_1_0,
|
|
EPL_2_0,
|
|
EUPL_1_1,
|
|
EUPL_1_2,
|
|
GPL_2_0,
|
|
GPL_3_0,
|
|
ISC,
|
|
LGPL_2_1,
|
|
LGPL_3_0,
|
|
LPPL_1_3c,
|
|
MIT,
|
|
MPL_2_0,
|
|
MS_PL,
|
|
MS_RL,
|
|
NCSA,
|
|
OFL_1_1,
|
|
OSL_3_0,
|
|
PostgreSQL,
|
|
Unlicense,
|
|
WTFPL,
|
|
Zlib,
|
|
|
|
-- Extra additions
|
|
GMGPL_2_0,
|
|
GMGPL_3_0,
|
|
Public_Domain,
|
|
Unknown);
|
|
|
|
end Alire.Licensing;
|