Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/txaio/
Date: Mon, 15 Oct 2018 23:37:08
Message-Id: 1539646483.312fa84059550a18996c8d5e2fb6ad13d8cf8da7.vdupras@gentoo
1 commit: 312fa84059550a18996c8d5e2fb6ad13d8cf8da7
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 15 23:28:35 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 15 23:34:43 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312fa840
7
8 dev-python/txaio: remove old
9
10 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-python/txaio/Manifest | 1 -
14 dev-python/txaio/txaio-2.8.2.ebuild | 65 -------------------------------------
15 2 files changed, 66 deletions(-)
16
17 diff --git a/dev-python/txaio/Manifest b/dev-python/txaio/Manifest
18 index 4c6304a78b5..33d47f381dc 100644
19 --- a/dev-python/txaio/Manifest
20 +++ b/dev-python/txaio/Manifest
21 @@ -1,3 +1,2 @@
22 DIST txaio-2.7.1.tar.gz 43591 BLAKE2B 4efdcfb8ce3e8860af1efe56ae4c23efc9887a8f3a53c322444a95651f4dbb502443bdcc1d0da0ba5db8f9a832ad90b3c6dea06ca688d7120857854d3eb7c17e SHA512 d77a8b5e8fc21be0bef43f2a6795229456a351abc1a5eb6d2b7de0da0a58e67a228cb06d1a7962efcc760099ef5df94e9421875ea5628985260911efc7deb85e
23 -DIST txaio-2.8.2.tar.gz 43670 BLAKE2B e5238e59964b2ddb3ab400b2e2819c25a9ceed2da7db4c8a6e450f45314818b5c5dbb9f6e9bacbda738cb382a5b63ddc6650278b35734e48aa0e59c5c581b8fa SHA512 8b60a64ebfa1208995bc42e6ccbc87c4c3cd4687cb431435c6450cff31e5d0dba468c3f3494902e666cb2ee6dea84ded458fd8f1b3b9c25421b440dcd3fc5884
24 DIST txaio-2.9.0.tar.gz 44195 BLAKE2B 6c62fc6f17ee860aead90cf5f5d02c7c0d9709adf7bcecbb6a7c1723abf0d8672dbc0b869dfe4683bc26c9608e94c41364add18c22e8e98678de8e10018d991c SHA512 ee07d776fa5894b716fdced36aaa6436336a1f1db97dedb0fd0575d61a7b48b12dfc90ed6078602d7a2c2a00bfa7f815ca76cd75e472a27ff7bfdb56291efa46
25
26 diff --git a/dev-python/txaio/txaio-2.8.2.ebuild b/dev-python/txaio/txaio-2.8.2.ebuild
27 deleted file mode 100644
28 index d75f1ebb10f..00000000000
29 --- a/dev-python/txaio/txaio-2.8.2.ebuild
30 +++ /dev/null
31 @@ -1,65 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Compatibility API between asyncio/Twisted/Trollius"
41 -HOMEPAGE="https://github.com/crossbario/txaio https://pypi.org/project/txaio/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~arm ~x86"
47 -IUSE="doc test"
48 -
49 -RDEPEND="
50 - $(python_gen_cond_dep '>=dev-python/trollius-2.0[${PYTHON_USEDEP}]' python2_7)
51 - $(python_gen_cond_dep '>=dev-python/futures-3.0.3[${PYTHON_USEDEP}]' python2_7)
52 -"
53 -DEPEND="app-arch/unzip
54 - dev-python/setuptools[${PYTHON_USEDEP}]
55 - dev-python/six[${PYTHON_USEDEP}]
56 - doc? (
57 - >=dev-python/sphinx-1.2.3[${PYTHON_USEDEP}]
58 - >=dev-python/sphinxcontrib-spelling-2.1.2[${PYTHON_USEDEP}]
59 - >=dev-python/sphinx_rtd_theme-0.1.9[${PYTHON_USEDEP}]
60 - dev-python/alabaster[${PYTHON_USEDEP}]
61 - )
62 - test? ( >=dev-python/pytest-2.6.4[${PYTHON_USEDEP}]
63 - >=dev-python/pytest-cov-1.8.1[${PYTHON_USEDEP}]
64 - >=dev-python/mock-1.3.0[${PYTHON_USEDEP}]
65 - >=dev-python/tox-2.1.1[${PYTHON_USEDEP}]
66 - >=dev-python/pep8-1.6.2[${PYTHON_USEDEP}]
67 - >=dev-python/pyenchant-1.6.6[${PYTHON_USEDEP}]
68 - )
69 -"
70 -
71 -src_prepare() {
72 - default_src_prepare
73 - # Take out failing tests known to pass when run manually
74 - # we certainly don't need to test "python setup.py sdist" here
75 - rm "${S}/test/test_packaging.py" || die
76 -}
77 -
78 -python_prepare() {
79 - # https://github.com/tavendo/txaio/issues/3
80 - cp -r "${FILESDIR}"/util.py test || die
81 -
82 - distutils-r1_python_prepare
83 -}
84 -
85 -python_compile_all() {
86 - use doc && emake -C docs html
87 -}
88 -
89 -python_test() {
90 - py.test || die "Tests failed under ${EPYTHON}"
91 -}
92 -
93 -python_install_all() {
94 - use doc && HTML_DOCS=( doc/_build/html/. )
95 - distutils-r1_python_install_all
96 -}