Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pydispatcher: pydispatcher-2.0.3-r1.ebuild ChangeLog pydispatcher-2.0.3.ebuild pydispatcher-2.0.2.ebuild
Date: Fri, 02 Jan 2015 08:20:28
Message-Id: 20150102082023.A8B86EB2F@oystercatcher.gentoo.org
1 idella4 15/01/02 08:20:23
2
3 Modified: ChangeLog
4 Added: pydispatcher-2.0.3-r1.ebuild
5 Removed: pydispatcher-2.0.3.ebuild pydispatcher-2.0.2.ebuild
6 Log:
7 revbump; conversion -> distutils-r1, rm old
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.12 dev-python/pydispatcher/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/ChangeLog?rev=1.12&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/ChangeLog?rev=1.12&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/ChangeLog?r1=1.11&r2=1.12
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/pydispatcher/ChangeLog,v
21 retrieving revision 1.11
22 retrieving revision 1.12
23 diff -u -r1.11 -r1.12
24 --- ChangeLog 25 Dec 2011 11:03:54 -0000 1.11
25 +++ ChangeLog 2 Jan 2015 08:20:23 -0000 1.12
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/pydispatcher
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pydispatcher/ChangeLog,v 1.11 2011/12/25 11:03:54 patrick Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pydispatcher/ChangeLog,v 1.12 2015/01/02 08:20:23 idella4 Exp $
32 +
33 +*pydispatcher-2.0.3-r1 (02 Jan 2015)
34 +
35 + 02 Jan 2015; Ian Delaney <idella4@g.o> +pydispatcher-2.0.3-r1.ebuild,
36 + -pydispatcher-2.0.2.ebuild, -pydispatcher-2.0.3.ebuild:
37 + revbump; conversion -> distutils-r1, rm old
38
39 *pydispatcher-2.0.3 (25 Dec 2011)
40
41 @@ -52,4 +58,3 @@
42 21 Jul 2004; Rob Cakebread <pythonhead@g.o> +metadata.xml,
43 +pydispatcher-1.0.0.ebuild:
44 New package. Thanks Mike Fletcher for the submission. bug# 54860
45 -
46
47
48
49 1.1 dev-python/pydispatcher/pydispatcher-2.0.3-r1.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/pydispatcher-2.0.3-r1.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pydispatcher/pydispatcher-2.0.3-r1.ebuild?rev=1.1&content-type=text/plain
53
54 Index: pydispatcher-2.0.3-r1.ebuild
55 ===================================================================
56 # Copyright 1999-2015 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/dev-python/pydispatcher/pydispatcher-2.0.3-r1.ebuild,v 1.1 2015/01/02 08:20:23 idella4 Exp $
59
60 EAPI=5
61 PYTHON_COMPAT=( python2_7 )
62
63 inherit distutils-r1
64
65 MY_PN="PyDispatcher"
66 MY_P="${MY_PN}-${PV}"
67
68 DESCRIPTION="Multi-producer-multi-consumer signal dispatching mechanism"
69 HOMEPAGE="http://pydispatcher.sourceforge.net/ http://pypi.python.org/pypi/PyDispatcher"
70 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
71
72 LICENSE="BSD"
73 SLOT="0"
74 KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
75 IUSE="doc examples"
76
77 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
78 RDEPEND=""
79
80 S="${WORKDIR}/${MY_P}"
81
82 python_compile_all() {
83 if use doc; then
84 pushd docs/pydoc/ > /dev/null
85 "${PYTHON}" builddocs.py || die "Generation of documentation failed"
86 popd > /dev/null
87 fi
88 }
89
90 python_test() {
91 "${PYTHON}" -m unittest discover
92 }
93
94 python_install_all() {
95 use doc && local HTML_DOCS=( docs/pydoc/. )
96 use examples && local EXAMPLES=( examples/. )
97 distutils-r1_python_install_all
98 }