commit: 30c76834821912a8b4497685cd120d35040c75d7
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 3 17:01:27 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Aug 3 17:06:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30c76834
x11-apps/xauth: Drop testing support
I never found the testing to be valuable, and it depends on the Python
2.7-only (and dead) cmdtest package which is being removed.
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
x11-apps/xauth/xauth-1.1.ebuild | 10 ++--------
x11-apps/xauth/xauth-9999.ebuild | 10 ++--------
2 files changed, 4 insertions(+), 16 deletions(-)
diff --git a/x11-apps/xauth/xauth-1.1.ebuild b/x11-apps/xauth/xauth-1.1.ebuild
index 838c880146d..bde249ad877 100644
--- a/x11-apps/xauth/xauth-1.1.ebuild
+++ b/x11-apps/xauth/xauth-1.1.ebuild
@@ -12,8 +12,8 @@ else
fi
DESCRIPTION="X authority file utility"
-IUSE="ipv6 test"
-RESTRICT="!test? ( test )"
+IUSE="ipv6"
+RESTRICT="test" # Depends on dead cmdtest package
RDEPEND="x11-libs/libX11
x11-libs/libXau
@@ -21,15 +21,9 @@ RDEPEND="x11-libs/libX11
x11-libs/libXmu"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
-BDEPEND="test? ( dev-util/cmdtest )"
pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable ipv6)
)
}
-
-src_test() {
- addwrite /proc/self/comm
- emake check
-}
diff --git a/x11-apps/xauth/xauth-9999.ebuild b/x11-apps/xauth/xauth-9999.ebuild
index 303aa1063e2..f46da39bc30 100644
--- a/x11-apps/xauth/xauth-9999.ebuild
+++ b/x11-apps/xauth/xauth-9999.ebuild
@@ -12,8 +12,8 @@ else
fi
DESCRIPTION="X authority file utility"
-IUSE="ipv6 test"
-RESTRICT="!test? ( test )"
+IUSE="ipv6"
+RESTRICT="test" # Depends on dead cmdtest package
RDEPEND="x11-libs/libX11
x11-libs/libXau
@@ -21,15 +21,9 @@ RDEPEND="x11-libs/libX11
x11-libs/libXmu"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
-BDEPEND="test? ( dev-util/cmdtest )"
pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable ipv6)
)
}
-
-src_test() {
- addwrite /proc/self/comm
- emake check
-}