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 3E47B138334 for ; Wed, 8 May 2019 14:41:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65DB6E0900; Wed, 8 May 2019 14:41:47 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 483D7E0900 for ; Wed, 8 May 2019 14:41:47 +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 16F34343C7C for ; Wed, 8 May 2019 14:41:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5913C452 for ; Wed, 8 May 2019 14:41:44 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1557326476.07c87853958f6bd19d6cce29687bbfaa05c9b515.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sybil/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sybil/Manifest dev-python/sybil/metadata.xml dev-python/sybil/sybil-1.2.0.ebuild X-VCS-Directories: dev-python/sybil/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 07c87853958f6bd19d6cce29687bbfaa05c9b515 X-VCS-Branch: master Date: Wed, 8 May 2019 14:41:44 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ae1740d3-3269-4c17-a10c-f95c9ed9801c X-Archives-Hash: 91bd6c414e6bb9d5c3dab91bb0600cd8 commit: 07c87853958f6bd19d6cce29687bbfaa05c9b515 Author: Virgil Dupras gentoo org> AuthorDate: Wed May 8 14:07:29 2019 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Wed May 8 14:41:16 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07c87853 dev-python/sybil: new package Needed for dev-python/textfixtures bump Signed-off-by: Virgil Dupras gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 dev-python/sybil/Manifest | 1 + dev-python/sybil/metadata.xml | 12 ++++++++++++ dev-python/sybil/sybil-1.2.0.ebuild | 19 +++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-python/sybil/Manifest b/dev-python/sybil/Manifest new file mode 100644 index 00000000000..4fd32cf0021 --- /dev/null +++ b/dev-python/sybil/Manifest @@ -0,0 +1 @@ +DIST sybil-1.2.0.tar.gz 28720 BLAKE2B fc2fda9763a33cf89f47b5edf3aacf1d3c9ba712cc6e292dce0549393f2177afb6ff058e6c4ac96b0ffcc44149dab4c8da5da50ef6850555e374ca25906b1e14 SHA512 9355bfe2873eb9cec866a1c267deb876f3e6b1e452e0b7c951e5ffb642e79cb6602bc81384ff4e5bfff1adc0be2c95bcfa291d34b7690feae9b280a92b6b5c85 diff --git a/dev-python/sybil/metadata.xml b/dev-python/sybil/metadata.xml new file mode 100644 index 00000000000..b56cda1be74 --- /dev/null +++ b/dev-python/sybil/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + Python + + + sybil + cjw296/sybil + + diff --git a/dev-python/sybil/sybil-1.2.0.ebuild b/dev-python/sybil/sybil-1.2.0.ebuild new file mode 100644 index 00000000000..6273cc68d1a --- /dev/null +++ b/dev-python/sybil/sybil-1.2.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) +inherit distutils-r1 + +DESCRIPTION="Automated testing for the examples in your documentation" +HOMEPAGE="https://github.com/cjw296/sybil" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="${DEPEND}" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}]"