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 1CFBC138334 for ; Tue, 26 Feb 2019 22:05:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19AA8E0826; Tue, 26 Feb 2019 22:05:56 +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 C8D28E0826 for ; Tue, 26 Feb 2019 22:05:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C24B6335CDD for ; Tue, 26 Feb 2019 22:05:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B7B154C for ; Tue, 26 Feb 2019 22:05:50 +0000 (UTC) From: "Mike Auty" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Auty" Message-ID: <1551218733.9de96f9c5cb25772e3faef92a6a0d7ebbfe7be34.ikelos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mypy_extensions/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mypy_extensions/Manifest dev-python/mypy_extensions/metadata.xml dev-python/mypy_extensions/mypy_extensions-0.4.1.ebuild X-VCS-Directories: dev-python/mypy_extensions/ X-VCS-Committer: ikelos X-VCS-Committer-Name: Mike Auty X-VCS-Revision: 9de96f9c5cb25772e3faef92a6a0d7ebbfe7be34 X-VCS-Branch: master Date: Tue, 26 Feb 2019 22:05:50 +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: ccbbe1b5-f901-4458-8993-d759562d7355 X-Archives-Hash: b7880e4e830e4319799c61d4e55afc49 commit: 9de96f9c5cb25772e3faef92a6a0d7ebbfe7be34 Author: Mike Auty gentoo org> AuthorDate: Tue Feb 26 22:05:33 2019 +0000 Commit: Mike Auty gentoo org> CommitDate: Tue Feb 26 22:05:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9de96f9c dev-python/mypy_extensions: Add in version 0.4.1 to support mypy Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Mike Auty gentoo.org> dev-python/mypy_extensions/Manifest | 1 + dev-python/mypy_extensions/metadata.xml | 13 ++++++ .../mypy_extensions/mypy_extensions-0.4.1.ebuild | 51 ++++++++++++++++++++++ 3 files changed, 65 insertions(+) diff --git a/dev-python/mypy_extensions/Manifest b/dev-python/mypy_extensions/Manifest new file mode 100644 index 00000000000..be2ed82c6a1 --- /dev/null +++ b/dev-python/mypy_extensions/Manifest @@ -0,0 +1 @@ +DIST mypy_extensions-0.4.1.tar.gz 3548 BLAKE2B 48ded2fefa384242f7feaabe8be840afa623ec89b53c91c51d403684fdae8c6a25e4f88cc9f30c31537958df551a5da42fdb13b49881266da62006843824cc84 SHA512 e862a17b07d2c922b460012798d27d925cdeed4b8dbe9a1e38cb125df5546ca87039ebf32ad4151820d3444ba729fb0eb01c59576084724eb4ca19c5c2a52ac9 diff --git a/dev-python/mypy_extensions/metadata.xml b/dev-python/mypy_extensions/metadata.xml new file mode 100644 index 00000000000..3482185cc3f --- /dev/null +++ b/dev-python/mypy_extensions/metadata.xml @@ -0,0 +1,13 @@ + + + + + ikelos@gentoo.org + Mike Auty + + + + + python/mypy_extesions + + diff --git a/dev-python/mypy_extensions/mypy_extensions-0.4.1.ebuild b/dev-python/mypy_extensions/mypy_extensions-0.4.1.ebuild new file mode 100644 index 00000000000..fb4db7c72fb --- /dev/null +++ b/dev-python/mypy_extensions/mypy_extensions-0.4.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python3_5 python3_6 python3_7 ) + +inherit distutils-r1 + +DESCRIPTION="Optional static typing for Python" +HOMEPAGE="http://www.mypy-lang.org/" +SRC_URI="https://github.com/python/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +if [ "${PV}" == "9999" ]; then +inherit git-r3 +EGIT_REPO_URI="https://github.com/python/${PN}" +EGIT_COMMIT="master" +else +EGIT_REPO_URI="${PV}" +fi + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc test" + +RDEPEND=" + doc? ( + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] + ) +" +DEPEND=" + test? ( dev-python/flake8[${PYTHON_USEDEP}] ) + ${RDEPEND} +" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + local PYTHONPATH="$(pwd)" + + "${PYTHON}" runtests.py || die "tests failed under ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/build/html/. ) + + distutils-r1_python_install_all +}