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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3523815800F for ; Mon, 20 Feb 2023 20:52:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7124BE098A; Mon, 20 Feb 2023 20:52:22 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 593A5E098A for ; Mon, 20 Feb 2023 20:52:22 +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 6FEA4340E96 for ; Mon, 20 Feb 2023 20:52:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA32A8B7 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: <1676926298.6ac8c3b6358be7f98b8d8c6129ca0100ed2ff947.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-9999.ebuild X-VCS-Directories: x11-libs/libtinynotify-systemwide/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 6ac8c3b6358be7f98b8d8c6129ca0100ed2ff947 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: 022515e3-3532-4812-9af1-1bc3f80d35cb X-Archives-Hash: 02e30f6468a13c2e5fe355dd778e822d commit: 6ac8c3b6358be7f98b8d8c6129ca0100ed2ff947 Author: David Seifert gentoo org> AuthorDate: Mon Feb 20 20:51:38 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 20 20:51:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ac8c3b6 x11-libs/libtinynotify-systemwide: drop 9999 Signed-off-by: David Seifert gentoo.org> .../libtinynotify-systemwide-9999.ebuild | 42 ---------------------- 1 file changed, 42 deletions(-) diff --git a/x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-9999.ebuild b/x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-9999.ebuild deleted file mode 100644 index d4effe7755cf..000000000000 --- a/x11-libs/libtinynotify-systemwide/libtinynotify-systemwide-9999.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -EGIT_REPO_URI="https://github.com/mgorny/${PN}.git" -inherit autotools git-r3 - -DESCRIPTION="A system-wide notifications module for libtinynotify" -HOMEPAGE="https://github.com/mgorny/libtinynotify-systemwide/" -SRC_URI="" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="" -IUSE="doc static-libs" - -RDEPEND="sys-process/procps:0= - x11-libs/libtinynotify:0=" -DEPEND="${RDEPEND} - >=dev-util/gtk-doc-1.18 - virtual/pkgconfig - doc? ( dev-util/gtk-doc )" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myconf=( - $(use_enable doc gtk-doc) - $(use_enable static-libs static) - ) - - econf "${myconf[@]}" -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}