Skip to content

Commit 3003310

Browse files
authored
Merge pull request #28780 from Octachron/release-codept-0.12.2
[new release] codept (2 packages) (0.12.2)
2 parents 2b22caf + 71d6f98 commit 3003310

File tree

2 files changed

+91
-0
lines changed
  • packages
    • codept-lib/codept-lib.0.12.2
    • codept/codept.0.12.2

2 files changed

+91
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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 <[email protected]>"]
9+
authors: ["Florian Angeletti <[email protected]>"]
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.5~"}
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.2/codept-0.12.2.tbz"
37+
checksum: [
38+
"sha256=50ad202bfaee10b0eed8f43154036f3ba20e363ae9d42a692d0c20fad3075f62"
39+
"sha512=78b472d6aeb6554bd6d8a7f8886100141cc06fffa5b37bd38a9c7450a3bf83cffc2a0e51d8a601a6e2f732e3785e888373798f172afb2719ea4f5d60f941f869"
40+
]
41+
}
42+
x-commit-hash: "1982dc297dc54e9041b8fa0f439449a50d9f7294"

packages/codept/codept.0.12.2/opam

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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 <[email protected]>"]
15+
authors: ["Florian Angeletti <[email protected]>"]
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+
x-ci-accept-failures: ["macos-homebrew"]
41+
url {
42+
src:
43+
"https://github.com/Octachron/codept/releases/download/0.12.2/codept-0.12.2.tbz"
44+
checksum: [
45+
"sha256=50ad202bfaee10b0eed8f43154036f3ba20e363ae9d42a692d0c20fad3075f62"
46+
"sha512=78b472d6aeb6554bd6d8a7f8886100141cc06fffa5b37bd38a9c7450a3bf83cffc2a0e51d8a601a6e2f732e3785e888373798f172afb2719ea4f5d60f941f869"
47+
]
48+
}
49+
x-commit-hash: "1982dc297dc54e9041b8fa0f439449a50d9f7294"

0 commit comments

Comments
 (0)