Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/llvm-ocaml/
Date: Sun, 29 Nov 2020 10:57:40
Message-Id: 1606647383.4b2d252412d6392bd46b78ac94b5025969f42ea4.mgorny@gentoo
1 commit: 4b2d252412d6392bd46b78ac94b5025969f42ea4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 10:55:18 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 10:56:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2d2524
7
8 dev-ml/llvm-ocaml: Bump to 11.0.1-rc1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-ml/llvm-ocaml/Manifest | 1 +
13 dev-ml/llvm-ocaml/llvm-ocaml-11.0.1_rc1.ebuild | 124 +++++++++++++++++++++++++
14 2 files changed, 125 insertions(+)
15
16 diff --git a/dev-ml/llvm-ocaml/Manifest b/dev-ml/llvm-ocaml/Manifest
17 index 11ed9f91a47..d36c99982c3 100644
18 --- a/dev-ml/llvm-ocaml/Manifest
19 +++ b/dev-ml/llvm-ocaml/Manifest
20 @@ -1,3 +1,4 @@
21 DIST llvmorg-10.0.1.tar.gz 120880730 BLAKE2B 30f19f56c4d1f6abcda5fec76256219d1e3c8a6ff1a1f152f94bfe362c07884339fe571ff7fe903ed3b3deb150b2fa868c387887a0dea2930dc08b81db71a5b1 SHA512 48078fff9293a87f1a973f3348f79506f04c3da774295f5eb67d74dd2d1aa94f0973f8ced3f4ab9e8339902071f82c603b43d5608ad7227046c4da769c5d2151
22 DIST llvmorg-11.0.0.tar.gz 122743665 BLAKE2B 3f95570240789fd68ddb747df817f5c6cdc9da40911bbe9ee3531c15ada9165e5002b1c2f778cf8735858485ea05a8754e3d3a5f4b15bdd6cb33d64a14692984 SHA512 b6d38871ccce0e086e27d35e42887618d68e57d8274735c59e3eabc42dee352412489296293f8d5169fe0044936345915ee7da61ebdc64ec10f7737f6ecd90f2
23 +DIST llvmorg-11.0.1-rc1.tar.gz 122777435 BLAKE2B 23b520d33cf4b641027ee52bb10c6171d60356c9167d5b94012929e6e547c526cda1a6177c295ed19592dfb83b020f63b2cef4cabc70ce9a2a8e098fe654a3cd SHA512 605c7bbff1610f335be8ea4f1204df797fed21185a54c77565f6ff2d00794d1967e9c5fab7c87633e242f2f999bdffb76da83f756d261c1ca476114599409ae1
24 DIST llvmorg-9.0.1.tar.gz 113193320 BLAKE2B b86e405f2b8e00436045fd409fe19cdde75c797b1192c62a22b5ec75e6b4dc8e874a0f33008dc31562445e4cbe53a992b6f48c684255a6a1ef261e595b8b161f SHA512 fa88beeaae94b6d0cd9b5ba38658d0ffed8004035d7d8a4f95c3d31a709b88b581ae9bd7761333c8e5375c44b8f6be01768b5a3be901163159d7e6c43b71da59
25
26 diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-11.0.1_rc1.ebuild b/dev-ml/llvm-ocaml/llvm-ocaml-11.0.1_rc1.ebuild
27 new file mode 100644
28 index 00000000000..40fb0676b74
29 --- /dev/null
30 +++ b/dev-ml/llvm-ocaml/llvm-ocaml-11.0.1_rc1.ebuild
31 @@ -0,0 +1,124 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{6..9} )
38 +inherit cmake llvm llvm.org python-any-r1
39 +
40 +DESCRIPTION="OCaml bindings for LLVM"
41 +HOMEPAGE="https://llvm.org/"
42 +
43 +# Keep in sync with sys-devel/llvm
44 +ALL_LLVM_EXPERIMENTAL_TARGETS=( ARC VE )
45 +ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM AVR BPF Hexagon Lanai Mips MSP430
46 + NVPTX PowerPC RISCV Sparc SystemZ WebAssembly X86 XCore
47 + "${ALL_LLVM_EXPERIMENTAL_TARGETS[@]}" )
48 +ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
49 +
50 +LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
51 +SLOT="0/${PV}"
52 +KEYWORDS=""
53 +IUSE="debug test ${ALL_LLVM_TARGETS[*]}"
54 +REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )"
55 +RESTRICT="!test? ( test )"
56 +
57 +RDEPEND="
58 + >=dev-lang/ocaml-4.00.0:0=
59 + dev-ml/ocaml-ctypes:=
60 + ~sys-devel/llvm-${PV}:=[debug?]
61 + !sys-devel/llvm[ocaml(-)]"
62 +for x in "${ALL_LLVM_TARGETS[@]}"; do
63 + RDEPEND+="
64 + ${x}? ( ~sys-devel/llvm-${PV}[${x}] )"
65 +done
66 +unset x
67 +
68 +DEPEND="${RDEPEND}"
69 +BDEPEND="
70 + dev-lang/perl
71 + dev-ml/findlib
72 + >=dev-util/cmake-3.16
73 + test? ( dev-ml/ounit )
74 + ${PYTHON_DEPS}"
75 +
76 +LLVM_COMPONENTS=( llvm )
77 +llvm.org_set_globals
78 +
79 +pkg_setup() {
80 + LLVM_MAX_SLOT=${PV%%.*} llvm_pkg_setup
81 + python-any-r1_pkg_setup
82 +}
83 +
84 +src_configure() {
85 + local libdir=$(get_libdir)
86 + local mycmakeargs=(
87 + -DLLVM_LIBDIR_SUFFIX=${libdir#lib}
88 +
89 + -DBUILD_SHARED_LIBS=OFF
90 + -DLLVM_BUILD_LLVM_DYLIB=ON
91 + -DLLVM_LINK_LLVM_DYLIB=ON
92 + -DLLVM_OCAML_OUT_OF_TREE=ON
93 +
94 + # cheap hack: LLVM combines both anyway, and the only difference
95 + # is that the former list is explicitly verified at cmake time
96 + -DLLVM_TARGETS_TO_BUILD=""
97 + -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}"
98 + -DLLVM_BUILD_TESTS=$(usex test)
99 +
100 + # disable various irrelevant deps and settings
101 + -DLLVM_ENABLE_FFI=OFF
102 + -DLLVM_ENABLE_TERMINFO=OFF
103 + -DHAVE_HISTEDIT_H=NO
104 + -DLLVM_ENABLE_ASSERTIONS=$(usex debug)
105 + -DLLVM_ENABLE_EH=ON
106 + -DLLVM_ENABLE_RTTI=ON
107 +
108 + -DLLVM_HOST_TRIPLE="${CHOST}"
109 +
110 + -DPython3_EXECUTABLE="${PYTHON}"
111 +
112 + # disable go bindings
113 + -DGO_EXECUTABLE=GO_EXECUTABLE-NOTFOUND
114 +
115 + # TODO: ocamldoc
116 + )
117 +
118 + use test && mycmakeargs+=(
119 + -DLLVM_LIT_ARGS="$(get_lit_flags)"
120 + )
121 +
122 + # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844
123 + # also: custom rules for OCaml do not work for CPPFLAGS
124 + use debug || local -x CFLAGS="${CFLAGS} -DNDEBUG"
125 + cmake_src_configure
126 +
127 + local llvm_libdir=$(llvm-config --libdir)
128 + # an ugly hack; TODO: figure out a way to pass -L to ocaml...
129 + cd "${BUILD_DIR}/${libdir}" || die
130 + ln -s "${llvm_libdir}"/*.so . || die
131 +
132 + if use test; then
133 + local llvm_bindir=$(llvm-config --bindir)
134 + # Force using system-installed tools.
135 + sed -i -e "/llvm_tools_dir/s@\".*\"@\"${llvm_bindir}\"@" \
136 + "${BUILD_DIR}"/test/lit.site.cfg.py || die
137 + fi
138 +}
139 +
140 +src_compile() {
141 + cmake_build ocaml_all
142 +}
143 +
144 +src_test() {
145 + # respect TMPDIR!
146 + local -x LIT_PRESERVES_TMP=1
147 + cmake_build check-llvm-bindings-ocaml
148 +}
149 +
150 +src_install() {
151 + DESTDIR="${D}" \
152 + cmake -P "${BUILD_DIR}"/bindings/ocaml/cmake_install.cmake || die
153 +
154 + dodoc bindings/ocaml/README.txt
155 +}