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.4.1.ebuild ChangeLog
Date: Fri, 29 Jun 2012 16:47:00
Message-Id: 20120629164650.9477E2004B@flycatcher.gentoo.org
1 blueness 12/06/29 16:46:50
2
3 Modified: ChangeLog
4 Added: whoosh-2.4.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.65/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-python/whoosh/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 22 May 2012 12:32:54 -0000 1.1
24 +++ ChangeLog 29 Jun 2012 16:46:50 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/whoosh
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.1 2012/05/22 12:32:54 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.2 2012/06/29 16:46:50 blueness Exp $
30 +
31 +*whoosh-2.4.1 (29 Jun 2012)
32 +
33 + 29 Jun 2012; Anthony G. Basile <blueness@g.o> +whoosh-2.4.1.ebuild:
34 + Version bump
35
36 *whoosh-2.4.0 (22 May 2012)
37
38
39
40
41 1.1 dev-python/whoosh/whoosh-2.4.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.4.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.4.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: whoosh-2.4.1.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.4.1.ebuild,v 1.1 2012/06/29 16:46:50 blueness Exp $
51
52 EAPI="3"
53
54 PYTHON_DEPEND="2:2.5 3:3.1"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="2.4"
57 DISTUTILS_SRC_TEST="setup.py"
58 #PYTHON_TESTS_RESTRICTED_ABIS="3.*"
59 PYTHON_MODNAME="whoosh"
60
61 MY_PN="Whoosh"
62
63 inherit distutils
64
65 DESCRIPTION="Fast, pure-Python full text indexing, search and spell checking library"
66 HOMEPAGE="http://bitbucket.org/mchaput/whoosh/wiki/Home/ http://pypi.python.org/pypi/Whoosh/"
67 SRC_URI="mirror://pypi/W/${MY_PN}/${MY_PN}-${PV}.tar.gz"
68
69 LICENSE="Apache-2.0"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE="doc"
73
74 S="${WORKDIR}/${MY_PN}-${PV}"
75
76 src_install() {
77 distutils_src_install
78
79 if use doc; then
80 insinto "/usr/share/doc/${PF}/"
81 doins -r docs/build/html/_sources/* || die
82 fi
83 }