Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pygame/files: pygame-1.9.2_pre20120101-import-bdist.patch
Date: Sat, 28 Feb 2015 18:06:13
Message-Id: 20150228180608.84BDC12C01@oystercatcher.gentoo.org
1 pacho 15/02/28 18:06:08
2
3 Added: pygame-1.9.2_pre20120101-import-bdist.patch
4 Log:
5 Workaround bug #516434 until a better fix is found (thanks to Markus Oehme), drop old.
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
8
9 Revision Changes Path
10 1.1 dev-python/pygame/files/pygame-1.9.2_pre20120101-import-bdist.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygame/files/pygame-1.9.2_pre20120101-import-bdist.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pygame/files/pygame-1.9.2_pre20120101-import-bdist.patch?rev=1.1&content-type=text/plain
14
15 Index: pygame-1.9.2_pre20120101-import-bdist.patch
16 ===================================================================
17 From f5ee3952769d698d7d03ae61a9c70f2ec4d85874 Mon Sep 17 00:00:00 2001
18 From: "Markus (root)" <mo@××××××.org>
19 Date: Sun, 19 Oct 2014 16:56:41 +0200
20 Subject: [PATCH] This fails with a TypeError, but offers no functionality.
21
22 ---
23 pygame-1.9.2_pre20120101-python3_3/setup.py | 26 +++++++++++++-------------
24 1 file changed, 13 insertions(+), 13 deletions(-)
25
26 diff --git a/pygame-1.9.2_pre20120101-python3_3/setup.py b/pygame-1.9.2_pre20120101-python3_3/setup.py
27 index ecee5d1..b913f18 100644
28 --- a/pygame-1.9.2_pre20120101-python3_3/setup.py
29 +++ b/pygame-1.9.2_pre20120101-python3_3/setup.py
30 @@ -99,19 +99,19 @@ if "-setuptools" in sys.argv:
31 sys.argv.remove ("-setuptools")
32
33
34 -# NOTE: the bdist_mpkg_support is for darwin.
35 -try:
36 - import bdist_mpkg_support
37 - from setuptools import setup, Extension
38 -except ImportError:
39 - pass
40 -else:
41 - EXTRAS.update({
42 - 'options': bdist_mpkg_support.options,
43 - 'setup_requires': ['bdist_mpkg>=0.4.2'],
44 - #'install_requires': ['pyobjc'],
45 - #'dependency_links': ['http://rene.f0o.com/~rene/stuff/macosx/']
46 - })
47 +# # NOTE: the bdist_mpkg_support is for darwin.
48 +# try:
49 +# import bdist_mpkg_support
50 +# from setuptools import setup, Extension
51 +# except ImportError:
52 +# pass
53 +# else:
54 +# EXTRAS.update({
55 +# 'options': bdist_mpkg_support.options,
56 +# 'setup_requires': ['bdist_mpkg>=0.4.2'],
57 +# #'install_requires': ['pyobjc'],
58 +# #'dependency_links': ['http://rene.f0o.com/~rene/stuff/macosx/']
59 +# })
60
61 #headers to install
62 headers = glob.glob(os.path.join('src', '*.h'))
63 --
64 2.1.2