Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/tinynotify-send/
Date: Wed, 01 Mar 2023 09:40:35
Message-Id: 1677663616.50256958565d5432d2bb218c4edcf2c6a98de1e9.mgorny@gentoo
1 commit: 50256958565d5432d2bb218c4edcf2c6a98de1e9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 1 09:30:42 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 1 09:40:16 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50256958
7
8 x11-misc/tinynotify-send: Remove the live ebuild
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../tinynotify-send/tinynotify-send-9999.ebuild | 47 ----------------------
13 1 file changed, 47 deletions(-)
14
15 diff --git a/x11-misc/tinynotify-send/tinynotify-send-9999.ebuild b/x11-misc/tinynotify-send/tinynotify-send-9999.ebuild
16 deleted file mode 100644
17 index 7f7ee4ddbf61..000000000000
18 --- a/x11-misc/tinynotify-send/tinynotify-send-9999.ebuild
19 +++ /dev/null
20 @@ -1,47 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -EGIT_REPO_URI="https://github.com/mgorny/${PN}.git"
27 -inherit autotools git-r3
28 -
29 -DESCRIPTION="A notification sending utility (using libtinynotify)"
30 -HOMEPAGE="https://github.com/mgorny/tinynotify-send/"
31 -SRC_URI=""
32 -
33 -LICENSE="BSD"
34 -SLOT="0"
35 -KEYWORDS=""
36 -IUSE=""
37 -
38 -RDEPEND="app-eselect/eselect-notify-send
39 - x11-libs/libtinynotify:0=
40 - ~x11-libs/libtinynotify-cli-${PV}"
41 -DEPEND="${RDEPEND}
42 - dev-util/gtk-doc
43 - virtual/pkgconfig"
44 -
45 -src_prepare() {
46 - default
47 - eautoreconf
48 -}
49 -
50 -src_configure() {
51 - local myconf=(
52 - --disable-library
53 - --enable-regular
54 - --disable-system-wide
55 - --with-system-wide-exec=/usr/bin/sw-notify-send
56 - )
57 -
58 - econf "${myconf[@]}"
59 -}
60 -
61 -pkg_postinst() {
62 - eselect notify-send update ifunset
63 -}
64 -
65 -pkg_postrm() {
66 - eselect notify-send update ifunset
67 -}