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: Sat, 18 Sep 2021 21:03:42
Message-Id: 1631998619.0a1b8eef55a071232d7b8e13d6fe687030ac2504.mgorny@gentoo
1 commit: 0a1b8eef55a071232d7b8e13d6fe687030ac2504
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 18 20:08:17 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 18 20:56:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a1b8eef
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 | 2 --
13 dev-python/pyglet/pyglet-1.5.18.ebuild | 62 ----------------------------------
14 dev-python/pyglet/pyglet-1.5.20.ebuild | 61 ---------------------------------
15 3 files changed, 125 deletions(-)
16
17 diff --git a/dev-python/pyglet/Manifest b/dev-python/pyglet/Manifest
18 index 2f828f685a6..a7203707f91 100644
19 --- a/dev-python/pyglet/Manifest
20 +++ b/dev-python/pyglet/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST pyglet-1.5.18.tar.gz 6440818 BLAKE2B cb7832000e0df96cd794f8eff9ba41aac8571542fbc45d1607df3935a7ed53ba8fd46b6bba40f6d5d53adfb2024aad1930cba1889b5d40d342457f7dc06db5d1 SHA512 d6ceddecccb36a90bef38c4a1608e866bb90ebb72eaaff693a2eb34678c7a50c99213a69042c569c22d54cc04a4b11d37ea8da47425958505261ebcf99bd28ce
23 DIST pyglet-1.5.19.tar.gz 6446786 BLAKE2B fef21122cf31718e0a796b3be4edf386bf477dc4fa6480970159b9d361e489417c9cad1df1060290bc1678408eed36e287c15da442275beaa8d354c268568411 SHA512 7ef85d91cdcafef8cf097e96bd34e800002824696ffbc1132c2dd776fe9d3c7be0b5633fff1cb10344fcc1aafa3c0c9a75547ad374be091f35aa99527869ab4b
24 -DIST pyglet-1.5.20.tar.gz 6517626 BLAKE2B 41b63bc650823fc3065f71215822d39a1e3f40b02f75401ab8fab6be7d3d8848813c721f400ec923fa29f5d5b0a66f7d7af905caae10f1ea5ab5241cbead1c87 SHA512 da1519a2c196348d8af90f280ffc90b0f46d2d325403a5ca53fa663aab161d13802e22259124c3af77fbf5814c06d8920c0147b30c22db74fff885091e9a9ad0
25 DIST pyglet-1.5.21.tar.gz 6516128 BLAKE2B ab7f23dc4ba48450f3da4efd30fadd089777f50b5392945636886192e89e230475f5bff9ba02cd166295423ed67f98b89fd186d18601504fe0f024c203a198c8 SHA512 3df0134dbfdeb15baae059bae489158273fd4797d5dc4da903ac2fdd58ae9e291e8d5371ebe545bd125a1670adfec84cb9d9f4f11841d594f3e4d38e5910ce2a
26
27 diff --git a/dev-python/pyglet/pyglet-1.5.18.ebuild b/dev-python/pyglet/pyglet-1.5.18.ebuild
28 deleted file mode 100644
29 index 24e77b128b0..00000000000
30 --- a/dev-python/pyglet/pyglet-1.5.18.ebuild
31 +++ /dev/null
32 @@ -1,62 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python3_{8..9} )
39 -
40 -inherit distutils-r1 virtualx xdg-utils
41 -
42 -DESCRIPTION="Cross-platform windowing and multimedia library for Python"
43 -HOMEPAGE="http://pyglet.org/"
44 -SRC_URI="https://github.com/pyglet/pyglet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
49 -IUSE="examples image +sound"
50 -
51 -BDEPEND="
52 - test? (
53 - dev-python/pillow[${PYTHON_USEDEP}]
54 - dev-python/gst-python[${PYTHON_USEDEP}]
55 - )
56 -"
57 -RDEPEND="
58 - virtual/glu
59 - virtual/opengl
60 - image? ( || (
61 - dev-python/pillow[${PYTHON_USEDEP}]
62 - x11-libs/gtk+:2
63 - ) )
64 - sound? ( || (
65 - media-libs/openal
66 - media-sound/pulseaudio
67 - ) )
68 -"
69 -# ffmpeg? ( media-libs/avbin-bin )
70 -
71 -DOCS=( DESIGN NOTICE README.md RELEASE_NOTES )
72 -
73 -distutils_enable_tests pytest
74 -
75 -src_test() {
76 - virtx distutils-r1_src_test
77 -}
78 -
79 -python_test() {
80 - xdg_environment_reset
81 -
82 - # Specify path to avoid running interactive tests
83 - # We could add in integration tests, but they're slow
84 - epytest tests/unit
85 -}
86 -
87 -python_install_all() {
88 - if use examples; then
89 - dodoc -r examples
90 - docompress -x /usr/share/doc/${PF}/examples
91 - fi
92 -
93 - distutils-r1_python_install_all
94 -}
95
96 diff --git a/dev-python/pyglet/pyglet-1.5.20.ebuild b/dev-python/pyglet/pyglet-1.5.20.ebuild
97 deleted file mode 100644
98 index 247321eafd3..00000000000
99 --- a/dev-python/pyglet/pyglet-1.5.20.ebuild
100 +++ /dev/null
101 @@ -1,61 +0,0 @@
102 -# Copyright 1999-2021 Gentoo Authors
103 -# Distributed under the terms of the GNU General Public License v2
104 -
105 -EAPI=8
106 -
107 -PYTHON_COMPAT=( python3_{8..9} )
108 -inherit distutils-r1 virtualx xdg-utils
109 -
110 -DESCRIPTION="Cross-platform windowing and multimedia library for Python"
111 -HOMEPAGE="http://pyglet.org/"
112 -SRC_URI="https://github.com/pyglet/pyglet/archive/v${PV}.tar.gz -> ${P}.tar.gz"
113 -
114 -LICENSE="BSD"
115 -SLOT="0"
116 -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
117 -IUSE="examples image +sound"
118 -
119 -BDEPEND="
120 - test? (
121 - dev-python/pillow[${PYTHON_USEDEP}]
122 - dev-python/gst-python[${PYTHON_USEDEP}]
123 - )
124 -"
125 -RDEPEND="
126 - virtual/glu
127 - virtual/opengl
128 - image? ( || (
129 - dev-python/pillow[${PYTHON_USEDEP}]
130 - x11-libs/gtk+:2
131 - ) )
132 - sound? ( || (
133 - media-libs/openal
134 - media-sound/pulseaudio
135 - ) )
136 -"
137 -# ffmpeg? ( media-libs/avbin-bin )
138 -
139 -DOCS=( DESIGN NOTICE README.md RELEASE_NOTES )
140 -
141 -distutils_enable_tests pytest
142 -
143 -src_test() {
144 - virtx distutils-r1_src_test
145 -}
146 -
147 -python_test() {
148 - xdg_environment_reset
149 -
150 - # Specify path to avoid running interactive tests
151 - # We could add in integration tests, but they're slow
152 - epytest tests/unit
153 -}
154 -
155 -python_install_all() {
156 - if use examples; then
157 - dodoc -r examples
158 - docompress -x /usr/share/doc/${PF}/examples
159 - fi
160 -
161 - distutils-r1_python_install_all
162 -}