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/pyqtgraph: pyqtgraph-0.9.10.ebuild ChangeLog pyqtgraph-0.9.8.ebuild
Date: Wed, 31 Dec 2014 02:13:02
Message-Id: 20141231021258.E3E12E88F@oystercatcher.gentoo.org
1 idella4 14/12/31 02:12:58
2
3 Modified: ChangeLog
4 Added: pyqtgraph-0.9.10.ebuild
5 Removed: pyqtgraph-0.9.8.ebuild
6 Log:
7 bump
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.3 dev-python/pyqtgraph/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqtgraph/ChangeLog?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqtgraph/ChangeLog?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqtgraph/ChangeLog?r1=1.2&r2=1.3
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyqtgraph/ChangeLog,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- ChangeLog 24 Dec 2014 04:21:09 -0000 1.2
25 +++ ChangeLog 31 Dec 2014 02:12:58 -0000 1.3
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-python/pyqtgraph
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqtgraph/ChangeLog,v 1.2 2014/12/24 04:21:09 radhermit Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqtgraph/ChangeLog,v 1.3 2014/12/31 02:12:58 idella4 Exp $
31 +
32 +*pyqtgraph-0.9.10 (31 Dec 2014)
33 +
34 + 31 Dec 2014; Ian Delaney <idella4@g.o> +pyqtgraph-0.9.10.ebuild,
35 + -pyqtgraph-0.9.8.ebuild:
36 + bump
37
38 *pyqtgraph-0.9.9 (24 Dec 2014)
39
40 @@ -13,4 +19,3 @@
41 +metadata.xml:
42 Initial import needed for newer app-misc/binwalk (bug #501920 by Azamat H.
43 Hackimov).
44 -
45
46
47
48 1.1 dev-python/pyqtgraph/pyqtgraph-0.9.10.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqtgraph/pyqtgraph-0.9.10.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqtgraph/pyqtgraph-0.9.10.ebuild?rev=1.1&content-type=text/plain
52
53 Index: pyqtgraph-0.9.10.ebuild
54 ===================================================================
55 # Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyqtgraph/pyqtgraph-0.9.10.ebuild,v 1.1 2014/12/31 02:12:58 idella4 Exp $
58
59 EAPI=5
60 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
61 inherit distutils-r1
62
63 DESCRIPTION="a pure-python scientific graphics and GUI library built on PyQt4/PySide and numpy"
64 HOMEPAGE="http://www.pyqtgraph.org/ https://github.com/pyqtgraph/pyqtgraph"
65 SRC_URI="http://www.pyqtgraph.org/downloads/${P}.tar.gz"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="doc examples opengl"
71
72 RDEPEND="
73 dev-python/numpy[${PYTHON_USEDEP}]
74 sci-libs/scipy[${PYTHON_USEDEP}]
75 || (
76 dev-python/PyQt4[${PYTHON_USEDEP}]
77 dev-python/pyside[${PYTHON_USEDEP}]
78 )
79 opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )
80 "
81 DEPEND="${RDEPEND}
82 doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
83 "
84
85 python_prepare_all() {
86 distutils-r1_python_prepare_all
87
88 # fix distutils warning
89 sed -i 's/install_requires/requires/' setup.py || die
90
91 if ! use opengl; then
92 rm -r pyqtgraph/opengl || die
93 fi
94 }
95
96 python_compile_all() {
97 use doc && emake -C doc html
98 }
99
100 python_install_all() {
101 use doc && local HTML_DOCS=( doc/build/html/. )
102 use examples && local EXAMPLES=( examples/. )
103 distutils-r1_python_install_all
104 }