Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/drumstick/
Date: Fri, 26 Nov 2021 07:31:58
Message-Id: 1637911913.c33186be6ae7db41a325f659f95f59f248555ce0.fordfrog@gentoo
1 commit: c33186be6ae7db41a325f659f95f59f248555ce0
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 26 07:31:43 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 26 07:31:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c33186be
7
8 media-sound/drumstick: removed obsolete 2.4.0
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-sound/drumstick/Manifest | 1 -
14 media-sound/drumstick/drumstick-2.4.0.ebuild | 65 ----------------------------
15 2 files changed, 66 deletions(-)
16
17 diff --git a/media-sound/drumstick/Manifest b/media-sound/drumstick/Manifest
18 index ef50f8c660d0..ecd2a80f7e96 100644
19 --- a/media-sound/drumstick/Manifest
20 +++ b/media-sound/drumstick/Manifest
21 @@ -1,2 +1 @@
22 -DIST drumstick-2.4.0.tar.gz 2094661 BLAKE2B 98f79081e9aa942b24355f86a14bb273145b7d764f19ad671050e74546ff513ee76fe2dac290f75ea1b1c54a709232da0f26e63d1829a5317174793692f2664f SHA512 633ae93c11f22999b6cadac7481e162d6e24499b614ba58e785e73b6af39a1cfbca235fcbb4b21107840f1e4dff059caaf32f9945ea80434a5017b816f62774f
23 DIST drumstick-2.4.1.tar.gz 2014026 BLAKE2B 4e2765430438505c910919d5a5069b13a63e72083c4a40bd8b406e3463842ccd5ab024f4a0fccbceafe808e3926b3be03e98338afcac4520de978b0f5c950ee8 SHA512 5063201b643cd3e58db4c77521444e7816febb39ceb739309ac63b164b2fc67b6bdec16a98945141d7b41add41d82b2bd2ddf99890f12edb2f86b73e643ac6d6
24
25 diff --git a/media-sound/drumstick/drumstick-2.4.0.ebuild b/media-sound/drumstick/drumstick-2.4.0.ebuild
26 deleted file mode 100644
27 index d5cce38803f9..000000000000
28 --- a/media-sound/drumstick/drumstick-2.4.0.ebuild
29 +++ /dev/null
30 @@ -1,65 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -inherit cmake xdg
37 -
38 -DESCRIPTION="Qt/C++ wrapper for ALSA sequencer"
39 -HOMEPAGE="https://drumstick.sourceforge.io/"
40 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="GPL-3+"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="doc fluidsynth network pulseaudio"
46 -
47 -RESTRICT="test"
48 -
49 -BDEPEND="
50 - dev-libs/libxslt
51 - dev-qt/linguist-tools:5
52 - virtual/pkgconfig
53 - x11-misc/shared-mime-info
54 - doc? (
55 - app-doc/doxygen[dot]
56 - app-text/docbook-xsl-stylesheets
57 - )
58 -"
59 -DEPEND="
60 - dev-qt/designer:5
61 - dev-qt/qtcore:5
62 - dev-qt/qtdbus:5
63 - dev-qt/qtgui:5
64 - dev-qt/qtsvg:5
65 - dev-qt/qtwidgets:5
66 - media-libs/alsa-lib
67 - fluidsynth? ( media-sound/fluidsynth )
68 - network? ( dev-qt/qtnetwork:5 )
69 - pulseaudio? ( media-sound/pulseaudio )
70 -"
71 -RDEPEND="${DEPEND}"
72 -
73 -DOCS=( AUTHORS ChangeLog NEWS readme.md TODO )
74 -
75 -src_configure() {
76 - local mycmakeargs=(
77 - -DBUILD_TESTING=OFF
78 - -DUSE_DBUS=ON
79 - -DUSE_FLUIDSYNTH=$(usex fluidsynth)
80 - -DUSE_NETWORK=$(usex network)
81 - -DUSE_PULSEAUDIO=$(usex pulseaudio)
82 - -DBUILD_DOCS=$(usex doc)
83 - )
84 - cmake_src_configure
85 -}
86 -
87 -src_compile() {
88 - cmake_src_compile
89 - use doc && cmake_src_compile doxygen
90 -}
91 -
92 -src_install() {
93 - use doc && local HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
94 - cmake_src_install
95 -}