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 48CB515800F for ; Mon, 20 Feb 2023 20:52:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55FF9E0992; Mon, 20 Feb 2023 20:52:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3F7A2E0992 for ; Mon, 20 Feb 2023 20:52: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 65636340E9C for ; Mon, 20 Feb 2023 20:52:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ECD558B8 for ; Mon, 20 Feb 2023 20:52:19 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1676926299.20a0e4ae866da76aa366b14d4fdd36b0fe6f052a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libtinynotify-systemwide/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-0.1-r1.ebuild x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-0.1.ebuild X-VCS-Directories: x11-libs/libtinynotify-systemwide/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 20a0e4ae866da76aa366b14d4fdd36b0fe6f052a X-VCS-Branch: master Date: Mon, 20 Feb 2023 20:52:19 +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: 99e68373-720f-47e0-951b-8d8e6387ca05 X-Archives-Hash: 856d269258291d3a34dcec1748d33a08 commit: 20a0e4ae866da76aa366b14d4fdd36b0fe6f052a Author: David Seifert gentoo org> AuthorDate: Mon Feb 20 20:51:39 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 20 20:51:39 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a0e4ae x11-libs/libtinynotify-systemwide: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ...uild => libtinynotify-systemwide-0.1-r1.ebuild} | 23 ++++++++++------------ 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-0.1.ebuild b/x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-0.1-r1.ebuild similarity index 59% rename from x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-0.1.ebuild rename to x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-0.1-r1.ebuild index 4543af991c3e..3fd392196e9c 100644 --- a/x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-0.1.ebuild +++ b/x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-0.1-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="A system-wide notifications module for libtinynotify" HOMEPAGE="https://github.com/mgorny/libtinynotify-systemwide/" @@ -10,24 +10,21 @@ SRC_URI="https://github.com/mgorny/libtinynotify-systemwide/releases/download/${ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="doc static-libs" +IUSE="doc" -RDEPEND="sys-process/procps:0= - x11-libs/libtinynotify:0=" -DEPEND="${RDEPEND} +RDEPEND=" + sys-process/procps:= + x11-libs/libtinynotify:=" +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig doc? ( dev-util/gtk-doc )" src_configure() { - local myconf=( - $(use_enable doc gtk-doc) - $(use_enable static-libs static) - ) - - econf "${myconf[@]}" + econf $(use_enable doc gtk-doc) } src_install() { default - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die }