Gentoo Archives: gentoo-commits

From: "Alex Brandt (alunduil)" <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/botocore: botocore-1.1.5.ebuild ChangeLog
Date: Sat, 01 Aug 2015 21:17:24
Message-Id: 20150801211716.499CB119@oystercatcher.gentoo.org
1 alunduil 15/08/01 21:17:16
2
3 Modified: ChangeLog
4 Added: botocore-1.1.5.ebuild
5 Log:
6 add version 1.1.5
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
9
10 Revision Changes Path
11 1.2 dev-python/botocore/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/botocore/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/botocore/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/botocore/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/botocore/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 29 Jul 2015 18:51:40 -0000 1.1
24 +++ ChangeLog 1 Aug 2015 21:17:16 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/botocore
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/botocore/ChangeLog,v 1.1 2015/07/29 18:51:40 alunduil Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/botocore/ChangeLog,v 1.2 2015/08/01 21:17:16 alunduil Exp $
30 +
31 +*botocore-1.1.5 (01 Aug 2015)
32 +
33 + 01 Aug 2015; Alex Brandt <alunduil@g.o> +botocore-1.1.5.ebuild:
34 + add version 1.1.5
35
36 *botocore-1.1.3 (29 Jul 2015)
37
38
39
40
41 1.1 dev-python/botocore/botocore-1.1.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/botocore/botocore-1.1.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/botocore/botocore-1.1.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: botocore-1.1.5.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/botocore/botocore-1.1.5.ebuild,v 1.1 2015/08/01 21:17:16 alunduil Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
54
55 inherit distutils-r1 vcs-snapshot
56
57 DESCRIPTION="Low-level, data-driven core of boto 3."
58 HOMEPAGE="https://github.com/boto/botocore"
59 SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
60
61 LICENSE="Apache-2.0"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE="doc test"
65
66 CDEPEND="
67 >=dev-python/docutils-0.10[${PYTHON_USEDEP}]
68 ~dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
69 >=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
70 <dev-python/python-dateutil-3.0.0[${PYTHON_USEDEP}]
71 "
72 DEPEND="
73 dev-python/setuptools[${PYTHON_USEDEP}]
74 doc? (
75 >=dev-python/guzzle_sphinx_theme-0.7.10[${PYTHON_USEDEP}]
76 <dev-python/guzzle_sphinx_theme-0.8[${PYTHON_USEDEP}]
77 >=dev-python/sphinx-1.1.3[${PYTHON_USEDEP}]
78 <dev-python/sphinx-1.3[${PYTHON_USEDEP}]
79 )
80 test? (
81 ${CDEPEND}
82 dev-python/mock[${PYTHON_USEDEP}]
83 dev-python/nose[${PYTHON_USEDEP}]
84 )
85 "
86 RDEPEND="${CDEPEND}"
87
88 python_compile_all() {
89 use doc && emake -C docs html
90 }
91
92 python_test() {
93 nosetests tests/unit || die "tests failed under ${EPYTHON}"
94 }
95
96 python_install_all() {
97 use doc && local HTML_DOCS=( docs/build/html/. )
98
99 distutils-r1_python_install_all
100 }