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 6CA2A1382C5 for ; Fri, 28 May 2021 03:21:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9CEAE09DB; Fri, 28 May 2021 03:21:17 +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 9D11DE09DB for ; Fri, 28 May 2021 03:21:17 +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 27432335D4A for ; Fri, 28 May 2021 03:21:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3FDD790 for ; Fri, 28 May 2021 03:21:14 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1622172056.d8bf21023435bf6a40661890f8891b1ed05b5617.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/sshuttle/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-proxy/sshuttle/sshuttle-1.0.5.ebuild X-VCS-Directories: net-proxy/sshuttle/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d8bf21023435bf6a40661890f8891b1ed05b5617 X-VCS-Branch: master Date: Fri, 28 May 2021 03:21:14 +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: 2c636f1d-75c7-4bea-9c07-07750095cd78 X-Archives-Hash: b88650ed2e0d73d3057435687fb551d1 commit: d8bf21023435bf6a40661890f8891b1ed05b5617 Author: Sam James gentoo org> AuthorDate: Fri May 28 03:19:40 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 28 03:20:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8bf2102 net-proxy/sshuttle: undo Sphinx 4.0.x workaround They've reverted the change upstream in Sphinx 4.0.2. See: b36fcb064c9d30014e4d77bb350f16dd34436cf5 Closes: https://bugs.gentoo.org/792402 Bug: https://bugs.gentoo.org/789417 Signed-off-by: Sam James gentoo.org> net-proxy/sshuttle/sshuttle-1.0.5.ebuild | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/net-proxy/sshuttle/sshuttle-1.0.5.ebuild b/net-proxy/sshuttle/sshuttle-1.0.5.ebuild index 5cc44739a20..06ad52f2a3b 100644 --- a/net-proxy/sshuttle/sshuttle-1.0.5.ebuild +++ b/net-proxy/sshuttle/sshuttle-1.0.5.ebuild @@ -48,13 +48,7 @@ python_compile_all() { python_install_all() { HTML_DOCS=( docs/_build/html/. ) - # Sphinx 4.0 changed the layout for installed man pages - # https://bugs.gentoo.org/789417 - if has_version '>=dev-python/sphinx-4.0.0' ; then - doman docs/_build/man/1/* - else - doman docs/_build/man/* - fi + doman docs/_build/man/* distutils-r1_python_install_all }