commit:     c4a5cf73a02cfd0907c2b459f6f41aae4b76480d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 21 03:34:44 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Apr 21 04:28:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4a5cf73

dev-python/pyglet: Bump to 2.1.4

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/pyglet/Manifest            |  1 +
 dev-python/pyglet/pyglet-2.1.4.ebuild | 85 +++++++++++++++++++++++++++++++++++
 2 files changed, 86 insertions(+)

diff --git a/dev-python/pyglet/Manifest b/dev-python/pyglet/Manifest
index f3a78f7d923c..e45980d34fb4 100644
--- a/dev-python/pyglet/Manifest
+++ b/dev-python/pyglet/Manifest
@@ -1 +1,2 @@
 DIST pyglet-2.1.3.gh.tar.gz 6534900 BLAKE2B 
edf8715213682b184050f1ab2d51913e787acf03e6911b68d7076afb9427ec6d60efbc28145f4e5b7e228d00d0aa5daa5ebb5a8c5a118f2006ab447360e8440f
 SHA512 
fbdc45888ed0cbb380115365b96db82c57ffbfc8f03c03265a276992e154cc5ec81c752e6fc8940003d96c489009eefe0976e3f87129fea1605ab6db7b4fe1bf
+DIST pyglet-2.1.4.gh.tar.gz 6564795 BLAKE2B 
07f2c08e1d7e3ef7ad915f7e4a873d24ebad808dc2cd35d36509ddf3c7ac99c9db097f04023fb5ca7774ed6d0b82eda2e44dc1b73d29136d3f4ee64d456bc587
 SHA512 
726ee72eae2521a6136fe413459daa9cef22aa806f189f42f8eb8118a4265e0b97618410e1747bd3070268f8aeabb81f753745ad350302bd33d7f677d76d4b72

diff --git a/dev-python/pyglet/pyglet-2.1.4.ebuild 
b/dev-python/pyglet/pyglet-2.1.4.ebuild
new file mode 100644
index 000000000000..9b15b3bd4484
--- /dev/null
+++ b/dev-python/pyglet/pyglet-2.1.4.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
+
+inherit distutils-r1 virtualx xdg-utils
+
+MY_P=${P/_/.}
+DESCRIPTION="Cross-platform windowing and multimedia library for Python"
+HOMEPAGE="
+       https://pyglet.org/
+       https://github.com/pyglet/pyglet/
+       https://pypi.org/project/pyglet/
+"
+SRC_URI="
+       https://github.com/pyglet/pyglet/archive/v${PV/_/.}.tar.gz
+               -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+IUSE="examples image +sound"
+
+RDEPEND="
+       virtual/glu
+       virtual/opengl
+       image? (
+               || (
+                       dev-python/pillow[${PYTHON_USEDEP}]
+                       x11-libs/gtk+:2
+               )
+       )
+       sound? (
+               || (
+                       media-libs/libpulse
+                       media-libs/openal
+               )
+       )
+"
+#      ffmpeg? ( media-libs/avbin-bin )
+BDEPEND="
+       test? (
+               dev-python/pillow[${PYTHON_USEDEP}]
+               media-libs/fontconfig
+               x11-base/xorg-server[-minimal]
+       )
+"
+
+distutils_enable_tests pytest
+
+src_test() {
+       virtx distutils-r1_src_test
+}
+
+python_test() {
+       xdg_environment_reset
+
+       local EPYTEST_DESELECT=(
+               # lacking device/server permissions
+               tests/unit/media/test_listener.py::test_openal_listener
+               tests/unit/media/test_listener.py::test_pulse_listener
+               # fragile to system load
+               
tests/unit/media/test_player.py::PlayerTestCase::test_pause_resume
+               tests/unit/test_clock_freq.py::test_elapsed_time_between_tick
+       )
+
+       # Specify path to avoid running interactive tests
+       # We could add in integration tests, but they're slow
+       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+       nonfatal epytest tests/unit || die "Tests failed with ${EPYTHON}"
+}
+
+python_install_all() {
+       if use examples; then
+               dodoc -r examples
+               docompress -x /usr/share/doc/${PF}/examples
+       fi
+
+       distutils-r1_python_install_all
+}

Reply via email to