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 67647139694 for ; Tue, 16 May 2017 11:40:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93605E0CC9; Tue, 16 May 2017 11:40:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 612D2E0CC9 for ; Tue, 16 May 2017 11:40:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 06EE03416AF for ; Tue, 16 May 2017 11:40:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FE6B7471 for ; Tue, 16 May 2017 11:40:52 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1494934059.2864b10d3da3d29d8c61524dc792ec359fffcbd0.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-testing/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx-testing/Manifest dev-python/sphinx-testing/metadata.xml dev-python/sphinx-testing/sphinx-testing-0.7.2.ebuild X-VCS-Directories: dev-python/sphinx-testing/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 2864b10d3da3d29d8c61524dc792ec359fffcbd0 X-VCS-Branch: master Date: Tue, 16 May 2017 11:40:52 +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: ae980051-0558-43cd-856e-d22cc7c2af57 X-Archives-Hash: 0df437a43b481b1cabdfb5fa3748b588 commit: 2864b10d3da3d29d8c61524dc792ec359fffcbd0 Author: Manuel Rüger gentoo org> AuthorDate: Tue May 16 11:27:39 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Tue May 16 11:27:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2864b10d dev-python/sphinx-testing: Initial version Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-python/sphinx-testing/Manifest | 1 + dev-python/sphinx-testing/metadata.xml | 11 +++++++++ .../sphinx-testing/sphinx-testing-0.7.2.ebuild | 27 ++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/dev-python/sphinx-testing/Manifest b/dev-python/sphinx-testing/Manifest new file mode 100644 index 00000000000..e466695cc56 --- /dev/null +++ b/dev-python/sphinx-testing/Manifest @@ -0,0 +1 @@ +DIST sphinx-testing-0.7.2.tar.gz 11040 SHA256 9d30f93007620e137b33edf19f52a7225eab853546b7e588ef09d1342e821e94 SHA512 d267c74d97443db2df69914a825da969021e37fc61b8a664ef382504fa826387a95230bf9259b58c6f26721f33985fa2168d2714342a2166b59740cf1b3ad724 WHIRLPOOL 78ea240607f62c7c3ca98fc2ba0ec197b54aba6c0782d82c4da8fd695a37baae4d0b9bcd056b790dc610979a0031cce250d19c8360ffeb07463e4335af0df026 diff --git a/dev-python/sphinx-testing/metadata.xml b/dev-python/sphinx-testing/metadata.xml new file mode 100644 index 00000000000..605d625f69e --- /dev/null +++ b/dev-python/sphinx-testing/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + sphinx-doc/sphinx-testing + + diff --git a/dev-python/sphinx-testing/sphinx-testing-0.7.2.ebuild b/dev-python/sphinx-testing/sphinx-testing-0.7.2.ebuild new file mode 100644 index 00000000000..71a84edcf47 --- /dev/null +++ b/dev-python/sphinx-testing/sphinx-testing-0.7.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="Testing utility classes and functions for Sphinx extensions" +HOMEPAGE="https://github.com/sphinx-doc/sphinx-testing" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}]" + +DEPEND="${RDEPEND} + test? ( dev-python/nose[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 'python2*') )" + +python_test() { + nosetests || die +}