This file is indexed.

/usr/lib/ocaml/oasis/OASISLicense.mli is in liboasis-ocaml-dev 0.4.5-1build3.

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
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
(******************************************************************************)
(* OASIS: architecture for building OCaml libraries and applications          *)
(*                                                                            *)
(* Copyright (C) 2011-2013, Sylvain Le Gall                                   *)
(* Copyright (C) 2008-2011, OCamlCore SARL                                    *)
(*                                                                            *)
(* 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 2.1 of the License, or (at    *)
(* your option) any later version, with the OCaml static compilation          *)
(* exception.                                                                 *)
(*                                                                            *)
(* This library is distributed in the hope that it will be useful, but        *)
(* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *)
(* or FITNESS FOR A PARTICULAR PURPOSE. See the file COPYING for more         *)
(* details.                                                                   *)
(*                                                                            *)
(* You should have received a copy of the GNU Lesser General Public License   *)
(* along with this library; if not, write to the Free Software Foundation,    *)
(* Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA              *)
(******************************************************************************)


(** License definition

    This module allows to manipulate DEP-5 style license.

    @author Sylvain Le Gall
    @see <http://dep.debian.net/deps/dep5/> DEP-5
  *)


(** Valid licenses
  *)
type license


(** Valid license exceptions.
  *)
type license_exception


(** License version.
  *)
type license_version =
  | Version of OASISVersion.t
  | VersionOrLater of OASISVersion.t
  | NoVersion


(** DEP-5 license, basic.
  *)
type license_dep_5_unit =
  {
    license:    license;
    excption:   license_exception option;
    version:    license_version;
  }


(** DEP-5 license, complex.
  *)
type license_dep_5 =
  | DEP5Unit of license_dep_5_unit
  | DEP5Or of license_dep_5 list
  | DEP5And of license_dep_5 list


(** OASIS supported type of license.
  *)
type t =
  | DEP5License of license_dep_5
  | OtherLicense of string (* URL *)


(** Extra data about license {b Not exported}
  *)
type license_data =
    {
      long_name: string;
      (** Expanded name of the license. *)

      versions:  OASISVersion.t list;
      (** Standard versions of the license. *)

      note:      string option;
      (** Extra information about the license. *)

      deprecated: string option;
      (** Deprecated alternative. *)
    }


(** Extra data about license exception {b Not exported}
  *)
type license_exception_data =
    {
      explanation: string;
      (** Purpose of the exception. *)

      licenses:    license list;
      (** Compatible licenses with the exception. *)
    }


(** Convert a DEP-5 license to string. {b Not exported}.
  *)
val to_string: t -> string


(** Convert a DEP-5 license to a legal disclaimer for the product.
    {b Not exported}.
  *)
val legal_disclaimer: string -> t -> string


(** Convert a license to string. {b Not exported}.
  *)
val string_of_license: license -> string


(** Convert a license exception to string. {b Not exported}.
  *)
val string_of_license_exception: license_exception -> string


(** License value. {b Not exported}.
  *)
val value: t OASISValues.t


(** Choices for quickstart question. {b Not exported}.
  *)
val choices: unit -> t list


(** All available license, their short name, their long name, and compatible
    versions. {b Not exported}.
  *)
val license_data: unit -> (license * license_data) list


(** All available license exception, their name, and compatible license.
  {b Not exported}.
  *)
val license_exception_data:
    unit -> (license_exception * license_exception_data) list


(** Dump [ODN.t]. {b Not exported}.
  *)
val odn_of_t: t -> ODN.t


(** {2 License definitions}

    {b No licenses are exported.}
  *)


val proprietary: license
val apache: license
val artistic: license
val bsd2: license
val bsd3: license
val bsd4: license
val cecill: license
val cecillb: license
val cecillc: license
val freebsd: license
val isc: license
val cc_by: license
val cc_by_sa: license
val cc_by_nd: license
val cc_by_nc: license
val cc_by_nc_sa: license
val cc_by_nc_nd: license
val cc0: license
val cddl: license
val cpl: license
val eiffel: license
val expat: license
val gpl: license
val lgpl: license
val agpl: license
val gfdl: license
val gfdl_niv: license
val lppl: license
val mpl: license
val perl: license
val psf: license
val qpl: license
val w3c_software: license
val zlib: license
val zope: license
val mit: license
val wtfpl: license
val public_domain: license


val ocaml_linking_exception: license_exception