Skip to content

Commit ddeba30

Browse files
authored
Merge pull request #26259 from rmonat/opam-publish-mopsa.1.0
Package mopsa.1.0
2 parents a7e3572 + 2cb18c7 commit ddeba30

File tree

1 file changed

+97
-0
lines changed
  • packages/mopsa/mopsa.1.0

1 file changed

+97
-0
lines changed

packages/mopsa/mopsa.1.0/opam

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"MOPSA: A Modular and Open Platform for Static Analysis using Abstract Interpretation"
4+
description: """\
5+
MOPSA is a generic framework for building sound static analyzers based on Abstract Interpretation.
6+
It features a modular architecture to support different kinds of languages, iterators, and abstract domains.
7+
For the moment, MOPSA can analyze programs written in a subset of C and Python.
8+
It reports run-time errors on C programs and uncaught exceptions on Python programs."""
9+
maintainer: [
10+
"Antoine Miné <[email protected]>"
11+
"Abdelraouf Ouadjaout <[email protected]>"
12+
"Raphaël Monat <[email protected]>"
13+
]
14+
authors: [
15+
"Antoine Miné"
16+
"Abdelraouf Ouadjaout"
17+
"Matthieu Journault"
18+
"Aymeric Fromherz"
19+
"Raphaël Monat"
20+
"Francesco Parolini"
21+
"Marco Milanese"
22+
"Jérôme Boillot"
23+
]
24+
license: "LGPL-3.0-or-later"
25+
homepage: "https://gitlab.com/mopsa/mopsa-analyzer"
26+
doc: "https://mopsa.gitlab.io/mopsa-analyzer/user-manual/"
27+
bug-reports: "https://gitlab.com/mopsa/mopsa-analyzer/issues"
28+
depends: [
29+
"ocaml" {>= "4.12.0"}
30+
"dune" {>= "3.7"}
31+
"ocamlfind"
32+
"apron" {>= "0.9.15"}
33+
"menhir" {>= "20180528"}
34+
"mlgmpidl"
35+
"yojson" {>= "1.6.0"}
36+
"zarith" {>= "1.10"}
37+
"odoc" {with-doc}
38+
]
39+
depopts: ["elina"]
40+
available:
41+
!(arch = "x86_32") & !(os-family = "windows") & opam-version >= "2.1.0"
42+
build: [
43+
["./configure"] {os != "macos"}
44+
[
45+
"./configure"
46+
"CLANG=/usr/local/opt/llvm/bin/clang"
47+
"LLVMCONFIG=/usr/local/opt/llvm/bin/llvm-config"
48+
] {os = "macos" & arch = "x86_64"}
49+
[
50+
"./configure"
51+
"CLANG=/opt/homebrew/opt/llvm/bin/clang"
52+
"LLVMCONFIG=/opt/homebrew/opt/llvm/bin/llvm-config"
53+
] {os = "macos" & arch = "arm64"}
54+
[make]
55+
[make "tests"] {with-test}
56+
]
57+
install: [make "install"]
58+
depexts: [
59+
["clang" "libclang-cpp-dev" "libclang-dev" "llvm-dev"]
60+
{os-distribution = "ubuntu" & os-version >= "21.04"}
61+
["clang" "libclang-11-dev" "libclang-cpp11-dev" "llvm-11-dev"]
62+
{os-distribution = "ubuntu" & os-version = "20.10"}
63+
["clang" "libclang-12-dev" "libclang-cpp12-dev" "llvm-12-dev"]
64+
{os-distribution = "ubuntu" & os-version = "20.04"}
65+
["clang" "libclang-16-dev" "libclang-cpp16-dev" "llvm-16-dev"]
66+
{os-distribution = "debian" & os-version >= "13"}
67+
["clang" "libclang-14-dev" "libclang-cpp14-dev" "llvm-14-dev"]
68+
{os-distribution = "debian" & os-version = "12"}
69+
["clang-13" "libclang-13-dev" "libclang-cpp13-dev" "llvm-13-dev"]
70+
{os-distribution = "debian" & os-version = "11"}
71+
["clang-13" "libclang-13-dev" "libclang-cpp13-dev" "llvm-13-dev"]
72+
{os-distribution = "debian" & os-version = "10"}
73+
["clang-devel" "llvm-devel" "redhat-rpm-config"] {os-family = "fedora"}
74+
["clang" "llvm"] {os-family = "arch"}
75+
["clang17-dev" "llvm17-dev"]
76+
{os-distribution = "alpine" & os-version >= "3.19"}
77+
["clang16-dev" "llvm16-dev"]
78+
{os-distribution = "alpine" & os-version >= "3.18" & os-version < "3.19"}
79+
["clang15-dev" "llvm15-dev"]
80+
{os-distribution = "alpine" & os-version >= "3.17" & os-version < "3.18"}
81+
["clang" "clang-devel" "llvm" "llvm-devel" "mpfr-devel"]
82+
{os-distribution = "opensuse-tumbleweed"}
83+
["clang" "clang-devel" "llvm" "llvm-devel" "mpfr-devel"]
84+
{os-distribution = "opensuse-leap"}
85+
["sys-devel/clang"] {os-distribution = "gentoo"}
86+
["llvm"] {os = "macos"}
87+
["devel/llvm"] {os = "freebsd"}
88+
]
89+
dev-repo: "git+https://gitlab.com/mopsa/mopsa-analyzer.git"
90+
url {
91+
src:
92+
"https://www.gitlab.com/mopsa/mopsa-analyzer/-/archive/v1.0/mopsa-analyzer-v1.0.tar.gz"
93+
checksum: [
94+
"md5=9f673f79708b44a7effb3b6bb3618d2c"
95+
"sha512=cb91cb428e43a22f1abbcb8219710d0c10a5b3756d0da392d4084b3b3a6157350776c596983e63def344f617d39964e91f244f60c07958695ee5c8c809a9f0f4"
96+
]
97+
}

0 commit comments

Comments
 (0)