summaryrefslogtreecommitdiff
path: root/dev-python/executing/executing-0.6.0.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-09-05 08:44:20 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-09-05 08:44:20 +0000
commit574a448fcea27fe6a1cb54b420d84862692d4473 (patch)
tree24aa35a00166ca59468d638c4b7231e0692687cf /dev-python/executing/executing-0.6.0.ebuild
parent682f8c18ab2605b599c653a8a24ac7eaaaf060ab (diff)
downloadbaldeagleos-repo-574a448fcea27fe6a1cb54b420d84862692d4473.tar.gz
baldeagleos-repo-574a448fcea27fe6a1cb54b420d84862692d4473.tar.xz
baldeagleos-repo-574a448fcea27fe6a1cb54b420d84862692d4473.zip
Adding metadata
Diffstat (limited to 'dev-python/executing/executing-0.6.0.ebuild')
-rw-r--r--dev-python/executing/executing-0.6.0.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/executing/executing-0.6.0.ebuild b/dev-python/executing/executing-0.6.0.ebuild
deleted file mode 100644
index 1f0372d9d77f..000000000000
--- a/dev-python/executing/executing-0.6.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8,9,10} )
-inherit distutils-r1
-
-DESCRIPTION="Get information about what a Python frame is currently doing"
-HOMEPAGE="
- https://github.com/alexmojaki/executing/
- https://pypi.org/project/executing/"
-SRC_URI="
- https://github.com/alexmojaki/executing/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
-
-# asttokens is optional runtime dep
-BDEPEND="
- dev-python/setuptools_scm[${PYTHON_USEDEP}]
- dev-python/toml[${PYTHON_USEDEP}]
- test? (
- dev-python/asttokens[${PYTHON_USEDEP}]
- )"
-
-distutils_enable_tests pytest
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
-
-python_test() {
- # this test explodes when collected by pytest
- "${EPYTHON}" tests/test_main.py || die "Tests failed with ${EPYTHON}"
- pytest -vv tests/test_pytest.py || die "Tests failed with ${EPYTHON}"
-}