Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/whoosh: whoosh-2.5.7.ebuild ChangeLog
Date: Wed, 26 Mar 2014 18:32:14
Message-Id: 20140326183209.898542004E@flycatcher.gentoo.org
1 blueness 14/03/26 18:32:09
2
3 Modified: ChangeLog
4 Added: whoosh-2.5.7.ebuild
5 Log:
6 Version bump, bug #505830
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.18 dev-python/whoosh/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 23 Sep 2013 02:53:04 -0000 1.17
24 +++ ChangeLog 26 Mar 2014 18:32:09 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/whoosh
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.17 2013/09/23 02:53:04 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.18 2014/03/26 18:32:09 blueness Exp $
31 +
32 +*whoosh-2.5.7 (26 Mar 2014)
33 +
34 + 26 Mar 2014; Anthony G. Basile <blueness@g.o> +whoosh-2.5.7.ebuild:
35 + Version bump, bug #505830
36
37 *whoosh-2.5.4 (23 Sep 2013)
38
39
40
41
42 1.1 dev-python/whoosh/whoosh-2.5.7.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: whoosh-2.5.7.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild,v 1.1 2014/03/26 18:32:09 blueness Exp $
52
53 EAPI="5"
54
55 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
56
57 MY_PN="Whoosh"
58
59 inherit distutils-r1
60
61 DESCRIPTION="Fast, pure-Python full text indexing, search and spell checking library"
62 HOMEPAGE="http://bitbucket.org/mchaput/whoosh/wiki/Home/ http://pypi.python.org/pypi/Whoosh/"
63 SRC_URI="mirror://pypi/W/${MY_PN}/${MY_PN}-${PV}.tar.gz"
64
65 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
66 test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
67
68 LICENSE="BSD-2"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE="doc test"
72
73 S="${WORKDIR}/${MY_PN}-${PV}"
74
75 python_prepare_all() {
76 # (backport from upstream)
77 sed -i -e '/cmdclass/s:pytest:PyTest:' setup.py || die
78 distutils-r1_python_prepare_all
79 }
80
81 python_install_all() {
82 local DOCS=( README.txt )
83 use doc && local HTML_DOCS=( docs/build/html/_sources/. )
84 distutils-r1_python_install_all
85 }
86
87 python_test() {
88 esetup.py test
89 }