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 08B111581C1 for ; Tue, 9 Jul 2024 09:39:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5EEE62BC04F; Tue, 9 Jul 2024 09:39:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3D0D32BC04F for ; Tue, 9 Jul 2024 09:39:27 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74B25335DC3 for ; Tue, 9 Jul 2024 09:39:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1ABACDC4 for ; Tue, 9 Jul 2024 09:39:25 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1720517950.d908f4b7804cecf380ef0498e6a79bba9661af84.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/persist-queue/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/persist-queue/Manifest dev-python/persist-queue/persist-queue-1.0.0.ebuild X-VCS-Directories: dev-python/persist-queue/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: d908f4b7804cecf380ef0498e6a79bba9661af84 X-VCS-Branch: dev Date: Tue, 9 Jul 2024 09:39:25 +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: b4021afe-4a58-4bc1-80c7-139eded0954b X-Archives-Hash: 41cd74c85bd1a45bc7a1665198a1d982 Message-ID: <20240709093925.3ZrwbliqrifUaUseUR-XYDQa0gUZh3ZpelsnFIEDtyo@z> commit: d908f4b7804cecf380ef0498e6a79bba9661af84 Author: David Roman gmail com> AuthorDate: Tue Jul 9 09:39:10 2024 +0000 Commit: David Roman gmail com> CommitDate: Tue Jul 9 09:39:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d908f4b7 dev-python/persist-queue: add 1.0.0 Signed-off-by: David Roman gmail.com> dev-python/persist-queue/Manifest | 1 + .../persist-queue/persist-queue-1.0.0.ebuild | 27 ++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-python/persist-queue/Manifest b/dev-python/persist-queue/Manifest index dd8eb88c2..e5a396bf2 100644 --- a/dev-python/persist-queue/Manifest +++ b/dev-python/persist-queue/Manifest @@ -1 +1,2 @@ DIST persist-queue-0.8.1.tar.gz 29652 BLAKE2B b088a1d1784928e682151d0ccf984439df13b771aea4c5125b213a87fea05fbbc654fd80b787e141083a148b8b4b661b50fbe22f85cc582d0f411297089a88e2 SHA512 a5582deddd06108b4e748ee10fed5f64a328fe361b2db8f74400f7e43fc5800aafee67230e7edf481f926c8e20c73fb5d32109d15504a24caa67da848458ce6c +DIST persist-queue-1.0.0.tar.gz 30262 BLAKE2B 266b731302ea4a805755df89ef62ad79f60d2b65a3b8f8acdb0daf9816e6a8f8a31f896f5757020f61403382612f00cbfee8d9ceea90782409c08bd8999162d9 SHA512 5fba323ca24dfe79688d2c89ac044729d4ef0b63d195d8fcac6da3ca5e6667d930c348626bce3cb808a560f06d0bfcad041be97b22811e7de0868324b3ef7c1b diff --git a/dev-python/persist-queue/persist-queue-1.0.0.ebuild b/dev-python/persist-queue/persist-queue-1.0.0.ebuild new file mode 100644 index 000000000..ed1002997 --- /dev/null +++ b/dev-python/persist-queue/persist-queue-1.0.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A thread-safe disk based persistent queue in Python" +HOMEPAGE="https://github.com/peter-wangxu/persist-queue" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +# It tries to connect to a local MySQL server +RESTRICT="test" + +DEPEND=" + dev-python/dbutils[${PYTHON_USEDEP}] + dev-python/msgpack[${PYTHON_USEDEP}] + dev-python/pymysql[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND}"