sys-apps/intel-cmt-cat: disable appqos

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2023-03-12 18:06:07 +05:00
parent 41008d715c
commit 9607497768
2 changed files with 2 additions and 41 deletions

View File

@@ -7,10 +7,6 @@
# Masked due to infinite run of tests with USE="openmp"
~sci-physics/SU2-7.2.0 openmp
# Anna Vyalkova <cyber+gentoo@sysrq.in> (2022-11-18)
# Depends on masked dev-python/gevent
sys-apps/intel-cmt-cat appqos
# Alessandro Barbieri <lssndrbarbieri@gmail.com> (2022-06-26)
# depend on masked dev-python/python-binary-memcached
dev-python/oslo-cache test

View File

@@ -16,29 +16,10 @@ SRC_URI="https://github.com/intel/intel-cmt-cat/archive/refs/tags/v${PV}.tar.gz
LICENSE="BSD"
SLOT="0"
IUSE="appqos perl"
IUSE="perl"
RDEPEND="
${PYTHON_DEPS}
appqos? (
dev-python/flask[${PYTHON_USEDEP}]
dev-python/flask-restful[${PYTHON_USEDEP}]
dev-python/gevent[${PYTHON_USEDEP}]
dev-python/jsonschema[${PYTHON_USEDEP}]
dev-python/pexpect[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
sys-apps/CommsPowerManagement[${PYTHON_USEDEP}]
)
perl? ( dev-lang/perl:= )
"
DEPEND="
${RDEPEND}
test? (
appqos? ( dev-python/mock[${PYTHON_USEDEP}] )
)
"
RDEPEND="perl? ( dev-lang/perl:= )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
PATCHES=(
"${FILESDIR}/${P}-perl-makefile.patch"
"${FILESDIR}/${P}-no-strip.patch"
@@ -46,7 +27,6 @@ PATCHES=(
)
distutils_enable_tests unittest
distutils_enable_tests pytest
src_prepare() {
mkdir -p "${T}/prefix" || die
@@ -94,11 +74,6 @@ src_install() {
docinto rdtset
dodoc rdtset/README
if use appqos; then
docinto appqos
dodoc appqos/README.md
fi
unset DOCS
python_foreach_impl python_install
@@ -121,20 +96,10 @@ python_install() {
pushd "lib/python" || die
distutils-r1_python_install
popd || die
if use appqos; then
python_domodule appqos
fi
}
python_test() {
pushd "lib/python" || die
eunittest
popd || die
if use appqos; then
pushd "appqos" || die
epytest -vv tests
popd || die
fi
}