From 0dd95e2f0eaf963e18fe927c997d309e197773db Mon Sep 17 00:00:00 2001 From: Gautier de Montmollin Date: Fri, 9 Feb 2024 13:25:51 +0100 Subject: [PATCH] ulid 20240205.0.0 (#984) * Create ulid-20240205.0.0.toml * Update ulid-20240205.0.0.toml Fixed a glitch in tags * Add minimum GNAT version restriction --------- Co-authored-by: Alejandro R. Mosteo --- index/ul/ulid/ulid-20240205.0.0.toml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 index/ul/ulid/ulid-20240205.0.0.toml diff --git a/index/ul/ulid/ulid-20240205.0.0.toml b/index/ul/ulid/ulid-20240205.0.0.toml new file mode 100644 index 00000000..c434fe1f --- /dev/null +++ b/index/ul/ulid/ulid-20240205.0.0.toml @@ -0,0 +1,28 @@ +name = "ulid" +description = "Universally Unique Lexicographically Sortable Identifier" +long-description = ''' +image + +In a nutshell, a ULID code is a combination of 48-bit time stamp (most significant part), +with a millisecond accuracy, and a 80-bit random number (least significant part), +totalling 128 bits, that is 16 bytes (octets). + +The preferred (canonical) representation of a ULID is in a certain version of the Base32 encoding. +''' +version = "20240205.0.0" + +authors = ["Gautier de Montmollin"] +maintainers = ["gdemont@hotmail.com"] +maintainers-logins = ["zertovitch"] +licenses = "MIT" +website = "https://github.com/zertovitch/ulid" +tags = ["ulid", "uuid", "guid", "identifier", "timestamp"] +project-files = ["ulid.gpr"] +executables = ["ulid_test"] + +[[depends-on]] +gnat = "(>=11 & <2000) | >=2021" + +[origin] +url = "https://sourceforge.net/projects/ulid-ada/files/ulid-2024-02-05.zip" +hashes = ["sha512:455f3c7d553979441ab6ee851e18d32e4db294675b32c7abaea28cc1ba901b23e777a23ea39f4aae6560f3d6ab6aeb1015832395229ae61d690914daa8b334d2"]