diff options
author | Tomáš Mózes <hydrapolic@gmail.com> | 2021-12-24 06:35:22 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-12-24 06:47:03 +0000 |
commit | c0e11b2971d847e7f3b3f7843d90eda060770746 (patch) | |
tree | 1924472698572173a5ae5db89c72fe20f6a24eb3 /net-analyzer | |
parent | net-analyzer/linkchecker: bump to 10.1.0 (diff) | |
download | gentoo-c0e11b2971d847e7f3b3f7843d90eda060770746.tar.gz gentoo-c0e11b2971d847e7f3b3f7843d90eda060770746.tar.bz2 gentoo-c0e11b2971d847e7f3b3f7843d90eda060770746.zip |
net-analyzer/linkchecker: sync live ebuild
Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/linkchecker/linkchecker-9999.ebuild | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/net-analyzer/linkchecker/linkchecker-9999.ebuild b/net-analyzer/linkchecker/linkchecker-9999.ebuild index 1d23dd82d824..9bcf1112b5ea 100644 --- a/net-analyzer/linkchecker/linkchecker-9999.ebuild +++ b/net-analyzer/linkchecker/linkchecker-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{7..10} ) PYTHON_REQ_USE="sqlite?" inherit bash-completion-r1 distutils-r1 optfeature @@ -22,7 +22,7 @@ fi LICENSE="GPL-2" SLOT="0" IUSE="sqlite" -# requires py2 only libs +# requires libs not present in portage yet RESTRICT="test" RDEPEND=" @@ -30,23 +30,24 @@ RDEPEND=" dev-python/dnspython[${PYTHON_USEDEP}] dev-python/pyxdg[${PYTHON_USEDEP}] dev-python/requests[${PYTHON_USEDEP}] + dev-python/setuptools_scm[${PYTHON_USEDEP}] " -python_prepare_all() { - local PATCHES=( - "${FILESDIR}/${PN}-9.3-bash-completion.patch" - ) +PATCHES=( + "${FILESDIR}/${PN}-9.3-bash-completion.patch" +) + +DOCS=( + doc/changelog.txt + doc/upgrading.txt +) +python_prepare_all() { distutils-r1_python_prepare_all } python_install_all() { - local DOCS=( - doc/changelog.txt - doc/upgrading.txt - ) distutils-r1_python_install_all - newbashcomp config/linkchecker-completion ${PN} } |