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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4F98F158041 for ; Fri, 22 Mar 2024 17:45:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48257E29B5; Fri, 22 Mar 2024 17:45:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2AFECE29B5 for ; Fri, 22 Mar 2024 17:45:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3330A335D6D for ; Fri, 22 Mar 2024 17:45:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D8F6BE9 for ; Fri, 22 Mar 2024 17:45:20 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1711129515.d652d2a763fafd6f1fa3f3b8e0b65fdc4196881b.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/startup-notification/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/startup-notification/startup-notification-0.12-r1.ebuild x11-libs/startup-notification/startup-notification-0.12-r2.ebuild X-VCS-Directories: x11-libs/startup-notification/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: d652d2a763fafd6f1fa3f3b8e0b65fdc4196881b X-VCS-Branch: master Date: Fri, 22 Mar 2024 17:45:20 +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: 85b9fa7f-bf22-4329-9971-e2fe608361cd X-Archives-Hash: 178e62d3d012e5875a99862a05490d7e commit: d652d2a763fafd6f1fa3f3b8e0b65fdc4196881b Author: Matt Turner gentoo org> AuthorDate: Fri Mar 22 17:20:13 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Mar 22 17:45:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d652d2a7 x11-libs/startup-notification: EAPI=8 and drop xorg-3 There's no reason for this package to use xorg-3. Signed-off-by: Matt Turner gentoo.org> ...12-r1.ebuild => startup-notification-0.12-r2.ebuild} | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/x11-libs/startup-notification/startup-notification-0.12-r1.ebuild b/x11-libs/startup-notification/startup-notification-0.12-r2.ebuild similarity index 80% rename from x11-libs/startup-notification/startup-notification-0.12-r1.ebuild rename to x11-libs/startup-notification/startup-notification-0.12-r2.ebuild index 63456d231c16..3e3c0a55b254 100644 --- a/x11-libs/startup-notification/startup-notification-0.12-r1.ebuild +++ b/x11-libs/startup-notification/startup-notification-0.12-r2.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 -inherit xorg-3 +EAPI=8 + +inherit libtool DESCRIPTION="Application startup notification and feedback library" HOMEPAGE="https://www.freedesktop.org/wiki/Software/startup-notification" @@ -24,3 +25,13 @@ PATCHES=( "${FILESDIR}"/${P}-sys-select_h.patch "${FILESDIR}"/${P}-time_t-crash-with-32bit.patch ) + +src_prepare() { + default + elibtoolize +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}