commit: 1e89e1bdbc4ad2f58bddacf7fb90f93945582f48 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in> AuthorDate: Sun Aug 8 15:20:07 2021 +0000 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in> CommitDate: Sun Aug 8 15:53:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1e89e1bd
net-misc/tuir: bump eapi, add tests Closes: https://bugs.gentoo.org/800923 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in> net-misc/tuir/tuir-1.29.0.ebuild | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/net-misc/tuir/tuir-1.29.0.ebuild b/net-misc/tuir/tuir-1.29.0.ebuild index cd2a9be4f..ada505887 100644 --- a/net-misc/tuir/tuir-1.29.0.ebuild +++ b/net-misc/tuir/tuir-1.29.0.ebuild @@ -1,28 +1,28 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python{3_7,3_8,3_9} ) +PYTHON_COMPAT=( python3_{8,9} ) PYTHON_REQ_USE="ncurses" inherit distutils-r1 DESCRIPTION="A text-based interface (TUI) to view and interact with Reddit from your terminal" HOMEPAGE="https://gitlab.com/ajak/tuir" -SRC_URI="https://gitlab.com/ajak/tuir/-/archive/v${PV}/tuir-v${PV}.tar.gz" +SRC_URI="https://gitlab.com/ajak/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz" +S="${WORKDIR}/${PN}-v${PV}" LICENSE="MIT" - SLOT="0" - -S="${WORKDIR}/${PN}-v${PV}" - -KEYWORDS="~amd64" - -DEPEND="dev-python/beautifulsoup[${PYTHON_USEDEP}] -dev-python/decorator[${PYTHON_USEDEP}] -dev-python/requests[${PYTHON_USEDEP}] -dev-python/six[${PYTHON_USEDEP}] -dev-python/kitchen[${PYTHON_USEDEP}]" - -RDEPEND="${DEPEND}" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/beautifulsoup[${PYTHON_USEDEP}] + dev-python/decorator[${PYTHON_USEDEP}] + dev-python/kitchen[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +BDEPEND="test? ( dev-python/vcrpy )" + +distutils_enable_tests pytest
