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/, dev-python/six/files/
Date: Sun, 29 Mar 2020 08:20:36
Message-Id: 1585469961.e81e70d36dd2011a8233d14a8744786a543d6e2a.mgorny@gentoo
1 commit: e81e70d36dd2011a8233d14a8744786a543d6e2a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 08:00:01 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 08:19:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e81e70d3
7
8 dev-python/six: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/six/Manifest | 2 --
13 dev-python/six/files/1.9.0-mapping.patch | 12 ----------
14 dev-python/six/six-1.12.0.ebuild | 40 --------------------------------
15 dev-python/six/six-1.13.0.ebuild | 36 ----------------------------
16 4 files changed, 90 deletions(-)
17
18 diff --git a/dev-python/six/Manifest b/dev-python/six/Manifest
19 index 3459d910c0e..6da6ad3d625 100644
20 --- a/dev-python/six/Manifest
21 +++ b/dev-python/six/Manifest
22 @@ -1,3 +1 @@
23 -DIST six-1.12.0.tar.gz 32725 BLAKE2B f40621076a7bb2b3b86d9f6ee49056a598e4853c6150952902053b8cfde86e562a7656b6ca3c3108f407d392cf7c1164a61b36142efd565eda909b8733c0bedb SHA512 937728372edf1e0ac13bbd706723d0de35e015c30d0ae41f789c5ed2e3669bb0db70cdc6e036ec2d437a6c4aa0d5d1e727b6d09ac34cca7e4e92e5d3b4775151
24 -DIST six-1.13.0.tar.gz 33726 BLAKE2B 9910a72eea4adc030710b67252d01fd74ce4205bd4e0ccf662bb2bce8837853cf341c765e4f9ba2db3aaeca050dd2b1ccabefacf5c71383dad1d275326313ef6 SHA512 55eb8e23e529cb0d2ab9e7c85868e695f36c8235e914b1548eb4b9fd561e4237266bf1839457f15a9513d57a343cbf8ab809d6187499300791fd9356854fcb00
25 DIST six-1.14.0.tar.gz 33857 BLAKE2B 711ef5b79118c1280c9868688869cc475668c248e6b0c2061145818842d5b4c28809d86b1388709af24f6e92fe5926ea6261f1b85c62db749f79664cbad93e4d SHA512 4dea0f4e7961e8b582d665501c65852dc3b73516a0b6f78b0888c8670f1450df58bd3eea418777f41080b842ab6c3d8633be1034bcf920192e5590d5316e2c9e
26
27 diff --git a/dev-python/six/files/1.9.0-mapping.patch b/dev-python/six/files/1.9.0-mapping.patch
28 deleted file mode 100644
29 index 4423eacbbba..00000000000
30 --- a/dev-python/six/files/1.9.0-mapping.patch
31 +++ /dev/null
32 @@ -1,12 +0,0 @@
33 -Patch prevents downloading non essential .inv files during the doc build
34 -diff -ur six-1.5.2.orig/documentation/conf.py six-1.5.2/documentation/conf.py
35 ---- a/documentation/conf.py 2013-09-15 21:52:34.000000000 +0800
36 -+++ b/documentation/conf.py 2014-01-07 18:19:24.958916446 +0800
37 -@@ -211,7 +211,3 @@
38 - [u"Benjamin Peterson"], 1)
39 - ]
40 -
41 --# -- Intersphinx ---------------------------------------------------------------
42 --
43 --intersphinx_mapping = {"py2" : ("https://docs.python.org/2/", None),
44 -- "py3" : ("https://docs.python.org/3/", None)}
45
46 diff --git a/dev-python/six/six-1.12.0.ebuild b/dev-python/six/six-1.12.0.ebuild
47 deleted file mode 100644
48 index 95493c46ccc..00000000000
49 --- a/dev-python/six/six-1.12.0.ebuild
50 +++ /dev/null
51 @@ -1,40 +0,0 @@
52 -# Copyright 1999-2020 Gentoo Authors
53 -# Distributed under the terms of the GNU General Public License v2
54 -
55 -EAPI=6
56 -
57 -PYTHON_COMPAT=( python2_7 python3_{6,7} pypy3 )
58 -
59 -inherit distutils-r1
60 -
61 -DESCRIPTION="Python 2 and 3 compatibility library"
62 -HOMEPAGE="https://github.com/benjaminp/six https://pypi.org/project/six/"
63 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
64 -
65 -LICENSE="MIT"
66 -SLOT="0"
67 -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
68 -IUSE="doc test"
69 -RESTRICT="!test? ( test )"
70 -
71 -DEPEND="
72 - dev-python/setuptools[${PYTHON_USEDEP}]
73 - doc? ( dev-python/sphinx )
74 - test? ( >=dev-python/pytest-2.2.0[${PYTHON_USEDEP}] )"
75 -
76 -PATCHES=(
77 - "${FILESDIR}"/1.9.0-mapping.patch
78 -)
79 -
80 -python_compile_all() {
81 - use doc && emake -C documentation html
82 -}
83 -
84 -python_test() {
85 - pytest -vv || die "Testing failed with ${EPYTHON}"
86 -}
87 -
88 -python_install_all() {
89 - use doc && local HTML_DOCS=( documentation/_build/html/. )
90 - distutils-r1_python_install_all
91 -}
92
93 diff --git a/dev-python/six/six-1.13.0.ebuild b/dev-python/six/six-1.13.0.ebuild
94 deleted file mode 100644
95 index 7a0942516f9..00000000000
96 --- a/dev-python/six/six-1.13.0.ebuild
97 +++ /dev/null
98 @@ -1,36 +0,0 @@
99 -# Copyright 1999-2020 Gentoo Authors
100 -# Distributed under the terms of the GNU General Public License v2
101 -
102 -EAPI=7
103 -
104 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
105 -
106 -inherit distutils-r1
107 -
108 -DESCRIPTION="Python 2 and 3 compatibility library"
109 -HOMEPAGE="https://github.com/benjaminp/six https://pypi.org/project/six/"
110 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
111 -
112 -LICENSE="MIT"
113 -SLOT="0"
114 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
115 -IUSE="doc"
116 -
117 -BDEPEND="
118 - dev-python/setuptools[${PYTHON_USEDEP}]
119 - doc? ( dev-python/sphinx )"
120 -
121 -PATCHES=(
122 - "${FILESDIR}"/1.9.0-mapping.patch
123 -)
124 -
125 -distutils_enable_tests pytest
126 -
127 -python_compile_all() {
128 - use doc && emake -C documentation html
129 -}
130 -
131 -python_install_all() {
132 - use doc && local HTML_DOCS=( documentation/_build/html/. )
133 - distutils-r1_python_install_all
134 -}