Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/billiard/
Date: Mon, 27 Sep 2021 07:09:03
Message-Id: 1632726537.d3ca39e0177142b38406094af6ca16c9ef93ce5c.Alessandro-Barbieri@gentoo
1 commit: d3ca39e0177142b38406094af6ca16c9ef93ce5c
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Mon Sep 27 06:42:52 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Mon Sep 27 07:08:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d3ca39e0
7
8 dev-python/billiard: drop 3.6.3.0
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-python/billiard/Manifest | 1 -
13 dev-python/billiard/billiard-3.6.3.0.ebuild | 47 -----------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-python/billiard/Manifest b/dev-python/billiard/Manifest
17 index cd3c1909a..f091a3483 100644
18 --- a/dev-python/billiard/Manifest
19 +++ b/dev-python/billiard/Manifest
20 @@ -1,2 +1 @@
21 -DIST billiard-3.6.3.0.tar.gz 153944 BLAKE2B 72a63f859a3798481d068e0e1c7f411e5c4b5de43f95eb6e56345738c9247e8b6f7a0cca88e85cfc74891e83a2c2b20f067ce16471f5c83c13e23699bed267e7 SHA512 3977137ec5ca558294df2e7653d2d2bc100d7be0e0aa24fd0395b244e946739c3de49b124064e9887b938c0237db6212ae65d8474816f2849c550df9a23e7a06
22 DIST billiard-3.6.4.0.tar.gz 154182 BLAKE2B 3c42c2c72e2a7e2ac7a1e84685ca592f48edc6ca025eac2ab52c3162bee591fbd06db5d9800ef3a9df00265dc1f373a4130963f428b4a5c6db2d90f701c8ebb7 SHA512 8d6013c170ce54e64fdb5d7da85569f31c928d34cc4242318a124e763092be4680e8d7c3007576bac3337b0c1d86a2ead768b1563e5b673da5d73ab600048ba7
23
24 diff --git a/dev-python/billiard/billiard-3.6.3.0.ebuild b/dev-python/billiard/billiard-3.6.3.0.ebuild
25 deleted file mode 100644
26 index 8bf53bf6b..000000000
27 --- a/dev-python/billiard/billiard-3.6.3.0.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="7"
34 -
35 -PYTHON_COMPAT=( python3_{7,8} pypy3 )
36 -
37 -inherit distutils-r1 flag-o-matic
38 -
39 -DESCRIPTION="Python multiprocessing fork"
40 -HOMEPAGE="
41 - https://pypi.org/project/billiard
42 - https://github.com/celery/billiard
43 -"
44 -SRC_URI="https://github.com/celery/billiard/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86"
49 -IUSE="doc test"
50 -RESTRICT="!test? ( test )"
51 -RESTRICT="test"
52 -
53 -RDEPEND=""
54 -DEPEND="
55 - test? (
56 - >=dev-python/case-1.3.1[${PYTHON_USEDEP}]
57 - >=dev-python/pytest-3.0[${PYTHON_USEDEP}]
58 - <dev-python/pytest-6[${PYTHON_USEDEP}]
59 - dev-python/psutil[${PYTHON_USEDEP}]
60 - )
61 -"
62 -# The usual req'd for tests
63 -DISTUTILS_IN_SOURCE_BUILD=1
64 -
65 -python_compile_all() {
66 - use doc && esetup.py build_sphinx --builder="html" --source-dir=Doc/
67 -}
68 -
69 -python_test() {
70 - esetup.py test
71 -}
72 -
73 -python_install_all() {
74 - use doc && local HTML_DOCS=( build/sphinx/html/. )
75 - distutils-r1_python_install_all
76 -}