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: Sat, 26 Sep 2015 05:39:52
Message-Id: 1443245977.e46b18fbdad9189efc1cc6a861af9546b7df81f9.mattst88@gentoo
1 commit: e46b18fbdad9189efc1cc6a861af9546b7df81f9
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 05:39:12 2015 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 05:39:37 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e46b18fb
7
8 media-libs/libepoxy: Version bump to 1.3.1.
9
10 Bug: https://bugs.gentoo.org/561422
11
12 media-libs/libepoxy/Manifest | 1 +
13 media-libs/libepoxy/libepoxy-1.3.1.ebuild | 43 +++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
17 index fcc7556..d130854 100644
18 --- a/media-libs/libepoxy/Manifest
19 +++ b/media-libs/libepoxy/Manifest
20 @@ -1 +1,2 @@
21 DIST libepoxy-1.2.tar.gz 267110 SHA256 42c328440f60a5795835c5ec4bdfc1329e75bba16b6e22b3a87ed17e9679e8f6 SHA512 1104fc7e6cbb4bb95e422e7801491067806df6849690be4068b5eec33a5fc84672a5bb4666357e9a46d2fae436f83b37402b6cc0c4ee69627e48d48a4d32a2ed WHIRLPOOL 6a678b9999a909a858a6bd6d9695fd1b6093cd266c1b8c72c401c880a11c09aa9e819ec1459fd12e997ecf54460d7b1da0c476f79d27539218533fff53fc78a6
22 +DIST libepoxy-1.3.1.tar.gz 284227 SHA256 6700ddedffb827b42c72cce1e0be6fba67b678b19bf256e1b5efd3ea38cc2bb4 SHA512 7d83f01bbc6d2387e4e2ec8a94b05d6e7aa6d0513821a794d60544381a18874fa75ec1dfd2585824076708e2848ff8d5dc20e184af65a7cb602e7dfd010aaf53 WHIRLPOOL 2a91c3e0931b57e791a91f025c7e9b21d6404d9644a7dc47faf6b64a3f17838dc509d1860d38be9c08779ac35fb9c56606396fc02ccccc5833d4aaf78cfcc359
23
24 diff --git a/media-libs/libepoxy/libepoxy-1.3.1.ebuild b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
25 new file mode 100644
26 index 0000000..aadac36
27 --- /dev/null
28 +++ b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2015 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +AUTOTOOLS_AUTORECONF=yes
37 +
38 +EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
39 +
40 +if [[ ${PV} = 9999* ]]; then
41 + GIT_ECLASS="git-r3"
42 +fi
43 +
44 +PYTHON_COMPAT=( python{2_7,3_3,3_4} )
45 +PYTHON_REQ_USE='xml(+)'
46 +inherit autotools-multilib ${GIT_ECLASS} python-any-r1
47 +
48 +DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
49 +HOMEPAGE="https://github.com/anholt/libepoxy"
50 +if [[ ${PV} = 9999* ]]; then
51 + KEYWORDS=""
52 + SRC_URI=""
53 +else
54 + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
55 + SRC_URI="https://github.com/anholt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
56 +fi
57 +
58 +LICENSE="MIT"
59 +SLOT="0"
60 +IUSE="test"
61 +RESTICT="test" # FIXME: tests fail when run from portage.
62 +
63 +DEPEND="${PYTHON_DEPS}
64 + media-libs/mesa[egl]
65 + x11-misc/util-macros
66 + x11-libs/libX11"
67 +RDEPEND=""
68 +
69 +src_unpack() {
70 + default
71 + [[ $PV = 9999* ]] && git-r3_src_unpack
72 +}