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 E7E51158086 for ; Mon, 15 Nov 2021 19:59:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC22EE0916; Mon, 15 Nov 2021 19:59:17 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8970CE0916 for ; Mon, 15 Nov 2021 19:59:17 +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 929B7342F2F for ; Mon, 15 Nov 2021 19:59:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 103971C6 for ; Mon, 15 Nov 2021 19:59:15 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1636991222.68c9ad6407ebedcf6e507cf5f185017cdd27cf9d.epsilon-0@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/queuelib/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/queuelib/Manifest dev-python/queuelib/metadata.xml dev-python/queuelib/queuelib-1.6.2.ebuild X-VCS-Directories: dev-python/queuelib/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 68c9ad6407ebedcf6e507cf5f185017cdd27cf9d X-VCS-Branch: dev Date: Mon, 15 Nov 2021 19:59:15 +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: 6045278b-da6c-4c01-ae61-854625815cea X-Archives-Hash: 27cd9ece3caac7e0364618baa4ace217 commit: 68c9ad6407ebedcf6e507cf5f185017cdd27cf9d Author: Aisha Tammy aisha cc> AuthorDate: Mon Nov 15 15:47:02 2021 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Mon Nov 15 15:47:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68c9ad64 dev-python/queuelib: collection of persistent queues for scrapy dependency of dev-python/scrapy Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Aisha Tammy aisha.cc> dev-python/queuelib/Manifest | 1 + dev-python/queuelib/metadata.xml | 8 ++++++++ dev-python/queuelib/queuelib-1.6.2.ebuild | 20 ++++++++++++++++++++ 3 files changed, 29 insertions(+) diff --git a/dev-python/queuelib/Manifest b/dev-python/queuelib/Manifest new file mode 100644 index 000000000..4f843198e --- /dev/null +++ b/dev-python/queuelib/Manifest @@ -0,0 +1 @@ +DIST queuelib-1.6.2.tar.gz 11732 BLAKE2B 6a007c29a13e21a137eb4042d8c588298a68432c05423e5ce6382bffb15692e7f85bab6b8af720a60193848256c04da897665291aff81f66f1342a49946f8abb SHA512 f474fd5cc24b72e4d6b0ddcb64ef775c06a213abb7a5b11b101671e27db46655f8debd9a3f438a1eaad0c0bb0d223d3151bde9132bdf3b6e9b19bff28b43a091 diff --git a/dev-python/queuelib/metadata.xml b/dev-python/queuelib/metadata.xml new file mode 100644 index 000000000..65ac1f205 --- /dev/null +++ b/dev-python/queuelib/metadata.xml @@ -0,0 +1,8 @@ + + + + + gentoo@aisha.cc + Aisha Tammy + + diff --git a/dev-python/queuelib/queuelib-1.6.2.ebuild b/dev-python/queuelib/queuelib-1.6.2.ebuild new file mode 100644 index 000000000..10f08b130 --- /dev/null +++ b/dev-python/queuelib/queuelib-1.6.2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_9 ) +inherit distutils-r1 + +DESCRIPTION="Collection of persistent and non-persistent queues for Python" +HOMEPAGE="https://scrapy.org/" +SRC_URI="https://github.com/scrapy/queuelib/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT=0 +KEYWORDS="~amd64" + +RDEPEND="${PYTHON_DEPS}" +DEPEND="${RDEPEND}" + +distutils_enable_tests pytest