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: Wed, 26 Oct 2016 22:33:18
Message-Id: 1477521185.9a4834619e169295348580b436e1b59f32e1c852.mattst88@gentoo
1 commit: 9a4834619e169295348580b436e1b59f32e1c852
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 26 22:32:02 2016 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 26 22:33:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a483461
7
8 media-libs/waffle: Drop old version 1.5.1.
9
10 media-libs/waffle/Manifest | 1 -
11 media-libs/waffle/waffle-1.5.1.ebuild | 64 -----------------------------------
12 2 files changed, 65 deletions(-)
13
14 diff --git a/media-libs/waffle/Manifest b/media-libs/waffle/Manifest
15 index a361032..8ffe3e4 100644
16 --- a/media-libs/waffle/Manifest
17 +++ b/media-libs/waffle/Manifest
18 @@ -1,2 +1 @@
19 -DIST waffle-1.5.1.tar.xz 178136 SHA256 cbab0e926515064e818bf089a5af04be33307e5f40d07659fb40d59b2bfe20aa SHA512 0bcd9b76a9806f9b23f27870936f9aed7fe9a21a2c253c8f16b4303129bf7f95dc8f02207b89533b7addcfcdc12b6b05ce9c51a6f1f237d4cf9ac1d81916f831 WHIRLPOOL 3803bd21296ea1e0da3bb39eeb174ad713e005c444b24d792c61e85b28eb06fd863a1412800ad80dec2ff66b6af4b049b8fe9e8a6d82221771de3ad89a51f522
20 DIST waffle-1.5.2.tar.xz 179284 SHA256 d2c096cf654bf0061323a4b9231a1ef5b749a1e5c7c5bfe067e964219c2a851c SHA512 04f90f70421c88418d1d98175b552de9e036ea36b6c870a6c968c7fcc2d4cb2fa4ce08b0adcdd50f4853a7503558eae7a05ef75b292cf85d3c9796e7b342ca62 WHIRLPOOL 1d7626a717fa5100b83391dcff79bf92885ffcca0945a1e1b0a3a797d5c6dc5536a681e40f1c61c3275c1694b3f4a5292d0eabb1a64ec75383a1de6c5d5c18e9
21
22 diff --git a/media-libs/waffle/waffle-1.5.1.ebuild b/media-libs/waffle/waffle-1.5.1.ebuild
23 deleted file mode 100644
24 index 1382ae4..00000000
25 --- a/media-libs/waffle/waffle-1.5.1.ebuild
26 +++ /dev/null
27 @@ -1,64 +0,0 @@
28 -# Copyright 1999-2015 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -# $Id$
31 -
32 -EAPI=5
33 -
34 -EGIT_REPO_URI="git://github.com/waffle-gl/waffle.git"
35 -
36 -if [[ ${PV} = 9999* ]]; then
37 - GIT_ECLASS="git-2"
38 -fi
39 -
40 -inherit cmake-utils cmake-multilib ${GIT_ECLASS}
41 -
42 -DESCRIPTION="Library that allows selection of GL API and of window system at runtime"
43 -HOMEPAGE="https://people.freedesktop.org/~chadversary/waffle/"
44 -
45 -if [[ $PV = 9999* ]]; then
46 - KEYWORDS=""
47 -else
48 - SRC_URI="https://people.freedesktop.org/~chadversary/waffle/files/release/${P}/${P}.tar.xz"
49 - KEYWORDS="~amd64 ~arm ~x86"
50 -fi
51 -
52 -LICENSE="BSD-2"
53 -SLOT="0"
54 -IUSE="doc egl gbm test wayland"
55 -
56 -RDEPEND="
57 - >=media-libs/mesa-9.1.6[egl?,gbm?,${MULTILIB_USEDEP}]
58 - >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
59 - wayland? ( >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}] )
60 - gbm? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] )
61 - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
62 - >=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]"
63 -DEPEND="${RDEPEND}
64 - >=x11-proto/xcb-proto-1.8-r3[${MULTILIB_USEDEP}]
65 - doc? (
66 - dev-libs/libxslt
67 - app-text/docbook-xml-dtd:4.2
68 - )"
69 -
70 -src_unpack() {
71 - default
72 - [[ $PV = 9999* ]] && git-2_src_unpack
73 -}
74 -
75 -src_configure() {
76 - local mycmakeargs=(
77 - -Dwaffle_has_glx=ON
78 - -Dwaffle_build_examples=OFF
79 - $(cmake-utils_use doc waffle_build_manpages)
80 - $(cmake-utils_use egl waffle_has_x11_egl)
81 - $(cmake-utils_use gbm waffle_has_gbm)
82 - $(cmake-utils_use test waffle_build_tests)
83 - $(cmake-utils_use wayland waffle_has_wayland)
84 - )
85 -
86 - cmake-multilib_src_configure
87 -}
88 -
89 -src_test() {
90 - emake -C "${CMAKE_BUILD_DIR}" check
91 -}