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-libs/libtinynotify/
Date: Wed, 01 Mar 2023 09:40:34
Message-Id: 1677663614.12e5fe3332e9287cf866ac21aa78c2812aa3a55a.mgorny@gentoo
1 commit: 12e5fe3332e9287cf866ac21aa78c2812aa3a55a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 1 09:26:42 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 1 09:40:14 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12e5fe33
7
8 x11-libs/libtinynotify: Remove the live ebuild
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 x11-libs/libtinynotify/libtinynotify-9999.ebuild | 39 ------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/x11-libs/libtinynotify/libtinynotify-9999.ebuild b/x11-libs/libtinynotify/libtinynotify-9999.ebuild
16 deleted file mode 100644
17 index 17f57c6cdd00..000000000000
18 --- a/x11-libs/libtinynotify/libtinynotify-9999.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -EGIT_REPO_URI="https://github.com/mgorny/${PN}.git"
27 -inherit autotools git-r3
28 -
29 -DESCRIPTION="A lightweight implementation of Desktop Notification Spec"
30 -HOMEPAGE="https://github.com/mgorny/libtinynotify/"
31 -SRC_URI=""
32 -
33 -LICENSE="BSD"
34 -SLOT="0"
35 -KEYWORDS=""
36 -IUSE="debug static-libs"
37 -
38 -RDEPEND="sys-apps/dbus:0="
39 -DEPEND="${RDEPEND}"
40 -BDEPEND="virtual/pkgconfig"
41 -
42 -src_prepare() {
43 - default
44 - eautoreconf
45 -}
46 -
47 -src_configure() {
48 - local myconf=(
49 - $(use_enable debug)
50 - $(use_enable static-libs static)
51 - )
52 -
53 - econf "${myconf[@]}"
54 -}
55 -
56 -src_install() {
57 - default
58 - find "${D}" -name '*.la' -delete
59 -}