dev-python/setuptools_scm: Fix version conflict on upgrades
authorMichał Górny <mgorny@gentoo.org>
Mon, 13 May 2019 20:25:10 +0000 (22:25 +0200)
committerMichał Górny <mgorny@gentoo.org>
Mon, 13 May 2019 20:25:42 +0000 (22:25 +0200)
Fix loading the wrong version of setuptools_scm, effectively removing
the need for self-blocker.

Signed-off-by: Michał Górny <mgorny@gentoo.org>
dev-python/setuptools_scm/setuptools_scm-3.3.1.ebuild

index 4217156ad367292a48c6817c2f4bab13a8ba68f4..bd949c207fb65810d81b069e26221a09553a586d 100644 (file)
@@ -18,7 +18,6 @@ IUSE="test"
 RESTRICT="!test? ( test )"
 
 DEPEND="
-       !!<dev-python/setuptools_scm-3
        dev-python/setuptools[${PYTHON_USEDEP}]
        test? (
                dev-python/pytest[${PYTHON_USEDEP}]
@@ -30,11 +29,18 @@ python_prepare_all() {
        sed -i -e 's:test_pip_download:_&:' testing/test_regressions.py || die
        # all fetch specific setuptools versions
        rm testing/test_setuptools_support.py || die
+       # remove self-dependency
+       sed -i -e "/arguments\.update/s@scm_config()@{'version': '${PV}'}@" \
+               -e "/__main__/i del sys.path[0]" setup.py || die
 
        distutils-r1_python_prepare_all
 }
 
 python_test() {
-       distutils_install_for_testing
+       PYTHONPATH= distutils_install_for_testing
        py.test -v -v -x || die "Tests fail with ${EPYTHON}"
 }
+
+python_install() {
+       PYTHONPATH= distutils-r1_python_install
+}