Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libglvnd/
Date: Wed, 18 Sep 2019 20:24:28
Message-Id: 1568837391.e8c7db137f2c5cda62b4ea8ead89d4422030cd72.mattst88@gentoo
1 commit: e8c7db137f2c5cda62b4ea8ead89d4422030cd72
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 18 19:26:50 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 18 20:09:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8c7db13
7
8 media-libs/libglvnd: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 media-libs/libglvnd/Manifest | 1 -
13 media-libs/libglvnd/libglvnd-1.1.0.20190213.ebuild | 58 ----------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/media-libs/libglvnd/Manifest b/media-libs/libglvnd/Manifest
17 index e5661b6ca69..e8408ade024 100644
18 --- a/media-libs/libglvnd/Manifest
19 +++ b/media-libs/libglvnd/Manifest
20 @@ -1,2 +1 @@
21 -DIST libglvnd-1.1.0.20190213.tar.gz 829094 BLAKE2B cf977846693a5de3485e23fe8b4c8e2bc0472d994dc85530ecd85c685d71abd7aa69e815292141f60fd69a299cf39ac16dda5822128295747bfd42db3408df66 SHA512 772445cbb5574c1900109b3e0d8aab442b8c8d9790c4d91e1400fccdff4a53b653b59120e4fb631a45fc47af02949288924e62a22c3d877d4f741d5596736e37
22 DIST libglvnd-1.1.1.tar.gz 1851222 BLAKE2B 58a6e997b64bd22c4af0136fb37959f45df4a738bfcff205d7efb7ac08e7897a19164cb36f11d556c5a1bd3d46f0f1df3f89a36b7352b8a880c3570b2cf462cf SHA512 9106ae3cd3bdce8f4def3c7e08645f76e1a65f51e184510088e79b834899061d357422376e0efd56e1bc9dc7d3150f74837f43bd3e6c4c44faa3859844ab21b7
23
24 diff --git a/media-libs/libglvnd/libglvnd-1.1.0.20190213.ebuild b/media-libs/libglvnd/libglvnd-1.1.0.20190213.ebuild
25 deleted file mode 100644
26 index c1e812ba70b..00000000000
27 --- a/media-libs/libglvnd/libglvnd-1.1.0.20190213.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 2018-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -EGIT_REPO_URI="https://github.com/NVIDIA/${PN}.git"
36 -
37 -if [[ ${PV} = 9999* ]]; then
38 - GIT_ECLASS="git-r3"
39 -fi
40 -
41 -PYTHON_COMPAT=( python2_7 )
42 -inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
43 -
44 -DESCRIPTION="The GL Vendor-Neutral Dispatch library"
45 -HOMEPAGE="https://github.com/NVIDIA/libglvnd"
46 -if [[ ${PV} = 9999* ]]; then
47 - SRC_URI=""
48 -else
49 - KEYWORDS="~amd64"
50 - COMMIT="f92208be88dd06a70b6f79a1cb95571e2762a9ec"
51 - SRC_URI="https://github.com/NVIDIA/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
52 - S=${WORKDIR}/${PN}-${COMMIT}
53 -fi
54 -
55 -LICENSE="MIT"
56 -SLOT="0"
57 -IUSE=""
58 -
59 -RDEPEND="
60 - !media-libs/mesa[-libglvnd(-)]
61 - x11-libs/libX11[${MULTILIB_USEDEP}]
62 - "
63 -DEPEND="${PYTHON_DEPS}
64 - ${RDEPEND}"
65 -
66 -src_unpack() {
67 - default
68 - [[ $PV = 9999* ]] && git-r3_src_unpack
69 -}
70 -
71 -src_prepare() {
72 - default
73 - eautoreconf
74 -}
75 -
76 -multilib_src_configure() {
77 - ECONF_SOURCE=${S} econf
78 -}
79 -
80 -multilib_src_install() {
81 - default
82 - find "${D}" -name '*.la' -delete || die
83 -}
84 -
85 -multilib_src_test() {
86 - emake check
87 -}