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 05A391382C5 for ; Mon, 22 Feb 2021 07:55:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F4AAE08D3; Mon, 22 Feb 2021 07:55:10 +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 303F2E08D3 for ; Mon, 22 Feb 2021 07:55:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 8C1AB335D9B for ; Mon, 22 Feb 2021 07:55:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD8B5C3 for ; Mon, 22 Feb 2021 07:55:06 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1613980504.d7850a8c5e5797a78726d4d8bfda8d69bf17f36a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tabulate/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tabulate/Manifest dev-python/tabulate/tabulate-0.8.9.ebuild X-VCS-Directories: dev-python/tabulate/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d7850a8c5e5797a78726d4d8bfda8d69bf17f36a X-VCS-Branch: master Date: Mon, 22 Feb 2021 07:55:06 +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: bb2de3fe-4d5c-4836-ba77-b3c601053f89 X-Archives-Hash: a52b0b48b49efc343a2fd4168596e40a commit: d7850a8c5e5797a78726d4d8bfda8d69bf17f36a Author: Michał Górny gentoo org> AuthorDate: Mon Feb 22 07:52:37 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Feb 22 07:55:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7850a8c dev-python/tabulate: Bump to 0.8.9 Signed-off-by: Michał Górny gentoo.org> dev-python/tabulate/Manifest | 1 + dev-python/tabulate/tabulate-0.8.9.ebuild | 34 +++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/dev-python/tabulate/Manifest b/dev-python/tabulate/Manifest index d143606a83e..3b610a0da23 100644 --- a/dev-python/tabulate/Manifest +++ b/dev-python/tabulate/Manifest @@ -1 +1,2 @@ DIST tabulate-0.8.7.tar.gz 40800 BLAKE2B 4e15ef79d152ed6a01fcc88496aed81462e2ac5c5aea1a9977eca955d3c6d743019f8c56a48ef268217cdd7c2780505c4837020ff8cb1bda442304d82e560a5c SHA512 77eb619d3115bbd574ff72b82d55e09f1e2bfe29da0b937b72930b3e65423135722bdc54bed818adf2e25cb49a58f8f85d0ca3b3ed0fcfcfda34a25e54781d0c +DIST tabulate-0.8.9.tar.gz 42562 BLAKE2B 6e6e1017379d07d5ede0cdfb6a8e3142f60656fd5d5b409c1259239e62637824c3bab0bb0f6b03f8733a24e9e3ac074a80a56d44939a8c6eeab8e9a830ae8277 SHA512 68a4d194068f692b57b2cca0fa42a58ba571b46adaef7f8b1a8cea7e34c78ea0a1c523286c3f1df631897cc60ad39ef6b11bfee61d46c04e2de1fb9ec0b497dd diff --git a/dev-python/tabulate/tabulate-0.8.9.ebuild b/dev-python/tabulate/tabulate-0.8.9.ebuild new file mode 100644 index 00000000000..c71572c4074 --- /dev/null +++ b/dev-python/tabulate/tabulate-0.8.9.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{7..9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Pretty-print tabular data" +HOMEPAGE="https://pypi.org/project/tabulate/ https://github.com/astanin/python-tabulate" +SRC_URI="https://github.com/astanin/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/python-${P}" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-python/wcwidth[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + $(python_gen_impl_dep 'sqlite') + dev-python/colorclass[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/numpy[${PYTHON_USEDEP}]' 'python3*') + ) +" + +PATCHES=( + "${FILESDIR}/tabulate-0.8.6-avoid-pandas-dep.patch" +) + +distutils_enable_tests pytest