dev-python/mimeparse: use the actual ABI version

In src_install there was a bit of scripted logic to determine
the ABI used for link creation. This wasn't working with a
newer version of pypy3. Instead of the logic a small Python
script is implemented that should always get the correct
ABI version.

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=586008

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2538

Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
Mathy Vanvoorden
2016-10-11 20:37:09 +02:00
committed by David Seifert
parent 7e9c54e9d0
commit 6828d95150

View File

@@ -2,9 +2,9 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
inherit distutils-r1
@@ -28,22 +28,16 @@ RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
python_test() {
"${PYTHON}" mimeparse_test.py || die "Tests fail with ${EPYTHON}"
"${EPYTHON}" mimeparse_test.py || die "Tests fail with ${EPYTHON}"
}
python_install() {
distutils-r1_python_install
if [[ ${EPYTHON} == pypy ]]; then
local pyver=2.7
elif [[ ${EPYTHON} == pypy3 ]]; then
local pyver=3.2
else
local pyver=${EPYTHON#python}
fi
local pyver=$("${EPYTHON}" -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_version())")
python_export PYTHON_SITEDIR
# Previous versions were just called 'mimeparse'
ln -sf python_mimeparse-${PV}-py${pyver}.egg-info \
"${D%/}${PYTHON_SITEDIR}/mimeparse-${PV}-py${pyver}.egg-info" || die
"${D%/}${PYTHON_SITEDIR}/mimeparse-${PV}-py${pyver}.egg-info" || die "Could not create mimeparse link"
}