app-admin/setools: remove spurious test dependencies
authorVirgil Dupras <vdupras@gentoo.org>
Sun, 12 Aug 2018 15:36:46 +0000 (11:36 -0400)
committerVirgil Dupras <vdupras@gentoo.org>
Sun, 12 Aug 2018 15:36:46 +0000 (11:36 -0400)
* dev-python/tox is not needed to run tests
* USE flags for mock dep was overly broad

Package-Manager: Portage-2.3.46, Repoman-2.3.10

app-admin/setools/setools-4.1.1-r1.ebuild [new file with mode: 0644]
app-admin/setools/setools-9999.ebuild

diff --git a/app-admin/setools/setools-4.1.1-r1.ebuild b/app-admin/setools/setools-4.1.1-r1.ebuild
new file mode 100644 (file)
index 0000000..13b8cb7
--- /dev/null
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
+
+inherit distutils-r1
+
+DESCRIPTION="Policy Analysis Tools for SELinux"
+HOMEPAGE="https://github.com/TresysTechnology/setools/wiki"
+
+if [[ ${PV} == 9999 ]] ; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/TresysTechnology/setools.git"
+else
+       SRC_URI="https://github.com/TresysTechnology/setools/archive/${PV}.tar.gz -> ${P}.tar.gz"
+       KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+IUSE="X debug test"
+
+RDEPEND="${PYTHON_DEPS}
+       >=sys-libs/libsepol-2.7:=
+       >=sys-libs/libselinux-2.7:=[${PYTHON_USEDEP}]
+       >=dev-python/networkx-1.8[${PYTHON_USEDEP}]
+       virtual/python-enum34[${PYTHON_USEDEP}]
+       dev-libs/libpcre:=
+       X? (
+               dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
+       )"
+
+DEPEND="${RDEPEND}
+       >=dev-lang/swig-2.0.12:0
+       sys-devel/bison
+       sys-devel/flex
+       >=sys-libs/libsepol-2.5
+       test? (
+               $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
+               sys-apps/checkpolicy
+       )"
+
+python_prepare_all() {
+       sed -i "s/'-Werror', //" "${S}"/setup.py || die "failed to remove Werror"
+       sed -i "s@^base_lib_dirs = .*@base_lib_dirs = ['${ROOT:-/}usr/$(get_libdir)']@g" "${S}"/setup.py || \
+               die "failed to set base_lib_dirs"
+
+       use X || local PATCHES=( "${FILESDIR}"/setools-4.1.1-remove-gui.patch )
+       distutils-r1_python_prepare_all
+}
+
+python_test() {
+       esetup.py test
+}
index d0836619d13f1c39acf092ad3240491c9cdc9f76..13b8cb7389c82afb7369b56c2b6627e090cbc8e0 100644 (file)
@@ -37,8 +37,7 @@ DEPEND="${RDEPEND}
        sys-devel/flex
        >=sys-libs/libsepol-2.5
        test? (
-               python_targets_python2_7? ( dev-python/mock[${PYTHON_USEDEP}] )
-               dev-python/tox[${PYTHON_USEDEP}]
+               $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
                sys-apps/checkpolicy
        )"