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 118C2158017 for ; Wed, 29 Sep 2021 15:29:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD667E08BB; Wed, 29 Sep 2021 15:29:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AA29DE08BB for ; Wed, 29 Sep 2021 15:29:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2132C342D9A for ; Wed, 29 Sep 2021 15:29:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57709E5 for ; Wed, 29 Sep 2021 15:29:19 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1632929299.ebc20350041f9a721ba60a7aef5303289c316c49.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dbus-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dbus-python/dbus-python-1.2.16-r1.ebuild dev-python/dbus-python/dbus-python-1.2.18.ebuild X-VCS-Directories: dev-python/dbus-python/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: ebc20350041f9a721ba60a7aef5303289c316c49 X-VCS-Branch: master Date: Wed, 29 Sep 2021 15:29:19 +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: 0b060845-05a9-42f2-bfcf-1746ffd8c1a9 X-Archives-Hash: c7b83409739025defadb38b67cfa3179 commit: ebc20350041f9a721ba60a7aef5303289c316c49 Author: Mike Gilbert gentoo org> AuthorDate: Wed Sep 29 15:28:19 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Sep 29 15:28:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebc20350 dev-python/dbus-python: prevent overlinking by AX_PYTHON_DEVEL Closes: https://bugs.gentoo.org/815136 Signed-off-by: Mike Gilbert gentoo.org> dev-python/dbus-python/dbus-python-1.2.16-r1.ebuild | 4 ++++ dev-python/dbus-python/dbus-python-1.2.18.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dev-python/dbus-python/dbus-python-1.2.16-r1.ebuild b/dev-python/dbus-python/dbus-python-1.2.16-r1.ebuild index dc7eb8eeea9..7fc1389c49c 100644 --- a/dev-python/dbus-python/dbus-python-1.2.16-r1.ebuild +++ b/dev-python/dbus-python/dbus-python-1.2.16-r1.ebuild @@ -57,6 +57,10 @@ src_configure() { configuring() { local myconf=( --disable-documentation + + # Work around broken AX_PYTHON_DEVEL macro. + # https://bugs.gentoo.org/815136 + PYTHON_EXTRA_LIBS=' ' ) [[ ${EPYTHON} == ${SPHINX_IMPL} ]] && myconf+=( --enable-documentation ) diff --git a/dev-python/dbus-python/dbus-python-1.2.18.ebuild b/dev-python/dbus-python/dbus-python-1.2.18.ebuild index 81900501238..e7cd6a6c984 100644 --- a/dev-python/dbus-python/dbus-python-1.2.18.ebuild +++ b/dev-python/dbus-python/dbus-python-1.2.18.ebuild @@ -55,6 +55,10 @@ src_configure() { configuring() { local myconf=( --disable-documentation + + # Work around broken AX_PYTHON_DEVEL macro. + # https://bugs.gentoo.org/815136 + PYTHON_EXTRA_LIBS=' ' ) [[ ${EPYTHON} == ${SPHINX_IMPL} ]] && myconf+=( --enable-documentation )