summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2018-06-13 15:15:37 -0700
committerMatt Turner <mattst88@gentoo.org>2018-06-13 15:15:56 -0700
commit51203b9911df85b9aac2e6d353d7ebac173d4baa (patch)
tree7bbed51892c4cc4998f84c7ff96adcd2ad811415 /x11-apps
parentprofiles/base: Force on USE flags for intel-gpu-tools-9999 (diff)
downloadgentoo-51203b9911df85b9aac2e6d353d7ebac173d4baa.tar.gz
gentoo-51203b9911df85b9aac2e6d353d7ebac173d4baa.tar.bz2
gentoo-51203b9911df85b9aac2e6d353d7ebac173d4baa.zip
x11-apps/intel-gpu-tools: Drop old versions
Diffstat (limited to 'x11-apps')
-rw-r--r--x11-apps/intel-gpu-tools/Manifest2
-rw-r--r--x11-apps/intel-gpu-tools/files/intel-gpu-tools-1.12-inttypes.patch28
-rw-r--r--x11-apps/intel-gpu-tools/files/intel-gpu-tools-1.12-sysmacros.patch35
-rw-r--r--x11-apps/intel-gpu-tools/intel-gpu-tools-1.15.ebuild55
-rw-r--r--x11-apps/intel-gpu-tools/intel-gpu-tools-1.20.ebuild82
-rw-r--r--x11-apps/intel-gpu-tools/metadata.xml1
6 files changed, 0 insertions, 203 deletions
diff --git a/x11-apps/intel-gpu-tools/Manifest b/x11-apps/intel-gpu-tools/Manifest
index 98fae4bdea31..28006c423b50 100644
--- a/x11-apps/intel-gpu-tools/Manifest
+++ b/x11-apps/intel-gpu-tools/Manifest
@@ -1,3 +1 @@
-DIST intel-gpu-tools-1.15.tar.bz2 1827851 BLAKE2B dac481571603ff36957ad2d5ef89266e744ec39a5623bb2b8e3d2e389d39d7aa09130cd7591e876b02d8edd970fb287c53ea9b520801a4a9ceede294e2917a7f SHA512 407f7c4ce72babbbd3ed08fc77719f88321b56745601b588bb6dce1a659786215e6d1b121af748087746df6f7da1bfd3ae8f9a898173eede5d5bb4a5b24b4559
-DIST intel-gpu-tools-1.20.tar.bz2 2274390 BLAKE2B 55c8614f93f5ed6391d35570ed6e4e36a659bd8ba5d98e321cb1daaf89413a95d1f0911cd07ed00670f0dceacd8f4443894a59b85cce1debeae9f8e01a75f824 SHA512 7b930c6949c04a600792df359f7cd230ca7b843072936c0c674cb9212b2d8c0701c43ef3bebe66b34141ed7a9b39774bbb99466cd52d70b3f1abfe5e52608f25
DIST intel-gpu-tools-1.22.tar.xz 1022396 BLAKE2B c84338f3f84fcbe21a5b918b1afcc47d5419bd37828054fc3fa128d346b0f1b633d42f842464d96b28d4430788bfa9945a7596c14e6a79f8183440d3b9329c92 SHA512 af7964a3782bbc335c50c1c9c42f090306932423e76b9968d6919a2b633f3c11837e7ba572d352632c2b4db79bc98218d9d425c3b62e69abad5aa83d733dea8a
diff --git a/x11-apps/intel-gpu-tools/files/intel-gpu-tools-1.12-inttypes.patch b/x11-apps/intel-gpu-tools/files/intel-gpu-tools-1.12-inttypes.patch
deleted file mode 100644
index 02a97c48d121..000000000000
--- a/x11-apps/intel-gpu-tools/files/intel-gpu-tools-1.12-inttypes.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://bugs.gentoo.org/582430
-
-From d24f4a5c5fe45e2fad8942acc137f87cd8f35ea5 Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vapier@gentoo.org>
-Date: Tue, 21 Jun 2016 14:37:38 -0400
-Subject: [PATCH] include inttypes.h for PRI defines
-
-Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=96620
-Signed-off-by: Mike Frysinger <vapier@gentoo.org>
----
- lib/igt_fb.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/lib/igt_fb.c b/lib/igt_fb.c
-index 61205f345707..ba29eae5cabd 100644
---- a/lib/igt_fb.c
-+++ b/lib/igt_fb.c
-@@ -28,6 +28,7 @@
- #define _GNU_SOURCE
- #include <stdio.h>
- #include <math.h>
-+#include <inttypes.h>
-
- #include "drmtest.h"
- #include "igt_fb.h"
---
-2.8.2
-
diff --git a/x11-apps/intel-gpu-tools/files/intel-gpu-tools-1.12-sysmacros.patch b/x11-apps/intel-gpu-tools/files/intel-gpu-tools-1.12-sysmacros.patch
deleted file mode 100644
index c805c120f552..000000000000
--- a/x11-apps/intel-gpu-tools/files/intel-gpu-tools-1.12-sysmacros.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-https://bugs.gentoo.org/581080
-
-From 3e8cc82d371b23303cd4f30e4bcc9c5ecb10ad11 Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vapier@gentoo.org>
-Date: Tue, 21 Jun 2016 14:24:42 -0400
-Subject: [PATCH] pull in headers for major/minor/makedev funcs
-
-Use the portable autoconf helper to figure out which header to include
-for these funcs. Linux C libs are moving to not implicitly include them
-via sys/types.h anymore, and other OS's have long required you to pull
-in the right header directly.
-
-Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=96618
-Signed-off-by: Mike Frysinger <vapier@gentoo.org>
----
- configure.ac | 1 +
- lib/igt_sysfs.c | 9 +++++++++
- tools/aubdump.c | 8 +++++++-
- 3 files changed, 17 insertions(+), 1 deletion(-)
-
---- a/tools/aubdump.c
-+++ b/tools/aubdump.c
-@@ -38,6 +38,9 @@
- #include <errno.h>
- #include <sys/mman.h>
- #include <dlfcn.h>
-+#ifdef __linux__
-+#include <sys/sysmacros.h>
-+#endif
- #include <i915_drm.h>
-
- #include "intel_aub.h"
---
-2.8.2
-
diff --git a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.15.ebuild b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.15.ebuild
deleted file mode 100644
index a05dea860cfe..000000000000
--- a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.15.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit xorg-2
-
-DESCRIPTION="Intel GPU userland tools"
-KEYWORDS="~amd64 ~x86"
-IUSE="test-programs unwind video_cards_nouveau"
-RESTRICT="test"
-
-DEPEND="dev-libs/glib:2
- >=x11-libs/cairo-1.12.0
- >=x11-libs/libdrm-2.4.64[video_cards_intel,video_cards_nouveau?]
- >=x11-libs/libpciaccess-0.10
- unwind? ( sys-libs/libunwind )"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.12-inttypes.patch #582430
- "${FILESDIR}"/${PN}-1.12-sysmacros.patch #581080
-)
-
-src_configure() {
- XORG_CONFIGURE_OPTIONS=(
- $(use_enable video_cards_nouveau nouveau)
- $(use_enable test-programs tests)
- $(use_with unwind libunwind)
- )
- xorg-2_src_configure
-}
-
-src_install() {
- xorg-2_src_install
- if use test-programs; then
- local testprogram
- pushd "${AUTOTOOLS_BUILD_DIR}"/tests >/dev/null || die
- for testprogram in $(<multi-tests.txt) $(<single-tests.txt); do
- if [[ -f ${testprogram} ]]; then
- dobin "${testprogram}"
- fi
- done
- popd >/dev/null
- fi
-}
-
-pkg_postinst() {
- xorg-2_pkg_postinst
- if use test-programs; then
- elog "Test programs for DRM driver development were installed. These are not"
- elog "designed to run outside their source tree, so may or may not work as"
- elog "intended."
- fi
-}
diff --git a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.20.ebuild b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.20.ebuild
deleted file mode 100644
index 69ac7b3936c9..000000000000
--- a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.20.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit xorg-2
-
-DESCRIPTION="Intel GPU userland tools"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa glib gsl sound test-programs udev unwind valgrind video_cards_amdgpu video_cards_intel video_cards_nouveau X xrandr xv"
-REQUIRED_USE="test-programs? ( sound? ( alsa gsl ) )"
-RESTRICT="test"
-
-X86_RDEPEND="
- xv? (
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXv
- )"
-X86_DEPEND="x11-base/xorg-proto"
-RDEPEND="sys-apps/kmod:=
- sys-process/procps:=
- >=x11-libs/cairo-1.12.0[X?]
- >=x11-libs/libdrm-2.4.82[video_cards_amdgpu?,video_cards_intel?,video_cards_nouveau?]
- >=x11-libs/libpciaccess-0.10
- alsa? ( media-libs/alsa-lib:= )
- glib? ( dev-libs/glib:2 )
- gsl? ( sci-libs/gsl )
- udev? ( virtual/libudev:= )
- unwind? ( sys-libs/libunwind )
- valgrind? ( dev-util/valgrind )
- video_cards_intel? ( sys-libs/zlib:= )
- xrandr? ( >=x11-libs/libXrandr-1.3 )
- amd64? ( ${X86_RDEPEND} )
- x86? ( ${X86_RDEPEND} )"
-DEPEND="${RDEPEND}
- amd64? ( ${X86_DEPEND} )
- x86? ( ${X86_DEPEND} )"
-
-src_configure() {
- sed -i -E \
- -e "s:\<alsa=(no|yes):alsa=$(usex alsa):g" \
- -e "s:\<glib=(no|yes):glib=$(usex glib):g" \
- -e "s:\<gsl=(no|yes):gsl=$(usex gsl):g" \
- -e "s:\<udev=(no|yes):udev=$(usex udev):g" \
- -e "s:\<have_valgrind=(no|yes):have_valgrind=$(usex valgrind):g" \
- -e "s:\<enable_overlay_xvlib=(no|yes):enable_overlay_xvlib=$(usex xv):g" \
- configure || die
- XORG_CONFIGURE_OPTIONS=(
- $(usex test-programs $(use_enable sound audio) --disable-audio)
- $(use_enable test-programs tests)
- $(use_with unwind libunwind)
- $(use_enable video_cards_amdgpu amdgpu)
- $(use_enable video_cards_intel intel)
- $(use_enable video_cards_nouveau nouveau)
- )
- xorg-2_src_configure
-}
-
-src_install() {
- xorg-2_src_install
- if use test-programs; then
- local testprogram
- pushd "${AUTOTOOLS_BUILD_DIR}"/tests >/dev/null || die
- for testprogram in $(<multi-tests.txt) $(<single-tests.txt); do
- if [[ -f ${testprogram} ]]; then
- dobin "${testprogram}"
- fi
- done
- popd >/dev/null
- fi
-}
-
-pkg_postinst() {
- xorg-2_pkg_postinst
- if use test-programs; then
- elog "Test programs for DRM driver development were installed. These are not"
- elog "designed to run outside their source tree, so may or may not work as"
- elog "intended."
- fi
-}
diff --git a/x11-apps/intel-gpu-tools/metadata.xml b/x11-apps/intel-gpu-tools/metadata.xml
index d4405bd15d82..511e4111b43c 100644
--- a/x11-apps/intel-gpu-tools/metadata.xml
+++ b/x11-apps/intel-gpu-tools/metadata.xml
@@ -9,7 +9,6 @@
<flag name="chamelium">Enables support for building Chamelium tests</flag>
<flag name="glib">Support reading config files via glib helpers</flag>
<flag name="test-programs">Install test programs for DRM driver development</flag>
- <flag name="unwind">Provide automatic stack traces on test failures</flag>
<flag name="valgrind">Support valgrind annotations</flag>
<flag name="xrandr">Enable support for the X RandR extension</flag>
</use>