From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1344623-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 EB61D158086
	for <garchives@archives.gentoo.org>; Tue, 30 Nov 2021 10:01:40 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 3AC172BC04B;
	Tue, 30 Nov 2021 10:01:40 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.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 0735B2BC04C
	for <gentoo-commits@lists.gentoo.org>; Tue, 30 Nov 2021 10:01:40 +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 8C428342FAC
	for <gentoo-commits@lists.gentoo.org>; Tue, 30 Nov 2021 10:01:38 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id B7445232
	for <gentoo-commits@lists.gentoo.org>; Tue, 30 Nov 2021 10:01:34 +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: <1638266488.dcddb9e9fc85889f9b750773bd99600a45a5ab38.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/awscli/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-admin/awscli/awscli-1.22.15.ebuild
X-VCS-Directories: app-admin/awscli/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: dcddb9e9fc85889f9b750773bd99600a45a5ab38
X-VCS-Branch: master
Date: Tue, 30 Nov 2021 10:01:34 +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: b6e6ab98-eeef-4ac7-a4a1-b400e4933209
X-Archives-Hash: d12580fbb80e377926761bc0651127c0

commit:     dcddb9e9fc85889f9b750773bd99600a45a5ab38
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 30 09:53:53 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov 30 10:01:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcddb9e9

app-admin/awscli: Strip upper bounds on requirements

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-admin/awscli/awscli-1.22.15.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-admin/awscli/awscli-1.22.15.ebuild b/app-admin/awscli/awscli-1.22.15.ebuild
index d4b09dbaa2ec..85073515ab9a 100644
--- a/app-admin/awscli/awscli-1.22.15.ebuild
+++ b/app-admin/awscli/awscli-1.22.15.ebuild
@@ -35,6 +35,8 @@ src_prepare() {
 		-e 's:from botocore[.]vendored import:import:' \
 		-e 's:from botocore[.]vendored[.]:from :' \
 		{} + || die
+	# strip overzealous upper bounds on requirements
+	sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
 	distutils-r1_src_prepare
 }