Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-gallery/
Date: Thu, 29 Dec 2016 19:56:45
Message-Id: 1483041362.d5aa6c1660c8bfe005f56074e4372307cbdc7a9e.bicatali@gentoo
1 commit: d5aa6c1660c8bfe005f56074e4372307cbdc7a9e
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 29 18:54:00 2016 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 29 19:56:02 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5aa6c16
7
8 dev-python/sphinx-gallery: initial import
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/sphinx-gallery/Manifest | 1 +
13 dev-python/sphinx-gallery/metadata.xml | 12 ++++++++++
14 .../sphinx-gallery/sphinx-gallery-0.1.7.ebuild | 27 ++++++++++++++++++++++
15 3 files changed, 40 insertions(+)
16
17 diff --git a/dev-python/sphinx-gallery/Manifest b/dev-python/sphinx-gallery/Manifest
18 new file mode 100644
19 index 00000000..34987bf
20 --- /dev/null
21 +++ b/dev-python/sphinx-gallery/Manifest
22 @@ -0,0 +1 @@
23 +DIST sphinx-gallery-0.1.7.tar.gz 59166 SHA256 594da5b4ed08e6531798c735608f4fe65a8bd394ea3b7b9194d9e659e48a4ea0 SHA512 0c14d35ed07db3988c9f119037676752e3f793a74000d7397f49e5b749a96db77ff4ba2e9ceb12993650e0c81042899a5056f3181e5360a738a5c62259c58ff5 WHIRLPOOL a307ddb0e4b0844ec823399fd8d00ea7fb7aa55cf243c63d7d6ad151cf3285c1f48eebb7f8e8f78b329688e9c73b54b5be0c14fe1ce264896f50af4dddd9d7b7
24
25 diff --git a/dev-python/sphinx-gallery/metadata.xml b/dev-python/sphinx-gallery/metadata.xml
26 new file mode 100644
27 index 00000000..d2a5651
28 --- /dev/null
29 +++ b/dev-python/sphinx-gallery/metadata.xml
30 @@ -0,0 +1,12 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>python@g.o</email>
36 + <name>Python</name>
37 + </maintainer>
38 + <upstream>
39 + <remote-id type="pypi">sphinx-gallery</remote-id>
40 + <remote-id type="github">sphinx-gallery/sphinx-gallery</remote-id>
41 + </upstream>
42 +</pkgmetadata>
43
44 diff --git a/dev-python/sphinx-gallery/sphinx-gallery-0.1.7.ebuild b/dev-python/sphinx-gallery/sphinx-gallery-0.1.7.ebuild
45 new file mode 100644
46 index 00000000..a1f4cb5
47 --- /dev/null
48 +++ b/dev-python/sphinx-gallery/sphinx-gallery-0.1.7.ebuild
49 @@ -0,0 +1,27 @@
50 +# Copyright 1999-2016 Gentoo Foundation
51 +# Distributed under the terms of the GNU General Public License v2
52 +# $Id$
53 +
54 +EAPI=6
55 +
56 +PYTHON_COMPAT=( python2_7 python3_{4,5} )
57 +
58 +inherit distutils-r1
59 +
60 +DESCRIPTION="Sphinx extension to automatically generate an examples gallery"
61 +HOMEPAGE="http://sphinx-gallery.readthedocs.io/"
62 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63 +
64 +LICENSE="BSD"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 +IUSE=""
68 +
69 +RDEPEND="
70 + dev-python/matplotlib[${PYTHON_USEDEP}]
71 + dev-python/pillow[${PYTHON_USEDEP}]
72 + dev-python/sphinx[${PYTHON_USEDEP}]
73 +"
74 +DEPEND="
75 + dev-python/setuptools[${PYTHON_USEDEP}]
76 +"