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/waffle/
Date: Sat, 28 Sep 2019 18:27:31
Message-Id: 1569695233.ea888fe6fb922790d8d34a7c1b9c0949a704ba2b.mattst88@gentoo
1 commit: ea888fe6fb922790d8d34a7c1b9c0949a704ba2b
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 28 18:09:54 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 28 18:27:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea888fe6
7
8 media-libs/waffle: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 media-libs/waffle/Manifest | 1 -
13 media-libs/waffle/waffle-1.5.2.ebuild | 54 -----------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/media-libs/waffle/Manifest b/media-libs/waffle/Manifest
17 index 32f21dcd336..0b0146e39dc 100644
18 --- a/media-libs/waffle/Manifest
19 +++ b/media-libs/waffle/Manifest
20 @@ -1,2 +1 @@
21 -DIST waffle-1.5.2.tar.xz 179284 BLAKE2B 40befb3e4463605e303b404677268d4758f6a43f5d83bee5e74222e2e2bf949f51444c0df68291ef0edc76be313363eca3e59e642b0356451c10703e66d96e56 SHA512 04f90f70421c88418d1d98175b552de9e036ea36b6c870a6c968c7fcc2d4cb2fa4ce08b0adcdd50f4853a7503558eae7a05ef75b292cf85d3c9796e7b342ca62
22 DIST waffle-1.6.0.tar.xz 224400 BLAKE2B 458add99b346bd75dc757243b9e7db6ac269fb2c1e488333d921c640e10efd182e51e8a5e0312d334593033936adf047fc2339d21e675654d89d66edfb8922b3 SHA512 c8796ab8adf968df2c5c88e2941c83955fe41e87eb2b75b6a5cc61b0d0c06eaa44df2f255f573a51816036dc8bc3ec63f3fb51ccfb7efbfe83cdd50b3f1be13f
23
24 diff --git a/media-libs/waffle/waffle-1.5.2.ebuild b/media-libs/waffle/waffle-1.5.2.ebuild
25 deleted file mode 100644
26 index 2be51a34280..00000000000
27 --- a/media-libs/waffle/waffle-1.5.2.ebuild
28 +++ /dev/null
29 @@ -1,54 +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 -if [[ ${PV} = *9999* ]]; then
36 - EGIT_REPO_URI="https://github.com/waffle-gl/${PN}.git"
37 - GIT_ECLASS="git-r3"
38 -else
39 - SRC_URI="https://people.freedesktop.org/~chadversary/${PN}/files/release/${P}/${P}.tar.xz"
40 - KEYWORDS="amd64 arm ~ppc ~ppc64 x86"
41 -fi
42 -inherit cmake-multilib ${GIT_ECLASS}
43 -
44 -DESCRIPTION="Library that allows selection of GL API and of window system at runtime"
45 -HOMEPAGE="https://people.freedesktop.org/~chadversary/waffle/"
46 -
47 -LICENSE="BSD-2"
48 -SLOT="0"
49 -IUSE="doc egl gbm test wayland"
50 -
51 -RDEPEND="
52 - >=media-libs/mesa-9.1.6[egl?,gbm?,${MULTILIB_USEDEP}]
53 - >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
54 - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
55 - >=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]
56 - gbm? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] )
57 - wayland? ( >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}] )
58 -"
59 -DEPEND="${RDEPEND}
60 - >=x11-base/xcb-proto-1.8-r3[${MULTILIB_USEDEP}]
61 - doc? (
62 - dev-libs/libxslt
63 - app-text/docbook-xml-dtd:4.2
64 - )
65 -"
66 -
67 -src_configure() {
68 - local mycmakeargs=(
69 - -Dwaffle_has_glx=ON
70 - -Dwaffle_build_examples=OFF
71 - -Dwaffle_build_manpages=$(usex doc )
72 - -Dwaffle_has_x11_egl=$(usex egl)
73 - -Dwaffle_has_gbm=$(usex gbm)
74 - -Dwaffle_build_tests=$(usex test)
75 - -Dwaffle_has_wayland=$(usex wayland)
76 - )
77 -
78 - cmake-multilib_src_configure
79 -}
80 -
81 -src_test() {
82 - emake -C "${CMAKE_BUILD_DIR}" check
83 -}