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 787B2158030 for ; Wed, 1 Mar 2023 09:40:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64564E0729; Wed, 1 Mar 2023 09:40:34 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4BBD9E0729 for ; Wed, 1 Mar 2023 09:40:34 +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 3E658340C53 for ; Wed, 1 Mar 2023 09:40:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83EF48C2 for ; Wed, 1 Mar 2023 09:40:31 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1677663616.50256958565d5432d2bb218c4edcf2c6a98de1e9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/tinynotify-send/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/tinynotify-send/tinynotify-send-9999.ebuild X-VCS-Directories: x11-misc/tinynotify-send/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 50256958565d5432d2bb218c4edcf2c6a98de1e9 X-VCS-Branch: master Date: Wed, 1 Mar 2023 09:40:31 +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: 3bc24c3e-7eb4-4dea-a507-0cd8c7dbd795 X-Archives-Hash: 5c297ef23e521312e7e4a2b093de5a77 commit: 50256958565d5432d2bb218c4edcf2c6a98de1e9 Author: Michał Górny gentoo org> AuthorDate: Wed Mar 1 09:30:42 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Mar 1 09:40:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50256958 x11-misc/tinynotify-send: Remove the live ebuild Signed-off-by: Michał Górny gentoo.org> .../tinynotify-send/tinynotify-send-9999.ebuild | 47 ---------------------- 1 file changed, 47 deletions(-) diff --git a/x11-misc/tinynotify-send/tinynotify-send-9999.ebuild b/x11-misc/tinynotify-send/tinynotify-send-9999.ebuild deleted file mode 100644 index 7f7ee4ddbf61..000000000000 --- a/x11-misc/tinynotify-send/tinynotify-send-9999.ebuild +++ /dev/null @@ -1,47 +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 notification sending utility (using libtinynotify)" -HOMEPAGE="https://github.com/mgorny/tinynotify-send/" -SRC_URI="" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="" -IUSE="" - -RDEPEND="app-eselect/eselect-notify-send - x11-libs/libtinynotify:0= - ~x11-libs/libtinynotify-cli-${PV}" -DEPEND="${RDEPEND} - dev-util/gtk-doc - virtual/pkgconfig" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myconf=( - --disable-library - --enable-regular - --disable-system-wide - --with-system-wide-exec=/usr/bin/sw-notify-send - ) - - econf "${myconf[@]}" -} - -pkg_postinst() { - eselect notify-send update ifunset -} - -pkg_postrm() { - eselect notify-send update ifunset -}