From b048ee0968017e71a6a84581f32482904c12f44f Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 31 Aug 2021 10:49:58 +0200 Subject: app-text/tldr: fix all the ebuild Signed-off-by: Alessandro Barbieri --- app-text/tldr/tldr-2.0.0-r1.ebuild | 27 +++++++++++++++++++++++++++ app-text/tldr/tldr-2.0.0.ebuild | 22 ---------------------- 2 files changed, 27 insertions(+), 22 deletions(-) create mode 100644 app-text/tldr/tldr-2.0.0-r1.ebuild delete mode 100644 app-text/tldr/tldr-2.0.0.ebuild diff --git a/app-text/tldr/tldr-2.0.0-r1.ebuild b/app-text/tldr/tldr-2.0.0-r1.ebuild new file mode 100644 index 000000000..11c11ff38 --- /dev/null +++ b/app-text/tldr/tldr-2.0.0-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python command line client for tldr pages" +HOMEPAGE="https://github.com/tldr-pages/tldr-python-client" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + ${PYTHON_DEPS} + dev-python/argcomplete[${PYTHON_USEDEP}] + dev-python/colorama[${PYTHON_USEDEP}] + dev-python/termcolor[${PYTHON_USEDEP}] +" +RDEPEND=" + ${DEPEND} + !app-misc/tealdeer +" diff --git a/app-text/tldr/tldr-2.0.0.ebuild b/app-text/tldr/tldr-2.0.0.ebuild deleted file mode 100644 index 8c1311772..000000000 --- a/app-text/tldr/tldr-2.0.0.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{6,7,8,9} ) -inherit distutils-r1 - -DESCRIPTION="Python command line client for tldr pages" -HOMEPAGE="https://github.com/tldr-pages/tldr-python-client/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=" - dev-python/termcolor - dev-python/colorama - dev-python/argcomplete -" -DEPEND="${RDEPEND}" -- cgit v1.2.3-65-gdbad