Skip to content

Commit 9bd012f

Browse files
committed
apron: the version needs a v
Signed-off-by: Marcello Seri <[email protected]>
1 parent 10a6f1d commit 9bd012f

File tree

2 files changed

+53
-0
lines changed
  • packages/apron

2 files changed

+53
-0
lines changed

packages/apron/apron.0.9.14/opam

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ depends: [
3939
depopts: [
4040
"conf-ppl"
4141
]
42+
available: opam-version >= "2.1.0"
43+
flags: avoid-version
4244
description:"""
4345
Apron is a library to represent properties of numeric variables, such as variable bounds or linear relations between variables, and to manipulate these properties through semantic operations, such as variable assignments, tests, conjunctions, entailment. Apron is intended to be used in static program analyzers, in order to infer invariants of numeric variables, i.e., properties that hold for all executions of a program. It is based on the theory of Abstract Interpretation."""
4446
url {

packages/apron/apron.v0.9.14/opam

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
opam-version: "2.0"
2+
synopsis: "APRON numerical abstract domain library"
3+
authors: [
4+
"Bertrand Jeannet"
5+
"Antoine Miné"
6+
"https://github.com/antoinemine/apron/graphs/contributors"
7+
]
8+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
9+
homepage: "https://antoinemine.github.io/Apron/doc/"
10+
maintainer: "Nicolas Berthier <[email protected]>"
11+
dev-repo: "git+https://github.com/antoinemine/apron.git"
12+
bug-reports: "https://github.com/antoinemine/apron/issues"
13+
build: [
14+
[
15+
"sh"
16+
"./configure"
17+
"--prefix"
18+
"%{share}%/apron"
19+
"--no-ppl" {!conf-ppl:installed}
20+
"--no-ocaml-plugins" {os = "freebsd"}
21+
"--absolute-dylibs" {os = "macos"}
22+
"--ext-dll" {os = "win32"} "dll" {os = "win32"}
23+
"--debug"
24+
"--no-strip"
25+
]
26+
[make "-j%{jobs}%"]
27+
]
28+
install: [
29+
[make "install"]
30+
]
31+
depends: [
32+
"ocaml"
33+
"ocamlfind" {build}
34+
"camlidl"
35+
"mlgmpidl"
36+
"ocamlbuild" {build}
37+
"conf-perl"
38+
]
39+
depopts: [
40+
"conf-ppl"
41+
]
42+
description:"""
43+
Apron is a library to represent properties of numeric variables, such as variable bounds or linear relations between variables, and to manipulate these properties through semantic operations, such as variable assignments, tests, conjunctions, entailment. Apron is intended to be used in static program analyzers, in order to infer invariants of numeric variables, i.e., properties that hold for all executions of a program. It is based on the theory of Abstract Interpretation."""
44+
url {
45+
src:
46+
"https://github.com/antoinemine/apron/archive/refs/tags/v0.9.14.tar.gz"
47+
checksum: [
48+
"md5=8bfe69f46ecff2bd893b876978a19e23"
49+
"sha512=9c1107cea95d56a377f221724064bc65dc605a624171064e681c07e1dece688e06b5511e9974df7c20d883d7dc6cdb25bf1431a8968d721d5c587875ffef751a"
50+
]
51+
}

0 commit comments

Comments
 (0)