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 56223139694 for ; Sat, 13 May 2017 22:28:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A22D0E0C58; Sat, 13 May 2017 22:28:51 +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 6CB19E0C58 for ; Sat, 13 May 2017 22:28:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 778B633BE18 for ; Sat, 13 May 2017 22:28:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F74C303 for ; Sat, 13 May 2017 22:28:49 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1494714522.55f3b82a75db037eb65ed66c7ef99e6b47854cff.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/readme_renderer/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/readme_renderer/Manifest dev-python/readme_renderer/metadata.xml dev-python/readme_renderer/readme_renderer-17.2.ebuild X-VCS-Directories: dev-python/readme_renderer/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 55f3b82a75db037eb65ed66c7ef99e6b47854cff X-VCS-Branch: master Date: Sat, 13 May 2017 22:28:49 +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: 9fe27669-ca73-4ce8-baf1-8136ae87c65e X-Archives-Hash: 08e00fa6363ee7019a79e0fc9b69ac8d commit: 55f3b82a75db037eb65ed66c7ef99e6b47854cff Author: Tim Harder gentoo org> AuthorDate: Tue May 9 05:05:36 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat May 13 22:28:42 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55f3b82a dev-python/readme_renderer: initial import of readme module rename dev-python/readme_renderer/Manifest | 1 + dev-python/readme_renderer/metadata.xml | 12 ++++++++ .../readme_renderer/readme_renderer-17.2.ebuild | 33 ++++++++++++++++++++++ 3 files changed, 46 insertions(+) diff --git a/dev-python/readme_renderer/Manifest b/dev-python/readme_renderer/Manifest new file mode 100644 index 00000000000..25d000b81d6 --- /dev/null +++ b/dev-python/readme_renderer/Manifest @@ -0,0 +1 @@ +DIST readme_renderer-17.2.tar.gz 14643 SHA256 9deab442963a63a71ab494bf581b1c844473995a2357f4b3228a1df1c8cba8da SHA512 2c25eb24b04b88fa8522ff0068e3a3a7b57b035641d0053ff93c295dde50cc6f21af9eeca1061eef794f52b0aff184f97c95b3c232f02b308e09682e50a6d40e WHIRLPOOL b9bcbdfc5778e83b7f4aadaf764895f4263af60f98febac89acafa928dc28e4fbd1022e7660abe2051807df2154dd04bea9d3533fa9fa5cb67a9897853a5caa4 diff --git a/dev-python/readme_renderer/metadata.xml b/dev-python/readme_renderer/metadata.xml new file mode 100644 index 00000000000..654b2904975 --- /dev/null +++ b/dev-python/readme_renderer/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + Python + + + readme_renderer + pypa/readme_renderer + + diff --git a/dev-python/readme_renderer/readme_renderer-17.2.ebuild b/dev-python/readme_renderer/readme_renderer-17.2.ebuild new file mode 100644 index 00000000000..c10a9b24f69 --- /dev/null +++ b/dev-python/readme_renderer/readme_renderer-17.2.ebuild @@ -0,0 +1,33 @@ +# 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} pypy{,3} ) + +inherit distutils-r1 + +DESCRIPTION="a library for rendering \"readme\" descriptions for Warehouse" +HOMEPAGE="https://github.com/pypa/readme_renderer https://pypi.python.org/pypi/readme_renderer" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~hppa" +IUSE="test" + +RDEPEND=" + >=dev-python/bleach-2.0[${PYTHON_USEDEP}] + >=dev-python/docutils-0.13.1[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) +" + +DOCS=( README.rst ) + +python_test() { + py.test || die "Tests failed under ${EPYTHON}" +}