Gentoo Archives: gentoo-commits

From: Nick Sarnie <sarnex@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vulkan-loader/
Date: Fri, 30 Nov 2018 02:47:08
Message-Id: 1543545949.2bead7a3d49dbbf5b9b8daa4a13f0badf32fa136.sarnex@gentoo
1 commit: 2bead7a3d49dbbf5b9b8daa4a13f0badf32fa136
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 30 02:20:51 2018 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 30 02:45:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bead7a3
7
8 media-libs/vulkan-loader: Drop old
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>
12
13 media-libs/vulkan-loader/Manifest | 1 -
14 .../vulkan-loader/vulkan-loader-1.1.77.0.ebuild | 61 ----------------------
15 2 files changed, 62 deletions(-)
16
17 diff --git a/media-libs/vulkan-loader/Manifest b/media-libs/vulkan-loader/Manifest
18 index 405d84feaac..3c3352fae7e 100644
19 --- a/media-libs/vulkan-loader/Manifest
20 +++ b/media-libs/vulkan-loader/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST vulkan-loader-1.1.77.0.tar.gz 1512876 BLAKE2B bf5fbf3623f0ca2b2473d496edd23ce388313d7dbeb8e3f95549da5726a1ab25fcce673d5dd3df094d3abdd2c5ecc4a87759a80e7d05d7b34abf30ee325895f2 SHA512 95fe179c93df1ea36cee8123588b232433c988e9a5889a606e7adbc4192d6a4bc8809f9936cf11ae953090392d0c9e4265697b608adacc7eb7cf6479baf49f48
23 DIST vulkan-loader-1.1.82.0.tar.gz 1342427 BLAKE2B 4b2c589e2c1edaa29e13e892cc839f2d7af5bbadf7dda3f50eca2543c1877af175e9640545b886ffe3e8b1c51373502ee272829ddb15c07629ea08ece697e5b9 SHA512 624e493454e622e29bc0de5fdf1c425691b3c98f317660847e95aee6bc42dafa0b4d8caa9de52e8f3229b7e743afa475485cd3affbdb295e16ba49d30d1eb19e
24 DIST vulkan-loader-1.1.92.1.tar.gz 1346712 BLAKE2B 60d29c38e72ff234261a3e75934d44de08c334c475e715066c210844ea672f0e2db3ebc8826df7d72392e3c2a0bbd0604b8770c0b35ddd8f72ed875234bae15d SHA512 c29d1fb43a2bdd0f291860dee0ffe7ec23a34c9431aeb76a46f8df0ec2f70601ccd3e96280f94d881f5550e3c9f07fe478f94eebcfd2aaf123045c7281313aac
25
26 diff --git a/media-libs/vulkan-loader/vulkan-loader-1.1.77.0.ebuild b/media-libs/vulkan-loader/vulkan-loader-1.1.77.0.ebuild
27 deleted file mode 100644
28 index 28a5a556636..00000000000
29 --- a/media-libs/vulkan-loader/vulkan-loader-1.1.77.0.ebuild
30 +++ /dev/null
31 @@ -1,61 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -PYTHON_COMPAT=( python3_{4,5,6} )
37 -
38 -if [[ "${PV}" == "9999" ]]; then
39 - EGIT_REPO_URI="https://github.com/KhronosGroup/Vulkan-Loader.git"
40 - EGIT_SUBMODULES=()
41 - inherit git-r3
42 -else
43 - KEYWORDS="~amd64"
44 - EGIT_COMMIT="c71d5027a9d7fe4b170c0ff69bad67efd1d530cf"
45 - SRC_URI="https://github.com/KhronosGroup/Vulkan-Loader/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
46 - S="${WORKDIR}/Vulkan-Loader-${EGIT_COMMIT}"
47 -fi
48 -
49 -inherit python-any-r1 cmake-multilib
50 -
51 -DESCRIPTION="Vulkan Installable Client Driver (ICD) Loader"
52 -HOMEPAGE="https://github.com/KhronosGroup/Vulkan-Loader"
53 -
54 -LICENSE="Apache-2.0"
55 -SLOT="0"
56 -IUSE="layers wayland X"
57 -
58 -PDEPEND="layers? ( media-libs/vulkan-layers:=[${MULTILIB_USEDEP}] )"
59 -DEPEND="${PYTHON_DEPS}
60 - >=dev-util/vulkan-headers-1.1.77.0-r1
61 - wayland? ( dev-libs/wayland:=[${MULTILIB_USEDEP}] )
62 - X? (
63 - x11-libs/libX11:=[${MULTILIB_USEDEP}]
64 - x11-libs/libXrandr:=[${MULTILIB_USEDEP}]
65 - )"
66 -
67 -PATCHES=( "${FILESDIR}"/vulkan-loader-1.1.77.0-loader-Rework-include-dependencies.patch )
68 -
69 -multilib_src_configure() {
70 - local mycmakeargs=(
71 - -DCMAKE_SKIP_RPATH=True
72 - -DBUILD_TESTS=False
73 - -DBUILD_LOADER=True
74 - -DBUILD_WSI_MIR_SUPPORT=False
75 - -DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland)
76 - -DBUILD_WSI_XCB_SUPPORT=$(usex X)
77 - -DBUILD_WSI_XLIB_SUPPORT=$(usex X)
78 - -DVULKAN_HEADERS_INSTALL_DIR="/usr"
79 - )
80 - cmake-utils_src_configure
81 -}
82 -
83 -multilib_src_install() {
84 - keepdir /etc/vulkan/icd.d
85 -
86 - cmake-utils_src_install
87 -}
88 -
89 -pkg_postinst() {
90 - einfo "USE=demos has been dropped as per upstream packaging"
91 - einfo "vulkaninfo is now available in the dev-util/vulkan-tools package"
92 -}