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: Wed, 26 May 2021 03:56:46
Message-Id: 1622001378.0e1b142c5f9da94e7cf1d11b5d889608f4ac3776.mattst88@gentoo
1 commit: 0e1b142c5f9da94e7cf1d11b5d889608f4ac3776
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 03:56:02 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 03:56:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e1b142c
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 | 2 --
13 media-libs/libepoxy/libepoxy-1.5.4.ebuild | 54 -------------------------------
14 media-libs/libepoxy/libepoxy-1.5.7.ebuild | 54 -------------------------------
15 3 files changed, 110 deletions(-)
16
17 diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
18 index 43cfc4f8ca1..86712d093c5 100644
19 --- a/media-libs/libepoxy/Manifest
20 +++ b/media-libs/libepoxy/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST libepoxy-1.5.4.tar.gz 337615 BLAKE2B 2793fde6da59079dfadc653c9f0712b0bd2ca1455a8cda7982bce61c35a3629641a30a76db059af635c1fa0076b4e6c56874b199b41d548afbbad8f6e43384e3 SHA512 c8b03f0a39df320fdd163a34c35f9ffbed51bc0174fd89a7dc4b3ab2439413087e1e1a2fe57418520074abd435051cbf03eb2a7bf8897da1712bbbc69cf27cc5
23 DIST libepoxy-1.5.5.tar.gz 332057 BLAKE2B bf9a1e089c620e710caa7d4b7d5d0ec0cef186c7881b1a61aa22f58d8e023706087c766ad970ea8950752d87d2f32d12e2ded3137502f35991afb5b4fb3648cd SHA512 9056840d887f06c6422f61e65ea02511ed37b866a234d49bf78dc5f2f46e8dd9f029405387da14dced639e6a5740b5c56ab6d88ca23ea3270fc6db6a570b0c45
24 -DIST libepoxy-1.5.7.tar.gz 331868 BLAKE2B 95bb7637f4254aaff051ca8c896e0aa80cfbeca6e12ae87515e97ebeb2f40a41c60c3a0a7a106d8a375eb3d5a77e363442afb4644725e1d8491a335e70998c51 SHA512 7f7cda8eeb2d93d56d5d8ad9f76e186285d024b6f9b211db89c18d5bdfd1e85e7ec08c421913877a153edc8c25ecbccc205303d57d19bb8f98f4c5f93ed492bb
25 DIST libepoxy-1.5.8.tar.gz 331848 BLAKE2B 0c4bca1a551a2c5908b4edc0176809cb9aebc22c688604c372a067d93347751dbe47354de8a8b8139cd02d8f0a444fe5a3f0b88759d75e1e85f17a6ba860a00b SHA512 352ad43014841d0b03a6da968b08d98aeb0332b9c6d1357650d83ef143db1194ae0fa68d274e4f160c76bae2fb4d2230599e9d9f6cae58f36f4b7f065e9277f0
26
27 diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
28 deleted file mode 100644
29 index 51ad78cfbc5..00000000000
30 --- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
31 +++ /dev/null
32 @@ -1,54 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python3_{7,8,9} )
39 -PYTHON_REQ_USE='xml(+)'
40 -inherit meson multilib-minimal python-any-r1
41 -
42 -if [[ ${PV} = 9999* ]]; then
43 - EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
44 - inherit git-r3
45 -else
46 - SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
47 - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
48 -fi
49 -
50 -DESCRIPTION="Library for handling OpenGL function pointer management"
51 -HOMEPAGE="https://github.com/anholt/libepoxy"
52 -
53 -LICENSE="MIT"
54 -SLOT="0"
55 -IUSE="+egl test +X"
56 -
57 -RESTRICT="!test? ( test )"
58 -
59 -RDEPEND="
60 - egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
61 -DEPEND="${RDEPEND}
62 - X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
63 -BDEPEND="${PYTHON_DEPS}
64 - virtual/pkgconfig"
65 -
66 -multilib_src_configure() {
67 - local emesonargs=(
68 - -Degl=$(usex egl)
69 - -Dglx=$(usex X)
70 - $(meson_use X x11)
71 - $(meson_use test tests)
72 - )
73 - meson_src_configure
74 -}
75 -
76 -multilib_src_compile() {
77 - meson_src_compile
78 -}
79 -
80 -multilib_src_test() {
81 - meson_src_test
82 -}
83 -
84 -multilib_src_install() {
85 - meson_src_install
86 -}
87
88 diff --git a/media-libs/libepoxy/libepoxy-1.5.7.ebuild b/media-libs/libepoxy/libepoxy-1.5.7.ebuild
89 deleted file mode 100644
90 index ec9f392345c..00000000000
91 --- a/media-libs/libepoxy/libepoxy-1.5.7.ebuild
92 +++ /dev/null
93 @@ -1,54 +0,0 @@
94 -# Copyright 1999-2021 Gentoo Authors
95 -# Distributed under the terms of the GNU General Public License v2
96 -
97 -EAPI=7
98 -
99 -PYTHON_COMPAT=( python3_{7,8,9} )
100 -PYTHON_REQ_USE='xml(+)'
101 -inherit meson multilib-minimal python-any-r1 virtualx
102 -
103 -if [[ ${PV} = 9999* ]]; then
104 - EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
105 - inherit git-r3
106 -else
107 - SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
108 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
109 -fi
110 -
111 -DESCRIPTION="Library for handling OpenGL function pointer management"
112 -HOMEPAGE="https://github.com/anholt/libepoxy"
113 -
114 -LICENSE="MIT"
115 -SLOT="0"
116 -IUSE="+egl test +X"
117 -
118 -RESTRICT="!test? ( test )"
119 -
120 -RDEPEND="
121 - egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
122 -DEPEND="${RDEPEND}
123 - X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
124 -BDEPEND="${PYTHON_DEPS}
125 - virtual/pkgconfig"
126 -
127 -multilib_src_configure() {
128 - local emesonargs=(
129 - -Degl=$(usex egl)
130 - -Dglx=$(usex X)
131 - $(meson_use X x11)
132 - $(meson_use test tests)
133 - )
134 - meson_src_configure
135 -}
136 -
137 -multilib_src_compile() {
138 - meson_src_compile
139 -}
140 -
141 -multilib_src_test() {
142 - virtx meson_src_test
143 -}
144 -
145 -multilib_src_install() {
146 - meson_src_install
147 -}