Skip to content

Commit 609cd39

Browse files
authored
Merge pull request #24400 from sim642/release-goblint-cil-2.0.2
[new release] goblint-cil (2.0.2)
2 parents 75cc5d2 + 165c8c3 commit 609cd39

File tree

4 files changed

+77
-3
lines changed
  • packages
    • goblint-cil/goblint-cil.2.0.2
    • goblint

4 files changed

+77
-3
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_64"
66+
url {
67+
src:
68+
"https://github.com/goblint/cil/releases/download/2.0.2/goblint-cil-2.0.2.tbz"
69+
checksum: [
70+
"sha256=e6b654a67a46fb5a71a6c9d9ed24f46100d3f33537fef1edf5f57d3058d0dc58"
71+
"sha512=fbf66413e777b887d11c40adaf3099e6be444a9609c41508d24fe1fdb20d720fad241d2b8cc80fd6dc8829ea02cfbd7b7fc239a94b807e3df29d3f72f9f20c80"
72+
]
73+
}
74+
x-commit-hash: "98598d94f796a63751e5a9d39c6b3a9fe1f32330"

packages/goblint/goblint.2.0.0/opam

Lines changed: 1 addition & 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.10" & < "5.0"}
2222
"dune" {>= "2.9.1"}
23-
"goblint-cil" {>= "2.0.0"}
23+
"goblint-cil" {>= "2.0.0" & < "2.0.2"}
2424
"batteries" {>= "3.4.0"}
2525
"zarith" {>= "1.8"}
2626
"yojson" {>= "2.0.0"}

packages/goblint/goblint.2.0.1/opam

Lines changed: 1 addition & 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.10" & < "5.0"}
2222
"dune" {>= "2.9.1"}
23-
"goblint-cil" {>= "2.0.0"}
23+
"goblint-cil" {>= "2.0.0" & < "2.0.2"}
2424
"batteries" {>= "3.4.0"}
2525
"zarith" {>= "1.8"}
2626
"yojson" {>= "2.0.0"}

packages/goblint/goblint.2.1.0/opam

Lines changed: 1 addition & 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.10" & < "5.0"}
2222
"dune" {>= "3.0"}
23-
"goblint-cil" {>= "2.0.1"}
23+
"goblint-cil" {>= "2.0.1" & < "2.0.2"}
2424
"batteries" {>= "3.4.0"}
2525
"zarith" {>= "1.8"}
2626
"yojson" {>= "2.0.0"}

0 commit comments

Comments
 (0)