Gentoo Archives: gentoo-commits

From: "Alex Brandt (alunduil)" <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/supernova: supernova-2.0.5.ebuild ChangeLog
Date: Sat, 01 Aug 2015 22:14:23
Message-Id: 20150801221419.76FCB115@oystercatcher.gentoo.org
1 alunduil 15/08/01 22:14:19
2
3 Modified: ChangeLog
4 Added: supernova-2.0.5.ebuild
5 Log:
6 add version 2.0.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.13 app-admin/supernova/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 19 Jul 2015 20:25:02 -0000 1.12
24 +++ ChangeLog 1 Aug 2015 22:14:19 -0000 1.13
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-admin/supernova
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v 1.12 2015/07/19 20:25:02 alunduil Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v 1.13 2015/08/01 22:14:19 alunduil Exp $
30 +
31 +*supernova-2.0.5 (01 Aug 2015)
32 +
33 + 01 Aug 2015; Alex Brandt <alunduil@g.o> +supernova-2.0.5.ebuild:
34 + add version 2.0.5
35
36 19 Jul 2015; Alex Brandt <alunduil@g.o> -supernova-1.0.4.ebuild:
37 remove version 1.0.4
38
39
40
41 1.1 app-admin/supernova/supernova-2.0.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/supernova-2.0.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/supernova-2.0.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: supernova-2.0.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/app-admin/supernova/supernova-2.0.5.ebuild,v 1.1 2015/08/01 22:14:19 alunduil Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 )
54
55 inherit bash-completion-r1 distutils-r1
56
57 DESCRIPTION="novaclient wrapper for multiple nova environments"
58 HOMEPAGE="https://github.com/rackerhacker/supernova"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="Apache-2.0"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE="doc examples test"
65
66 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
67 DEPEND="
68 ${CDEPEND}
69 doc? ( >=dev-python/mkdocs-0.14.0[${PYTHON_USEDEP}] )
70 test? ( dev-python/pytest[${PYTHON_USEDEP}] )
71 "
72 RDEPEND="
73 ${CDEPEND}
74 dev-python/click[${PYTHON_USEDEP}]
75 dev-python/configobj[${PYTHON_USEDEP}]
76 >=dev-python/keyring-0.9.2[${PYTHON_USEDEP}]
77 dev-python/python-novaclient[${PYTHON_USEDEP}]
78 dev-python/six[${PYTHON_USEDEP}]
79 "
80
81 python_compile_all() {
82 if use doc; then
83 mkdocs build || die "docs failed to build"
84 fi
85 }
86
87 python_test() {
88 distutils_install_for_testing
89 cd "${TEST_DIR}"/lib || die
90 py.test || die "tests failed under ${EPYTHON}"
91 }
92
93 python_install_all() {
94 use doc && local HTML_DOCS=( site/. )
95 use examples && local EXAMPLES=( example_configs/. )
96
97 distutils-r1_python_install_all
98
99 newbashcomp contrib/${PN}-completion.bash ${PN}
100 }