Gentoo Archives: gentoo-commits

From: "Patrick McLean (chutzpah)" <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/libcloud: ChangeLog libcloud-0.14.1.ebuild
Date: Wed, 26 Feb 2014 23:12:25
Message-Id: 20140226231217.743772004C@flycatcher.gentoo.org
1 chutzpah 14/02/26 23:12:17
2
3 Modified: ChangeLog
4 Added: libcloud-0.14.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xE3F69979BB4B8928DA78E3D17CBF44EF)
9
10 Revision Changes Path
11 1.14 dev-python/libcloud/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libcloud/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libcloud/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libcloud/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/libcloud/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 21 Oct 2013 07:40:46 -0000 1.13
24 +++ ChangeLog 26 Feb 2014 23:12:17 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/libcloud
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/libcloud/ChangeLog,v 1.13 2013/10/21 07:40:46 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/libcloud/ChangeLog,v 1.14 2014/02/26 23:12:17 chutzpah Exp $
31 +
32 +*libcloud-0.14.1 (26 Feb 2014)
33 +
34 + 26 Feb 2014; Patrick McLean <chutzpah@g.o> +libcloud-0.14.1.ebuild:
35 + Version bump.
36
37 *libcloud-0.13.2 (21 Oct 2013)
38
39
40
41
42 1.1 dev-python/libcloud/libcloud-0.14.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libcloud/libcloud-0.14.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/libcloud/libcloud-0.14.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libcloud-0.14.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/libcloud/libcloud-0.14.1.ebuild,v 1.1 2014/02/26 23:12:17 chutzpah Exp $
52
53 EAPI=5
54
55 # py3 dropped due to failing tests once lockfile installed
56 PYTHON_COMPAT=( python{2_6,2_7,3_3} pypy2_0 )
57 PYTHON_REQ_USE="ssl(+)"
58
59 inherit distutils-r1
60
61 DESCRIPTION="Unified Interface to the Cloud - python support libs"
62 HOMEPAGE="http://libcloud.apache.org/index.html"
63 SRC_URI="mirror://apache/${PN}/apache-${P}.tar.bz2"
64
65 LICENSE="Apache-2.0"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="examples test"
69
70 RDEPEND=""
71 DEPEND="test? (
72 dev-python/mock[${PYTHON_USEDEP}]
73 dev-python/lockfile[${PYTHON_USEDEP}]
74 )"
75
76 S="${WORKDIR}/apache-${P}"
77
78 python_prepare_all() {
79 if use examples; then
80 mkdir examples
81 mv example_*.py examples || die
82 fi
83 distutils-r1_python_prepare_all
84 }
85
86 src_test() {
87 cp libcloud/test/secrets.py-dist libcloud/test/secrets.py || die
88 distutils-r1_src_test
89 }
90
91 python_test() {
92 esetup.py test
93 }
94
95 python_install_all() {
96 use examples && local EXAMPLES=( examples/. )
97 distutils-r1_python_install_all
98 }