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 77BEB138350 for ; Sun, 1 Mar 2020 04:31:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC192E09C9; Sun, 1 Mar 2020 04:31:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 8BFF9E09C9 for ; Sun, 1 Mar 2020 04:31:10 +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 3AFE634F10B for ; Sun, 1 Mar 2020 04:31:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9C5E157 for ; Sun, 1 Mar 2020 04:31:06 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1583037056.0ba3f2decfa7b1b76ecb5c7b33c3be627340c271.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-github-alt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r2.ebuild X-VCS-Directories: dev-python/sphinxcontrib-github-alt/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 0ba3f2decfa7b1b76ecb5c7b33c3be627340c271 X-VCS-Branch: master Date: Sun, 1 Mar 2020 04:31:06 +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: 4af2dfb2-854c-45c2-abcc-5d0d55497dfb X-Archives-Hash: 7ec0d95aa48816126cab52902a84b525 commit: 0ba3f2decfa7b1b76ecb5c7b33c3be627340c271 Author: Andrey Grozin gentoo org> AuthorDate: Sun Mar 1 04:30:56 2020 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Sun Mar 1 04:30:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba3f2de sphinxcontrib-github-alt: add python3_8 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Andrey Grozin gentoo.org> .../sphinxcontrib-github-alt-1.1-r2.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r2.ebuild b/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r2.ebuild new file mode 100644 index 00000000000..a6dd4f90d8d --- /dev/null +++ b/dev-python/sphinxcontrib-github-alt/sphinxcontrib-github-alt-1.1-r2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +MY_PN="sphinxcontrib_github_alt" + +DESCRIPTION="Link to GitHub issues, pull requests, commits and users from Sphinx docs" +HOMEPAGE="https://github.com/jupyter/sphinxcontrib_github_alt" +SRC_URI="https://github.com/jupyter/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]" +BDEPEND=${RDEPEND} + +S="${WORKDIR}/${MY_PN}-${PV}"