commit:     8acc28a941a3fba039b5e605da42bf40b1a9433f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 29 11:48:44 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jul 30 22:10:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8acc28a9

dev-ml/llvm-ocaml: Remove 8*

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-ml/llvm-ocaml/Manifest                |   1 -
 dev-ml/llvm-ocaml/llvm-ocaml-8.0.1.ebuild | 124 ------------------------------
 2 files changed, 125 deletions(-)

diff --git a/dev-ml/llvm-ocaml/Manifest b/dev-ml/llvm-ocaml/Manifest
index 43499312fd5..082dafda8ad 100644
--- a/dev-ml/llvm-ocaml/Manifest
+++ b/dev-ml/llvm-ocaml/Manifest
@@ -1,4 +1,3 @@
-DIST llvm-8.0.1.src.tar.xz 30477608 BLAKE2B 
4319c837b36111401e3b0f9659b8d875c89463bcc7816df1aefe1e3ff989860bbaa92504718f8e15416cfd9f3491c13777cd5cb661877b237b342b0e515b93f5
 SHA512 
82e120be5cabdfd5111aebbea68a663fe229c8861d73802d6ab09a3bf48f60de333e07e61f8fb61beaa14ac2bea24fcd74fa6f761acaf62469f536b79fcb1e16
 DIST llvmorg-10.0.0.tar.gz 120804856 BLAKE2B 
6b0254f5b913398cdcf2b2ec1ff219888706d2b79d5296590934714e42ac79f6a6547941ac2b1d2c4e6313dd18b6c7068e748aa6ac033e49fccbf5d355aa8191
 SHA512 
baa182d62fef1851836013ae8a1a00861ea89769778d67fb97b407a9de664e6c85da2af9c5b3f75d2bf34ff6b00004e531ca7e4b3115a26c0e61c575cf2303a0
 DIST llvmorg-10.0.1.tar.gz 120880730 BLAKE2B 
30f19f56c4d1f6abcda5fec76256219d1e3c8a6ff1a1f152f94bfe362c07884339fe571ff7fe903ed3b3deb150b2fa868c387887a0dea2930dc08b81db71a5b1
 SHA512 
48078fff9293a87f1a973f3348f79506f04c3da774295f5eb67d74dd2d1aa94f0973f8ced3f4ab9e8339902071f82c603b43d5608ad7227046c4da769c5d2151
 DIST llvmorg-11.0.0-rc1.tar.gz 122688246 BLAKE2B 
10ff3f08ff3780abb1d86ac67942e6aac52ff5daf820a2e3d23d8b79dbade1c5b1d398d0a577028d2d7c8759ab9a8b552a0305b5750310a015585c06cdadf844
 SHA512 
09564ed903902a5795fffaa4679badc30bf49739889a48074b5ae2c93bd29000cfb36a650208d5cae5d74899bade066f84b4aa023fc852eec246ff67bf64a267

diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-8.0.1.ebuild 
b/dev-ml/llvm-ocaml/llvm-ocaml-8.0.1.ebuild
deleted file mode 100644
index 7781bf0cb52..00000000000
--- a/dev-ml/llvm-ocaml/llvm-ocaml-8.0.1.ebuild
+++ /dev/null
@@ -1,124 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
-# (needed due to CMAKE_BUILD_TYPE != Gentoo)
-CMAKE_MIN_VERSION=3.7.0-r1
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils llvm multiprocessing python-any-r1
-
-MY_P=llvm-${PV/_/}.src
-DESCRIPTION="OCaml bindings for LLVM"
-HOMEPAGE="https://llvm.org/";
-SRC_URI="https://github.com/llvm/llvm-project/releases/download/llvmorg-${PV}/${MY_P}.tar.xz";
-
-# Keep in sync with sys-devel/llvm
-ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430
-       NVPTX PowerPC Sparc SystemZ WebAssembly X86 XCore )
-ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
-LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
-
-LICENSE="UoI-NCSA"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="debug test ${ALL_LLVM_TARGETS[*]}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-       >=dev-lang/ocaml-4.00.0:0=
-       dev-ml/ocaml-ctypes:=
-       ~sys-devel/llvm-${PV}:=[${LLVM_TARGET_USEDEPS// /,},debug?]
-       !sys-devel/llvm[ocaml(-)]"
-DEPEND="${RDEPEND}
-       dev-lang/perl
-       dev-ml/findlib
-       test? ( dev-ml/ounit )
-       ${PYTHON_DEPS}"
-
-REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )"
-
-S=${WORKDIR}/${MY_P}
-
-# least intrusive of all
-CMAKE_BUILD_TYPE=RelWithDebInfo
-
-pkg_setup() {
-       LLVM_MAX_SLOT=${PV%%.*} llvm_pkg_setup
-       python-any-r1_pkg_setup
-}
-
-src_prepare() {
-       # Python is needed to run tests using lit
-       python_setup
-
-       cmake-utils_src_prepare
-}
-
-src_configure() {
-       local libdir=$(get_libdir)
-       local mycmakeargs=(
-               -DLLVM_LIBDIR_SUFFIX=${libdir#lib}
-
-               -DBUILD_SHARED_LIBS=ON
-               -DLLVM_OCAML_OUT_OF_TREE=ON
-               -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}"
-               -DLLVM_BUILD_TESTS=$(usex test)
-
-               # disable various irrelevant deps and settings
-               -DLLVM_ENABLE_FFI=OFF
-               -DLLVM_ENABLE_TERMINFO=OFF
-               -DHAVE_HISTEDIT_H=NO
-               -DWITH_POLLY=OFF
-               -DLLVM_ENABLE_ASSERTIONS=$(usex debug)
-               -DLLVM_ENABLE_EH=ON
-               -DLLVM_ENABLE_RTTI=ON
-
-               -DLLVM_HOST_TRIPLE="${CHOST}"
-
-               # disable go bindings
-               -DGO_EXECUTABLE=GO_EXECUTABLE-NOTFOUND
-
-               # TODO: ocamldoc
-       )
-
-       use test && mycmakeargs+=(
-               -DLLVM_LIT_ARGS="-vv;-j;${LIT_JOBS:-$(makeopts_jobs 
"${MAKEOPTS}" "$(get_nproc)")}"
-       )
-
-       # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844
-       # also: custom rules for OCaml do not work for CPPFLAGS
-       use debug || local -x CFLAGS="${CFLAGS} -DNDEBUG"
-       cmake-utils_src_configure
-
-       local llvm_libdir=$(llvm-config --libdir)
-       # an ugly hack; TODO: figure out a way to pass -L to ocaml...
-       cd "${BUILD_DIR}/${libdir}" || die
-       ln -s "${llvm_libdir}"/*.so . || die
-
-       if use test; then
-               local llvm_bindir=$(llvm-config --bindir)
-               # Force using system-installed tools.
-               sed -i -e "/llvm_tools_dir/s@\".*\"@\"${llvm_bindir}\"@" \
-                       "${BUILD_DIR}"/test/lit.site.cfg.py || die
-       fi
-}
-
-src_compile() {
-       cmake-utils_src_compile ocaml_all
-}
-
-src_test() {
-       # respect TMPDIR!
-       local -x LIT_PRESERVES_TMP=1
-       cmake-utils_src_make check-llvm-bindings-ocaml
-}
-
-src_install() {
-       DESTDIR="${D}" \
-       cmake -P "${BUILD_DIR}"/bindings/ocaml/cmake_install.cmake || die
-
-       dodoc bindings/ocaml/README.txt
-}

Reply via email to