From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 54955139087 for ; Thu, 29 Dec 2016 19:56:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12640E0C25; Thu, 29 Dec 2016 19:56:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CCD65E0BDD for ; Thu, 29 Dec 2016 19:56:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A2802341688 for ; Thu, 29 Dec 2016 19:56:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DEA924F1 for ; Thu, 29 Dec 2016 19:56:40 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1483041362.d5aa6c1660c8bfe005f56074e4372307cbdc7a9e.bicatali@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-gallery/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx-gallery/Manifest dev-python/sphinx-gallery/metadata.xml dev-python/sphinx-gallery/sphinx-gallery-0.1.7.ebuild X-VCS-Directories: dev-python/sphinx-gallery/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: d5aa6c1660c8bfe005f56074e4372307cbdc7a9e X-VCS-Branch: master Date: Thu, 29 Dec 2016 19:56:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5822eedc-506e-4b96-8d5b-e2c34089b7de X-Archives-Hash: 6276073695c6442dbc43772cf2e84ff2 commit: d5aa6c1660c8bfe005f56074e4372307cbdc7a9e Author: Sébastien Fabbro gentoo org> AuthorDate: Thu Dec 29 18:54:00 2016 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Thu Dec 29 19:56:02 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5aa6c16 dev-python/sphinx-gallery: initial import Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/sphinx-gallery/Manifest | 1 + dev-python/sphinx-gallery/metadata.xml | 12 ++++++++++ .../sphinx-gallery/sphinx-gallery-0.1.7.ebuild | 27 ++++++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/dev-python/sphinx-gallery/Manifest b/dev-python/sphinx-gallery/Manifest new file mode 100644 index 00000000..34987bf --- /dev/null +++ b/dev-python/sphinx-gallery/Manifest @@ -0,0 +1 @@ +DIST sphinx-gallery-0.1.7.tar.gz 59166 SHA256 594da5b4ed08e6531798c735608f4fe65a8bd394ea3b7b9194d9e659e48a4ea0 SHA512 0c14d35ed07db3988c9f119037676752e3f793a74000d7397f49e5b749a96db77ff4ba2e9ceb12993650e0c81042899a5056f3181e5360a738a5c62259c58ff5 WHIRLPOOL a307ddb0e4b0844ec823399fd8d00ea7fb7aa55cf243c63d7d6ad151cf3285c1f48eebb7f8e8f78b329688e9c73b54b5be0c14fe1ce264896f50af4dddd9d7b7 diff --git a/dev-python/sphinx-gallery/metadata.xml b/dev-python/sphinx-gallery/metadata.xml new file mode 100644 index 00000000..d2a5651 --- /dev/null +++ b/dev-python/sphinx-gallery/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + Python + + + sphinx-gallery + sphinx-gallery/sphinx-gallery + + diff --git a/dev-python/sphinx-gallery/sphinx-gallery-0.1.7.ebuild b/dev-python/sphinx-gallery/sphinx-gallery-0.1.7.ebuild new file mode 100644 index 00000000..a1f4cb5 --- /dev/null +++ b/dev-python/sphinx-gallery/sphinx-gallery-0.1.7.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +DESCRIPTION="Sphinx extension to automatically generate an examples gallery" +HOMEPAGE="http://sphinx-gallery.readthedocs.io/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] +"