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 B3998138334 for ; Sat, 7 Dec 2019 21:55:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0912FE0839; Sat, 7 Dec 2019 21:55:39 +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 D52C9E0839 for ; Sat, 7 Dec 2019 21:55:38 +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 C5BBD34D878 for ; Sat, 7 Dec 2019 21:55:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A125A8 for ; Sat, 7 Dec 2019 21:55:36 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1575755729.2edb3dcb57a562191f7e9f79d09bdea3b6d18e9c.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/intreehooks/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/intreehooks/Manifest dev-python/intreehooks/intreehooks-1.0.ebuild dev-python/intreehooks/metadata.xml X-VCS-Directories: dev-python/intreehooks/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 2edb3dcb57a562191f7e9f79d09bdea3b6d18e9c X-VCS-Branch: master Date: Sat, 7 Dec 2019 21:55:36 +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: 01234c5c-3b82-4ec9-b417-736fc8485f26 X-Archives-Hash: 4e4e87ebdd1982c4c080af72a6615c99 commit: 2edb3dcb57a562191f7e9f79d09bdea3b6d18e9c Author: Patrick McLean gentoo org> AuthorDate: Sat Dec 7 20:06:09 2019 +0000 Commit: Patrick McLean gentoo org> CommitDate: Sat Dec 7 21:55:29 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2edb3dcb dev-python/intreehooks: New package Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: Patrick McLean gentoo.org> dev-python/intreehooks/Manifest | 1 + dev-python/intreehooks/intreehooks-1.0.ebuild | 40 +++++++++++++++++++++++++++ dev-python/intreehooks/metadata.xml | 12 ++++++++ 3 files changed, 53 insertions(+) diff --git a/dev-python/intreehooks/Manifest b/dev-python/intreehooks/Manifest new file mode 100644 index 00000000000..cde19e0d648 --- /dev/null +++ b/dev-python/intreehooks/Manifest @@ -0,0 +1 @@ +DIST intreehooks-1.0.tar.gz 2701 BLAKE2B 2c82bae05cf3fc3bde13e8dd2ffb9d1ef79edc6711b5038f6f9b3dddd863492be24a425bf848c9868ecf730f813243fb5fa50ebfad52b44341be18e72727f195 SHA512 5a020dd6bd7994eca5f476618f57e2d86567756fae74f6fa50b6fbc96accfe8db910f3175bafa3ce85f37b05edc05ca1042dcec78407a241cfaffc0a0e997f4e diff --git a/dev-python/intreehooks/intreehooks-1.0.ebuild b/dev-python/intreehooks/intreehooks-1.0.ebuild new file mode 100644 index 00000000000..a2471a84947 --- /dev/null +++ b/dev-python/intreehooks/intreehooks-1.0.ebuild @@ -0,0 +1,40 @@ +# 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,8} pypy{,3} ) +inherit distutils-r1 + +DESCRIPTION="Load a PEP 517 backend from inside the source tree" +HOMEPAGE="https://pypi.org/project/intreehooks https://github.com/takluyver/intreehooks" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +RDEPEND=" + dev-python/toml[${PYTHON_USEDEP}] +" +BDEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_prepare_all() { + # replace pytoml with toml + sed -e 's:pytoml:toml:' \ + -i setup.py intreehooks.py || die + + distutils-r1_python_prepare_all +} + +python_install_all() { + local -a DOCS=( README.rst ) + use examples && dodoc -r examples + + distutils-r1_python_install_all +} diff --git a/dev-python/intreehooks/metadata.xml b/dev-python/intreehooks/metadata.xml new file mode 100644 index 00000000000..34d6356499c --- /dev/null +++ b/dev-python/intreehooks/metadata.xml @@ -0,0 +1,12 @@ + + + + + chutzpah@gentoo.org + Patrick McLean + + + intreehooks + takluyver/intreehooks + +