Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pydispatcher: ChangeLog pydispatcher-2.0.2.ebuild
Date: Sun, 30 May 2010 21:13:00
Message-Id: 20100530211256.371482CF37@corvid.gentoo.org
1 arfrever 10/05/30 21:12:55
2
3 Modified: ChangeLog
4 Added: pydispatcher-2.0.2.ebuild
5 Log:
6 Version bump. Set SUPPORT_PYTHON_ABIS.
7 (Portage version: HEAD/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 dev-python/pydispatcher/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pydispatcher/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 15 Feb 2009 22:46:29 -0000 1.9
23 +++ ChangeLog 30 May 2010 21:12:55 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/pydispatcher
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pydispatcher/ChangeLog,v 1.9 2009/02/15 22:46:29 patrick Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pydispatcher/ChangeLog,v 1.10 2010/05/30 21:12:55 arfrever Exp $
30 +
31 +*pydispatcher-2.0.2 (30 May 2010)
32 +
33 + 30 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +pydispatcher-2.0.2.ebuild:
35 + Version bump. Set SUPPORT_PYTHON_ABIS.
36
37 15 Feb 2009; Patrick Lauer <patrick@g.o> pydispatcher-2.0.1.ebuild:
38 Adding ~amd64 keyword
39
40
41
42 1.1 dev-python/pydispatcher/pydispatcher-2.0.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/pydispatcher-2.0.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/pydispatcher-2.0.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pydispatcher-2.0.2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/pydispatcher/pydispatcher-2.0.2.ebuild,v 1.1 2010/05/30 21:12:55 arfrever Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 DISTUTILS_SRC_TEST="nosetests"
57
58 inherit distutils
59
60 MY_PN="PyDispatcher"
61 MY_P="${MY_PN}-${PV}"
62
63 DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism"
64 HOMEPAGE="http://pydispatcher.sourceforge.net/ http://pypi.python.org/pypi/PyDispatcher"
65 SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
66
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
70 IUSE="doc examples"
71
72 DEPEND="dev-python/setuptools"
73 RDEPEND=""
74 RESTRICT_PYTHON_ABIS="3.*"
75
76 S="${WORKDIR}/${MY_P}"
77
78 PYTHON_MODNAME="pydispatch"
79
80 src_compile() {
81 distutils_src_compile
82
83 if use doc; then
84 einfo "Generation of documentation"
85 PYTHONPATH="." "$(PYTHON -f)" docs/pydoc/builddocs.py || die "Generation of documentation failed"
86 fi
87 }
88
89 src_install() {
90 distutils_src_install
91
92 if use doc; then
93 insinto /usr/share/doc/${PF}/html
94 doins -r docs/*
95
96 dohtml -r *.html
97 fi
98
99 if use examples; then
100 insinto /usr/share/doc/${PF}/examples
101 doins examples/*
102 fi
103 }