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/drumstick/
Date: Mon, 08 Apr 2019 21:15:14
Message-Id: 1554757845.09904d42badbf083f238cc0a22eff803b38e1d54.asturm@gentoo
1 commit: 09904d42badbf083f238cc0a22eff803b38e1d54
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 8 16:16:27 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 8 21:10:45 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09904d42
7
8 media-sound/drumstick: Drop 1.1.0, 1.1.1
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/drumstick/Manifest | 2 -
14 media-sound/drumstick/drumstick-1.1.0.ebuild | 94 ----------------------------
15 media-sound/drumstick/drumstick-1.1.1.ebuild | 78 -----------------------
16 3 files changed, 174 deletions(-)
17
18 diff --git a/media-sound/drumstick/Manifest b/media-sound/drumstick/Manifest
19 index 82a056a61ff..48a28d2c519 100644
20 --- a/media-sound/drumstick/Manifest
21 +++ b/media-sound/drumstick/Manifest
22 @@ -1,3 +1 @@
23 -DIST drumstick-1.1.0.tar.bz2 1012405 BLAKE2B ad1e4990cbf4954eadf8c7ae602234852e77abcf534e14090a6e158e9032288fcce6c39b742c40ac9b8c7967dbfcd04578b871088f61ce411de9c910c79e1fbb SHA512 1099b80e1d2819a8343e877742c5f01c114419b2c63a965717bcff2c220aa218f40ac3860cf9496d3586663e73a6c2c7b62aee74c51229578a5ae3044da208da
24 -DIST drumstick-1.1.1.tar.bz2 1011275 BLAKE2B dff36487a1cf79512150638c793c471fb410c3563184e9acdbd9d441c53596a0bc611d4ebef2b4dc0214c0fef5324443fe0dfe4158f45521762abf4e838cf716 SHA512 f3278be71b1850bbe742ff46b65a656443a1d655c5bcc1e289d92492db985ab185ed140b88ca68f37235c07926be5b82cfe97ae2f95ca7e3a7f48a7c95c61654
25 DIST drumstick-1.1.2.tar.bz2 1012371 BLAKE2B e60a5678d33db1831130037bb4a6df6da8de815a6a0ca33a167f85596f45a1d420ca4c689c756c1fd3f794fb2a097bc19878d78bfe0789a40f9eae1b306b769f SHA512 6e84fbf2ce717cdb3c669a477de65d2f32c277073d812546267c0a9556f7ead612e3140cbc412fcd560786ca024f201a1eb3ba9de4b037e3ba8d4db89e0e2e29
26
27 diff --git a/media-sound/drumstick/drumstick-1.1.0.ebuild b/media-sound/drumstick/drumstick-1.1.0.ebuild
28 deleted file mode 100644
29 index 3c51d0d2cf4..00000000000
30 --- a/media-sound/drumstick/drumstick-1.1.0.ebuild
31 +++ /dev/null
32 @@ -1,94 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit cmake-utils gnome2-utils xdg-utils
39 -
40 -DESCRIPTION="Qt/C++ wrapper for ALSA sequencer"
41 -HOMEPAGE="http://drumstick.sourceforge.net/"
42 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
43 -
44 -LICENSE="GPL-2+"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="doc fluidsynth pulseaudio"
48 -
49 -RESTRICT="test"
50 -
51 -RDEPEND="
52 - >=dev-qt/qtcore-5.7:5
53 - >=dev-qt/qtdbus-5.7:5
54 - >=dev-qt/qtgui-5.7:5
55 - >=dev-qt/qtnetwork-5.7:5
56 - >=dev-qt/qtsvg-5.7:5
57 - >=dev-qt/qtwidgets-5.7:5
58 - media-libs/alsa-lib
59 - fluidsynth? ( media-sound/fluidsynth )
60 - pulseaudio? ( media-sound/pulseaudio )
61 -"
62 -DEPEND="${RDEPEND}
63 - virtual/pkgconfig
64 - x11-misc/shared-mime-info
65 - doc? (
66 - app-doc/doxygen
67 - app-text/docbook-xsl-stylesheets
68 - dev-libs/libxslt
69 - )
70 -"
71 -
72 -DOCS=( AUTHORS ChangeLog NEWS README TODO )
73 -
74 -src_prepare() {
75 - cmake-utils_src_prepare
76 -
77 - if ! use fluidsynth ; then
78 - sed -i -e "/pkg_check_modules(FLUIDSYNTH/d" \
79 - library/rt/CMakeLists.txt \
80 - library/rt-backends/CMakeLists.txt \
81 - utils/vpiano/CMakeLists.txt || die
82 - fi
83 -
84 - if ! use pulseaudio ; then
85 - sed -i -e "/pkg_check_modules(PULSE/d" CMakeLists.txt || die
86 - fi
87 -}
88 -
89 -src_configure() {
90 - local mycmakeargs=(
91 - -DBUILD_TESTING=OFF
92 - $(cmake-utils_use_find_package doc Doxygen)
93 - )
94 -
95 - cmake-utils_src_configure
96 -}
97 -
98 -src_compile() {
99 - cmake-utils_src_compile
100 -
101 - use doc && cmake-utils_src_compile doxygen
102 -}
103 -
104 -src_install() {
105 - cmake-utils_src_install
106 -
107 - if use doc ; then
108 - dodoc -r "${BUILD_DIR}"/doc/html
109 - fi
110 -}
111 -
112 -pkg_preinst() {
113 - gnome2_icon_savelist
114 -}
115 -
116 -pkg_postinst() {
117 - xdg_desktop_database_update
118 - xdg_mimeinfo_database_update
119 - gnome2_icon_cache_update
120 -}
121 -
122 -pkg_postrm() {
123 - xdg_desktop_database_update
124 - xdg_mimeinfo_database_update
125 - gnome2_icon_cache_update
126 -}
127
128 diff --git a/media-sound/drumstick/drumstick-1.1.1.ebuild b/media-sound/drumstick/drumstick-1.1.1.ebuild
129 deleted file mode 100644
130 index 4c119fe9f8d..00000000000
131 --- a/media-sound/drumstick/drumstick-1.1.1.ebuild
132 +++ /dev/null
133 @@ -1,78 +0,0 @@
134 -# Copyright 1999-2019 Gentoo Authors
135 -# Distributed under the terms of the GNU General Public License v2
136 -
137 -EAPI=7
138 -
139 -inherit cmake-utils xdg
140 -
141 -DESCRIPTION="Qt/C++ wrapper for ALSA sequencer"
142 -HOMEPAGE="http://drumstick.sourceforge.net/"
143 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
144 -
145 -LICENSE="GPL-2+"
146 -SLOT="0"
147 -KEYWORDS="amd64 ~x86"
148 -IUSE="doc fluidsynth pulseaudio"
149 -
150 -BDEPEND="
151 - virtual/pkgconfig
152 - x11-misc/shared-mime-info
153 - doc? (
154 - app-doc/doxygen
155 - app-text/docbook-xsl-stylesheets
156 - dev-libs/libxslt
157 - )
158 -"
159 -DEPEND="
160 - dev-qt/qtcore:5
161 - dev-qt/qtdbus:5
162 - dev-qt/qtgui:5
163 - dev-qt/qtnetwork:5
164 - dev-qt/qtsvg:5
165 - dev-qt/qtwidgets:5
166 - media-libs/alsa-lib
167 - fluidsynth? ( media-sound/fluidsynth )
168 - pulseaudio? ( media-sound/pulseaudio )
169 -"
170 -RDEPEND="${DEPEND}"
171 -
172 -DOCS=( AUTHORS ChangeLog NEWS README TODO )
173 -
174 -RESTRICT="test"
175 -
176 -src_prepare() {
177 - cmake-utils_src_prepare
178 -
179 - if ! use fluidsynth ; then
180 - sed -i -e "/pkg_check_modules(FLUIDSYNTH/d" \
181 - library/rt/CMakeLists.txt \
182 - library/rt-backends/CMakeLists.txt \
183 - utils/vpiano/CMakeLists.txt || die
184 - fi
185 -
186 - if ! use pulseaudio ; then
187 - sed -i -e "/pkg_check_modules(PULSE/d" CMakeLists.txt || die
188 - fi
189 -}
190 -
191 -src_configure() {
192 - local mycmakeargs=(
193 - -DBUILD_TESTING=OFF
194 - $(cmake-utils_use_find_package doc Doxygen)
195 - )
196 -
197 - cmake-utils_src_configure
198 -}
199 -
200 -src_compile() {
201 - cmake-utils_src_compile
202 - use doc && cmake-utils_src_compile doxygen
203 -}
204 -
205 -src_install() {
206 - cmake-utils_src_install
207 -
208 - if use doc ; then
209 - dodoc -r "${BUILD_DIR}"/doc/html
210 - fi
211 -}