this repo has no description

Merge pull request #24647 from favonia/opam-publish-bwd.2.3.0

Package bwd.2.3.0

Changed files
+32
packages
bwd
bwd.2.3.0
+32
packages/bwd/bwd.2.3.0/opam
···
+
opam-version: "2.0"
+
synopsis: "Backward lists"
+
description: """
+
This OCaml package defines backward lists that are isomorphic to lists.
+
They are useful when one wishes to give a different type to the lists that are semantically in reverse.
+
In our experience, it is easy to miss List.rev or misuse List.rev_append when both semantically forward and backward lists are present.
+
With backward lists having a different type, it is impossible to make those mistakes.
+
"""
+
maintainer: "favonia <favonia@gmail.com>"
+
authors: "The RedPRL Development Team"
+
license: "Apache-2.0"
+
homepage: "https://github.com/RedPRL/ocaml-bwd"
+
bug-reports: "https://github.com/RedPRL/ocaml-bwd/issues"
+
dev-repo: "git+https://github.com/RedPRL/ocaml-bwd.git"
+
depends: [
+
"dune" {>= "2.0"}
+
"ocaml" {>= "4.12"}
+
"qcheck-core" {>= "0.18" & with-test}
+
"odoc" {>= "2.0" & with-doc}
+
]
+
build: [
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
+
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
+
]
+
url {
+
src: "https://github.com/RedPRL/ocaml-bwd/archive/refs/tags/2.3.0.tar.gz"
+
checksum: [
+
"md5=5ccdce66e6ccc2b2e11bab3c17fecc8c"
+
"sha512=bb544e50bfa778c5ea763e2676df2b609090be28d976de1bd90ec62608defe9a866481b9e68baa38bb7148070250041c7d1f6ba11f3c5ec16c72d8d25a30b2bc"
+
]
+
}