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: Sun, 04 Jul 2021 21:05:19
Message-Id: 1625432712.49b787afd0a8dc2ba3eb0594d83ec7b93ca942cc.mgorny@gentoo
1 commit: 49b787afd0a8dc2ba3eb0594d83ec7b93ca942cc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 4 20:09:45 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 4 21:05:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49b787af
7
8 x11-libs/libtinynotify: Remove doc flag
9
10 Closes: https://bugs.gentoo.org/800194
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild | 12 +++++-------
14 x11-libs/libtinynotify/libtinynotify-9999.ebuild | 13 +++++--------
15 2 files changed, 10 insertions(+), 15 deletions(-)
16
17 diff --git a/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild b/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
18 index b87cfbb96ab..fee73d38bf3 100644
19 --- a/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
20 +++ b/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
21 @@ -1,7 +1,7 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=6
27 +EAPI=7
28
29 DESCRIPTION="A lightweight implementation of Desktop Notification Spec"
30 HOMEPAGE="https://github.com/mgorny/libtinynotify/"
31 @@ -10,19 +10,17 @@ SRC_URI="https://github.com/mgorny/libtinynotify/releases/download/${P}/${P}.tar
32 LICENSE="BSD"
33 SLOT="0"
34 KEYWORDS="~amd64 ~x86"
35 -IUSE="debug doc static-libs"
36 +IUSE="debug static-libs"
37
38 RDEPEND="sys-apps/dbus:0="
39 -DEPEND="${RDEPEND}
40 - virtual/pkgconfig
41 - doc? ( >=dev-util/gtk-doc-1.18 )"
42 +DEPEND="${RDEPEND}"
43 +BDEPEND="virtual/pkgconfig"
44
45 DOCS=( README )
46
47 src_configure() {
48 local myconf=(
49 $(use_enable debug)
50 - $(use_enable doc gtk-doc)
51 $(use_enable static-libs static)
52 )
53
54
55 diff --git a/x11-libs/libtinynotify/libtinynotify-9999.ebuild b/x11-libs/libtinynotify/libtinynotify-9999.ebuild
56 index c2e029412ac..17f57c6cdd0 100644
57 --- a/x11-libs/libtinynotify/libtinynotify-9999.ebuild
58 +++ b/x11-libs/libtinynotify/libtinynotify-9999.ebuild
59 @@ -1,7 +1,7 @@
60 -# Copyright 1999-2017 Gentoo Foundation
61 +# Copyright 1999-2021 Gentoo Authors
62 # Distributed under the terms of the GNU General Public License v2
63
64 -EAPI=6
65 +EAPI=7
66
67 EGIT_REPO_URI="https://github.com/mgorny/${PN}.git"
68 inherit autotools git-r3
69 @@ -13,13 +13,11 @@ SRC_URI=""
70 LICENSE="BSD"
71 SLOT="0"
72 KEYWORDS=""
73 -IUSE="debug doc static-libs"
74 +IUSE="debug static-libs"
75
76 RDEPEND="sys-apps/dbus:0="
77 -DEPEND="${RDEPEND}
78 - >=dev-util/gtk-doc-1.18
79 - virtual/pkgconfig
80 - doc? ( >=dev-util/gtk-doc-1.18 )"
81 +DEPEND="${RDEPEND}"
82 +BDEPEND="virtual/pkgconfig"
83
84 src_prepare() {
85 default
86 @@ -29,7 +27,6 @@ src_prepare() {
87 src_configure() {
88 local myconf=(
89 $(use_enable debug)
90 - $(use_enable doc gtk-doc)
91 $(use_enable static-libs static)
92 )