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/sortedcontainers/
Date: Thu, 24 Jun 2021 08:20:51
Message-Id: 1624522828.625de796f73460ae68171a60012a54936eff9c9a.mgorny@gentoo
1 commit: 625de796f73460ae68171a60012a54936eff9c9a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 24 08:02:14 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 24 08:20:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=625de796
7
8 dev-python/sortedcontainers: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sortedcontainers/Manifest | 1 -
13 .../sortedcontainers/sortedcontainers-2.3.0.ebuild | 28 ----------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/dev-python/sortedcontainers/Manifest b/dev-python/sortedcontainers/Manifest
17 index 9c855ff5be0..622e7ad2d75 100644
18 --- a/dev-python/sortedcontainers/Manifest
19 +++ b/dev-python/sortedcontainers/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-sortedcontainers-2.3.0.gh.tar.gz 9228968 BLAKE2B cdff8230d4e4ac42a89ed3192666ebf22cd48a4475f1dc173cffb0339c7f27e9cdfde1fb631daadf04adf2c00bed8a924e1202712d0ebcbd591f5542de863461 SHA512 0488e2f9f07ea7e4737ade69441f02614b63cfccb32a71af4e5953001bfa840d2e113a36a0a0a6d4c1e7fdd920ac3937b0baaea522d742547a4d81a99b8d1a6c
22 DIST python-sortedcontainers-2.4.0.gh.tar.gz 9229380 BLAKE2B ca9348ab7d467b2a81126217451262bb0547901b953edc3bba7c87c67b415eef5c3d454a08d227ebc8b213c1cc7db6262e864511fe67beefe865014ae5fc5977 SHA512 f80185c6f95a85cc78f88f6f6cf389eb48be22cf94d5fcd84f3592873f17de37ec7f44c1627b7f02956ac4b4f74ca4febefc47d3c6232f70ee05dbb2449ad770
23
24 diff --git a/dev-python/sortedcontainers/sortedcontainers-2.3.0.ebuild b/dev-python/sortedcontainers/sortedcontainers-2.3.0.ebuild
25 deleted file mode 100644
26 index 8f7ca5dd0de..00000000000
27 --- a/dev-python/sortedcontainers/sortedcontainers-2.3.0.ebuild
28 +++ /dev/null
29 @@ -1,28 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
35 -
36 -inherit distutils-r1
37 -
38 -MY_P=python-${P}
39 -DESCRIPTION="Python library to sort collections and containers"
40 -HOMEPAGE="http://www.grantjenks.com/docs/sortedcontainers/
41 - https://pypi.org/project/sortedcontainers/
42 - https://github.com/grantjenks/python-sortedcontainers/"
43 -SRC_URI="
44 - https://github.com/grantjenks/python-sortedcontainers/archive/v${PV}.tar.gz
45 - -> ${MY_P}.gh.tar.gz"
46 -S=${WORKDIR}/${MY_P}
47 -
48 -LICENSE="Apache-2.0"
49 -SLOT="0"
50 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
51 -
52 -distutils_enable_tests pytest
53 -
54 -python_test() {
55 - local -x PYTHONPATH=.
56 - epytest --ignore docs/conf.py
57 -}