Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/prettyplotlib/
Date: Thu, 05 Feb 2015 08:01:29
Message-Id: 1423045361.66b3b542c6e22188543f2795ad6485bd3f1dbc94.jlec@gentoo
1 commit: 66b3b542c6e22188543f2795ad6485bd3f1dbc94
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Wed Feb 4 10:22:41 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 4 10:22:41 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=66b3b542
7
8 New package dev-python/prettyplotlib
9
10 ---
11 dev-python/prettyplotlib/ChangeLog | 9 +++++++
12 dev-python/prettyplotlib/metadata.xml | 12 +++++++++
13 .../prettyplotlib/prettyplotlib-0.1.7.ebuild | 1 +
14 dev-python/prettyplotlib/prettyplotlib-9999.ebuild | 30 ++++++++++++++++++++++
15 4 files changed, 52 insertions(+)
16
17 diff --git a/dev-python/prettyplotlib/ChangeLog b/dev-python/prettyplotlib/ChangeLog
18 new file mode 100644
19 index 0000000..d0b226f
20 --- /dev/null
21 +++ b/dev-python/prettyplotlib/ChangeLog
22 @@ -0,0 +1,9 @@
23 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
24 +# $Header: $
25 +
26 +*prettyplotlib-9999 (04 Feb 2015)
27 +*prettyplotlib-0.1.7 (04 Feb 2015)
28 +
29 + 04 Feb 2015; Marius Brehler <marbre@××××××××××××××.de> +metadata.xml,
30 + +prettyplotlib-9999.ebuild, +prettyplotlib-0.1.7.ebuild:
31 + Add prettyplotlib to overlay
32
33 diff --git a/dev-python/prettyplotlib/metadata.xml b/dev-python/prettyplotlib/metadata.xml
34 new file mode 100644
35 index 0000000..123422a
36 --- /dev/null
37 +++ b/dev-python/prettyplotlib/metadata.xml
38 @@ -0,0 +1,12 @@
39 +<?xml version="1.0" encoding="UTF-8"?>
40 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
41 +<pkgmetadata>
42 + <maintainer>
43 + <email>marbre@××××××××××××××.de</email>
44 + <name>Marius Brehler</name>
45 + </maintainer>
46 + <longdescription>
47 + Python matplotlib-enhancer library which painlessly creates
48 + beautiful default matplotlib plots.
49 + </longdescription>
50 +</pkgmetadata>
51
52 diff --git a/dev-python/prettyplotlib/prettyplotlib-0.1.7.ebuild b/dev-python/prettyplotlib/prettyplotlib-0.1.7.ebuild
53 new file mode 120000
54 index 0000000..46a331d
55 --- /dev/null
56 +++ b/dev-python/prettyplotlib/prettyplotlib-0.1.7.ebuild
57 @@ -0,0 +1 @@
58 +prettyplotlib-9999.ebuild
59 \ No newline at end of file
60
61 diff --git a/dev-python/prettyplotlib/prettyplotlib-9999.ebuild b/dev-python/prettyplotlib/prettyplotlib-9999.ebuild
62 new file mode 100644
63 index 0000000..a58869f
64 --- /dev/null
65 +++ b/dev-python/prettyplotlib/prettyplotlib-9999.ebuild
66 @@ -0,0 +1,30 @@
67 +# Copyright 1999-2015 Gentoo Foundation
68 +# Distributed under the terms of the GNU General Public License v2
69 +# $Header: $
70 +
71 +EAPI=5
72 +PYTHON_COMPAT=( python{2_7,3_3,3_4} )
73 +
74 +inherit distutils-r1
75 +
76 +DESCRIPTION="Painlessly create beautiful matplotlib plots"
77 +HOMEPAGE="http://blog.olgabotvinnik.com/prettyplotlib/"
78 +
79 +if [ ${PV} == "9999" ] ; then
80 + inherit git-r3
81 + EGIT_REPO_URI="https://github.com/olgabot/${PN}.git git://github.com:olgabot/${PN}.git"
82 +else
83 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
84 + KEYWORDS="~amd64"
85 +fi
86 +
87 +LICENSE="MIT"
88 +SLOT="0"
89 +
90 +RDEPEND="
91 + sci-libs/scipy[${PYTHON_USEDEP}]
92 + >=dev-python/matplotlib-1.4.0[${PYTHON_USEDEP}]
93 + dev-python/brewer2mpl[${PYTHON_USEDEP}]
94 + dev-python/six[${PYTHON_USEDEP}]
95 + dev-python/numpy[${PYTHON_USEDEP}]"
96 +DEPEND="${RDEPEND}"