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/six/
Date: Sat, 05 Jun 2021 21:20:30
Message-Id: 1622927974.376146c335d578bbb0bbf516579ad033aca9fa62.mgorny@gentoo
1 commit: 376146c335d578bbb0bbf516579ad033aca9fa62
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 5 21:19:34 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 5 21:19:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=376146c3
7
8 dev-python/six: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/six/Manifest | 1 -
13 dev-python/six/six-1.15.0-r1.ebuild | 28 ----------------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/dev-python/six/Manifest b/dev-python/six/Manifest
17 index 2c93586d43e..3b56dd088a0 100644
18 --- a/dev-python/six/Manifest
19 +++ b/dev-python/six/Manifest
20 @@ -1,2 +1 @@
21 -DIST six-1.15.0.tar.gz 33917 BLAKE2B 57e852b6c35dd19e256814c0371cfbc26141b0f25a31f79a1cbd1b0cdd7d3cacf1236b96f5452f968cc426e6dff4d1ad70a9f2432bc361ba3c8c17fd40fe7582 SHA512 eb840ac17f433f1fc4af56de75cfbfe0b54e6a737bb23c453bf09a4a13d768d153e46064880dc763f4c5cc2785b78ea6d3d3b4a41fed181cb9064837e3f699a9
22 DIST six-1.16.0.tar.gz 34041 BLAKE2B 764f8da9a0d89e95af002c79c2b19e852fdec9a6819655c57be019b48bd65a5f7909473e71887e6080073f381f983c077487591d4e44297542cf6b9a29ba42b8 SHA512 076fe31c8f03b0b52ff44346759c7dc8317da0972403b84dfe5898179f55acdba6c78827e0f8a53ff20afe8b76432c6fe0d655a75c24259d9acbaa4d9e8015c0
23
24 diff --git a/dev-python/six/six-1.15.0-r1.ebuild b/dev-python/six/six-1.15.0-r1.ebuild
25 deleted file mode 100644
26 index 830bec098c8..00000000000
27 --- a/dev-python/six/six-1.15.0-r1.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 -
35 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python 2 and 3 compatibility library"
40 -HOMEPAGE="https://github.com/benjaminp/six https://pypi.org/project/six/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 -
47 -distutils_enable_sphinx documentation --no-autodoc
48 -distutils_enable_tests pytest
49 -
50 -python_test() {
51 - local deselect=()
52 - [[ ${EPYTHON} == pypy3 ]] && deselect+=(
53 - 'test_six.py::test_move_items[dbm_ndbm]'
54 - )
55 -
56 - epytest ${deselect[@]/#/--deselect }
57 -}