From 44ebe62349015f8459d9047273fe0724e11bfd69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCnzli?= Date: Thu, 26 Sep 2024 00:43:58 +0200 Subject: [PATCH] Add: uuidm.0.9.9 --- packages/uuidm/uuidm.0.9.9/opam | 45 +++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 packages/uuidm/uuidm.0.9.9/opam diff --git a/packages/uuidm/uuidm.0.9.9/opam b/packages/uuidm/uuidm.0.9.9/opam new file mode 100644 index 00000000000..32f9119dec9 --- /dev/null +++ b/packages/uuidm/uuidm.0.9.9/opam @@ -0,0 +1,45 @@ +opam-version: "2.0" +synopsis: "Universally unique identifiers (UUIDs) for OCaml" +description: """\ +Uuidm is an OCaml library implementing 128 bits universally unique +identifiers version 3, 5 (named based with MD5, SHA-1 hashing), 4 +(random based), 7 (time and random based) and 8 (custom) according to +[RFC 9562]. + +Uuidm has no dependency. It is distributed under the ISC license. + +[RFC 9562]: https://www.rfc-editor.org/rfc/rfc9562 + +Homepage: """ +maintainer: "Daniel Bünzli " +authors: "The uuidm programmers" +license: "ISC" +tags: ["uuid" "codec" "org:erratique"] +homepage: "https://erratique.ch/software/uuidm" +doc: "https://erratique.ch/software/uuidm/doc/" +bug-reports: "https://github.com/dbuenzli/uuidm/issues" +depends: [ + "ocaml" {>= "4.14.0"} + "ocamlfind" {build} + "ocamlbuild" {build} + "topkg" {build & >= "1.0.3"} +] +depopts: ["cmdliner"] +conflicts: [ + "cmdliner" {< "1.3.0"} +] +build: [ + "ocaml" + "pkg/pkg.ml" + "build" + "--dev-pkg" + "%{dev}%" + "--with-cmdliner" + "%{cmdliner:installed}%" +] +dev-repo: "git+https://erratique.ch/repos/uuidm.git" +url { + src: "https://erratique.ch/software/uuidm/releases/uuidm-0.9.9.tbz" + checksum: + "sha512=284218681f28150b23bc6c9a5f6fea66d05b934d1f76d962e4770b04e21d41a60cdb1fefcdf1628ed46fbcd4d8615a7bfa62174e9109342df299be9df7779916" +} \ No newline at end of file