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 551B2138334 for ; Tue, 24 Jul 2018 12:20:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFC0EE0870; Tue, 24 Jul 2018 12:20:15 +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 8F7F3E0870 for ; Tue, 24 Jul 2018 12:20:15 +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 92E01335DA9 for ; Tue, 24 Jul 2018 12:20:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED36838B for ; Tue, 24 Jul 2018 12:19:59 +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: <1532434793.3e72daeef9d22cc4af59f43881301d69dfe98332.mgorny@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.6-r2.ebuild X-VCS-Directories: dev-python/dbus-python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3e72daeef9d22cc4af59f43881301d69dfe98332 X-VCS-Branch: master Date: Tue, 24 Jul 2018 12:19:59 +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-Archives-Salt: 0e9fe668-60b6-472b-b17c-622ec2963053 X-Archives-Hash: 906edd1948342fd43e57889a87f55418 commit: 3e72daeef9d22cc4af59f43881301d69dfe98332 Author: Michał Górny gentoo org> AuthorDate: Tue Jul 24 10:41:16 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jul 24 12:19:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e72daee dev-python/dbus-python: Remove redundant configure options dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild b/dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild index a79c851ba44..b2f40c7851c 100644 --- a/dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild +++ b/dev-python/dbus-python/dbus-python-1.2.6-r2.ebuild @@ -44,20 +44,13 @@ src_prepare() { src_configure() { configuring() { - local PYTHON_CONFIG - python_export PYTHON_CONFIG - # epydoc is python2-only, bug #447642 local apidocs=--disable-api-docs [[ ${EPYTHON/.*} = "python2" ]] && apidocs=$(use_enable doc api-docs) econf \ - --docdir="${EPREFIX}"/usr/share/doc/${PF} \ --disable-html-docs \ - ${apidocs} \ - PYTHON_INCLUDES="$(${PYTHON_CONFIG} --includes)" \ - PYTHON_LIBS="$(${PYTHON_CONFIG} --ldflags)" - # configure assumes that ${PYTHON}-config executable exists :/ + ${apidocs} } python_foreach_impl run_in_build_dir configuring }