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/python-sqlparse/
Date: Sun, 08 Mar 2020 08:25:34
Message-Id: 1583655908.93d9c5344346534a3bfed314d6970553e41c6a62.mgorny@gentoo
1 commit: 93d9c5344346534a3bfed314d6970553e41c6a62
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 8 08:19:01 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 8 08:25:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93d9c534
7
8 dev-python/python-sqlparse: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-sqlparse/Manifest | 2 --
13 .../python-sqlparse/python-sqlparse-0.2.3.ebuild | 41 ----------------------
14 .../python-sqlparse/python-sqlparse-0.2.4.ebuild | 41 ----------------------
15 3 files changed, 84 deletions(-)
16
17 diff --git a/dev-python/python-sqlparse/Manifest b/dev-python/python-sqlparse/Manifest
18 index a88cb331d77..d76094aa546 100644
19 --- a/dev-python/python-sqlparse/Manifest
20 +++ b/dev-python/python-sqlparse/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST sqlparse-0.2.3.tar.gz 60742 BLAKE2B 38d3f17d196d3a1d50ea75810b5bd3a890c6f4b12195621d571d62b8c40e2e2d13034deddd95288df37a15daba28153a5ca9221b78bfff1c0e3bc37eddca2dba SHA512 ec654e680f8ce423a89da92c4c74f85e652bebb19e9a40ab0b8067f61803897e49e1e6f8dd1ab454b1ed130974d76b4f973c799264fd4bf8a87f034ba9c44835
23 -DIST sqlparse-0.2.4.tar.gz 61614 BLAKE2B 2462fa5d77ca2c3028aa3539bedc3cb2d7abd35db3c736ffd8abad8626a33174787f0079453ec646739749c8860fce0f1c7d815e6a8485c24b851a40b5bf3b87 SHA512 abea0f084778976f2d1086006eaa88e1fc1d2580654d063b35557a44d9d9727b410a022e8ea06ae3b265f2829d49c48d347dddc61f2e56be9c3d6207104712b2
24 DIST sqlparse-0.3.0.tar.gz 64072 BLAKE2B fbee74c7222fa50c5d627959d5c8652dcd85ab5b5b771e3c8375cadc6e009c2fb1adc3c2428e27d769c210e7976c350bfab367cb7aa44dd7b4183ad9722a4ca6 SHA512 596d25f5fa2c797fe5652e36e9633397e7867586ff0959f52d1ff861c16d0e7c73644daf03d74169dd20255e802b7369d4dace0a44a3d94c15bd67faa41df551
25 DIST sqlparse-0.3.1.tar.gz 67572 BLAKE2B 27c9267de1a269a4574019d457a3dad53ad805e56a57ba73e294c229a7852b7ca04557fb45d07566e94eba7593257ad7eb413b1e0ec04d1044838d5039dc8ba8 SHA512 4c56a528b43578a7a48fc31cee369215b15761d9903ea1d8e034c69f0eb6431dd15362aab13af25a36fccb361436f1cba746bcbb515cbab5d30319629dd2ddfb
26
27 diff --git a/dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild b/dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild
28 deleted file mode 100644
29 index 3f52bef28aa..00000000000
30 --- a/dev-python/python-sqlparse/python-sqlparse-0.2.3.ebuild
31 +++ /dev/null
32 @@ -1,41 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -PYTHON_COMPAT=( python3_6 )
39 -
40 -inherit distutils-r1
41 -
42 -MY_PN="${PN##python-}"
43 -MY_P="${MY_PN}-${PV}"
44 -
45 -DESCRIPTION="A non-validating SQL parser module for Python"
46 -HOMEPAGE="https://github.com/andialbrecht/sqlparse"
47 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
48 -
49 -SLOT="0"
50 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
51 -LICENSE="BSD-2"
52 -IUSE="test"
53 -RESTRICT="!test? ( test )"
54 -
55 -DEPEND="
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - test? (
58 - dev-python/pytest[${PYTHON_USEDEP}]
59 - dev-python/pytest-cov[${PYTHON_USEDEP}]
60 - )"
61 -# Required for running tests
62 -DISTUTILS_IN_SOURCE_BUILD=1
63 -
64 -S="${WORKDIR}"/${P#python-}
65 -
66 -python_test() {
67 - if python_is_python3; then
68 - 2to3 -w --no-diffs -n tests/ sqlparse/
69 - py.test ./tests || die "testsuite failed ${EPYTHON}"
70 - else
71 - py.test tests || die "testsuite failed under ${EPYTHON}"
72 - fi
73 -}
74
75 diff --git a/dev-python/python-sqlparse/python-sqlparse-0.2.4.ebuild b/dev-python/python-sqlparse/python-sqlparse-0.2.4.ebuild
76 deleted file mode 100644
77 index 36f895a3d44..00000000000
78 --- a/dev-python/python-sqlparse/python-sqlparse-0.2.4.ebuild
79 +++ /dev/null
80 @@ -1,41 +0,0 @@
81 -# Copyright 1999-2020 Gentoo Authors
82 -# Distributed under the terms of the GNU General Public License v2
83 -
84 -EAPI=6
85 -
86 -PYTHON_COMPAT=( python3_{6,7} )
87 -
88 -inherit distutils-r1
89 -
90 -MY_PN="${PN##python-}"
91 -MY_P="${MY_PN}-${PV}"
92 -
93 -DESCRIPTION="A non-validating SQL parser module for Python"
94 -HOMEPAGE="https://github.com/andialbrecht/sqlparse"
95 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
96 -
97 -SLOT="0"
98 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
99 -LICENSE="BSD-2"
100 -IUSE="test"
101 -RESTRICT="!test? ( test )"
102 -
103 -DEPEND="
104 - dev-python/setuptools[${PYTHON_USEDEP}]
105 - test? (
106 - dev-python/pytest[${PYTHON_USEDEP}]
107 - dev-python/pytest-cov[${PYTHON_USEDEP}]
108 - )"
109 -# Required for running tests
110 -DISTUTILS_IN_SOURCE_BUILD=1
111 -
112 -S="${WORKDIR}"/${P#python-}
113 -
114 -python_test() {
115 - if python_is_python3; then
116 - 2to3 -w --no-diffs -n tests/ sqlparse/
117 - py.test ./tests || die "testsuite failed ${EPYTHON}"
118 - else
119 - py.test tests || die "testsuite failed under ${EPYTHON}"
120 - fi
121 -}