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 99B60138350 for ; Sat, 28 Mar 2020 08:34:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DB2BE0D74; Sat, 28 Mar 2020 08:34:13 +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 0071BE0D6F for ; Sat, 28 Mar 2020 08:34:12 +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 EF08434F904 for ; Sat, 28 Mar 2020 08:34:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67E5C1B4 for ; Sat, 28 Mar 2020 08:34:09 +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: <1585384435.aec4b3861389399e9e7b7d8bb6b3e00e0493f1aa.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/Manifest dev-python/mypy_extensions/mypy_extensions-0.4.1.ebuild X-VCS-Directories: dev-python/mypy_extensions/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: aec4b3861389399e9e7b7d8bb6b3e00e0493f1aa X-VCS-Branch: master Date: Sat, 28 Mar 2020 08:34:09 +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: a9ecbaa8-0fb0-40a7-be7c-e254ad46b076 X-Archives-Hash: 74ed4362e576d637f98402f07989755b commit: aec4b3861389399e9e7b7d8bb6b3e00e0493f1aa Author: Michał Górny gentoo org> AuthorDate: Sat Mar 28 08:30:17 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 28 08:33:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aec4b386 dev-python/mypy_extensions: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/mypy_extensions/Manifest | 1 - .../mypy_extensions/mypy_extensions-0.4.1.ebuild | 52 ---------------------- 2 files changed, 53 deletions(-) diff --git a/dev-python/mypy_extensions/Manifest b/dev-python/mypy_extensions/Manifest index 375a965bb53..94a678b25e7 100644 --- a/dev-python/mypy_extensions/Manifest +++ b/dev-python/mypy_extensions/Manifest @@ -1,2 +1 @@ -DIST mypy_extensions-0.4.1.tar.gz 3548 BLAKE2B 48ded2fefa384242f7feaabe8be840afa623ec89b53c91c51d403684fdae8c6a25e4f88cc9f30c31537958df551a5da42fdb13b49881266da62006843824cc84 SHA512 e862a17b07d2c922b460012798d27d925cdeed4b8dbe9a1e38cb125df5546ca87039ebf32ad4151820d3444ba729fb0eb01c59576084724eb4ca19c5c2a52ac9 DIST mypy_extensions-0.4.3.tar.gz 5545 BLAKE2B 8f1f988562390ee1ba3d90cafafec73c6fe080eef6b4321252d3b3aeffebf1ad13bdcae7ae75c69eac7bef91dcf3f846ae7f9a3f2ad6bad9de2bc8cfe5eed29f SHA512 22d8dc538cf6f77d97f4113dd34fce8095dd98944c7613fab2b3e71a3e9b7df1374654af41ead5c934f789ef1b72f54d980ab06f3ca28b8b4c6bb14ba1ca3ce2 diff --git a/dev-python/mypy_extensions/mypy_extensions-0.4.1.ebuild b/dev-python/mypy_extensions/mypy_extensions-0.4.1.ebuild deleted file mode 100644 index 7e051b17bf0..00000000000 --- a/dev-python/mypy_extensions/mypy_extensions-0.4.1.ebuild +++ /dev/null @@ -1,52 +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 ) - -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() { - 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 -}