Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/typed-ast/
Date: Fri, 27 May 2022 19:55:49
Message-Id: 1653681302.534676575c0cf394ac31e038d870de2c1a958166.mgorny@gentoo
1 commit: 534676575c0cf394ac31e038d870de2c1a958166
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 19:55:02 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 19:55:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53467657
7
8 dev-python/typed-ast: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/typed-ast/Manifest | 1 -
13 dev-python/typed-ast/typed-ast-1.5.2.ebuild | 24 ------------------------
14 2 files changed, 25 deletions(-)
15
16 diff --git a/dev-python/typed-ast/Manifest b/dev-python/typed-ast/Manifest
17 index f7159225a2dd..d97bb8b2ae2d 100644
18 --- a/dev-python/typed-ast/Manifest
19 +++ b/dev-python/typed-ast/Manifest
20 @@ -1,4 +1,3 @@
21 DIST typed_ast-1.4.3.tar.gz 210893 BLAKE2B 9e0bbaac73d97c13303c783d4e91b015570d9b9ad74361e1bcfe67259982459003ea6c24602ce004fe1447c4375090d5fa58006e18af28da256f6b25d9aa20b1 SHA512 7ac06e277c883afd1a7161601ffca0114aa63db257695a4bf4c64d819a7192fe52167edb57991aefc7accc6a9902b5faf2ba9e4032c4b9be31f1db7a091607c9
22 -DIST typed_ast-1.5.2.tar.gz 252310 BLAKE2B c36ab31e4c266de38a07935fc72ece62087bc52a6ebde401f9b2dcc641af064828572fa6e903dbdfb0c573ced10686b8dba995d316a5f7a7ee68efd3a4e9520c SHA512 7da72fc0c4fcb74cb41914765baea5c7f52b1e8a5c58883877e702765be59d3dd8c7f73bd5759a65781d04fdecbcf46160ff4402578a92685f25163e12b93558
23 DIST typed_ast-1.5.3.tar.gz 252510 BLAKE2B e258b6c931d31a528091be2e5f7f9bf55f7fa48a14221a95e77924c18879480a34cd8293f9c1125810a43ab001195da2b36637aaee2c9b895b346cc94cab6577 SHA512 481fffc79d99f1f7c0009a9a4f9151745d17269827ea6306f35a015dc9e4cc3d85068948e157076fecff87d9301c18f637edfe7f26d63779ccfe38bf10105969
24 DIST typed_ast-1.5.4.tar.gz 252491 BLAKE2B 07a97a881cd4c015897ca85e0b46acd6f63c48dbc69f4d73ad5e3bfd42b1b995a614d97b81c8d21c8d5dcbdddc838bffde033e11b55d866fa8e8db0aa8048731 SHA512 1ff27316d8e07219ad5b3744c167b7a7dfebb992f8ebc4623bf510f8b5d2b939cc9f659428e3228a42cdec0e63215cca973458aa914f2efdc59d5f33c150e153
25
26 diff --git a/dev-python/typed-ast/typed-ast-1.5.2.ebuild b/dev-python/typed-ast/typed-ast-1.5.2.ebuild
27 deleted file mode 100644
28 index 2699fccee1a8..000000000000
29 --- a/dev-python/typed-ast/typed-ast-1.5.2.ebuild
30 +++ /dev/null
31 @@ -1,24 +0,0 @@
32 -# Copyright 1999-2022 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -PYTHON_COMPAT=( python3_{8..10} )
38 -DISTUTILS_USE_PEP517=setuptools
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Python typed-ast backported"
42 -HOMEPAGE="https://pypi.org/project/typed-ast/ https://github.com/python/typed_ast"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/_}/${P/-/_}.tar.gz"
44 -S="${WORKDIR}/${P/-/_}"
45 -
46 -LICENSE="Apache-2.0 MIT"
47 -SLOT="0"
48 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~x64-macos"
49 -
50 -distutils_enable_tests pytest
51 -
52 -python_test() {
53 - cd "${BUILD_DIR}" || die
54 - epytest
55 -}