Skip to content

Commit 1e2ff74

Browse files
authored
Merge pull request #29500 from hannesm/solo5-v0.10.1
release solo5 0.10.1
2 parents 8227f67 + 173fba8 commit 1e2ff74

File tree

2 files changed

+100
-0
lines changed
  • packages
    • solo5-cross-aarch64/solo5-cross-aarch64.0.10.1
    • solo5/solo5.0.10.1

2 files changed

+100
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
maintainer: "martin@lucina.net"
3+
authors: [
4+
"Dan Williams <djwillia@us.ibm.com>"
5+
"Martin Lucina <martin@lucina.net>"
6+
"Ricardo Koller <kollerr@us.ibm.com>"
7+
]
8+
homepage: "https://github.com/solo5/solo5"
9+
bug-reports: "https://github.com/solo5/solo5/issues"
10+
license: "ISC"
11+
dev-repo: "git+https://github.com/solo5/solo5.git"
12+
build: [
13+
["env" "TARGET_CC=aarch64-linux-gnu-gcc" "TARGET_LD=aarch64-linux-gnu-ld" "TARGET_OBJCOPY=aarch64-linux-gnu-objcopy" "./configure.sh" "--prefix=%{prefix}%"]
14+
[make "V=1"]
15+
]
16+
install: [make "V=1" "install-toolchain"]
17+
depends: [
18+
"conf-pkg-config" {build & os = "linux"}
19+
"conf-libseccomp" {build & os = "linux"}
20+
"solo5" {= version}
21+
]
22+
depexts: [
23+
["linux-headers"] {os-distribution = "alpine"}
24+
["kernel-headers"] {os-distribution = "fedora"}
25+
["kernel-headers"] {os-distribution = "rhel"}
26+
["linux-libc-dev"] {os-family = "debian"}
27+
["gcc-aarch64-linux-gnu"] {os-family = "debian"}
28+
]
29+
available: [
30+
(arch != "arm64") &
31+
(os = "linux" & os-family = "debian")
32+
]
33+
synopsis: "Solo5 sandboxed execution environment"
34+
description: """
35+
Solo5 is a sandboxed execution environment primarily intended
36+
for, but not limited to, running applications built using various
37+
unikernels (a.k.a. library operating systems).
38+
39+
This package provides the Solo5 components needed to cross-build
40+
MirageOS unikernels for the aarch64 architecture.
41+
"""
42+
x-maintenance-intent: [ "(latest)" ]
43+
url {
44+
src: "https://github.com/Solo5/solo5/releases/download/v0.10.1/solo5-v0.10.1.tar.gz"
45+
checksum: "sha512=a364446b8cf39d63e0afe79475419cc81ec56f239cb38eef6c351fc849e836982f4d875b34f368bdfd1c7df72e8b162f95cf5e6d00e95077f9a57f2594f441bf"
46+
}

packages/solo5/solo5.0.10.1/opam

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
opam-version: "2.0"
2+
maintainer: "martin@lucina.net"
3+
authors: [
4+
"Dan Williams <djwillia@us.ibm.com>"
5+
"Martin Lucina <martin@lucina.net>"
6+
"Ricardo Koller <kollerr@us.ibm.com>"
7+
]
8+
homepage: "https://github.com/solo5/solo5"
9+
bug-reports: "https://github.com/solo5/solo5/issues"
10+
license: "ISC"
11+
dev-repo: "git+https://github.com/solo5/solo5.git"
12+
build: [
13+
["./configure.sh" "--prefix=%{prefix}%"]
14+
[make "V=1"]
15+
]
16+
install: [make "V=1" "install"]
17+
depends: [
18+
"conf-pkg-config" {build & os = "linux"}
19+
"conf-libseccomp" {build & os = "linux"}
20+
]
21+
depexts: [
22+
["linux-headers"] {os-distribution = "alpine"}
23+
["kernel-headers"] {os-distribution = "fedora"}
24+
["kernel-headers"] {os-distribution = "rhel"}
25+
["linux-libc-dev"] {os-family = "debian"}
26+
]
27+
conflicts: [
28+
"ocaml-freestanding" {< "0.7.0"}
29+
"solo5-bindings-hvt"
30+
"solo5-bindings-spt"
31+
"solo5-bindings-virtio"
32+
"solo5-bindings-muen"
33+
"solo5-bindings-genode"
34+
"solo5-bindings-xen"
35+
]
36+
available: [
37+
(arch = "x86_64" | arch = "arm64" | arch = "ppc64") &
38+
(os = "linux" | os = "freebsd" | os = "openbsd")
39+
]
40+
synopsis: "Solo5 sandboxed execution environment"
41+
description: """
42+
Solo5 is a sandboxed execution environment primarily intended
43+
for, but not limited to, running applications built using various
44+
unikernels (a.k.a. library operating systems).
45+
46+
This package provides the Solo5 components needed to build and
47+
run MirageOS unikernels on the host system.
48+
"""
49+
x-maintenance-intent: [ "(latest)" ]
50+
x-ci-accept-failures: [ "centos-7" "opensuse-15.6" ] # too old GCC compiler (OpenSUSE uses GCC 7 and we require GCC 10)
51+
url {
52+
src: "https://github.com/Solo5/solo5/releases/download/v0.10.1/solo5-v0.10.1.tar.gz"
53+
checksum: "sha512=a364446b8cf39d63e0afe79475419cc81ec56f239cb38eef6c351fc849e836982f4d875b34f368bdfd1c7df72e8b162f95cf5e6d00e95077f9a57f2594f441bf"
54+
}

0 commit comments

Comments
 (0)