this repo has no description

Merge pull request #26627 from jmid/opam-publish-mutaml.0.2

Package mutaml.0.2

Changed files
+54
packages
mutaml
mutaml.0.2
+54
packages/mutaml/mutaml.0.2/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "A mutation tester for OCaml"
+
description: """
+
Mutaml is a mutation testing tool for OCaml.
+
It uses a ppxlib-based preprocessor to make a series of small
+
breaking changes to a program's source code and then runs
+
the program's testsuite for each of them to catch uncaught
+
misbehaviour.
+
"""
+
maintainer: ["Jan Midtgaard <mail@janmidtgaard.dk>"]
+
authors: ["Jan Midtgaard <mail@janmidtgaard.dk>"]
+
license: "BSD-2-Clause"
+
tags: ["test" "mutation testing"]
+
homepage: "https://github.com/jmid/mutaml"
+
doc: "https://github.com/jmid/mutaml"
+
bug-reports: "https://github.com/jmid/mutaml/issues"
+
depends: [
+
"dune" {>= "3.0"}
+
"ocaml" {>= "4.12.0"}
+
"ppxlib" {>= "0.28.0"}
+
"ppx_yojson_conv" {>= "0.14.0"}
+
"stdlib-random"
+
"conf-timeout"
+
"conf-which"
+
"conf-diffutils"
+
"ocaml-compiler-libs" {>= "v0.12.0"}
+
"ppx_derivers" {>= "1.2.1"}
+
"yojson" {>= "2.0.0"}
+
"ounit2" {with-test}
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
]
+
dev-repo: "git+https://github.com/jmid/mutaml.git"
+
url {
+
src: "https://github.com/jmid/mutaml/archive/refs/tags/0.2.tar.gz"
+
checksum: [
+
"md5=61addf5724238b477033e654412651eb"
+
"sha512=bd9efe0bd5a1098f03adc199f688b265362223bc5509bc1d3255696ba0e5e22f08b66434367e0a15f00e02dd074fd83dc2da094867a80c91ff397ffc07734778"
+
]
+
}