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 A7A1E158086 for ; Thu, 7 Oct 2021 07:53:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08376E0896; Thu, 7 Oct 2021 07:53:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DFBCCE0896 for ; Thu, 7 Oct 2021 07:53:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B561E3433E0 for ; Thu, 7 Oct 2021 07:53:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31AC889 for ; Thu, 7 Oct 2021 07:53:18 +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: <1633593126.d69d469d5df5ed191621806c8eb0ebebce6854a8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/humanize/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/humanize/Manifest dev-python/humanize/humanize-3.12.0.ebuild X-VCS-Directories: dev-python/humanize/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d69d469d5df5ed191621806c8eb0ebebce6854a8 X-VCS-Branch: master Date: Thu, 7 Oct 2021 07:53:18 +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: 5c4f1709-2f5f-42c1-9c70-fafee1939565 X-Archives-Hash: 13604845c7e3060a3a8760796d5a6e74 commit: d69d469d5df5ed191621806c8eb0ebebce6854a8 Author: Michał Górny gentoo org> AuthorDate: Thu Oct 7 07:51:55 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Oct 7 07:52:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d69d469d dev-python/humanize: Bump to 3.12.0 Signed-off-by: Michał Górny gentoo.org> dev-python/humanize/Manifest | 1 + dev-python/humanize/humanize-3.12.0.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-python/humanize/Manifest b/dev-python/humanize/Manifest index 8a79a986175..090530e513e 100644 --- a/dev-python/humanize/Manifest +++ b/dev-python/humanize/Manifest @@ -1 +1,2 @@ DIST humanize-3.11.0.tar.gz 67034 BLAKE2B 9e10582139578e8e041d1ce60c9c5d7e071c4c093a64cf620df6ff38f0567e8b2f3134f10722cb724d13343373db0fa2a1ae5bd68700ff85fb58ee318feb0fd0 SHA512 7aa3c513c6702de0e099865f787858de4c9c65cfe95af61fd0204ff6df64e7359474b4067b4672546936beae6c8c512dd9c75f555d7075c94819e81143c21ce9 +DIST humanize-3.12.0.tar.gz 67112 BLAKE2B 248458d337c8411261b1078b3ebc040c133bd6310d89ac6809e36e55b46c644ab1308255015e9530c0b1d5d5a0c6ba3b02fbdcb8a48f48c02802ec8314c68210 SHA512 339cd392c9fd022714dfa54920b24522eee37ec24711fea8016f6a95728a500eaf9cc4dde76e542886f6c5b570a77beeb6dbc5047a475496f99199d793ab2e44 diff --git a/dev-python/humanize/humanize-3.12.0.ebuild b/dev-python/humanize/humanize-3.12.0.ebuild new file mode 100644 index 00000000000..927e0251686 --- /dev/null +++ b/dev-python/humanize/humanize-3.12.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( pypy3 python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Common humanization utilities" +HOMEPAGE="https://github.com/jmoiron/humanize/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + $(python_gen_cond_dep ' + dev-python/importlib_metadata[${PYTHON_USEDEP}] + ' pypy3) +" +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( dev-python/freezegun[${PYTHON_USEDEP}] ) +" + +distutils_enable_tests --install pytest