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 059D813835A for ; Wed, 12 May 2021 18:22:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A45D4E08FF; Wed, 12 May 2021 18:22:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 891D4E08F9 for ; Wed, 12 May 2021 18:22:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 761B5340CB1 for ; Wed, 12 May 2021 18:22:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7765F77E for ; Wed, 12 May 2021 18:22:08 +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: <1620843717.2a68018af374e9be293382a904534c7acc228cfb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx/sphinx-4.0.1-r1.ebuild dev-python/sphinx/sphinx-4.0.1.ebuild X-VCS-Directories: dev-python/sphinx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2a68018af374e9be293382a904534c7acc228cfb X-VCS-Branch: master Date: Wed, 12 May 2021 18:22:08 +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: 9c2c8797-f319-493f-bcaa-c3da67851cbe X-Archives-Hash: 5d11d791166a56c72b940b86b1f1eb8e commit: 2a68018af374e9be293382a904534c7acc228cfb Author: Michał Górny gentoo org> AuthorDate: Wed May 12 14:15:32 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 12 18:21:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a68018a dev-python/sphinx: Remove unnecessary upper version bounds Bug: https://bugs.gentoo.org/789681 Signed-off-by: Michał Górny gentoo.org> dev-python/sphinx/{sphinx-4.0.1.ebuild => sphinx-4.0.1-r1.ebuild} | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/sphinx/sphinx-4.0.1.ebuild b/dev-python/sphinx/sphinx-4.0.1-r1.ebuild similarity index 97% rename from dev-python/sphinx/sphinx-4.0.1.ebuild rename to dev-python/sphinx/sphinx-4.0.1-r1.ebuild index 8dee8dd7b8f..1c6f8a61729 100644 --- a/dev-python/sphinx/sphinx-4.0.1.ebuild +++ b/dev-python/sphinx/sphinx-4.0.1-r1.ebuild @@ -69,6 +69,11 @@ python_prepare_all() { sed -i -e 's:^intersphinx_mapping:disabled_&:' \ doc/conf.py || die + # remove unnecessary upper bounds + sed -e '/Jinja2/s:,<3.0::' \ + -e '/MarkupSafe/s:<2.0::' \ + -i setup.py || die + distutils-r1_python_prepare_all }