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 91A3C138359 for ; Wed, 7 Oct 2020 07:28:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67816E092D; Wed, 7 Oct 2020 07:28:08 +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 2C8E8E092E for ; Wed, 7 Oct 2020 07:28:08 +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 04BD2340F55 for ; Wed, 7 Oct 2020 07:28:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90EA33A5 for ; Wed, 7 Oct 2020 07:28:03 +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: <1602055668.f2247b336beb039806ccf884bd6c86cf5cff87be.mgorny@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/mypy_extensions-0.4.3.ebuild X-VCS-Directories: dev-python/mypy_extensions/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f2247b336beb039806ccf884bd6c86cf5cff87be X-VCS-Branch: master Date: Wed, 7 Oct 2020 07:28:03 +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: ba75430e-6555-48ff-8e11-761792316592 X-Archives-Hash: 43bbf8bb7e35821396d8d43a1d643741 commit: f2247b336beb039806ccf884bd6c86cf5cff87be Author: Michał Górny gentoo org> AuthorDate: Wed Oct 7 07:21:10 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Oct 7 07:27:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2247b33 dev-python/mypy_extensions: Remove old Signed-off-by: Michał Górny gentoo.org> .../mypy_extensions/mypy_extensions-0.4.3.ebuild | 50 ---------------------- 1 file changed, 50 deletions(-) diff --git a/dev-python/mypy_extensions/mypy_extensions-0.4.3.ebuild b/dev-python/mypy_extensions/mypy_extensions-0.4.3.ebuild deleted file mode 100644 index 0536aa7c3de..00000000000 --- a/dev-python/mypy_extensions/mypy_extensions-0.4.3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python3_6 python3_7 python3_8 ) - -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 x86" -IUSE="doc test" -RESTRICT="!test? ( 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() { - "${PYTHON}" -m unittest discover tests -v || die "tests fail with ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/build/html/. ) - - distutils-r1_python_install_all -}