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/whoosh/
Date: Sun, 29 Mar 2020 12:03:23
Message-Id: 1585483382.75cd618ac74b8cedf4fbbf5ba974cd246cfd3ec3.mgorny@gentoo
1 commit: 75cd618ac74b8cedf4fbbf5ba974cd246cfd3ec3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 11:57:22 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 12:03:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75cd618a
7
8 dev-python/whoosh: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/whoosh/Manifest | 1 -
13 dev-python/whoosh/whoosh-2.6.0.ebuild | 51 -----------------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-python/whoosh/Manifest b/dev-python/whoosh/Manifest
17 index b287f90ad1d..d2554bed372 100644
18 --- a/dev-python/whoosh/Manifest
19 +++ b/dev-python/whoosh/Manifest
20 @@ -1,2 +1 @@
21 -DIST Whoosh-2.6.0.zip 1193541 BLAKE2B f5afea36c53a06e3f23e06e3b6f51acd2adafa02488912c52fdda207631a6adb071256d26ed455042de1c4c2a136156ba7c89f4d6773ec60b392b03de3c37da3 SHA512 e50e47ec0d1c65ad3c7d657586f5380a1be748945c1ce964305fa68b99379f0da676faef6f0ca45ef151df7be71150601162ee966f3aaf84047a20bca36f7e37
22 DIST Whoosh-2.7.4.tar.gz 968741 BLAKE2B 698ec603eb1201f2b1a934785f84108cb5d91114c9a4e1943cfcd2c8c878f7fb0a0868d54d3a11f8aa30890179c555bdc11cbf34962f5f4781c6d43a090ba872 SHA512 7cdefdcf52b704ffe50c00718c42677e2ddfe879f81ad2d14b580b0e026cc0ebb6b9ddc99d8709eaff4eb9b83f654b042c8792821e1ed90aa85cfa6f82845074
23
24 diff --git a/dev-python/whoosh/whoosh-2.6.0.ebuild b/dev-python/whoosh/whoosh-2.6.0.ebuild
25 deleted file mode 100644
26 index 8e5cd967a8b..00000000000
27 --- a/dev-python/whoosh/whoosh-2.6.0.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="5"
34 -
35 -PYTHON_COMPAT=( python2_7 python3_6 )
36 -
37 -MY_PN="Whoosh"
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Fast, pure-Python full text indexing, search and spell checking library"
42 -HOMEPAGE="https://bitbucket.org/mchaput/whoosh/wiki/Home/ https://pypi.org/project/Whoosh/"
43 -SRC_URI="mirror://pypi/W/${MY_PN}/${MY_PN}-${PV}.zip"
44 -
45 -DEPEND="app-arch/unzip
46 - dev-python/setuptools[${PYTHON_USEDEP}]
47 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
48 -
49 -LICENSE="BSD-2"
50 -SLOT="0"
51 -KEYWORDS="amd64 x86"
52 -IUSE="doc test"
53 -RESTRICT="!test? ( test )"
54 -
55 -S="${WORKDIR}/${MY_PN}-${PV}"
56 -
57 -python_prepare_all() {
58 - # (backport from upstream)
59 - sed -i -e '/cmdclass/s:pytest:PyTest:' setup.py || die
60 -
61 - # Prevent un-needed download during build
62 - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die
63 -
64 - distutils-r1_python_prepare_all
65 -}
66 -
67 -python_compile_all() {
68 - # https://bitbucket.org/mchaput/whoosh/issue/403/
69 - use doc && sphinx-build -b html -c docs/source/ docs/source/ docs/source/build/html
70 -}
71 -
72 -python_test() {
73 - esetup.py test
74 -}
75 -
76 -python_install_all() {
77 - local DOCS=( README.txt )
78 - use doc && local HTML_DOCS=( docs/source/build/html/. )
79 - distutils-r1_python_install_all
80 -}