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 0E03E138335 for ; Fri, 8 Nov 2019 09:48:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F00BE0968; Fri, 8 Nov 2019 09:48:01 +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 16E07E0968 for ; Fri, 8 Nov 2019 09:48:00 +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 9E90534CA90 for ; Fri, 8 Nov 2019 09:47:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9208F899 for ; Fri, 8 Nov 2019 09:47:55 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1573206464.4829ad2c81d0e9f517f3126f63442d8aeae1b5ac.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/blueman/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/blueman/blueman-2.1.1.ebuild net-wireless/blueman/blueman-9999.ebuild X-VCS-Directories: net-wireless/blueman/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 4829ad2c81d0e9f517f3126f63442d8aeae1b5ac X-VCS-Branch: master Date: Fri, 8 Nov 2019 09:47:55 +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: 5a4e0ac3-9892-453c-af54-39ec84adf824 X-Archives-Hash: 1b05eb9944150184cc982f5ef1050794 commit: 4829ad2c81d0e9f517f3126f63442d8aeae1b5ac Author: Michał Górny gentoo org> AuthorDate: Sun Nov 3 11:26:52 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Nov 8 09:47:44 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4829ad2c net-wireless/blueman: Call eautomake to replace py-compile Signed-off-by: Michał Górny gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/13535 Signed-off-by: Lars Wendler gentoo.org> net-wireless/blueman/blueman-2.1.1.ebuild | 7 ++++--- net-wireless/blueman/blueman-9999.ebuild | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/net-wireless/blueman/blueman-2.1.1.ebuild b/net-wireless/blueman/blueman-2.1.1.ebuild index 6f86023ac9c..afa7dd91ce1 100644 --- a/net-wireless/blueman/blueman-2.1.1.ebuild +++ b/net-wireless/blueman/blueman-2.1.1.ebuild @@ -4,13 +4,13 @@ EAPI="7" PYTHON_COMPAT=( python3_{5,6,7} ) -inherit gnome2-utils linux-info python-single-r1 systemd xdg-utils +inherit autotools gnome2-utils linux-info python-single-r1 systemd xdg-utils DESCRIPTION="Simple and intuitive GTK+ Bluetooth Manager" HOMEPAGE="https://github.com/blueman-project/blueman" if [[ ${PV} == "9999" ]] ; then - inherit autotools git-r3 + inherit git-r3 EGIT_REPO_URI="https://github.com/blueman-project/blueman.git" KEYWORDS="" else @@ -78,7 +78,8 @@ pkg_setup() { src_prepare() { default - [[ ${PV} == 9999 ]] && eautoreconf + # replace py-compile to fix py3 + [[ ${PV} == 9999 ]] && eautoreconf || eautomake } src_configure() { diff --git a/net-wireless/blueman/blueman-9999.ebuild b/net-wireless/blueman/blueman-9999.ebuild index 685f3219bdb..4e3c0edd40d 100644 --- a/net-wireless/blueman/blueman-9999.ebuild +++ b/net-wireless/blueman/blueman-9999.ebuild @@ -4,13 +4,13 @@ EAPI="7" PYTHON_COMPAT=( python3_{5,6,7} ) -inherit gnome2-utils linux-info python-single-r1 systemd xdg-utils +inherit autotools gnome2-utils linux-info python-single-r1 systemd xdg-utils DESCRIPTION="Simple and intuitive GTK+ Bluetooth Manager" HOMEPAGE="https://github.com/blueman-project/blueman" if [[ ${PV} == "9999" ]] ; then - inherit autotools git-r3 + inherit git-r3 EGIT_REPO_URI="https://github.com/blueman-project/blueman.git" KEYWORDS="" else @@ -76,7 +76,8 @@ pkg_setup() { src_prepare() { default - [[ ${PV} == 9999 ]] && eautoreconf + # replace py-compile to fix py3 + [[ ${PV} == 9999 ]] && eautoreconf || eautomake } src_configure() {