summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-05-26 15:30:22 +0200
committerMichał Górny <mgorny@gentoo.org>2021-05-26 15:31:53 +0200
commiteaa6e8731ec9ca71bd06f703ec894880f9b6bbdf (patch)
tree150968e1336864032e053d399731aa0ff1853373 /dev-python/asttokens
parentnet-vpn/tor: add 0.4.6.3_rc for glibc 2.33 fix (diff)
downloadgentoo-eaa6e8731ec9ca71bd06f703ec894880f9b6bbdf.tar.gz
gentoo-eaa6e8731ec9ca71bd06f703ec894880f9b6bbdf.tar.bz2
gentoo-eaa6e8731ec9ca71bd06f703ec894880f9b6bbdf.zip
dev-python/asttokens: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/asttokens')
-rw-r--r--dev-python/asttokens/Manifest1
-rw-r--r--dev-python/asttokens/asttokens-2.0.4.ebuild58
2 files changed, 0 insertions, 59 deletions
diff --git a/dev-python/asttokens/Manifest b/dev-python/asttokens/Manifest
index 25a698734cf6..09dd9550f1c5 100644
--- a/dev-python/asttokens/Manifest
+++ b/dev-python/asttokens/Manifest
@@ -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
diff --git a/dev-python/asttokens/asttokens-2.0.4.ebuild b/dev-python/asttokens/asttokens-2.0.4.ebuild
deleted file mode 100644
index 2fb6b6e0d04f..000000000000
--- a/dev-python/asttokens/asttokens-2.0.4.ebuild
+++ /dev/null
@@ -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}"
-}