Gentoo Archives: gentoo-commits

From: Theo Anderson <telans@××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/celery/
Date: Thu, 17 Jun 2021 05:55:50
Message-Id: 1623799705.7ec436045b801145a7f26fffb702f0c5007e3dfc.telans@gentoo
1 commit: 7ec436045b801145a7f26fffb702f0c5007e3dfc
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Tue Jun 15 17:27:59 2021 +0000
4 Commit: Theo Anderson <telans <AT> posteo <DOT> de>
5 CommitDate: Tue Jun 15 23:28:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7ec43604
7
8 dev-python/celery: add 5.1.0, drop 5.1.0_beta2
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-python/celery/Manifest | 2 +-
13 .../{celery-5.1.0_beta2.ebuild => celery-5.1.0.ebuild} | 13 +++++++------
14 2 files changed, 8 insertions(+), 7 deletions(-)
15
16 diff --git a/dev-python/celery/Manifest b/dev-python/celery/Manifest
17 index 7443b7b5d..601e883ba 100644
18 --- a/dev-python/celery/Manifest
19 +++ b/dev-python/celery/Manifest
20 @@ -1 +1 @@
21 -DIST celery-5.1.0_beta2.tar.gz 1459863 BLAKE2B 1b5a49728fa97e00112cc31731998ac06b2bb77ed621321b119d44d8cf0e4ec347d92b0857f316bda48f61a0ce0bd5c9d55392a8e3053369577d503af7aafc35 SHA512 d430a33cbc34950d68cf228707e8e868834f80a7f6c40491d8a67b056af5395c03e27c2b2ba1e2b9a390598d7d8bb3609bd88b388dfb18a34d0441ed54245192
22 +DIST celery-5.1.0.tar.gz 1468143 BLAKE2B e066941c6d214bb6bb9afec8100a2fa5e5c96da0f46cb0821d0cbf8aa6607e22320a1f46d48b7aae0f91f4d6c1d9d2143f50b0927a186f8aebc13d3fcc48b6af SHA512 78368767d1acb799d96036a4f0dab03b085c9a393f52f184080be1100a3c55c97b492d37be0944eca2cd55cfa21128c80e19537233702b1ee136027e47f889f8
23
24 diff --git a/dev-python/celery/celery-5.1.0_beta2.ebuild b/dev-python/celery/celery-5.1.0.ebuild
25 similarity index 95%
26 rename from dev-python/celery/celery-5.1.0_beta2.ebuild
27 rename to dev-python/celery/celery-5.1.0.ebuild
28 index 3f2f4e684..3f2ff0b55 100644
29 --- a/dev-python/celery/celery-5.1.0_beta2.ebuild
30 +++ b/dev-python/celery/celery-5.1.0.ebuild
31 @@ -1,13 +1,14 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 +# Copyright 1999-2021 Gentoo Authors
34 # Distributed under the terms of the GNU General Public License v2
35
36 EAPI="7"
37 +
38 DISTUTILS_USE_SETUPTOOLS=rdepend
39 -PYTHON_COMPAT=( python3_{7,8} )
40 +MYPV="${PV/_beta/b}"
41 +PYTHON_COMPAT=( python3_8 )
42
43 inherit bash-completion-r1 distutils-r1 eutils optfeature
44
45 -MYPV="${PV/_beta/b}"
46 DESCRIPTION="Asynchronous task queue/job queue based on distributed message passing"
47 HOMEPAGE="
48 http://celeryproject.org
49 @@ -15,15 +16,14 @@ HOMEPAGE="
50 https://github.com/celery/celery
51 "
52 SRC_URI="https://github.com/celery/celery/archive/v${MYPV}.tar.gz -> ${P}.tar.gz"
53 -
54 +S="${WORKDIR}/${PN}-${MYPV}"
55 LICENSE="BSD"
56 SLOT="0"
57 KEYWORDS="~amd64"
58 # There are a number of other optional 'extras'
59 IUSE="examples"
60 #RESTRICT="!test? ( test )"
61 -RESTRICT="test" #'celery' not found in `markers` configuration option
62 -S="${WORKDIR}/${PN}-${MYPV}"
63 +RESTRICT="test" #amqp wants vine.five
64
65 RDEPEND="
66 >=dev-python/billiard-3.6.4.0[${PYTHON_USEDEP}]
67 @@ -61,6 +61,7 @@ DEPEND="
68 dev-python/sqlalchemy[${PYTHON_USEDEP}]
69 )
70 "
71 +
72 # testsuite needs it own source
73 DISTUTILS_IN_SOURCE_BUILD=1
74 distutils_enable_tests pytest