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 2E365138335 for ; Fri, 9 Nov 2018 13:43:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0D99E0D86; Fri, 9 Nov 2018 13:43:00 +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 69997E0D84 for ; Fri, 9 Nov 2018 13:43:00 +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 0BB5A335CE4 for ; Fri, 9 Nov 2018 13:42:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B8841466 for ; Fri, 9 Nov 2018 13:42:56 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1541770943.6f430a85ac70a14c16a75c9a4284a545c08df8f7.alexxy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/characteristic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/characteristic/characteristic-14.3.0-r2.ebuild X-VCS-Directories: dev-python/characteristic/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 6f430a85ac70a14c16a75c9a4284a545c08df8f7 X-VCS-Branch: master Date: Fri, 9 Nov 2018 13:42:56 +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: 33ce4f3d-264c-4666-989a-fcc608ff9fa5 X-Archives-Hash: a9d6c14c982d854e8cc6d300043e3e6a commit: 6f430a85ac70a14c16a75c9a4284a545c08df8f7 Author: Alexey Shvetsov gentoo org> AuthorDate: Fri Nov 9 13:25:27 2018 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Fri Nov 9 13:42:23 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f430a85 dev-python/characteristic: eapi7 + py3_7 Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Alexey Shvetsov gentoo.org> .../characteristic/characteristic-14.3.0-r2.ebuild | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/dev-python/characteristic/characteristic-14.3.0-r2.ebuild b/dev-python/characteristic/characteristic-14.3.0-r2.ebuild new file mode 100644 index 00000000000..c13a2266947 --- /dev/null +++ b/dev-python/characteristic/characteristic-14.3.0-r2.ebuild @@ -0,0 +1,42 @@ +# 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="Python attributes without the boilerplate" +HOMEPAGE="https://characteristic.readthedocs.org/ https://github.com/hynek/characteristic" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd" +IUSE="doc test" + +RDEPEND="" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +python_prepare_all() { + # Prevent un-needed download during build + sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/conf.py || die + distutils-r1_python_prepare_all +} + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + esetup.py test +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +}