/usr/lib/ocaml/cudf/cudf_conf.mli is in libcudf-ocaml-dev 0.7-3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | (*****************************************************************************)
(* libCUDF - CUDF (Common Upgrade Description Format) manipulation library *)
(* Copyright (C) 2009-2012 Stefano Zacchiroli <zack@upsilon.cc> *)
(* *)
(* This library is free software: you can redistribute it and/or modify *)
(* it under the terms of the GNU Lesser General Public License as *)
(* published by the Free Software Foundation, either version 3 of the *)
(* License, or (at your option) any later version. A special linking *)
(* exception to the GNU Lesser General Public License applies to this *)
(* library, see the COPYING file for more information. *)
(*****************************************************************************)
open Cudf_types
(** Mapping (in the form of associative list) from stanza postmarks to type
declarations.
Keys in the map are usually only those prescribed by the CUDF
specification, namely "preamble", "package", and "request". Values in the
map are type declarations for each supported property of that stanza;
usually they only represent core property schemata (see CUDF ยง2.2.3).
*)
type stanza_typedecl = (string * typedecl) list
(** {5 Global configuration} *)
(** Default stanza types for parsing CUDF documents.
For what concerns package stanzas, available types can be extended by using
"property" declaration in the preamble stanza.
*)
val stanza_typedecl: stanza_typedecl
(** {6 Direct access to per-stanza type declaration} *)
(** Preamble schemata *)
val preamble_typedecl: typedecl
(** Package description schemata
I.e. type declarataion for all core package properties *)
val package_typedecl: typedecl
(** Request schemata *)
val request_typedecl: typedecl
|