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/pygame/
Date: Mon, 01 Nov 2021 08:32:20
Message-Id: 1635755525.5179bcd3bf06eaa1b2355207fe54f80d2e5bea5f.mgorny@gentoo
1 commit: 5179bcd3bf06eaa1b2355207fe54f80d2e5bea5f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 1 07:34:38 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 1 08:32:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5179bcd3
7
8 dev-python/pygame: Bump to 2.0.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pygame/Manifest | 1 +
13 dev-python/pygame/pygame-2.0.3.ebuild | 91 +++++++++++++++++++++++++++++++++++
14 2 files changed, 92 insertions(+)
15
16 diff --git a/dev-python/pygame/Manifest b/dev-python/pygame/Manifest
17 index 2758cb912ab..534421b453e 100644
18 --- a/dev-python/pygame/Manifest
19 +++ b/dev-python/pygame/Manifest
20 @@ -3,3 +3,4 @@ DIST pygame-2.0.0.dev10.tar.gz 5567274 BLAKE2B 7d78f260318cfabeb33f1073ae210f890
21 DIST pygame-2.0.0.tar.gz 5522621 BLAKE2B 49773979af53595d3ff2db1a18e4bcd217e26db3ec28d6129d2a588f23a1bd5326fa79fab32c25aa796738cde0e68f5741bee58f62432e86f89cd49ee17a8f14 SHA512 3f65924d0e1d2863b84118a4e468b521a289e2cf174405c6f3ee2b2a2ed399cde7f9f310d57c4166351f84caaea02dd7408ee852dbcee7c205bb2955b6078fda
22 DIST pygame-2.0.1.tar.gz 5536907 BLAKE2B b27cb9001499a00da62dac0486a72079ff4e60ca609be444b04f547cb2372090da91d2670307ce7068b964458e6ac1284402439bb7809c9735135d5e93a71d78 SHA512 1535a872c43e5f75acdfa7d325fcfa0f0f826e18602b28b228cfdbe068a382678c21568d80873f7af4f0b318e693adb38afa4d632f8294f716a47188abe5245a
23 DIST pygame-2.0.2.tar.gz 6309459 BLAKE2B 0cb23b4226d8d86f938cba08b67ab3bd847c9e4122f5f6cce4d8810b239df672ab282e1b77dd7d71423f805c7c0418e54050347dfb9e506b799eb8e0b4f16856 SHA512 2cef4669e5bd81759c9886293ebc1b82e1ed3b4576a3632437f66cb353af330e15dd39e7378f2be8fd25838f202529dc550208a031aec77e1d05443a070638c8
24 +DIST pygame-2.0.3.tar.gz 5804279 BLAKE2B fb58dd57a9288bdff3c0d01389e363968ebddd4b2b0fa92335c825297026c5858da4f73a870f84e0c3c7cf302bd9f4163807c97a348d581658df7e7695fcb4fb SHA512 1d2b4cb1e577f0244c2b92511b8fa0ab7bcd689d04a4451ced41e6d97758ba380d7e681e60abed26c81b96bd49d505cf481c67a466437b3cfdb547e744f22949
25
26 diff --git a/dev-python/pygame/pygame-2.0.3.ebuild b/dev-python/pygame/pygame-2.0.3.ebuild
27 new file mode 100644
28 index 00000000000..1ee94dd33f0
29 --- /dev/null
30 +++ b/dev-python/pygame/pygame-2.0.3.ebuild
31 @@ -0,0 +1,91 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +inherit distutils-r1
39 +
40 +MY_PV=${PV/_pre/.dev}
41 +MY_P=${PN}-${MY_PV}
42 +
43 +DESCRIPTION="Python bindings for SDL multimedia library"
44 +HOMEPAGE="https://www.pygame.org/"
45 +SRC_URI="
46 + https://github.com/pygame/pygame/releases/download/${MY_PV}/${MY_P}.tar.gz"
47 +S=${WORKDIR}/${MY_P}
48 +
49 +LICENSE="LGPL-2.1"
50 +SLOT="0"
51 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
52 +IUSE="doc examples midi opengl test X"
53 +RESTRICT="!test? ( test )"
54 +
55 +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]
56 + media-libs/freetype
57 + media-libs/libpng:0=
58 + >=media-libs/sdl2-image-1.2.2
59 + >=media-libs/sdl2-mixer-1.2.4
60 + >=media-libs/sdl2-ttf-2.0.6
61 + >=media-libs/smpeg2-0.4.4-r1
62 + virtual/jpeg
63 + midi? ( media-libs/portmidi )
64 + X? ( >=media-libs/libsdl2-1.2.5[opengl?,threads,video,X] )
65 + !X? ( >=media-libs/libsdl2-1.2.5[threads] )"
66 +DEPEND="${RDEPEND}
67 + test? (
68 + media-libs/sdl2-image[gif,jpeg,png]
69 + media-libs/sdl2-mixer[mp3,vorbis,wav]
70 + )"
71 +# fontconfig used for fc-list
72 +RDEPEND+="
73 + media-libs/fontconfig"
74 +# util-linux provides script
75 +BDEPEND="
76 + test? (
77 + media-libs/fontconfig
78 + sys-apps/util-linux
79 + )"
80 +
81 +src_prepare() {
82 + if ! use midi; then
83 + rm test/midi_test.py || die
84 + fi
85 + distutils-r1_src_prepare
86 +}
87 +
88 +python_configure() {
89 + PORTMIDI_INC_PORTTIME=1 LOCALBASE="${EPREFIX}/usr" \
90 + "${EPYTHON}" "${S}"/buildconfig/config.py -auto || die
91 +
92 + # Disable automagic dependency on PortMidi.
93 + if ! use midi; then
94 + sed -e "s:^pypm :#&:" -i Setup || die "sed failed"
95 + fi
96 +}
97 +
98 +python_test() {
99 + local -x PYTHONPATH=${BUILD_DIR}/install/lib
100 + local -x SDL_VIDEODRIVER=dummy
101 + local -x SDL_AUDIODRIVER=disk
102 + distutils_install_for_testing --via-root
103 + script -eqc "${EPYTHON} -m pygame.tests" || die
104 +}
105 +
106 +python_install() {
107 + distutils-r1_python_install
108 +
109 + # Bug #497720
110 + rm -fr "${D}"$(python_get_sitedir)/pygame/{docs,examples,tests}/ || die
111 +}
112 +
113 +python_install_all() {
114 + distutils-r1_python_install_all
115 +
116 + if use doc; then
117 + docinto html
118 + dodoc -r docs/*
119 + fi
120 +
121 + use examples && dodoc -r examples
122 +}