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/pyptlib: pyptlib-0.0.6.ebuild ChangeLog pyptlib-0.0.5.ebuild
Date: Wed, 30 Jul 2014 14:47:41
Message-Id: 20140730144734.A8D752004C@flycatcher.gentoo.org
1 blueness 14/07/30 14:47:33
2
3 Modified: pyptlib-0.0.6.ebuild ChangeLog
4 Removed: pyptlib-0.0.5.ebuild
5 Log:
6 Fix bug #515766
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.2 dev-python/pyptlib/pyptlib-0.0.6.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyptlib/pyptlib-0.0.6.ebuild?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyptlib/pyptlib-0.0.6.ebuild?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyptlib/pyptlib-0.0.6.ebuild?r1=1.1&r2=1.2
16
17 Index: pyptlib-0.0.6.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyptlib/pyptlib-0.0.6.ebuild,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- pyptlib-0.0.6.ebuild 17 Apr 2014 11:56:01 -0000 1.1
24 +++ pyptlib-0.0.6.ebuild 30 Jul 2014 14:47:33 -0000 1.2
25 @@ -1,6 +1,6 @@
26 # Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyptlib/pyptlib-0.0.6.ebuild,v 1.1 2014/04/17 11:56:01 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyptlib/pyptlib-0.0.6.ebuild,v 1.2 2014/07/30 14:47:33 blueness Exp $
30
31 EAPI="5"
32 PYTHON_COMPAT=( python2_7 )
33 @@ -14,6 +14,17 @@
34 LICENSE="BSD"
35 SLOT="0"
36 KEYWORDS="~amd64 ~x86"
37 -IUSE=""
38 +IUSE="doc examples"
39
40 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
41 DOCS=( README.rst TODO )
42 +
43 +python_test() {
44 + "${PYTHON}" -m unittest discover || die "tests failed"
45 +}
46 +
47 +python_install_all() {
48 + use doc && local HTML_DOCS=( doc/html/. )
49 + use examples && local EXAMPLES=( examples/. )
50 + distutils-r1_python_install_all
51 +}
52
53
54
55 1.3 dev-python/pyptlib/ChangeLog
56
57 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyptlib/ChangeLog?rev=1.3&view=markup
58 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyptlib/ChangeLog?rev=1.3&content-type=text/plain
59 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyptlib/ChangeLog?r1=1.2&r2=1.3
60
61 Index: ChangeLog
62 ===================================================================
63 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyptlib/ChangeLog,v
64 retrieving revision 1.2
65 retrieving revision 1.3
66 diff -u -r1.2 -r1.3
67 --- ChangeLog 17 Apr 2014 11:56:01 -0000 1.2
68 +++ ChangeLog 30 Jul 2014 14:47:33 -0000 1.3
69 @@ -1,6 +1,10 @@
70 # ChangeLog for dev-python/pyptlib
71 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
72 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyptlib/ChangeLog,v 1.2 2014/04/17 11:56:01 blueness Exp $
73 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyptlib/ChangeLog,v 1.3 2014/07/30 14:47:33 blueness Exp $
74 +
75 + 30 Jul 2014; Anthony G. Basile <blueness@g.o> -pyptlib-0.0.5.ebuild,
76 + pyptlib-0.0.6.ebuild:
77 + Fix bug #515766
78
79 *pyptlib-0.0.6 (17 Apr 2014)