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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E4962158086 for ; Tue, 21 Dec 2021 20:50:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A88A2BC00E; Tue, 21 Dec 2021 20:50:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E268D2BC00E for ; Tue, 21 Dec 2021 20:50:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3FADB342E7F for ; Tue, 21 Dec 2021 20:50:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9186D132 for ; Tue, 21 Dec 2021 20:50:46 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1640119558.4e2bbfc919cc4e128895c4b5bd07354712710600.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cachetools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cachetools/Manifest dev-python/cachetools/cachetools-5.0.0.ebuild X-VCS-Directories: dev-python/cachetools/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 4e2bbfc919cc4e128895c4b5bd07354712710600 X-VCS-Branch: master Date: Tue, 21 Dec 2021 20:50:46 +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: d2308496-c61e-4dac-a98f-f71602bfe904 X-Archives-Hash: eb6e8b92dc92308772397366f28ed056 commit: 4e2bbfc919cc4e128895c4b5bd07354712710600 Author: Arthur Zamarin gentoo org> AuthorDate: Tue Dec 21 20:45:58 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Tue Dec 21 20:45:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e2bbfc9 dev-python/cachetools: add 5.0.0 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/cachetools/Manifest | 1 + dev-python/cachetools/cachetools-5.0.0.ebuild | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/dev-python/cachetools/Manifest b/dev-python/cachetools/Manifest index 02463d0aadea..8ed1ed7ddc61 100644 --- a/dev-python/cachetools/Manifest +++ b/dev-python/cachetools/Manifest @@ -1 +1,2 @@ DIST cachetools-4.2.4.tar.gz 25487 BLAKE2B 91979f72b8719f4fbc57421ded6edcca38106814997abd2a17c1147af55a1b64e11b347c8ef790cd8cdafbd83b8492d377540b872430d285584aa3d3228f6435 SHA512 29a6bb3a064e5603cd3e3882d8e5a6a6ef95ba3029716692c9a82d7186a0befcfb8ed4a0ee3ecb591fdff93a46836d5b25acca7ba5eab1ba837e86404aea8fcf +DIST cachetools-5.0.0.tar.gz 26119 BLAKE2B 29d3c9d9859c4848d807dcf8d84614b23a125bdabd4188191e7ccb1536da249226ed4b21798b49c2eb764bfea4ba16b557440438a827b1bfd8d4c5b0984695e4 SHA512 3d311969a4fcc180767f4546f384e16d47bbeb5c1d97884006872317514ea2739560346d62d0afed1916def249d92f9ff14e4d964e9521de09132d3a83463a76 diff --git a/dev-python/cachetools/cachetools-5.0.0.ebuild b/dev-python/cachetools/cachetools-5.0.0.ebuild new file mode 100644 index 000000000000..a18634292857 --- /dev/null +++ b/dev-python/cachetools/cachetools-5.0.0.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Extensible memoizing collections and decorators" +HOMEPAGE="https://pypi.org/project/cachetools/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +distutils_enable_tests pytest