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/libepoxy/
Date: Thu, 29 Nov 2018 05:17:40
Message-Id: 1543468638.d57389b683bd273322a9bff7d9cc522e21a4e5cd.mattst88@gentoo
1 commit: d57389b683bd273322a9bff7d9cc522e21a4e5cd
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 29 05:08:21 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 29 05:17:18 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d57389b6
7
8 media-libs/libepoxy: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 media-libs/libepoxy/Manifest | 1 -
13 media-libs/libepoxy/libepoxy-1.5.1.ebuild | 58 -------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
17 index d27b51633a6..6be52074314 100644
18 --- a/media-libs/libepoxy/Manifest
19 +++ b/media-libs/libepoxy/Manifest
20 @@ -1,2 +1 @@
21 -DIST libepoxy-1.5.1.tar.gz 324985 BLAKE2B 338b558ca3c174c04383dfc1bfe4f444965aef745b3043183d4024df62b37fdfc923c5c1d243a3061201a0f7b6946ce443d4ede3195b85d1022c187f46b08540 SHA512 f839f82e4ffabda42a2bb9c2822ba2e8da6583bdb481daa2e090e62b580fdfb0d11f96af790685769317ff2446d1d8d7cb6374b2049614ee938b84014b604bce
22 DIST libepoxy-1.5.3.tar.gz 326768 BLAKE2B 053665429a249adca4c9b3d57797949e3a0ffd0ed3f1c66cb8becfb884431e44a4cccb6b2fd3788a86ee01268ebad3cc36e67e391d2aa5cdea28837a162be9ad SHA512 e831f4f918f08fd5f799501efc0e23b8d404478651634f5e7b35f8ebcc29d91abc447ab20da062dde5be75e18cb39ffea708688e6534f7ab257b949f9c53ddc8
23
24 diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
25 deleted file mode 100644
26 index 0dac30a38a2..00000000000
27 --- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
36 -
37 -if [[ ${PV} = 9999* ]]; then
38 - GIT_ECLASS="git-r3"
39 -fi
40 -
41 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
42 -PYTHON_REQ_USE='xml(+)'
43 -inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
44 -
45 -DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
46 -HOMEPAGE="https://github.com/anholt/libepoxy"
47 -if [[ ${PV} = 9999* ]]; then
48 - SRC_URI=""
49 -else
50 - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
51 - SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
52 -fi
53 -
54 -LICENSE="MIT"
55 -SLOT="0"
56 -IUSE="test +X"
57 -
58 -DEPEND="${PYTHON_DEPS}
59 - media-libs/mesa[egl,${MULTILIB_USEDEP}]
60 - X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
61 -RDEPEND=""
62 -
63 -src_unpack() {
64 - default
65 - [[ $PV = 9999* ]] && git-r3_src_unpack
66 -}
67 -
68 -multilib_src_configure() {
69 - local emesonargs=(
70 - -Degl=yes
71 - -Dglx=$(usex X)
72 - -Dx11=$(usex X true false)
73 - )
74 - meson_src_configure
75 -}
76 -
77 -multilib_src_compile() {
78 - meson_src_compile
79 -}
80 -
81 -multilib_src_test() {
82 - meson_src_test
83 -}
84 -
85 -multilib_src_install() {
86 - meson_src_install
87 -}