Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyechonest: pyechonest-9.0.0.ebuild ChangeLog
Date: Sun, 02 Aug 2015 10:22:52
Message-Id: 20150802102244.0C816118@oystercatcher.gentoo.org
1 yngwin 15/08/02 10:22:44
2
3 Modified: ChangeLog
4 Added: pyechonest-9.0.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x4FDF9CFD2FAC514E!)
9
10 Revision Changes Path
11 1.10 dev-python/pyechonest/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyechonest/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 7 Jun 2015 15:24:28 -0000 1.9
24 +++ ChangeLog 2 Aug 2015 10:22:43 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pyechonest
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyechonest/ChangeLog,v 1.9 2015/06/07 15:24:28 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyechonest/ChangeLog,v 1.10 2015/08/02 10:22:43 yngwin Exp $
30 +
31 +*pyechonest-9.0.0 (02 Aug 2015)
32 +
33 + 02 Aug 2015; Ben de Groot <yngwin@g.o> +pyechonest-9.0.0.ebuild:
34 + version bump
35
36 07 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
37 Add github to remote-id in metadata.xml
38
39
40
41 1.1 dev-python/pyechonest/pyechonest-9.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/pyechonest-9.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/pyechonest-9.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pyechonest-9.0.0.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/pyechonest/pyechonest-9.0.0.ebuild,v 1.1 2015/08/02 10:22:43 yngwin Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_7 )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Python interface to The Echo Nest APIs"
59 HOMEPAGE="http://echonest.github.com/pyechonest/"
60 SRC_URI="https://github.com/echonest/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc examples"
66
67 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
68 DEPEND="${RDEPEND}
69 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
70
71 python_prepare_all() {
72 # Prevent un-needed download during build
73 sed -e "s/, 'sphinx.ext.intersphinx'//" -i doc/source/conf.py || die
74 distutils-r1_python_prepare_all
75 }
76
77 python_compile_all() {
78 use doc && emake -C doc html
79 }
80
81 python_install_all() {
82 use doc && local HTML_DOCS=( doc/build/html/. )
83 use examples && local EXAMPLES=( examples/. )
84 distutils-r1_python_install_all
85 }