Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/hydrogen/
Date: Sun, 17 Feb 2019 12:39:24
Message-Id: 1550407141.5f2154fd4b0865143496b375f1e23b3fb5ff11f2.asturm@gentoo
1 commit: 5f2154fd4b0865143496b375f1e23b3fb5ff11f2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 17 12:38:24 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 17 12:39:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f2154fd
7
8 media-sound/hydrogen: EAPI-7 bump
9
10 Package-Manager: Portage-2.3.60, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/hydrogen/hydrogen-9999.ebuild | 30 +++++++++++-------------------
14 1 file changed, 11 insertions(+), 19 deletions(-)
15
16 diff --git a/media-sound/hydrogen/hydrogen-9999.ebuild b/media-sound/hydrogen/hydrogen-9999.ebuild
17 index 2d92d83a64c..5bcfaa020fe 100644
18 --- a/media-sound/hydrogen/hydrogen-9999.ebuild
19 +++ b/media-sound/hydrogen/hydrogen-9999.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2018 Gentoo Authors
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 -inherit cmake-utils git-r3 xdg-utils
29 +inherit git-r3 xdg cmake-utils
30
31 DESCRIPTION="Advanced drum machine"
32 HOMEPAGE="http://www.hydrogen-music.org/"
33 @@ -16,7 +16,12 @@ IUSE="alsa +archive doc jack ladspa lash osc oss portaudio portmidi pulseaudio"
34
35 REQUIRED_USE="lash? ( alsa )"
36
37 -RDEPEND="
38 +BDEPEND="
39 + virtual/pkgconfig
40 + doc? ( app-doc/doxygen )
41 +"
42 +DEPEND="
43 + dev-qt/qtcore:5
44 dev-qt/qtgui:5
45 dev-qt/qtnetwork:5
46 dev-qt/qtwidgets:5
47 @@ -34,10 +39,7 @@ RDEPEND="
48 portmidi? ( media-libs/portmidi )
49 pulseaudio? ( media-sound/pulseaudio )
50 "
51 -DEPEND="${RDEPEND}
52 - virtual/pkgconfig
53 - doc? ( app-doc/doxygen )
54 -"
55 +RDEPEND="${DEPEND}"
56
57 DOCS=( AUTHORS ChangeLog DEVELOPERS README.txt )
58
59 @@ -71,16 +73,6 @@ src_compile() {
60 }
61
62 src_install() {
63 - use doc && local HTML_DOCS=( ${BUILD_DIR}/docs/html/. )
64 + use doc && local HTML_DOCS=( "${BUILD_DIR}"/docs/html/. )
65 cmake-utils_src_install
66 }
67 -
68 -pkg_postinst() {
69 - xdg_mimeinfo_database_update
70 - xdg_desktop_database_update
71 -}
72 -
73 -pkg_postrm() {
74 - xdg_mimeinfo_database_update
75 - xdg_desktop_database_update
76 -}