this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] codept and codept-lib (0.12.1) (#27639)

* [new release] codept (2 packages) (0.12.1)

CHANGES:

* Support OCaml 5.2
* Support OCaml 5.3

* Expose LGPL library
* maintenance intents

* Make the error formatter a parameter
* Better inequality explanation for modules

* fix `-export` bugs
* handle open `F(X).Y`

* Improve test stability on Windows

* codept: fix opam files

* generate opam files with dune lang > 2.7
* remove test from the library version

* codept: correct dune lower bound

* codept-lib: compiler version bounds

authored by

Florian Angeletti and committed by
GitHub
fa45b93f 1519b205

+90
+42
packages/codept-lib/codept-lib.0.12.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Alternative ocaml dependency analyzer" 3 + description: """ 4 + Codept intends to be a dependency solver for OCaml project and an 5 + alternative to ocamldep. This package provides the core library used to build 6 + the codept executable under a more permissive license in order to be easier to 7 + reuse in other projects""" 8 + maintainer: ["Florian Angeletti <octa@polychoron.fr>"] 9 + authors: ["Florian Angeletti <octa@polychoron.fr>"] 10 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 11 + homepage: "https://github.com/Octachron/codept" 12 + bug-reports: "https://github.com/Octachron/codept/issues" 13 + depends: [ 14 + "dune" {>= "2.8"} 15 + "menhir" {>= "20180523"} 16 + "ocaml" {>= "4.03" & < "5.4~"} 17 + "odoc" {with-doc} 18 + ] 19 + build: [ 20 + ["dune" "subst"] {dev} 21 + [ 22 + "dune" 23 + "build" 24 + "-p" 25 + name 26 + "-j" 27 + jobs 28 + "@install" 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + dev-repo: "git+https://github.com/Octachron/codept.git" 33 + x-maintenance-intent: "latest" 34 + url { 35 + src: 36 + "https://github.com/Octachron/codept/releases/download/0.12.1/codept-0.12.1.tbz" 37 + checksum: [ 38 + "sha256=381d300bad1d526d241414d74c670853896547c10efe69f56a1838f00264f69b" 39 + "sha512=1517e482a60ed9c76cceff0f64ef73b28a667800fb5bd0a0f142487bbd9c36aadc9534b70de1d261027bd7164dc80ac620d8c04cc94990f627db49e96f786ae5" 40 + ] 41 + } 42 + x-commit-hash: "d9902f2a11217122a04edb39b5c5d4d540ad18fd"
+48
packages/codept/codept.0.12.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Alternative ocaml dependency analyzer" 3 + description: """ 4 + Codept intends to be a dependency solver for OCaml project and an alternative to ocamldep. Compared to ocamldep, codept major features are: 5 + 6 + * whole project analysis 7 + * exhaustive warning and error messages 8 + * structured format (s-expression or json) for dependencies 9 + * uniform handling of delayed alias dependencies 10 + * (experimental) full dependencies, 11 + when dependencies up to transitive closure are not enough 12 + 13 + Both ocamldep and codept computes an over-approximation of the dependencies graph of OCaml project. However, codept uses whole project analysis to reduce the number of fictitious dependencies inferred at the project scale, whereas ocamldep is, by design, limited to local file analysis.""" 14 + maintainer: ["Florian Angeletti <octa@polychoron.fr>"] 15 + authors: ["Florian Angeletti <octa@polychoron.fr>"] 16 + license: "GPL-3.0-or-later" 17 + homepage: "https://github.com/Octachron/codept" 18 + bug-reports: "https://github.com/Octachron/codept/issues" 19 + depends: [ 20 + "dune" {>= "2.8"} 21 + "codept-lib" {= version} 22 + "odoc" {with-doc} 23 + ] 24 + build: [ 25 + ["dune" "subst"] {dev} 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + ] 38 + dev-repo: "git+https://github.com/Octachron/codept.git" 39 + x-maintenance-intent: "latest" 40 + url { 41 + src: 42 + "https://github.com/Octachron/codept/releases/download/0.12.1/codept-0.12.1.tbz" 43 + checksum: [ 44 + "sha256=381d300bad1d526d241414d74c670853896547c10efe69f56a1838f00264f69b" 45 + "sha512=1517e482a60ed9c76cceff0f64ef73b28a667800fb5bd0a0f142487bbd9c36aadc9534b70de1d261027bd7164dc80ac620d8c04cc94990f627db49e96f786ae5" 46 + ] 47 + } 48 + x-commit-hash: "d9902f2a11217122a04edb39b5c5d4d540ad18fd"