Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/dugong: ChangeLog dugong-3.1.ebuild
Date: Sun, 29 Jun 2014 02:33:45
Message-Id: 20140629023337.16E202004F@flycatcher.gentoo.org
1 radhermit 14/06/29 02:33:37
2
3 Modified: ChangeLog
4 Added: dugong-3.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.3 dev-python/dugong/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dugong/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dugong/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dugong/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/dugong/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 24 Apr 2014 05:06:23 -0000 1.2
24 +++ ChangeLog 29 Jun 2014 02:33:36 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/dugong
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dugong/ChangeLog,v 1.2 2014/04/24 05:06:23 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/dugong/ChangeLog,v 1.3 2014/06/29 02:33:36 radhermit Exp $
30 +
31 +*dugong-3.1 (29 Jun 2014)
32 +
33 + 29 Jun 2014; Tim Harder <radhermit@g.o> +dugong-3.1.ebuild:
34 + Version bump.
35
36 *dugong-3.0 (24 Apr 2014)
37
38
39
40
41 1.1 dev-python/dugong/dugong-3.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dugong/dugong-3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dugong/dugong-3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dugong-3.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/dugong/dugong-3.1.ebuild,v 1.1 2014/06/29 02:33:36 radhermit Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python3_{3,4} )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Python library for communicating with HTTP 1.1 servers"
58 HOMEPAGE="https://bitbucket.org/nikratio/python-dugong/"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2"
60
61 LICENSE="LGPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc examples test"
65
66 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
67 test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
68
69 python_test() {
70 py.test -v || die "Tests failed under ${EPYTHON}"
71 }
72
73 python_install_all() {
74 use doc && local HTML_DOCS=( doc/html/. )
75 use examples && local EXAMPLES=( examples/. )
76 distutils-r1_python_install_all
77 }