From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B4F971580BA for ; Tue, 24 Aug 2021 19:24:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 051F9E08BD; Tue, 24 Aug 2021 19:24:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DFCB9E08BD for ; Tue, 24 Aug 2021 19:24:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F175133D3CF for ; Tue, 24 Aug 2021 19:24:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D10D87B for ; Tue, 24 Aug 2021 19:24:42 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1629692923.7f36020745ecb3d4596f9489cbf7554c0a34b084.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-text/tldr/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/tldr/Manifest app-text/tldr/metadata.xml app-text/tldr/tldr-2.0.0.ebuild X-VCS-Directories: app-text/tldr/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 7f36020745ecb3d4596f9489cbf7554c0a34b084 X-VCS-Branch: master Date: Tue, 24 Aug 2021 19:24:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 15ced20a-cff9-4675-bbb8-660c7549ff0e X-Archives-Hash: 930500947f260d8187f78ff06f7231b8 commit: 7f36020745ecb3d4596f9489cbf7554c0a34b084 Author: James Kalyan protonmail com> AuthorDate: Mon Aug 23 04:14:42 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Mon Aug 23 04:28:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7f360207 app-text/tldr: new pack Though the project name is tldr-python-client, I named it tldr after its name in the PyPI repo. AFAIK there is no other tldr client in ::gentoo/::guru and it's trivial to rename if/when a conflicting package name enters the tree. Signed-off-by: James Kalyan protonmail.com> app-text/tldr/Manifest | 1 + app-text/tldr/metadata.xml | 12 ++++++++++++ app-text/tldr/tldr-2.0.0.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/app-text/tldr/Manifest b/app-text/tldr/Manifest new file mode 100644 index 000000000..42af48583 --- /dev/null +++ b/app-text/tldr/Manifest @@ -0,0 +1 @@ +DIST tldr-2.0.0.tar.gz 8843 BLAKE2B c87704db6f699e883b0d5c075df84ac32ca7ff4133957c111013a537ceab201625d19f2278d73fd931f4052eac8d41b0273bb91e1622208d992faf4a42d640fe SHA512 0872fa1c0d98273ffbaea751940f1591e3297cc72706c174d953fbdce187d41296cd2a954321d6c3fd879566cefffb4707567c8d132fbe6ca21efd1ca3111530 diff --git a/app-text/tldr/metadata.xml b/app-text/tldr/metadata.xml new file mode 100644 index 000000000..4bb5d2da5 --- /dev/null +++ b/app-text/tldr/metadata.xml @@ -0,0 +1,12 @@ + + + + + tldr-pages/tldr-python-client + https://github.com/tldr-pages/tldr-python-client/issues + + + contrib_x@protonmail.com + James Kalyan + + diff --git a/app-text/tldr/tldr-2.0.0.ebuild b/app-text/tldr/tldr-2.0.0.ebuild new file mode 100644 index 000000000..8c1311772 --- /dev/null +++ b/app-text/tldr/tldr-2.0.0.ebuild @@ -0,0 +1,22 @@ +# 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}"