Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyglet/
Date: Sun, 28 Mar 2021 18:59:34
Message-Id: 1616957905.b23c13bdda694bd0f059bc2d394117bf68a82103.mgorny@gentoo
1 commit: b23c13bdda694bd0f059bc2d394117bf68a82103
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 28 18:58:25 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 28 18:58:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23c13bd
7
8 dev-python/pyglet: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyglet/Manifest | 1 -
13 dev-python/pyglet/pyglet-1.5.14.ebuild | 62 ----------------------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/dev-python/pyglet/Manifest b/dev-python/pyglet/Manifest
17 index df72bd136a5..ed5859b21c8 100644
18 --- a/dev-python/pyglet/Manifest
19 +++ b/dev-python/pyglet/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyglet-1.5.14.tar.gz 6414252 BLAKE2B 3e30f4dc80fffbf93a3cc7fa744ba224868dea1d9f1998446a2341fd3ed1c058493c486979aedb8415abe5c8a3f53dc634494f849bf6f3ab6f9ceb0e35cfecd9 SHA512 9b34e80e1b28a2ef0504339b67bdc31e568bf3a3352a9a1d78d3cf87ba84e86e23aec6e524abbca26865082ec2f9da8d7633ba83206f9996d87002faa1269044
22 DIST pyglet-1.5.15.tar.gz 6429039 BLAKE2B 5835d2c8c0c6e309664bea4a4001d0b68622379ae27555b640ed4441cb4319bf4ffd2b491cf789cba5639b9ca43e047f1e2cf820e540123939dd386a4c88fbf3 SHA512 0ea6f936895b0f17d7272866ecec7721ae1fb353af3654c49bb09eb81729f939df07ba3cdaf8b8bece345a8f144d56a45dc23d82e1887db306fd08c7989c688e
23
24 diff --git a/dev-python/pyglet/pyglet-1.5.14.ebuild b/dev-python/pyglet/pyglet-1.5.14.ebuild
25 deleted file mode 100644
26 index 24ad840b717..00000000000
27 --- a/dev-python/pyglet/pyglet-1.5.14.ebuild
28 +++ /dev/null
29 @@ -1,62 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7,8,9} )
36 -
37 -inherit distutils-r1 virtualx xdg-utils
38 -
39 -DESCRIPTION="Cross-platform windowing and multimedia library for Python"
40 -HOMEPAGE="http://pyglet.org/"
41 -SRC_URI="https://github.com/pyglet/pyglet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
46 -IUSE="examples image +sound"
47 -
48 -BDEPEND="
49 - test? (
50 - dev-python/pillow[${PYTHON_USEDEP}]
51 - dev-python/gst-python[${PYTHON_USEDEP}]
52 - )
53 -"
54 -RDEPEND="
55 - virtual/glu
56 - virtual/opengl
57 - image? ( || (
58 - dev-python/pillow[${PYTHON_USEDEP}]
59 - x11-libs/gtk+:2
60 - ) )
61 - sound? ( || (
62 - media-libs/openal
63 - media-sound/pulseaudio
64 - ) )
65 -"
66 -# ffmpeg? ( media-libs/avbin-bin )
67 -
68 -DOCS=( DESIGN NOTICE README.md RELEASE_NOTES )
69 -
70 -distutils_enable_tests pytest
71 -
72 -src_test() {
73 - virtx distutils-r1_src_test
74 -}
75 -
76 -python_test() {
77 - xdg_environment_reset
78 -
79 - # Specify path to avoid running interactive tests
80 - # We could add in integration tests, but they're slow
81 - pytest -vv tests/unit || die "Tests failed with ${EPYTHON}"
82 -}
83 -
84 -python_install_all() {
85 - if use examples; then
86 - dodoc -r examples
87 - docompress -x /usr/share/doc/${PF}/examples
88 - fi
89 -
90 - distutils-r1_python_install_all
91 -}