this repo has no description

Merge pull request #15460 from xguerin/feature/bitstring_3.1.1

Add bitstring v3.1.1

Kate c00af0ec 7b81d837

Changed files
+34
packages
bitstring
bitstring.3.1.1
+34
packages/bitstring/bitstring.3.1.1/opam
···
+
authors : [ "Richard W.M. Jones" "Xavier R. Guérin" ]
+
bug-reports : "https://bitbucket.org/thanatonauts/bitstring/issues"
+
dev-repo: "git+https://bitbucket.org/thanatonauts/bitstring.git"
+
doc : "https://bitstring.software"
+
homepage : "https://bitstring.software"
+
license : ["LGPL-2.0-or-later with exceptions" "GPL-2.0-or-later"]
+
maintainer : "Xavier R. Guérin <ghub@applepine.org>"
+
opam-version: "2.0"
+
version : "3.1.1"
+
+
build: [
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
]
+
depends: [
+
"ocaml" {>= "4.02.3"}
+
"dune"
+
"ppx_tools_versioned" {build}
+
"ocaml-migrate-parsetree" {>= "1.0.5"}
+
"ounit" {with-test}
+
]
+
conflicts: [
+
"ppx_bitstring"
+
]
+
+
synopsis: "bitstrings and bitstring matching for OCaml"
+
description: """
+
The ocaml-bitstring project adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml.
+
You can use this module to both parse and generate binary formats, files and protocols.
+
Bitstring handling is added as primitives to the language, making it exceptionally simple to use and very powerful."""
+
url {
+
src: "https://bitbucket.org/thanatonauts/bitstring/get/v3.1.1.tar.gz"
+
checksum: "md5=7da1b8627c6ab7cb4825a0b4f415d251"
+
}