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 82691138334 for ; Thu, 18 Oct 2018 20:02:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D372E0A7E; Thu, 18 Oct 2018 20:02:27 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A36FE0A7E for ; Thu, 18 Oct 2018 20:02:26 +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 E1578335C58 for ; Thu, 18 Oct 2018 20:02:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C452391 for ; Thu, 18 Oct 2018 20:02:23 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1539892933.a003b24d84ba52220db3f37ec2cf71d608bb1ba0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pallets-sphinx-themes/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pallets-sphinx-themes/Manifest dev-python/pallets-sphinx-themes/metadata.xml dev-python/pallets-sphinx-themes/pallets-sphinx-themes-1.1.2.ebuild X-VCS-Directories: dev-python/pallets-sphinx-themes/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a003b24d84ba52220db3f37ec2cf71d608bb1ba0 X-VCS-Branch: master Date: Thu, 18 Oct 2018 20:02:23 +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: 49872c36-cb8d-4e62-9690-3f7f910eafe5 X-Archives-Hash: 37203365005e0cd9afd4ea1bad7565ef commit: a003b24d84ba52220db3f37ec2cf71d608bb1ba0 Author: Tomas Mozes gmail com> AuthorDate: Wed Oct 10 11:22:02 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Oct 18 20:02:13 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a003b24d dev-python/pallets-sphinx-themes: add package required by click Signed-off-by: Tomáš Mózes gmail.com> Package-Manager: Portage-2.3.50, Repoman-2.3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/pallets-sphinx-themes/Manifest | 1 + dev-python/pallets-sphinx-themes/metadata.xml | 11 +++++++++++ .../pallets-sphinx-themes-1.1.2.ebuild | 18 ++++++++++++++++++ 3 files changed, 30 insertions(+) diff --git a/dev-python/pallets-sphinx-themes/Manifest b/dev-python/pallets-sphinx-themes/Manifest new file mode 100644 index 00000000000..3eecb453dd8 --- /dev/null +++ b/dev-python/pallets-sphinx-themes/Manifest @@ -0,0 +1 @@ +DIST pallets-sphinx-themes-1.1.2.tar.gz 17054 BLAKE2B 2c106be4a8ba68c6c270035ad6764bf87c65a20ca3515991f6287e3bd6a280d3ad0df121c6bad995fe8964425bee4c6ec4d229eef15489c3ae4e4e98eebe4d22 SHA512 0537f1e24b22612720909f1e19f2893b35622411d72298a407cb19318eaf33a0f7c97ee6f69874a172c135b65c9c16726115c1decd6d7a3d6cbda3e1dbdb50fb diff --git a/dev-python/pallets-sphinx-themes/metadata.xml b/dev-python/pallets-sphinx-themes/metadata.xml new file mode 100644 index 00000000000..8c8ac13155b --- /dev/null +++ b/dev-python/pallets-sphinx-themes/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + Pallets-Sphinx-Themes + + diff --git a/dev-python/pallets-sphinx-themes/pallets-sphinx-themes-1.1.2.ebuild b/dev-python/pallets-sphinx-themes/pallets-sphinx-themes-1.1.2.ebuild new file mode 100644 index 00000000000..72e586a5bfb --- /dev/null +++ b/dev-python/pallets-sphinx-themes/pallets-sphinx-themes-1.1.2.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Sphinx themes for Pallets and related projects" +HOMEPAGE="https://github.com/pallets/pallets-sphinx-themes" +SRC_URI="https://github.com/pallets/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"