Skip to content

Commit 0e5b7b6

Browse files
authored
Merge pull request ocaml#21975 from sim642/release-goblint-cil-2.0.0
[new release] goblint-cil (2.0.0)
2 parents 39fe9fb + 22ea198 commit 0e5b7b6

File tree

3 files changed

+86
-2
lines changed
  • packages
    • goblint-cil/goblint-cil.2.0.0
    • goblint

3 files changed

+86
-2
lines changed
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"A front-end for the C programming language that facilitates program analysis and transformation"
4+
description: """
5+
This is a fork of the 'cil' package used for 'goblint'. Major changes include:
6+
* Support for C99 and C11.
7+
* Compatibility with modern OCaml versions.
8+
* Use Zarith instead of Num and use that for integer constants.
9+
* Improved locations with columns and spans.
10+
* Removal of unmaintained extensions and MSVC support.
11+
* Use dune instead of make and ocamlbuild.
12+
* Many bug fixes."""
13+
maintainer: [
14+
"Michael Schwarz <[email protected]>"
15+
"Simmo Saan <[email protected]>"
16+
]
17+
authors: [
18+
"George Necula"
19+
"Scott McPeak"
20+
"Westley Weimer"
21+
"Gabriel Kerneis"
22+
"Ralf Vogler"
23+
"Michael Schwarz"
24+
"Simmo Saan"
25+
]
26+
license: "BSD-3-Clause"
27+
homepage: "https://github.com/goblint/cil"
28+
bug-reports: "https://github.com/goblint/cil/issues"
29+
depends: [
30+
"ocaml" {>= "4.05.0"}
31+
"ocamlfind" {with-test}
32+
"zarith"
33+
"hevea" {with-doc}
34+
"dune" {>= "2.7"}
35+
"dune-configurator"
36+
"odoc" {with-doc}
37+
"stdlib-shims"
38+
"ppx_deriving_yojson" {>= "3.2"}
39+
"yojson"
40+
"conf-perl"
41+
"cppo"
42+
"conf-gcc"
43+
]
44+
conflicts: ["cil"]
45+
build: [
46+
["dune" "subst"] {dev}
47+
[
48+
"dune"
49+
"build"
50+
"-p"
51+
name
52+
"-j"
53+
jobs
54+
"@install"
55+
"@runtest" {with-test}
56+
"@doc" {with-doc}
57+
]
58+
]
59+
dev-repo: "git+https://github.com/goblint/cil.git"
60+
depexts: [
61+
["perl-ExtUtils-MakeMaker"] {os-distribution = "centos" | os-distribution = "fedora" | os-distribution = "ol"}
62+
["perl-FindBin"] {os-distribution = "fedora"}
63+
["build-base"] {os-distribution = "alpine"}
64+
]
65+
available: arch != "x86_32" & arch != "arm32" & arch != "ppc32" & arch != "ppc64" & arch != "s390x"
66+
url {
67+
src:
68+
"https://github.com/goblint/cil/releases/download/2.0.0/goblint-cil-2.0.0.tbz"
69+
checksum: [
70+
"sha256=0467f30218c7ef03074b96912e46f58883e5229ba7d30102470191ad39a49b26"
71+
"sha512=08a7a1a79dce32072431dd681866682e9dab7acbc4cb6e0e2255d6b71fea7020d7fcf00bbbb130489b77f03fa244382dce30eca67d75967e81b06e09996d44a8"
72+
]
73+
}
74+
x-commit-hash: "9968b57aae763fd0b5d652e13e2f18b643eb82e4"

packages/goblint/goblint.1.0.0/opam

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
opam-version: "2.0"
22
maintainer: "Ralf Vogler <[email protected]>"
3+
authors: [
4+
"Vesal Vojdani"
5+
"Kalmer Apinis"
6+
"Martin D. Schwarz"
7+
"Alexander Herz"
8+
"Ralf Vogler"
9+
]
310
license: "MIT"
411
homepage: "https://github.com/goblint/analyzer"
512
bug-reports: "https://github.com/goblint/analyzer/issues"
@@ -9,14 +16,16 @@ depends: [
916
"ocaml" {>= "4.04.1" & < "4.07"}
1017
"ocamlbuild" {build}
1118
"ocamlfind" {build}
12-
"goblint-cil" {build}
19+
"goblint-cil" {build & < "1.8.0"}
1320
"batteries" {build & < "3.4.0"}
1421
"xml-light" {build}
1522
"ppx_distr_guards"
1623
"ppx_monadic"
1724
"ppx_import"
1825
"ppx_deriving"
1926
"ppx_deriving_yojson"
27+
"yojson" {< "1.6.0"}
28+
"conf-gcc"
2029
]
2130
synopsis: "Static analysis framework for concurrent C"
2231
url {

packages/goblint/goblint.1.1.1/opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bug-reports: "https://github.com/goblint/analyzer/issues"
2020
depends: [
2121
"ocaml" {>= "4.09"}
2222
"dune" {>= "2.9.1"}
23-
"goblint-cil" {>= "1.8.2"}
23+
"goblint-cil" {>= "1.8.2" & < "2.0.0"}
2424
"batteries" {>= "3.2.0" & < "3.4.0"}
2525
"zarith" {>= "1.8"}
2626
"qcheck-core"
@@ -35,6 +35,7 @@ depends: [
3535
"conf-gmp" {>= "3"}
3636
"conf-ruby" {with-test}
3737
"benchmark" {with-test}
38+
"conf-gcc"
3839
]
3940
depopts: ["apron" "z3"]
4041
build: [

0 commit comments

Comments
 (0)