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 C51C8158090 for ; Sun, 8 May 2022 08:47:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E9EEE08A0; Sun, 8 May 2022 08:47:37 +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 45CD7E08A0 for ; Sun, 8 May 2022 08:47:37 +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 D590B341779 for ; Sun, 8 May 2022 08:47:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B405466 for ; Sun, 8 May 2022 08:47:33 +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: <1651999636.255dc2a41e01e65c8e10dc31b1a7c775d686345a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-rq/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/django-rq/django-rq-2.4.1-r1.ebuild X-VCS-Directories: dev-python/django-rq/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 255dc2a41e01e65c8e10dc31b1a7c775d686345a X-VCS-Branch: master Date: Sun, 8 May 2022 08:47:33 +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: 3d0506e4-0c81-49b7-8c66-83252fae4938 X-Archives-Hash: e21c644f2a3d2e2820dba36cb8f5ebda commit: 255dc2a41e01e65c8e10dc31b1a7c775d686345a Author: Michał Górny gentoo org> AuthorDate: Sun May 8 08:42:51 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 8 08:47:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=255dc2a4 dev-python/django-rq: Remove py3.8 due to rq losing it Signed-off-by: Michał Górny gentoo.org> dev-python/django-rq/django-rq-2.4.1-r1.ebuild | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev-python/django-rq/django-rq-2.4.1-r1.ebuild b/dev-python/django-rq/django-rq-2.4.1-r1.ebuild new file mode 100644 index 000000000000..23ef26f48a02 --- /dev/null +++ b/dev-python/django-rq/django-rq-2.4.1-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_9 ) +inherit distutils-r1 + +DESCRIPTION="An app that provides django integration for RQ (Redis Queue)" +HOMEPAGE="https://github.com/rq/django-rq/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/django-2.0[${PYTHON_USEDEP}] + >=dev-python/rq-1.4.0[${PYTHON_USEDEP}] + >=dev-python/redis-py-3.0.0[${PYTHON_USEDEP}] +"