From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 88B361386F1 for ; Sun, 9 Aug 2015 20:34:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7083E07F9; Sun, 9 Aug 2015 20:34:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4B671E07F9 for ; Sun, 9 Aug 2015 20:34:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9069034087C for ; Sun, 9 Aug 2015 20:33:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B9B412C for ; Sun, 9 Aug 2015 20:33:57 +0000 (UTC) From: "Alex Brandt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alex Brandt" Message-ID: <1439152404.eba86b3f4a80dbb799e43ef7b2d878425cf45475.alunduil@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-spelling/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinxcontrib-spelling/Manifest dev-python/sphinxcontrib-spelling/metadata.xml dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-2.1.2.ebuild X-VCS-Directories: dev-python/sphinxcontrib-spelling/ X-VCS-Committer: alunduil X-VCS-Committer-Name: Alex Brandt X-VCS-Revision: eba86b3f4a80dbb799e43ef7b2d878425cf45475 X-VCS-Branch: master Date: Sun, 9 Aug 2015 20:33:57 +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: 7a64d6b2-a8ac-43c5-8346-c156749de75a X-Archives-Hash: a1ed6ad394967f86cc994b9107f4428f commit: eba86b3f4a80dbb799e43ef7b2d878425cf45475 Author: Alex Brandt gentoo org> AuthorDate: Sun Aug 9 20:32:55 2015 +0000 Commit: Alex Brandt gentoo org> CommitDate: Sun Aug 9 20:33:24 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba86b3f dev-python/sphinxcontrib-spelling: add version 2.1.2 Package-Manager: portage-2.2.20 dev-python/sphinxcontrib-spelling/Manifest | 1 + dev-python/sphinxcontrib-spelling/metadata.xml | 10 +++++ .../sphinxcontrib-spelling-2.1.2.ebuild | 47 ++++++++++++++++++++++ 3 files changed, 58 insertions(+) diff --git a/dev-python/sphinxcontrib-spelling/Manifest b/dev-python/sphinxcontrib-spelling/Manifest new file mode 100644 index 0000000..c54633f --- /dev/null +++ b/dev-python/sphinxcontrib-spelling/Manifest @@ -0,0 +1 @@ +DIST sphinxcontrib-spelling-2.1.2.tar.gz 35411 SHA256 c5ac488141408564cb60f355c50efd90b826a9fc7723738a07ab907a0384f086 SHA512 993f371e064e8748eb61faae649fb293b154a35955ff84d86fd041f4e2cc4c6e22c686007a67c3b63b0c50fc01ed226708f27db347e58847a46ca733c997d51f WHIRLPOOL 3258a991dbeb36ee1a3da64c64d2f05a1978a2c9348be1c2112afaf0cb40414cfe5f139d199cad7f534ade40db61666c133d70bc0605bd878e414e1dbe0f7e6a diff --git a/dev-python/sphinxcontrib-spelling/metadata.xml b/dev-python/sphinxcontrib-spelling/metadata.xml new file mode 100644 index 0000000..02be8c5 --- /dev/null +++ b/dev-python/sphinxcontrib-spelling/metadata.xml @@ -0,0 +1,10 @@ + + + + + alunduil@gentoo.org + Alex Brandt + + + + diff --git a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-2.1.2.ebuild b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-2.1.2.ebuild new file mode 100644 index 0000000..edd93a4 --- /dev/null +++ b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-2.1.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) + +inherit distutils-r1 + +DESCRIPTION="Sphinx spelling extension" +HOMEPAGE="http://bitbucket.org/dhellmann/sphinxcontrib-spelling" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc test" + +CDEPEND=" + dev-python/pbr[${PYTHON_USEDEP}] + >=dev-python/pyenchant-1.6.5[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] ) + test? ( + ${CDEPEND} + dev-python/nose[${PYTHON_USEDEP}] + ) +" +RDEPEND="${CDEPEND}" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + nosetests || die "tests failed under ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/build/html/. ) + + distutils-r1_python_install_all +}