summaryrefslogtreecommitdiff
path: root/dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-03-06 12:54:41 +0100
committerMichał Górny <mgorny@gentoo.org>2020-03-06 13:05:35 +0100
commita2b9ca40d1f71da79688e05292516294c1407bdc (patch)
tree1d2673068e9411fca9c2c946072ac72b7635e071 /dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild
parent53f6da152abe2311a41718385920db955079d48f (diff)
downloadgentoo-a2b9ca40d1f71da79688e05292516294c1407bdc.tar.gz
gentoo-a2b9ca40d1f71da79688e05292516294c1407bdc.tar.bz2
gentoo-a2b9ca40d1f71da79688e05292516294c1407bdc.zip
dev-python/python-sqlparse: Remove py2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild')
-rw-r--r--dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild20
1 files changed, 2 insertions, 18 deletions
diff --git a/dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild b/dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild
index 2a51bb0cf79d..3f52bef28aa0 100644
--- a/dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild
+++ b/dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
inherit distutils-r1
@@ -17,14 +17,11 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
LICENSE="BSD-2"
-IUSE="doc test"
+IUSE="test"
RESTRICT="!test? ( test )"
-REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )"
-
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
@@ -34,14 +31,6 @@ DISTUTILS_IN_SOURCE_BUILD=1
S="${WORKDIR}"/${P#python-}
-pkg_setup() {
- use doc && DISTUTILS_ALL_SUBPHASE_IMPLS=( 'python2*' )
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
python_test() {
if python_is_python3; then
2to3 -w --no-diffs -n tests/ sqlparse/
@@ -50,8 +39,3 @@ python_test() {
py.test tests || die "testsuite failed under ${EPYTHON}"
fi
}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- distutils-r1_python_install_all
-}