diff options
author | Jason Zaman <perfinion@gentoo.org> | 2022-04-11 18:29:50 -0700 |
---|---|---|
committer | Jason Zaman <perfinion@gentoo.org> | 2022-04-11 18:32:36 -0700 |
commit | b1332232a8ab363dc037ecb591552e4e9b9a3ebe (patch) | |
tree | 253bfd569dbce82a984635fef64cb5e37ddc69f5 /app-admin/setools | |
parent | app-emulation/cloud-init: fix IncorrectCopyright (diff) | |
download | gentoo-b1332232a8ab363dc037ecb591552e4e9b9a3ebe.tar.gz gentoo-b1332232a8ab363dc037ecb591552e4e9b9a3ebe.tar.bz2 gentoo-b1332232a8ab363dc037ecb591552e4e9b9a3ebe.zip |
app-admin/setools: Add missing PYTHON_USEDEP
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jason Zaman <perfinion@gentoo.org>
Diffstat (limited to 'app-admin/setools')
-rw-r--r-- | app-admin/setools/setools-4.4.0-r3.ebuild | 55 | ||||
-rw-r--r-- | app-admin/setools/setools-9999.ebuild | 6 |
2 files changed, 58 insertions, 3 deletions
diff --git a/app-admin/setools/setools-4.4.0-r3.ebuild b/app-admin/setools/setools-4.4.0-r3.ebuild new file mode 100644 index 000000000000..82ee339e0806 --- /dev/null +++ b/app-admin/setools/setools-4.4.0-r3.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="Policy Analysis Tools for SELinux" +HOMEPAGE="https://github.com/SELinuxProject/setools/wiki" + +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/SELinuxProject/setools.git" +else + SRC_URI="https://github.com/SELinuxProject/setools/releases/download/${PV}/${P}.tar.bz2" + KEYWORDS="amd64 arm arm64 x86" +fi + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +IUSE="test infoflow X" +RESTRICT="!test? ( test )" +S="${WORKDIR}/${PN}" + +RDEPEND="${PYTHON_DEPS} + dev-python/setuptools[${PYTHON_USEDEP}] + >=sys-libs/libsepol-3.2:= + >=sys-libs/libselinux-3.2:= + infoflow? ( >=dev-python/networkx-2.0[${PYTHON_USEDEP}] ) + X? ( + dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}] + )" +DEPEND="${RDEPEND}" +BDEPEND=">=dev-python/cython-0.27[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + >=dev-python/networkx-2.0[${PYTHON_USEDEP}] + sys-apps/checkpolicy + )" + +python_prepare_all() { + sed -i "s/'-Werror', //" "${S}"/setup.py || die "failed to remove Werror" + sed -i "s@^lib_dirs = .*@lib_dirs = ['${ROOT:-/}usr/$(get_libdir)']@" "${S}"/setup.py || \ + die "failed to set lib_dirs" + + local PATCHES=( "${FILESDIR}"/0001-__init__.py-Make-NetworkX-dep-optional.patch ) + use X || PATCHES+=( "${FILESDIR}"/setools-4.4.0-remove-gui.patch ) + distutils-r1_python_prepare_all +} + +python_test() { + esetup.py test +} diff --git a/app-admin/setools/setools-9999.ebuild b/app-admin/setools/setools-9999.ebuild index 82b8e1bd9964..965896ee5a44 100644 --- a/app-admin/setools/setools-9999.ebuild +++ b/app-admin/setools/setools-9999.ebuild @@ -26,7 +26,7 @@ IUSE="test infoflow X" RESTRICT="!test? ( test )" RDEPEND="${PYTHON_DEPS} - dev-python/setuptools + dev-python/setuptools[${PYTHON_USEDEP}] >=sys-libs/libsepol-3.2:= >=sys-libs/libselinux-3.2:= infoflow? ( >=dev-python/networkx-2.0[${PYTHON_USEDEP}] ) @@ -34,8 +34,8 @@ RDEPEND="${PYTHON_DEPS} dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}] )" DEPEND="${RDEPEND}" -BDEPEND=">=dev-python/cython-0.27 - dev-python/setuptools +BDEPEND=">=dev-python/cython-0.27[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] test? ( >=dev-python/networkx-2.0[${PYTHON_USEDEP}] sys-apps/checkpolicy |