1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# Sample configuration file for monitor frontend
title = "OCaml";
# Run with "ben monitor ocaml.ben". With default settings, this
# should be run after a download run. Additionally, the
# "--run-debcheck" must be passed to be able to use the
# "uninstallable" pseudo-field.
# Sample of architectures representative of issues that arise with
# OCaml packages: native, bytecode
architectures = [ "amd64"; "i386" ];
is_affected = .maintainer ~ /debian-ocaml-maint/
| .build-depends ~ /ocaml/
| .build-depends-arch ~ /ocaml/
| .build-depends-indep ~ /ocaml/;
is_good = !.uninstallable ~ /yes/;
is_bad = .uninstallable ~ /yes/;
# Comment appearing in HTML output, with various linkifications
notes = "This is a permanent tracker for the OCaml stack. Further details
about the programming language can be found at http://caml.inria.fr and
the source package is pts:ocaml (buildd:ocaml). More about this on
https://wiki.debian.org/Teams/OCamlTaskForce/OCamlTransitions";
|