mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-util/lldb: Drop versions prior to 7.0.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,6 +1,2 @@
|
||||
DIST lldb-5.0.2.src.tar.xz 19220632 BLAKE2B 7ab97a4e96a2faf6593f5584a5455bc793a50a51370bd32d1595958e5fba9d121832675e6f31cb18a3b77b472eefa8040443b77af3e29c5aa455e2a0dcdb7cdc SHA512 66eaaead60cc908ac061bedb4fac9cb96cecb7f4e5a79a51b6fa080e8f61f718b14e5f3581ead832b495bf10f055d4253d199236a0947dd22395ec80bf2afcf4
|
||||
DIST lldb-6.0.1.src.tar.xz 19292420 BLAKE2B 9ec3304aa370781dcbc7c30e47f7becbd99b50f32d9eea36fefbf0e3608bdfe10796ecc14807ee17795de430409315a5dfad02db0fd3ec1a0ad51e9e240e4b40 SHA512 93ee2efea07276f8838bc2b3ff039cab8c7a1a6965647aaa4dee99f55c6465d5584ed3be87b144e2e32b5acc7db9cec56d89404de764a2f53643ed154d213721
|
||||
DIST lldb-7.0.1.src.tar.xz 19384628 BLAKE2B 4720aa85afb90b84264f53736ca8a225bfc807cd84271f8be35a06437e718fb40a0f5090f213e203ffb746b254583f59e912d00300635e78f43aeb75a8dc4048 SHA512 7e98c3148ac34b42404e5aaaff91728d19e9062110a333f0bc7a62ec324fbb6d033ea44b56e144dc1e94febb2107cfb33c71bb3602c2168a6270dd807a2cc5ff
|
||||
DIST llvm-5.0.2.src.tar.xz 23451868 BLAKE2B b7082be2e4ad557b29b9f6869811f262adcf5c73d552faf91b339bede75cf5eab58afefa12fa779a38be71fe2b8f4ea297c3213ee4e8370cc01972c59249d91c SHA512 3588be5ed969c3f7f6f16f56a12a6af2814d3d3c960d4a36ffebb0446cc75f19220bccee7fc605f9b01f5d5c188a905a046193cc12dec42dd5922048b5c27fe1
|
||||
DIST llvm-6.0.1.src.tar.xz 25306628 BLAKE2B 60232d4d22f8096b565cc8d81fea0639f24f14e8fc4f66ade69fa15479181f07f655f26dff3fa24bf105762b495da316c5c9352db234bd0af6b9c3fff6d4d881 SHA512 cbbb00eb99cfeb4aff623ee1a5ba075e7b5a76fc00c5f9f539ff28c108598f5708a0369d5bd92683def5a20c2fe60cab7827b42d628dbfcc79b57e0e91b84dd9
|
||||
DIST llvm-7.0.1.src.tar.xz 28311056 BLAKE2B 737aa6144a415e41a4ff2c8bd5a727d6f14d7b1810c62cbefa5a25fe642c98cddf8a28e35c7e9783373aa3b96f5c0943229e229ad1b43e56e9ed6db0f27ab128 SHA512 ac43a3cb71a53deb55e3693653847cf20bf6f5d9056f224e6956c96d63bc59ebee9404f088eec9cabe65337b4607a905ef931354b373cf64e0004c6905a6b5df
|
||||
|
||||
@@ -1,115 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# 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 python-single-r1 toolchain-funcs
|
||||
|
||||
MY_P=${P/_/}.src
|
||||
LLVM_P=llvm-${PV/_/}.src
|
||||
|
||||
DESCRIPTION="The LLVM debugger"
|
||||
HOMEPAGE="https://llvm.org/"
|
||||
SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz
|
||||
test? ( https://releases.llvm.org/${PV/_//}/${LLVM_P}.tar.xz )"
|
||||
|
||||
LICENSE="UoI-NCSA"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
IUSE="libedit ncurses python test"
|
||||
|
||||
RDEPEND="
|
||||
libedit? ( dev-libs/libedit:0= )
|
||||
ncurses? ( >=sys-libs/ncurses-5.9-r3:0= )
|
||||
python? ( dev-python/six[${PYTHON_USEDEP}]
|
||||
${PYTHON_DEPS} )
|
||||
~sys-devel/clang-${PV}[xml]
|
||||
~sys-devel/llvm-${PV}
|
||||
!<sys-devel/llvm-4.0"
|
||||
DEPEND="${RDEPEND}
|
||||
python? ( >=dev-lang/swig-3.0.11 )
|
||||
test? ( ~dev-python/lit-${PV}[${PYTHON_USEDEP}] )
|
||||
${PYTHON_DEPS}"
|
||||
|
||||
REQUIRED_USE=${PYTHON_REQUIRED_USE}
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
# least intrusive of all
|
||||
CMAKE_BUILD_TYPE=RelWithDebInfo
|
||||
|
||||
pkg_setup() {
|
||||
LLVM_MAX_SLOT=${PV%%.*} llvm_pkg_setup
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
einfo "Unpacking ${MY_P}.tar.xz ..."
|
||||
tar -xf "${DISTDIR}/${MY_P}.tar.xz" || die
|
||||
|
||||
if use test; then
|
||||
einfo "Unpacking parts of ${LLVM_P}.tar.xz ..."
|
||||
tar -xf "${DISTDIR}/${LLVM_P}.tar.xz" \
|
||||
"${LLVM_P}"/{lib/Testing/Support,utils/unittest} || die
|
||||
mv "${LLVM_P}" llvm || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DLLDB_DISABLE_CURSES=$(usex !ncurses)
|
||||
-DLLDB_DISABLE_LIBEDIT=$(usex !libedit)
|
||||
-DLLDB_DISABLE_PYTHON=$(usex !python)
|
||||
-DLLDB_USE_SYSTEM_SIX=1
|
||||
-DLLVM_ENABLE_TERMINFO=$(usex ncurses)
|
||||
|
||||
-DLLVM_BUILD_TESTS=$(usex test)
|
||||
# compilers for lit tests
|
||||
-DLLDB_TEST_C_COMPILER="$(type -P clang)"
|
||||
-DLLDB_TEST_CXX_COMPILER="$(type -P clang++)"
|
||||
# compiler for ole' python tests
|
||||
-DLLDB_TEST_COMPILER="$(type -P clang)"
|
||||
|
||||
# TODO: fix upstream to detect this properly
|
||||
-DHAVE_LIBDL=ON
|
||||
-DHAVE_LIBPTHREAD=ON
|
||||
|
||||
# normally we'd have to set LLVM_ENABLE_TERMINFO, HAVE_TERMINFO
|
||||
# and TERMINFO_LIBS... so just force FindCurses.cmake to use
|
||||
# ncurses with complete library set (including autodetection
|
||||
# of -ltinfo)
|
||||
-DCURSES_NEED_NCURSES=ON
|
||||
)
|
||||
use test && mycmakeargs+=(
|
||||
-DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm"
|
||||
-DLIT_COMMAND="${EPREFIX}/usr/bin/lit"
|
||||
)
|
||||
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_test() {
|
||||
cmake-utils_src_make check-lldb-lit
|
||||
use python && cmake-utils_src_make check-lldb
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
|
||||
# oh my...
|
||||
if use python; then
|
||||
# remove custom readline.so for now
|
||||
# TODO: figure out how to deal with it
|
||||
# upstream is basically building a custom readline.so with -ledit
|
||||
# to avoid symbol collisions between readline and libedit...
|
||||
rm "${D}$(python_get_sitedir)/readline.so" || die
|
||||
|
||||
# byte-compile the modules
|
||||
python_optimize
|
||||
fi
|
||||
}
|
||||
@@ -1,118 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# 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-single-r1 \
|
||||
toolchain-funcs
|
||||
|
||||
MY_P=${P/_/}.src
|
||||
LLVM_P=llvm-${PV/_/}.src
|
||||
|
||||
DESCRIPTION="The LLVM debugger"
|
||||
HOMEPAGE="https://llvm.org/"
|
||||
SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz
|
||||
test? ( https://releases.llvm.org/${PV/_//}/${LLVM_P}.tar.xz )"
|
||||
|
||||
LICENSE="UoI-NCSA"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
IUSE="libedit ncurses python test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
libedit? ( dev-libs/libedit:0= )
|
||||
ncurses? ( >=sys-libs/ncurses-5.9-r3:0= )
|
||||
python? ( dev-python/six[${PYTHON_USEDEP}]
|
||||
${PYTHON_DEPS} )
|
||||
~sys-devel/clang-${PV}[xml]
|
||||
~sys-devel/llvm-${PV}
|
||||
!<sys-devel/llvm-4.0"
|
||||
DEPEND="${RDEPEND}
|
||||
python? ( >=dev-lang/swig-3.0.11 )
|
||||
test? ( ~dev-python/lit-${PV}[${PYTHON_USEDEP}] )
|
||||
${PYTHON_DEPS}"
|
||||
|
||||
REQUIRED_USE=${PYTHON_REQUIRED_USE}
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
# least intrusive of all
|
||||
CMAKE_BUILD_TYPE=RelWithDebInfo
|
||||
|
||||
pkg_setup() {
|
||||
LLVM_MAX_SLOT=${PV%%.*} llvm_pkg_setup
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
einfo "Unpacking ${MY_P}.tar.xz ..."
|
||||
tar -xf "${DISTDIR}/${MY_P}.tar.xz" || die
|
||||
|
||||
if use test; then
|
||||
einfo "Unpacking parts of ${LLVM_P}.tar.xz ..."
|
||||
tar -xf "${DISTDIR}/${LLVM_P}.tar.xz" \
|
||||
"${LLVM_P}"/{lib/Testing/Support,utils/unittest} || die
|
||||
mv "${LLVM_P}" llvm || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DLLDB_DISABLE_CURSES=$(usex !ncurses)
|
||||
-DLLDB_DISABLE_LIBEDIT=$(usex !libedit)
|
||||
-DLLDB_DISABLE_PYTHON=$(usex !python)
|
||||
-DLLDB_USE_SYSTEM_SIX=1
|
||||
-DLLVM_ENABLE_TERMINFO=$(usex ncurses)
|
||||
|
||||
-DLLDB_INCLUDE_TESTS=$(usex test)
|
||||
|
||||
# TODO: fix upstream to detect this properly
|
||||
-DHAVE_LIBDL=ON
|
||||
-DHAVE_LIBPTHREAD=ON
|
||||
|
||||
# normally we'd have to set LLVM_ENABLE_TERMINFO, HAVE_TERMINFO
|
||||
# and TERMINFO_LIBS... so just force FindCurses.cmake to use
|
||||
# ncurses with complete library set (including autodetection
|
||||
# of -ltinfo)
|
||||
-DCURSES_NEED_NCURSES=ON
|
||||
)
|
||||
use test && mycmakeargs+=(
|
||||
-DLLVM_BUILD_TESTS=$(usex test)
|
||||
# compilers for lit tests
|
||||
-DLLDB_TEST_C_COMPILER="$(type -P clang)"
|
||||
-DLLDB_TEST_CXX_COMPILER="$(type -P clang++)"
|
||||
|
||||
-DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm"
|
||||
-DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit"
|
||||
-DLLVM_LIT_ARGS="-vv;-j;${LIT_JOBS:-$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")}"
|
||||
)
|
||||
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_test() {
|
||||
cmake-utils_src_make check-lldb-lit
|
||||
use python && cmake-utils_src_make check-lldb
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
|
||||
# oh my...
|
||||
if use python; then
|
||||
# remove custom readline.so for now
|
||||
# TODO: figure out how to deal with it
|
||||
# upstream is basically building a custom readline.so with -ledit
|
||||
# to avoid symbol collisions between readline and libedit...
|
||||
rm "${D}$(python_get_sitedir)/readline.so" || die
|
||||
|
||||
# byte-compile the modules
|
||||
python_optimize
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user