Gentoo Archives: gentoo-commits

From: Nick Sarnie <sarnex@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/vulkan-tools/
Date: Wed, 11 Jul 2018 01:06:02
Message-Id: 1531271144.7ae7e27e486d46bc97fe496af06031f99bcaaaf3.sarnex@gentoo
1 commit: 7ae7e27e486d46bc97fe496af06031f99bcaaaf3
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 11 01:04:21 2018 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 11 01:05:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ae7e27e
7
8 dev-util/vulkan-tools: Drop old
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 dev-util/vulkan-tools/vulkan-tools-1.1.77.0.ebuild | 50 ----------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/dev-util/vulkan-tools/vulkan-tools-1.1.77.0.ebuild b/dev-util/vulkan-tools/vulkan-tools-1.1.77.0.ebuild
16 deleted file mode 100644
17 index 3ffd734f550..00000000000
18 --- a/dev-util/vulkan-tools/vulkan-tools-1.1.77.0.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -PYTHON_COMPAT=( python3_{4,5,6} )
26 -
27 -if [[ "${PV}" == "9999" ]]; then
28 - EGIT_REPO_URI="https://github.com/KhronosGroup/Vulkan-Tools.git"
29 - EGIT_SUBMODULES=()
30 - inherit git-r3
31 -else
32 - EGIT_COMMIT="384fff68c802a10b5d7f4f352a4bb43b3efe5f23"
33 - KEYWORDS="~amd64"
34 - SRC_URI="https://github.com/KhronosGroup/Vulkan-Tools/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
35 - S="${WORKDIR}/Vulkan-Tools-${EGIT_COMMIT}"
36 -fi
37 -
38 -inherit python-any-r1 cmake-multilib
39 -
40 -DESCRIPTION="Official Vulkan Tools and Utilities for Windows, Linux, Android, and MacOS"
41 -HOMEPAGE="https://github.com/KhronosGroup/Vulkan-Tools"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -IUSE="X wayland"
46 -
47 -# Old packaging will cause file collisions
48 -RDEPEND="!<=media-libs/vulkan-loader-1.1.70.0-r999"
49 -DEPEND="${PYTHON_DEPS}
50 - dev-util/glslang:=[${MULTILIB_USEDEP}]
51 - dev-util/vulkan-headers
52 - media-libs/vulkan-loader:=[${MULTILIB_USEDEP},wayland?,X?]
53 - wayland? ( dev-libs/wayland:=[${MULTILIB_USEDEP}] )
54 - X? (
55 - x11-libs/libX11:=[${MULTILIB_USEDEP}]
56 - x11-libs/libXrandr:=[${MULTILIB_USEDEP}]
57 - )"
58 -
59 -multilib_src_configure() {
60 - local mycmakeargs=(
61 - -DCMAKE_SKIP_RPATH=True
62 - -DBUILD_WSI_MIR_SUPPORT=False
63 - -DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland)
64 - -DBUILD_WSI_XCB_SUPPORT=$(usex X)
65 - -DBUILD_WSI_XLIB_SUPPORT=$(usex X)
66 - -DGLSLANG_INSTALL_DIR="/usr"
67 - -DVULKAN_HEADERS_INSTALL_DIR="/usr"
68 - )
69 - cmake-utils_src_configure
70 -}