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 E051A138350 for ; Tue, 11 Feb 2020 11:42:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E4E6E08AD; Tue, 11 Feb 2020 11:42:50 +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 4F994E08AE for ; Tue, 11 Feb 2020 11:42:50 +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 C536734EB59 for ; Tue, 11 Feb 2020 11:42:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDE5413B for ; Tue, 11 Feb 2020 11:42:45 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1581421294.1efdbb942745a0883a4f8f51d93c8f794fa00fcb.alexxy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylru/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pylru/Manifest dev-python/pylru/metadata.xml dev-python/pylru/pylru-1.2.0.ebuild X-VCS-Directories: dev-python/pylru/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 1efdbb942745a0883a4f8f51d93c8f794fa00fcb X-VCS-Branch: master Date: Tue, 11 Feb 2020 11:42:45 +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: cab37385-708c-48eb-bf08-0d6bda79d579 X-Archives-Hash: 2a09055a09f0dc74a07dcfc49f6f441d commit: 1efdbb942745a0883a4f8f51d93c8f794fa00fcb Author: Alexey Shvetsov gentoo org> AuthorDate: Tue Feb 11 09:47:26 2020 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Tue Feb 11 11:41:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1efdbb94 dev-python/pylru: initial import Package-Manager: Portage-2.3.86, Repoman-2.3.20 Signed-off-by: Alexey Shvetsov gentoo.org> dev-python/pylru/Manifest | 1 + dev-python/pylru/metadata.xml | 16 ++++++++++++++++ dev-python/pylru/pylru-1.2.0.ebuild | 18 ++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/dev-python/pylru/Manifest b/dev-python/pylru/Manifest new file mode 100644 index 00000000000..80df80b8008 --- /dev/null +++ b/dev-python/pylru/Manifest @@ -0,0 +1 @@ +DIST pylru-1.2.0.tar.gz 18533 BLAKE2B 6cebc3ecc91050bdf3c8f2721a7ee1768fb48692567eb2e8603e0d28fbfd01634087bf8fda0c0c3f8c9af377195623d2689f9eb59a3ad781ccfc5f58b362a734 SHA512 d4b247cb3740c2f94f4f41bd9affbb87db4e2ec8ff566978d130d08fee9df6109c13b64f22536903bf8be3ea60d4b105dd969d1156a279115b6bfedb817cdbf5 diff --git a/dev-python/pylru/metadata.xml b/dev-python/pylru/metadata.xml new file mode 100644 index 00000000000..c76e89ae9f6 --- /dev/null +++ b/dev-python/pylru/metadata.xml @@ -0,0 +1,16 @@ + + + + + alexxy@gentoo.org + Alexey Shvetsov + + + python@gentoo.org + Python + + + pylru + jlhutch/pylru + + diff --git a/dev-python/pylru/pylru-1.2.0.ebuild b/dev-python/pylru/pylru-1.2.0.ebuild new file mode 100644 index 00000000000..bcc8466604a --- /dev/null +++ b/dev-python/pylru/pylru-1.2.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{5,6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="A least recently used (LRU) cache for Python" +HOMEPAGE="https://github.com/jlhutch/pylru" +LICENSE="GPL-2" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64" + +BDEPEND="" +RDEPEND=""