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 F056E1382C5 for ; Thu, 20 May 2021 19:53:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CD6CE083E; Thu, 20 May 2021 19:53:49 +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 EDCA3E0841 for ; Thu, 20 May 2021 19:53:48 +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 8B2CD340988 for ; Thu, 20 May 2021 19:53:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B192729 for ; Thu, 20 May 2021 19:53:46 +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: <1621540422.6e4773fb9a5069d8f9959556e1c74908b74ee302.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/typed-ast/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/typed-ast/Manifest dev-python/typed-ast/typed-ast-1.4.2.ebuild X-VCS-Directories: dev-python/typed-ast/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6e4773fb9a5069d8f9959556e1c74908b74ee302 X-VCS-Branch: master Date: Thu, 20 May 2021 19:53:46 +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: 1649aa14-4acc-4870-a191-485fb0b5a4db X-Archives-Hash: 0416efeb0f3d55d8dc0363323658b664 commit: 6e4773fb9a5069d8f9959556e1c74908b74ee302 Author: Michał Górny gentoo org> AuthorDate: Thu May 20 19:30:53 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu May 20 19:53:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e4773fb dev-python/typed-ast: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/typed-ast/Manifest | 1 - dev-python/typed-ast/typed-ast-1.4.2.ebuild | 23 ----------------------- 2 files changed, 24 deletions(-) diff --git a/dev-python/typed-ast/Manifest b/dev-python/typed-ast/Manifest index 3e2e8e9f819..12650b008bc 100644 --- a/dev-python/typed-ast/Manifest +++ b/dev-python/typed-ast/Manifest @@ -1,2 +1 @@ -DIST typed_ast-1.4.2.tar.gz 208583 BLAKE2B fb94967409c073b3390a133232259605aab0ee893fe53deb0e97a07c814b1c2021815beab4fa680653f75a44b53eb3f02d7c9e330cf51195c2dd668762c9e0be SHA512 9a46f2a4c48bd267445a773463771824be958dfdd1a2df21356d0a763ee2029b51d5b0fddeb16df202f89ba86019640ab45ba520fdad5c550250fe2a135605fe DIST typed_ast-1.4.3.tar.gz 210893 BLAKE2B 9e0bbaac73d97c13303c783d4e91b015570d9b9ad74361e1bcfe67259982459003ea6c24602ce004fe1447c4375090d5fa58006e18af28da256f6b25d9aa20b1 SHA512 7ac06e277c883afd1a7161601ffca0114aa63db257695a4bf4c64d819a7192fe52167edb57991aefc7accc6a9902b5faf2ba9e4032c4b9be31f1db7a091607c9 diff --git a/dev-python/typed-ast/typed-ast-1.4.2.ebuild b/dev-python/typed-ast/typed-ast-1.4.2.ebuild deleted file mode 100644 index b4dc7f7e211..00000000000 --- a/dev-python/typed-ast/typed-ast-1.4.2.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) -inherit distutils-r1 - -DESCRIPTION="Python typed-ast backported" -HOMEPAGE="https://pypi.org/project/typed-ast/ https://github.com/python/typed_ast" -SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/_}/${P/-/_}.tar.gz" -S="${WORKDIR}/${P/-/_}" - -LICENSE="Apache-2.0 MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~x64-macos" - -distutils_enable_tests pytest - -python_test() { - cd "${BUILD_DIR}" || die - epytest -}