commit: bf26e98c587bd8b6d0af7421e0503b91af10236c Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com> AuthorDate: Sat Mar 19 01:52:32 2022 +0000 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de> CommitDate: Sat Mar 19 01:52:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bf26e98c
dev-python/jsonpath-rw: fix S Closes: https://bugs.gentoo.org/819009 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com> dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild index f1da5795c..04bba2279 100644 --- a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild +++ b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +MYPN="python-${PN}" PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 @@ -10,9 +11,10 @@ inherit distutils-r1 DESCRIPTION="A robust and significantly extended implementation of JSONPath for Python" HOMEPAGE=" https://github.com/kennknowles/python-jsonpath-rw - https://pypi.org/project/jsonpath-rw + https://pypi.org/project/jsonpath-rw/ " -SRC_URI="https://github.com/kennknowles/python-jsonpath-rw/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/kennknowles/${MYPN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MYPN}-${PV}" LICENSE="Apache-2.0" SLOT="0" @@ -21,12 +23,11 @@ IUSE="test" RDEPEND=" dev-python/decorator[${PYTHON_USEDEP}] - dev-python/ply[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] + dev-python/ply[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] " -DEPEND=" - ${REDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] +DEPEND="${REDEPEND}" +BDEPEND=" test? ( dev-python/nose[${PYTHON_USEDEP}] dev-python/pytest[${PYTHON_USEDEP}]
