Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyopengl/
Date: Thu, 23 Apr 2020 21:24:34
Message-Id: 1587677049.1eedd403f0770aed89b199ad13811b5474ff63f9.chewi@gentoo
1 commit: 1eedd403f0770aed89b199ad13811b5474ff63f9
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 21:20:44 2020 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 21:24:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eedd403
7
8 dev-python/pyopengl: Bump to 3.1.5, EAPI 7, add src_test
9
10 The tests pass on amd64 and ppc64le. 3 of the OpenGL-related tests
11 fail on ppc64be but OpenGL is known to be problematic on this
12 platform.
13
14 Package-Manager: Portage-2.3.99, Repoman-2.3.22
15 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
16
17 dev-python/pyopengl/Manifest | 1 +
18 dev-python/pyopengl/pyopengl-3.1.5.ebuild | 53 +++++++++++++++++++++++++++++++
19 2 files changed, 54 insertions(+)
20
21 diff --git a/dev-python/pyopengl/Manifest b/dev-python/pyopengl/Manifest
22 index a8086067009..1f5c1661877 100644
23 --- a/dev-python/pyopengl/Manifest
24 +++ b/dev-python/pyopengl/Manifest
25 @@ -1 +1,2 @@
26 DIST PyOpenGL-3.1.0.tar.gz 1172688 BLAKE2B 9865a10e8b5d2756192077b4b079658c680b9f47bdaccb33285fb1942bc678b29f6a69359a1486ec023b1a73d714a7e0209b2f57776fe8b5e4a5e2d0803dba4f SHA512 f748017ab3734c7672c3fdbedcea80df297a91a78b111533e260feb0868ebb02935666c041f77db03841ee8f90057d9c53c53b00b097aae4cf67a52c7fc9c2eb
27 +DIST PyOpenGL-3.1.5.tar.gz 1835295 BLAKE2B fd3b3e9970b3e704b09128402b401e23c584ba20de23082d019f5ab9e1e222efdfbd2e11ecff6ee748f41bad3a5ff089c57a5c354092e2f717b13e18108de2af SHA512 5d90fc68040b4886e46ff69a59be9e3a8e31e3e1295283756db86d50a1efe681986928e18eb55d20fd2660f863653301ea483425bbe24046f55085b44f4906eb
28
29 diff --git a/dev-python/pyopengl/pyopengl-3.1.5.ebuild b/dev-python/pyopengl/pyopengl-3.1.5.ebuild
30 new file mode 100644
31 index 00000000000..74b0b47b95c
32 --- /dev/null
33 +++ b/dev-python/pyopengl/pyopengl-3.1.5.ebuild
34 @@ -0,0 +1,53 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_REQ_USE="tk?"
41 +PYTHON_COMPAT=( python3_{7,8} )
42 +
43 +inherit distutils-r1 virtualx
44 +
45 +MY_PN="PyOpenGL"
46 +MY_P="${MY_PN}-${PV}"
47 +
48 +DESCRIPTION="Python OpenGL bindings"
49 +HOMEPAGE="http://pyopengl.sourceforge.net/ https://pypi.org/project/PyOpenGL/"
50 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
51 +# mirror://sourceforge/pyopengl/${MY_P}.tar.gz" # broken mirror for this release
52 +LICENSE="BSD"
53 +
54 +SLOT="0"
55 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
56 +IUSE="test tk"
57 +
58 +RDEPEND="
59 + media-libs/freeglut
60 + virtual/opengl
61 + x11-libs/libXi
62 + x11-libs/libXmu
63 + tk? ( dev-tcltk/togl )
64 +"
65 +DEPEND="
66 + ${RDEPEND}
67 +"
68 +
69 +# The tests need an X server with the GLX extension. Software rendering
70 +# under Xvfb works but only with llvmpipe, not softpipe or swr.
71 +BDEPEND="
72 + test? (
73 + dev-python/numpy[${PYTHON_USEDEP}]
74 + dev-python/pygame[${PYTHON_USEDEP},opengl,X]
75 + dev-python/pytest[${PYTHON_USEDEP}]
76 + !prefix? (
77 + media-libs/mesa[llvm]
78 + x11-base/xorg-server[-minimal,xorg]
79 + )
80 + )
81 +"
82 +
83 +S="${WORKDIR}/${MY_P}"
84 +
85 +python_test() {
86 + run_in_build_dir virtx pytest -v "${S}"/tests
87 +}