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