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 9257E138359 for ; Thu, 23 Jul 2020 16:54:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96A9CE086C; Thu, 23 Jul 2020 16:53:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7F891E086C for ; Thu, 23 Jul 2020 16:53:47 +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 9704834F1DD for ; Thu, 23 Jul 2020 16:53:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4097E2EB for ; Thu, 23 Jul 2020 16:53:44 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1595523219.4f552d6bb6610257d078cd4ac0bcf0bbcc0c8faf.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rq/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rq/Manifest dev-python/rq/rq-1.4.3.ebuild X-VCS-Directories: dev-python/rq/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4f552d6bb6610257d078cd4ac0bcf0bbcc0c8faf X-VCS-Branch: master Date: Thu, 23 Jul 2020 16:53:44 +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: 401ca964-c3af-4ad4-8a07-214648cb5fe6 X-Archives-Hash: 8933370a3692bd7b0ccdeeec3432776a commit: 4f552d6bb6610257d078cd4ac0bcf0bbcc0c8faf Author: Sam James gentoo org> AuthorDate: Thu Jul 23 16:53:39 2020 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jul 23 16:53:39 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f552d6b dev-python/rq: bump to 1.4.3 Changes to ebuild: * Add Python 3.8 * Fix setuptools dependency Not doing tests yet, because they require running Redis, which is tricky in sandbox. Package-Manager: Portage-3.0.0, Repoman-2.3.23 Signed-off-by: Sam James gentoo.org> dev-python/rq/Manifest | 1 + dev-python/rq/rq-1.4.3.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-python/rq/Manifest b/dev-python/rq/Manifest index b9c1385dab9..f6fb3743c42 100644 --- a/dev-python/rq/Manifest +++ b/dev-python/rq/Manifest @@ -1 +1,2 @@ DIST rq-1.3.0.tar.gz 50906 BLAKE2B 073ef65c90b2f4cab7505148133cf9e8652f6915bcb34d96b61fca2eb3096d5eb8fb506dfa3d22f402d4ef7ff8e5456faa3bdf7ad6586cfa563b7b2c2da8cb95 SHA512 3c7c3b63a7068ada14c39fa21631fa35d336955c8f5b7b5fbf3d75a99b046abacc2ff28a3a58fc03d587be8bf8e22eea33d31142d3be880afc49287a004ff782 +DIST rq-1.4.3.tar.gz 52258 BLAKE2B fd2bb19239ac3011005b34cf041e7736794a27b2097a7ff1808a716d45ad224ad349e316f172308175174f59ff0d3d2bbe0c6778bd66cdad6755da2740898c0d SHA512 177c748148a109efaeddf14b3847e7980882f385ba0e346ccfa72983d584f1c739417383c6eec83370a66f1ceeb5f955de9d5ccf87e4136074aa52e2f9144bd3 diff --git a/dev-python/rq/rq-1.4.3.ebuild b/dev-python/rq/rq-1.4.3.ebuild new file mode 100644 index 00000000000..64bbcfda25c --- /dev/null +++ b/dev-python/rq/rq-1.4.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 + +DESCRIPTION="simple, lightweight library for creating and processing background jobs" +HOMEPAGE="https://python-rq.org https://github.com/rq/rq" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +DEPEND=" + >=dev-python/click-5.0[${PYTHON_USEDEP}] + >=dev-python/redis-py-3.0.0[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND}"