From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B4B9013835A for ; Sun, 23 May 2021 10:48:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9D9EE0884; Sun, 23 May 2021 10:48:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4C039E087A for ; Sun, 23 May 2021 10:48:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 10B0C340DBA for ; Sun, 23 May 2021 10:48:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCD5E78B for ; Sun, 23 May 2021 10:48:10 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1621766882.67ed3e80d6bd581b0066e2c5e6948fd19edf3a03.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mycli/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/mycli/mycli-1.22.2_p20201026.ebuild dev-db/mycli/mycli-9999.ebuild X-VCS-Directories: dev-db/mycli/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 67ed3e80d6bd581b0066e2c5e6948fd19edf3a03 X-VCS-Branch: master Date: Sun, 23 May 2021 10:48:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cd16edbe-b06e-4946-b5a3-82ea33ce8485 X-Archives-Hash: 3ffae196f9442ad970b48d19a46251e9 commit: 67ed3e80d6bd581b0066e2c5e6948fd19edf3a03 Author: Michał Górny gentoo org> AuthorDate: Sun May 23 10:28:49 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 23 10:48:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67ed3e80 dev-db/mycli: Enable py3.9 Signed-off-by: Michał Górny gentoo.org> dev-db/mycli/mycli-1.22.2_p20201026.ebuild | 43 +++++++++++++++--------------- dev-db/mycli/mycli-9999.ebuild | 43 +++++++++++++++--------------- 2 files changed, 42 insertions(+), 44 deletions(-) diff --git a/dev-db/mycli/mycli-1.22.2_p20201026.ebuild b/dev-db/mycli/mycli-1.22.2_p20201026.ebuild index 3d988df6d52..f660a9ed97d 100644 --- a/dev-db/mycli/mycli-1.22.2_p20201026.ebuild +++ b/dev-db/mycli/mycli-1.22.2_p20201026.ebuild @@ -1,48 +1,47 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{3_7,3_8} ) +PYTHON_COMPAT=( python3_{7..9} ) DISTUTILS_SINGLE_IMPL=yes -DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 MY_PV=$(ver_cut 1-3) S="${WORKDIR}/${PN}-${MY_PV}" DESCRIPTION="CLI for MySQL Database with auto-completion and syntax highlighting" - HOMEPAGE="https://www.mycli.net" SRC_URI="https://github.com/dbcli/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + LICENSE="BSD MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="ssh test" -RESTRICT="!test? ( test )" -RDEPEND="$(python_gen_cond_dep ' - >=dev-python/cli_helpers-2.0.1[${PYTHON_USEDEP}] - >=dev-python/click-7.0[${PYTHON_USEDEP}] - >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}] - >=dev-python/cryptography-1.0.0[${PYTHON_USEDEP}] - >=dev-python/prompt_toolkit-3.0.0[${PYTHON_USEDEP}] - =dev-python/pygments-2.0[${PYTHON_USEDEP}] - >=dev-python/pymysql-0.9.2[${PYTHON_USEDEP}] - >=dev-python/sqlparse-0.3.0[${PYTHON_USEDEP}] -