From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1542054-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 4791615800A
	for <garchives@archives.gentoo.org>; Sat, 29 Jul 2023 19:26:04 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4CBAFE0C03;
	Sat, 29 Jul 2023 19:26:00 +0000 (UTC)
Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 35EF1E0C03
	for <gentoo-commits@lists.gentoo.org>; Sat, 29 Jul 2023 19:26:00 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 80107335D80
	for <gentoo-commits@lists.gentoo.org>; Sat, 29 Jul 2023 19:25:59 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id BC867E9E
	for <gentoo-commits@lists.gentoo.org>; Sat, 29 Jul 2023 19:25:55 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1690658751.f2906a2d2180f42bb6f86bf7cbc52c40995b60dc.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.26.1-r1.ebuild dev-db/mycli/mycli-1.26.1-r2.ebuild
X-VCS-Directories: dev-db/mycli/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: f2906a2d2180f42bb6f86bf7cbc52c40995b60dc
X-VCS-Branch: master
Date: Sat, 29 Jul 2023 19:25:55 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 01aeeb4b-4127-4a2d-884e-58b488018e2e
X-Archives-Hash: f14d4b9e62e682d299bd67b17ca4990c

commit:     f2906a2d2180f42bb6f86bf7cbc52c40995b60dc
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Sat Jul 29 04:05:54 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 29 19:25:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2906a2d

dev-db/mycli: remove unnecessary dependency pin

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32090
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-db/mycli/{mycli-1.26.1-r1.ebuild => mycli-1.26.1-r2.ebuild} | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/dev-db/mycli/mycli-1.26.1-r1.ebuild b/dev-db/mycli/mycli-1.26.1-r2.ebuild
similarity index 91%
rename from dev-db/mycli/mycli-1.26.1-r1.ebuild
rename to dev-db/mycli/mycli-1.26.1-r2.ebuild
index 1f0f11d9838d..b58c09658700 100644
--- a/dev-db/mycli/mycli-1.26.1-r1.ebuild
+++ b/dev-db/mycli/mycli-1.26.1-r2.ebuild
@@ -72,3 +72,11 @@ EPYTEST_IGNORE=(
 distutils_enable_tests pytest
 
 PATCHES=( "${FILESDIR}/mycli-1.21.1-fix-test-install.patch" )
+
+src_prepare() {
+	default
+
+	# Remove unnecessary pin, we have paramiko 3.2.0.
+	# https://github.com/dbcli/mycli/commit/eaddc5ca3e208d66fd4f400b90eb76089dd35e4c
+	sed -i -e 's:==:>=:' setup.py || die
+}