Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
Date: Wed, 07 Feb 2018 19:22:35
Message-Id: 1518031330.fc792b26ce8806ab13ed6299e1e826e3f6c143a0.mgorny@gentoo
1 commit: fc792b26ce8806ab13ed6299e1e826e3f6c143a0
2 Author: Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
3 AuthorDate: Tue Feb 6 20:12:29 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 7 19:22:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc792b26
7
8 dev-python/rebulk: remove old
9
10 Closes: https://github.com/gentoo/gentoo/pull/7098
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 dev-python/rebulk/Manifest | 1 -
14 dev-python/rebulk/rebulk-0.8.2.ebuild | 40 -----------------------------------
15 2 files changed, 41 deletions(-)
16
17 diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
18 index 27581879d70..e079271f18e 100644
19 --- a/dev-python/rebulk/Manifest
20 +++ b/dev-python/rebulk/Manifest
21 @@ -1,2 +1 @@
22 -DIST rebulk-0.8.2.tar.gz 257147 BLAKE2B ef907a6c6dcd3ab749e04080cb7b7405da640a2c3142f4754535ad2e166fc14e97765193c675ad406542cf08aaf797dbb40d466e344b1b68942de8cec2126409 SHA512 7abbeb1974102db4846759de6c797b9fb0b81a6ffe573d8a7590342da8ed5b4c006258407540be8563d51fb36ac2a148132e879586a200a923cfe93dcc715bee
23 DIST rebulk-0.9.0.tar.gz 257342 BLAKE2B a08b2d74685eea35597331bb2ef3c48e8a9cddc39ad3821cb7f33b80a47184a21f813b339e9d64548b3003913178191075455a6f787ab80ffa2cb3bf7f0db35d SHA512 25a22b3a5f5519f6f8c10abf6a477f212c0500264cfdcc5a9be09d3818462a051b1a7cd78f94991c44ac6bcdc7435b9909e65de48d1bd8138989e0da98d10262
24
25 diff --git a/dev-python/rebulk/rebulk-0.8.2.ebuild b/dev-python/rebulk/rebulk-0.8.2.ebuild
26 deleted file mode 100644
27 index 4fbf9cb372d..00000000000
28 --- a/dev-python/rebulk/rebulk-0.8.2.ebuild
29 +++ /dev/null
30 @@ -1,40 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python library that performs advanced searches in strings"
41 -HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="test"
48 -
49 -RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
50 -DEPEND="${RDEPEND}
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - test? (
53 - dev-python/pytest[${PYTHON_USEDEP}]
54 - dev-python/pytest-runner[${PYTHON_USEDEP}]
55 - )
56 -"
57 -
58 -python_prepare_all() {
59 - # Remove base64-encoded zip archive with pytest.
60 - rm runtests.py || die
61 -
62 - # Disable unconditional dependency on dev-python/pytest-runner.
63 - sed -i -e "s|'pytest-runner'||g" setup.py || die
64 -
65 - distutils-r1_python_prepare_all
66 -}
67 -
68 -python_test() {
69 - esetup.py test
70 -}