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 1289F138454 for ; Thu, 10 Sep 2015 11:32:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6268D21C005; Thu, 10 Sep 2015 11:32:01 +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 C92F121C001 for ; Thu, 10 Sep 2015 11:32: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 65151340739 for ; Thu, 10 Sep 2015 11:31:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40CD6170 for ; Thu, 10 Sep 2015 11:31:55 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1441884653.65b60d25a0d2844f675c8cd7e6a363a5d611b3a1.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pdoc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pdoc/Manifest dev-python/pdoc/metadata.xml dev-python/pdoc/pdoc-0.3.1.ebuild X-VCS-Directories: dev-python/pdoc/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 65b60d25a0d2844f675c8cd7e6a363a5d611b3a1 X-VCS-Branch: master Date: Thu, 10 Sep 2015 11:31:55 +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: 7e663f73-7d1c-4ff8-93c3-fcdf2b3cad07 X-Archives-Hash: 275bb6a19e558c58c0a9bbc6353644ef commit: 65b60d25a0d2844f675c8cd7e6a363a5d611b3a1 Author: Justin Lecher gentoo org> AuthorDate: Thu Sep 10 11:30:47 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Sep 10 11:30:53 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b60d25 dev-python/pdoc: New package, ebuild written by me Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/pdoc/Manifest | 1 + dev-python/pdoc/metadata.xml | 14 ++++++++++++++ dev-python/pdoc/pdoc-0.3.1.ebuild | 26 ++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) diff --git a/dev-python/pdoc/Manifest b/dev-python/pdoc/Manifest new file mode 100644 index 0000000..db0bf58 --- /dev/null +++ b/dev-python/pdoc/Manifest @@ -0,0 +1 @@ +DIST pdoc-0.3.1.tar.gz 76065 SHA256 83b23c6dd83d45624d785778d5a3c3cb5541ecebdab4c48c554f98b797c0278f SHA512 1c36fc21198e9b58b6b809e01bd801be8afc2f7d44cbbbfff6d9ecf455111365957a1c72b7acce0458a5c18482c7088ae811371f9362012058ec35c90f10c6e9 WHIRLPOOL c999bb72aa413b2bbd778543ca6b77fe0b0f8e44ca8301b66cc5333eab0587e5a38a5ea32cbbba1e4ec2c34aa7df419adc72d5f109bc834bb723149d116269b4 diff --git a/dev-python/pdoc/metadata.xml b/dev-python/pdoc/metadata.xml new file mode 100644 index 0000000..f54c580 --- /dev/null +++ b/dev-python/pdoc/metadata.xml @@ -0,0 +1,14 @@ + + + + python + + jlec@gentoo.org + Justin Lecher + + + pxml + metagriffin/pxml + hpk42/pytest-cache + + diff --git a/dev-python/pdoc/pdoc-0.3.1.ebuild b/dev-python/pdoc/pdoc-0.3.1.ebuild new file mode 100644 index 0000000..430dfe5 --- /dev/null +++ b/dev-python/pdoc/pdoc-0.3.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4} ) + +inherit distutils-r1 + +DESCRIPTION="A simple program and library to auto generate API documentation for Python modules" +HOMEPAGE="https://pypi.python.org/pypi/pdoc https://github.com/BurntSushi/pdoc" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="Unlicense" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + dev-python/mako[${PYTHON_USEDEP}] + dev-python/markdown[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + "