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 311DD13835C for ; Fri, 19 Mar 2021 02:27:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E210E0878; Fri, 19 Mar 2021 02:27:07 +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 1653EE0878 for ; Fri, 19 Mar 2021 02:27:07 +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 B3D43340D09 for ; Fri, 19 Mar 2021 02:27:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05F9C5AE for ; Fri, 19 Mar 2021 02:27:04 +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: <1616120812.8369eb1b8d3e87675061923b85e3fc110edfd1ec.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libindicator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libindicator/libindicator-12.10.1-r301.ebuild X-VCS-Directories: dev-libs/libindicator/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8369eb1b8d3e87675061923b85e3fc110edfd1ec X-VCS-Branch: master Date: Fri, 19 Mar 2021 02:27:04 +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: e72afd2a-4faf-4b52-b8b7-92d8526d8cb3 X-Archives-Hash: 0985c90b47e5a06de3366b8aac5d1ebc commit: 8369eb1b8d3e87675061923b85e3fc110edfd1ec Author: Sam James gentoo org> AuthorDate: Fri Mar 19 02:12:50 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 19 02:26:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8369eb1b dev-libs/libindicator: update EAPI 5 -> 7 in :3 Signed-off-by: Sam James gentoo.org> .../libindicator/libindicator-12.10.1-r301.ebuild | 39 ++++++++++++++-------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/dev-libs/libindicator/libindicator-12.10.1-r301.ebuild b/dev-libs/libindicator/libindicator-12.10.1-r301.ebuild index 068768b22c0..2b6dd20a0cb 100644 --- a/dev-libs/libindicator/libindicator-12.10.1-r301.ebuild +++ b/dev-libs/libindicator/libindicator-12.10.1-r301.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit autotools eutils flag-o-matic ltprune virtualx multilib-minimal +EAPI=7 + +inherit autotools flag-o-matic virtualx multilib-minimal DESCRIPTION="A set of symbols and convience functions that all indicators would like to use" HOMEPAGE="https://launchpad.net/libindicator" @@ -14,32 +15,41 @@ KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc64 x86" IUSE="test" RESTRICT="!test? ( test )" -RDEPEND=">=dev-libs/glib-2.22[${MULTILIB_USEDEP}] - >=x11-libs/gtk+-3.2:3[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND} +RDEPEND=" + >=dev-libs/glib-2.22[${MULTILIB_USEDEP}] + >=x11-libs/gtk+-3.2:3[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/glib-utils virtual/pkgconfig test? ( dev-util/dbus-test-runner )" -src_prepare() { +PATCHES=( # https://bugs.launchpad.net/libindicator/+bug/1502925 - epatch "${FILESDIR}"/${PN}-ldflags-spacing.patch + "${FILESDIR}"/${PN}-ldflags-spacing.patch +) + +src_prepare() { + default + eautoreconf } multilib_src_configure() { append-flags -Wno-error - myconf=( + local myconf=( --disable-static --with-gtk=3 ) - local ECONF_SOURCE=${S} - econf "${myconf[@]}" + + ECONF_SOURCE="${S}" econf "${myconf[@]}" } multilib_src_test() { - Xemake check #391179 + # bug #391179 + Xemake check } multilib_src_install() { @@ -47,6 +57,7 @@ multilib_src_install() { } multilib_src_install_all() { - einstalldocs - prune_libtool_files --all + default + + find "${ED}" -name '*.la' -delete || die }