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/decorator/
Date: Thu, 24 Jun 2021 08:20:51
Message-Id: 1624522835.39ffdb8011db843d80964660acc83c3e20c4035c.mgorny@gentoo
1 commit: 39ffdb8011db843d80964660acc83c3e20c4035c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 24 08:07:07 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 24 08:20:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39ffdb80
7
8 dev-python/decorator: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/decorator/Manifest | 1 -
13 dev-python/decorator/decorator-5.0.7.ebuild | 21 ---------------------
14 2 files changed, 22 deletions(-)
15
16 diff --git a/dev-python/decorator/Manifest b/dev-python/decorator/Manifest
17 index 66c126aa7f6..5ec10d14cd3 100644
18 --- a/dev-python/decorator/Manifest
19 +++ b/dev-python/decorator/Manifest
20 @@ -1,3 +1,2 @@
21 DIST decorator-4.4.2.tar.gz 33629 BLAKE2B 5b2c6a1b6aba293d4b93444d4613e3c9af16bd9d6d80ae9eb21112a4a16397ff67e1f648e8118beeb7d17755a2f1bd37b867f73129c42ef7f8654d1c1f609e5f SHA512 c068efd4e70764ac447b772c9c29625c2180dad256b2b4e46a50a8479fc1d7de09b114c2ba11bb37dd58774ed9460d2e0ea9fa76061833a2d3c2676ac91a0db1
22 -DIST decorator-5.0.7.tar.gz 34292 BLAKE2B 93f69256e21fd9867faf8c80c6a62834e5206aeb552efb757badeb0f0ec0085699a520542feac2bfa1a0165c0a40f86ecf70e5717c10801bed28d1acd7397216 SHA512 78ae542b2f20d3d1714cf13120b14db308d73b866591c8ae42d69103a11e8d05a553438619bb68730310857587746e9d211ec4cf4b3fb5fbbcef030183b65294
23 DIST decorator-5.0.9.tar.gz 34544 BLAKE2B c7dfafd9d7354d075a154ba9bd3aa2bed52454e3412ce22ed2cd47f4c1ec94f601c754bd270c1a2d9447a087ce114579d3b2b2340721dfd4aaac1e2d1f801b93 SHA512 8b46370bbc9cff5208823af60f31779b0ee02e03c796223ddfeb473f7c36bf7ee7da48c5712eea89ca8a96ef32695ff31c4902a76284caf543cf4937a0bd7aa5
24
25 diff --git a/dev-python/decorator/decorator-5.0.7.ebuild b/dev-python/decorator/decorator-5.0.7.ebuild
26 deleted file mode 100644
27 index 535b01d398c..00000000000
28 --- a/dev-python/decorator/decorator-5.0.7.ebuild
29 +++ /dev/null
30 @@ -1,21 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( pypy3 python3_{7..10} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Simplifies the usage of decorators for the average programmer"
40 -HOMEPAGE="https://github.com/micheles/decorator https://pypi.org/project/decorator/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
46 -
47 -DOCS=( CHANGES.md )
48 -
49 -python_test() {
50 - "${EPYTHON}" src/tests/test.py -v || die "Tests failed with ${EPYTHON}"
51 -}