Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: dev-lang/python/
Date: Sat, 02 Jan 2021 09:54:48
Message-Id: 1609580858.579269e0c188da05a501619028a440ed97465cac.grobian@gentoo
1 commit: 579269e0c188da05a501619028a440ed97465cac
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 09:47:38 2021 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 09:47:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=579269e0
7
8 dev-lang/python-3.9.1: drop obsolete fixes
9
10 Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
11 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
12
13 dev-lang/python/python-3.9.1.ebuild | 11 -----------
14 1 file changed, 11 deletions(-)
15
16 diff --git a/dev-lang/python/python-3.9.1.ebuild b/dev-lang/python/python-3.9.1.ebuild
17 index 5ba405b9a9..fc70f542f9 100644
18 --- a/dev-lang/python/python-3.9.1.ebuild
19 +++ b/dev-lang/python/python-3.9.1.ebuild
20 @@ -112,22 +112,11 @@ src_prepare() {
21 configure.ac configure || die
22 fi
23
24 - # Python doesn't know about arm64-macos yet
25 - if [[ ${CHOST} == arm64-*-darwin* ]] ; then
26 - # Teach Python a new trick (arm64)
27 - sed -i \
28 - -e "/Unexpected output of 'arch' on OSX/d" \
29 - configure.ac configure || die
30 - fi
31 -
32 # side-effect of disabling scproxy (see below), make sure we don't
33 # try to use it on Darwin either
34 sed -i -e '/sys.platform/s/darwin/disabled-darwin/' \
35 Lib/urllib/request.py || die
36
37 - # disable SDK usage on Darwin/macOS
38 - sed -i -e '/^MACOS = /s/darwin/no-darwin/' setup.py || die
39 -
40 eautoreconf
41 }