this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25161 from zoggy/opam-publish-lru_cache.0.4.0

Package lru_cache.0.4.0

authored by

Marcello Seri and committed by
GitHub
b85fc824 d4683747

+40
+40
packages/lru_cache/lru_cache.0.4.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "A simple implementation of a Least-Recently-Used cache" 3 + maintainer: "zoggy@bat8.org" 4 + authors: "Zoggy <zoggy@bat8.org>" 5 + license: "GPL-3.0-only" 6 + homepage: "https://zoggy.frama.io/ocaml-lru-cache/" 7 + doc: "https://zoggy.frama.io/ocaml-lru-cache/refdoc/lru_cache/" 8 + bug-reports: "https://framagit.org/zoggy/ocaml-lru-cache/issues" 9 + depends: [ 10 + "dune" {>= "2.9"} 11 + "ocaml" {>= "4.12.0"} 12 + "lwt" {with-test} 13 + "lwt_ppx" {with-test} 14 + "odoc" {with-doc} 15 + ] 16 + build: [ 17 + ["dune" "subst"] {dev} 18 + [ 19 + "dune" 20 + "build" 21 + "-p" 22 + name 23 + "-j" 24 + jobs 25 + "--promote-install-files=false" 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ["dune" "install" "-p" name "--create-install-files" name] 31 + ] 32 + dev-repo: "git+https://framagit.org/zoggy/ocaml-lru-cache.git" 33 + url { 34 + src: 35 + "https://framagit.org/zoggy/ocaml-lru-cache/-/archive/0.4.0/ocaml-lru-cache-0.4.0.tar.bz2" 36 + checksum: [ 37 + "md5=700969587b907565f94d5bb434c7114b" 38 + "sha512=a7ae4b7f5c0f33dfc686f32b277a8b1f0530c5990384a6eacfe2dc22cf5483c2303ffa090fd13d5d3449273500a005b70c5cda7ff9b90e7a6433d2c72974cf22" 39 + ] 40 + }