Gentoo Archives: gentoo-commits

From: "Matt Thode (prometheanfire)" <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/hp3parclient: hp3parclient-3.0.0.ebuild ChangeLog
Date: Mon, 28 Apr 2014 02:33:00
Message-Id: 20140428023255.CAA182004C@flycatcher.gentoo.org
1 prometheanfire 14/04/28 02:32:55
2
3 Modified: ChangeLog
4 Added: hp3parclient-3.0.0.ebuild
5 Log:
6 more for cinder
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
9
10 Revision Changes Path
11 1.3 dev-python/hp3parclient/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hp3parclient/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hp3parclient/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hp3parclient/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/hp3parclient/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 18 Dec 2013 10:11:20 -0000 1.2
24 +++ ChangeLog 28 Apr 2014 02:32:55 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/hp3parclient
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/hp3parclient/ChangeLog,v 1.2 2013/12/18 10:11:20 idella4 Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/hp3parclient/ChangeLog,v 1.3 2014/04/28 02:32:55 prometheanfire Exp $
31 +
32 +*hp3parclient-3.0.0 (28 Apr 2014)
33 +
34 + 28 Apr 2014; Matthew Thode <prometheanfire@g.o>
35 + +hp3parclient-3.0.0.ebuild:
36 + more for cinder
37
38 18 Dec 2013; Ian Delaney <idella4@g.o> hp3parclient-2.0.0.ebuild:
39 Add missing dep for doc build
40
41
42
43 1.1 dev-python/hp3parclient/hp3parclient-3.0.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hp3parclient/hp3parclient-3.0.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/hp3parclient/hp3parclient-3.0.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: hp3parclient-3.0.0.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/hp3parclient/hp3parclient-3.0.0.ebuild,v 1.1 2014/04/28 02:32:55 prometheanfire Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=( python2_7 )
56
57 inherit distutils-r1
58
59 DESCRIPTION="A python interface to sendfile(2) system call"
60 HOMEPAGE="http://packages.python.org/hp3parclient"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc examples test"
65 LICENSE="Apache-2.0"
66 SLOT="0"
67
68 RDEPEND=">=dev-python/httplib2-0.6.0"
69 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
70 dev-python/paramiko[${PYTHON_USEDEP}]
71 dev-python/eventlet[${PYTHON_USEDEP}]
72 test? ( dev-python/werkzeug[${PYTHON_USEDEP}]
73 dev-python/nose-testconfig[${PYTHON_USEDEP}]
74 dev-python/nose[${PYTHON_USEDEP}] )
75 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
76
77 # Instructions on running tests are utter nonsense. Tried and gave up
78 python_compile_all() {
79 use doc && emake -C docs html
80 }
81
82 python_install_all() {
83 use doc && local HTML_DOCS=( docs/_build/html/. )
84 use examples && local EXAMPLES=( samples/. )
85 distutils-r1_python_install_all
86 }