dev-python/asttokens: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2021-05-26 15:30:22 +02:00
parent 011b7daff7
commit eaa6e8731e
2 changed files with 0 additions and 59 deletions

View File

@@ -1,2 +1 @@
DIST asttokens-2.0.4.gh.tar.gz 46823 BLAKE2B 111ed58c1b657900f830b7b9f521c1f87fd37945ab6ed6e165108fc2371923030b37cae33885e166a524eb8dd5cfad5fe9391a19b7729b7cd504474d1477748d SHA512 49287259d64c43c7460357d19ed95495ab499b0ad7ae0d5a59378ea0332142b574643349d1d3ca56442712ebec14c53167da475915017feb1b524ac190f9dac3
DIST asttokens-2.0.5.gh.tar.gz 46876 BLAKE2B 8a8da138888de0a4096b10eccc483c9540710acde0da188ed3fb3845f96b862fe2eec393c69ca62e7b313bfa0e2f0d673d828e9d1ff6dbbf5b641fe8122a548d SHA512 3e710ca9703e67643bb9c0a4db4e5c1656e6d5c904a1262a9ddb962beff06e4e8bd9815bcd2509b48974a97a565d8479a4369583c166a65b6d16c19fd926e93f

View File

@@ -1,58 +0,0 @@
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="Annotate Python AST trees with source text and token information"
HOMEPAGE="
https://github.com/gristlabs/asttokens/
https://pypi.org/project/asttokens/"
SRC_URI="
https://github.com/gristlabs/asttokens/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools_scm[${PYTHON_USEDEP}]
dev-python/toml[${PYTHON_USEDEP}]
test? (
dev-python/astroid[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
src_prepare() {
# Kill off useless wheel dep
sed -i -e 's/wheel; //' setup.cfg || die
distutils-r1_src_prepare
}
python_test() {
local deselect=()
[[ ${EPYTHON} == python3.9 ]] && deselect+=(
# invalid syntax
--deselect
tests/test_astroid.py::TestAstroid::test_fixture9
--deselect
tests/test_astroid.py::TestAstroid::test_splat
--deselect
tests/test_astroid.py::TestAstroid::test_sys_modules
--deselect
tests/test_mark_tokens.py::TestMarkTokens::test_fixture9
--deselect
tests/test_mark_tokens.py::TestMarkTokens::test_splat
--deselect
tests/test_mark_tokens.py::TestMarkTokens::test_sys_modules
)
pytest -vv "${deselect[@]}" || die "Tests failed with ${EPYTHON}"
}