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 B2B2B138351 for ; Tue, 4 Feb 2020 04:50:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E30CFE0877; Tue, 4 Feb 2020 04:50:21 +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 C6C02E0877 for ; Tue, 4 Feb 2020 04:50:21 +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 3550A34E696 for ; Tue, 4 Feb 2020 04:50:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44AC310C for ; Tue, 4 Feb 2020 04:50:07 +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: <1580791437.decb5ae27145757aa7ea8d0b4ce7a042973774fc.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/keybinder/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/keybinder/keybinder-0.3.1-r201.ebuild X-VCS-Directories: dev-libs/keybinder/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: decb5ae27145757aa7ea8d0b4ce7a042973774fc X-VCS-Branch: master Date: Tue, 4 Feb 2020 04:50:07 +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: 38da597c-b0bf-4ee6-9418-4ed03e26bb65 X-Archives-Hash: f7e9db1514f724812423b916ca3baf1a commit: decb5ae27145757aa7ea8d0b4ce7a042973774fc Author: Michał Górny gentoo org> AuthorDate: Tue Feb 4 04:43:57 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Feb 4 04:43:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=decb5ae2 dev-libs/keybinder: Disable old python bindings in :0 Closes: https://bugs.gentoo.org/706470 Signed-off-by: Michał Górny gentoo.org> dev-libs/keybinder/keybinder-0.3.1-r201.ebuild | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild b/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild index 711dd04ba10..02e68ac665c 100644 --- a/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild +++ b/dev-libs/keybinder/keybinder-0.3.1-r201.ebuild @@ -1,11 +1,8 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python2_7 ) -inherit python-single-r1 - DESCRIPTION="A library for registering global keyboard shortcuts" HOMEPAGE="https://github.com/kupferlauncher/keybinder" SRC_URI="https://github.com/kupferlauncher/keybinder/releases/download/v${PV}/${P}.tar.gz" @@ -13,32 +10,21 @@ SRC_URI="https://github.com/kupferlauncher/keybinder/releases/download/v${PV}/${ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86" -IUSE="+introspection lua python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +IUSE="+introspection lua" RDEPEND=">=x11-libs/gtk+-2.20:2 x11-libs/libX11 x11-libs/libXext x11-libs/libXrender introspection? ( dev-libs/gobject-introspection ) - lua? ( >=dev-lang/lua-5.1 ) - python? ( ${PYTHON_DEPS} - $(python_gen_cond_dep ' - >=dev-python/pygobject-2.15.3:2[${PYTHON_MULTI_USEDEP}] - >=dev-python/pygtk-2.12[${PYTHON_MULTI_USEDEP}] - ') - )" + lua? ( >=dev-lang/lua-5.1 )" DEPEND="${RDEPEND} virtual/pkgconfig" -pkg_setup() { - use python && python-single-r1_pkg_setup -} - src_configure() { local myconf=( $(use_enable introspection) - $(use_enable python) + --disable-python ) # upstream failed at AC_ARG_ENABLE use lua || myconf+=( --disable-lua )