Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyechonest: pyechonest-7.2.1.ebuild ChangeLog
Date: Sat, 28 Jun 2014 03:56:21
Message-Id: 20140628035541.B10F920036@flycatcher.gentoo.org
1 idella4 14/06/28 03:55:41
2
3 Modified: pyechonest-7.2.1.ebuild ChangeLog
4 Log:
5 drop py2.6, add missing dep, tidy doc build/install, patch by submitted by fau, fixes Bug #515176
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.4 dev-python/pyechonest/pyechonest-7.2.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/pyechonest-7.2.1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/pyechonest-7.2.1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/pyechonest-7.2.1.ebuild?r1=1.3&r2=1.4
15
16 Index: pyechonest-7.2.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyechonest/pyechonest-7.2.1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- pyechonest-7.2.1.ebuild 8 Jun 2013 16:41:45 -0000 1.3
23 +++ pyechonest-7.2.1.ebuild 28 Jun 2014 03:55:41 -0000 1.4
24 @@ -1,10 +1,10 @@
25 -# Copyright 1999-2013 Gentoo Foundation
26 +# Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyechonest/pyechonest-7.2.1.ebuild,v 1.3 2013/06/08 16:41:45 sochotnicky Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyechonest/pyechonest-7.2.1.ebuild,v 1.4 2014/06/28 03:55:41 idella4 Exp $
30
31 EAPI=5
32
33 -PYTHON_COMPAT=( python{2_6,2_7} )
34 +PYTHON_COMPAT=( python2_7 )
35
36 inherit distutils-r1
37
38 @@ -17,21 +17,23 @@
39 KEYWORDS="~amd64 ~x86"
40 IUSE="doc examples"
41
42 -DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
43 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
44 +DEPEND="${RDEPEND}
45 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
46 +
47 +
48 +python_prepare_all() {
49 + # Prevent un-needed download during build
50 + sed -e "s/, 'sphinx.ext.intersphinx'//" -i doc/source/conf.py || die
51 + distutils-r1_python_prepare_all
52 +}
53
54 python_compile_all() {
55 - if use doc; then
56 - einfo "Generation of documentation by" ${PYTHON}
57 - PYTHONPATH=".." emake -C doc html || die "Generation of documentation failed"
58 - fi
59 + use doc && emake -C doc html
60 }
61
62 python_install_all() {
63 - use doc && dohtml -r doc/build/html/
64 -
65 - if use examples; then
66 - docompress -x usr/share/doc/${P}/examples/
67 - insinto usr/share/doc/${P}/examples
68 - doins -r examples/*
69 - fi
70 + use doc && local HTML_DOCS=( doc/build/html/. )
71 + use examples && local EXAMPLES=( examples/. )
72 + distutils-r1_python_install_all
73 }
74
75
76
77 1.7 dev-python/pyechonest/ChangeLog
78
79 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/ChangeLog?rev=1.7&view=markup
80 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/ChangeLog?rev=1.7&content-type=text/plain
81 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyechonest/ChangeLog?r1=1.6&r2=1.7
82
83 Index: ChangeLog
84 ===================================================================
85 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyechonest/ChangeLog,v
86 retrieving revision 1.6
87 retrieving revision 1.7
88 diff -u -r1.6 -r1.7
89 --- ChangeLog 22 Mar 2014 18:57:12 -0000 1.6
90 +++ ChangeLog 28 Jun 2014 03:55:41 -0000 1.7
91 @@ -1,6 +1,10 @@
92 # ChangeLog for dev-python/pyechonest
93 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
94 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyechonest/ChangeLog,v 1.6 2014/03/22 18:57:12 kensington Exp $
95 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyechonest/ChangeLog,v 1.7 2014/06/28 03:55:41 idella4 Exp $
96 +
97 + 28 Jun 2014; Ian Delaney <idella4@g.o> pyechonest-7.2.1.ebuild:
98 + drop py2.6, add missing dep, tidy doc build/install, patch by submitted by
99 + fau, fixes Bug #515176
100
101 22 Mar 2014; Michael Palimaka <kensington@g.o>
102 -pyechonest-7.1.0.ebuild: