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-db/mycli/
Date: Sun, 08 Mar 2020 08:25:31
Message-Id: 1583655906.f5322afe5941b397d217075c42920099eeef2c32.mgorny@gentoo
1 commit: f5322afe5941b397d217075c42920099eeef2c32
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 8 08:17:38 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 8 08:25:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5322afe
7
8 dev-db/mycli: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-db/mycli/Manifest | 1 -
13 dev-db/mycli/mycli-1.19.0.ebuild | 42 ----------------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-db/mycli/Manifest b/dev-db/mycli/Manifest
17 index f1c96e7851b..1f52fa521b6 100644
18 --- a/dev-db/mycli/Manifest
19 +++ b/dev-db/mycli/Manifest
20 @@ -1,2 +1 @@
21 -DIST mycli-1.19.0.tar.gz 263255 BLAKE2B 524190429476793af038c8302f43389884a6ee24a05b0b8c739f290dbfdebec3336bd14567eafff2ea3351430791e4844e16dfc5affb1b28bb57d3759b496350 SHA512 8c6003a09a888c2ac6f35a881ca072ba8972f66b13319cbff73f7a525d1f808b767dcef0121b6272a1b82eed1a02c8c417d5805e5a8ce0c141545f28ff3c3a33
22 DIST mycli-1.20.1.tar.gz 265264 BLAKE2B d00b1713132609b0a5ec6e8b78785fdab5c6b4db5937bc0b9bc69ddde90ad3dc75aeb99ccf6b5e7fe5e78e9bf4819f03fb454825e5182bc5d2c44356032343d1 SHA512 82ee642b2a4c158b0e2ea275941650125e15004ec1c70b2ab90ae0825090efccb4910a14fd46bcdf795a74adba5689b46de5668447308de63d1cbbbe2e6b0e9d
23
24 diff --git a/dev-db/mycli/mycli-1.19.0.ebuild b/dev-db/mycli/mycli-1.19.0.ebuild
25 deleted file mode 100644
26 index 2927d8196bb..00000000000
27 --- a/dev-db/mycli/mycli-1.19.0.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="CLI for MySQL Database with auto-completion and syntax highlighting"
39 -
40 -HOMEPAGE="https://www.mycli.net"
41 -SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -LICENSE="BSD MIT"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="ssh test"
46 -RESTRICT="!test? ( test )"
47 -RDEPEND="
48 - >=dev-python/cli_helpers-1.0.1[${PYTHON_USEDEP}]
49 - >=dev-python/click-4.1[${PYTHON_USEDEP}]
50 - >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
51 - >=dev-python/cryptography-1.0.0[${PYTHON_USEDEP}]
52 - >=dev-python/prompt_toolkit-2.0.6[${PYTHON_USEDEP}]
53 - >=dev-python/pygments-2.0[${PYTHON_USEDEP}]
54 - >=dev-python/pymysql-0.9.2[${PYTHON_USEDEP}]
55 - >=dev-python/python-sqlparse-0.2.2[${PYTHON_USEDEP}]
56 - <dev-python/python-sqlparse-0.3.0[${PYTHON_USEDEP}]
57 - ssh? ( dev-python/paramiko[${PYTHON_USEDEP}] )
58 -"
59 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
60 - test? ( dev-python/pytest[${PYTHON_USEDEP}] ${RDEPEND} )"
61 -
62 -python_test() {
63 - pytest --capture=sys \
64 - --showlocals \
65 - --doctest-modules \
66 - --doctest-ignore-import-errors \
67 - --ignore=setup.py \
68 - --ignore=mycli/magic.py \
69 - --ignore=mycli/packages/parseutils.py \
70 - --ignore=test/features
71 -}