dev-python/pyinstaller: update PYTHON_COMPAT, drop py2

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Yury Martynov <email@linxon.ru>
This commit is contained in:
Yury Martynov 2020-03-17 18:21:38 +03:00
parent 2fd4c8d1de
commit 6089f9b941
No known key found for this signature in database
GPG key ID: EBE62DD0CCEAE19E
2 changed files with 14 additions and 2 deletions

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<use>
<flag name="clang">Support for sys-devel/clang</flag>
<flag name="leak-detector">Support for link with Boehm garbage collector to detect memory leaks</flag>
</use>
</pkgmetadata>

View file

@ -1,11 +1,11 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
# PyInstaller assumes CPython internals and is hence currently incompatible with
# alternative interpreters (e.g., PyPy).
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
PYTHON_COMPAT=( python3_{6,7} )
# "waf" requires a threading-enabled Python interpreter.
PYTHON_REQ_USE='threads(+)'