From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/hydrogen/
Date: Mon, 12 Apr 2021 08:25:57 +0000 (UTC) [thread overview]
Message-ID: <1618215950.bd6a39a71be70fa9446de607144409d05a826a1c.fordfrog@gentoo> (raw)
commit: bd6a39a71be70fa9446de607144409d05a826a1c
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 12 08:25:41 2021 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Apr 12 08:25:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd6a39a7
media-sound/hydrogen: bump to 1.0.2
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/hydrogen/Manifest | 1 +
media-sound/hydrogen/hydrogen-1.0.2.ebuild | 95 ++++++++++++++++++++++++++++++
2 files changed, 96 insertions(+)
diff --git a/media-sound/hydrogen/Manifest b/media-sound/hydrogen/Manifest
index f5fc3caf85c..13d265e06ab 100644
--- a/media-sound/hydrogen/Manifest
+++ b/media-sound/hydrogen/Manifest
@@ -1 +1,2 @@
DIST hydrogen-1.0.1.tar.gz 11501583 BLAKE2B eb5ac2b80abcdd8e4a6ad72c41b3575c9682e193727714bb13d684bbf79edb1cffde8c18f23ee9ff02de5ad3e15845b8a0fc1600fb8bdb33f90b89fd0973b32c SHA512 66f2db3986a00832558432d17aa6c459a099f314daed23a8eeef34d83d894dfec71d96ceb09113d22be58e4bd47265c105cf57024c43fb5d925b18cabfb146f0
+DIST hydrogen-1.0.2.tar.gz 11533410 BLAKE2B a4210e666b11e173eb0e02728f601ac9811941b558096ae76f3ad45b91c5db1ff942cddd536a50f8f2f456871d69f3a6c52d53c926f4547f13783ccbb4fc250d SHA512 7466b7ef1da4a078d67e1cab8744b2e0c3c048bb55e1febd22023c591ed9e2bf1cea41adc38a775a2ac60978735517a92df404d5ca8bb13603ea68c8da70daa9
diff --git a/media-sound/hydrogen/hydrogen-1.0.2.ebuild b/media-sound/hydrogen/hydrogen-1.0.2.ebuild
new file mode 100644
index 00000000000..69b4555df1e
--- /dev/null
+++ b/media-sound/hydrogen/hydrogen-1.0.2.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake xdg
+
+DESCRIPTION="Advanced drum machine"
+HOMEPAGE="http://www.hydrogen-music.org/"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/${PN}-music/${PN}"
+else
+ MY_PV=${PV/_/-}
+ SRC_URI="https://github.com/${PN}-music/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+ S="${WORKDIR}"/${PN}-${MY_PV}
+fi
+
+LICENSE="GPL-2 ZLIB"
+SLOT="0"
+IUSE="alsa +archive doc jack ladspa lash osc oss portaudio portmidi pulseaudio"
+
+REQUIRED_USE="lash? ( alsa )"
+
+BDEPEND="
+ dev-qt/linguist-tools:5
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+"
+CDEPEND="
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtxml:5
+ dev-qt/qtxmlpatterns:5
+ >=media-libs/libsndfile-1.0.18
+ alsa? ( media-libs/alsa-lib )
+ archive? ( app-arch/libarchive )
+ !archive? ( >=dev-libs/libtar-1.2.11-r3 )
+ jack? ( virtual/jack )
+ ladspa? ( media-libs/liblrdf )
+ lash? ( media-sound/lash )
+ osc? ( media-libs/liblo )
+ portaudio? ( media-libs/portaudio )
+ portmidi? ( media-libs/portmidi )
+ pulseaudio? ( media-sound/pulseaudio )
+"
+DEPEND="
+ ${CDEPEND}
+ dev-qt/qttest:5
+"
+RDEPEND="${CDEPEND}"
+
+DOCS=( AUTHORS ChangeLog DEVELOPERS README.txt )
+
+PATCHES=( "${FILESDIR}/${PN}-1.0.0-gnuinstalldirs.patch" )
+
+src_prepare() {
+ cmake_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DWANT_ALSA=$(usex alsa)
+ -DWANT_CPPUNIT=OFF
+ -DWANT_DEBUG=OFF
+ -DWANT_JACK=$(usex jack)
+ -DWANT_JACKSESSION=$(usex jack)
+ -DWANT_LADSPA=$(usex ladspa)
+ -DWANT_LASH=$(usex lash)
+ -DWANT_LIBARCHIVE=$(usex archive)
+ -DWANT_LRDF=$(usex ladspa)
+ -DWANT_OSC=$(usex osc)
+ -DWANT_OSS=$(usex oss)
+ -DWANT_PORTAUDIO=$(usex portaudio)
+ -DWANT_PORTMIDI=$(usex portmidi)
+ -DWANT_PULSEAUDIO=$(usex pulseaudio)
+ -DWANT_RUBBERBAND=OFF
+ )
+
+ cmake_src_configure
+}
+
+src_compile() {
+ cmake_src_compile
+ use doc && cmake_src_compile doc
+}
+
+src_install() {
+ use doc && local HTML_DOCS=( "${BUILD_DIR}"/docs/html/. )
+ cmake_src_install
+}
next reply other threads:[~2021-04-12 8:26 UTC|newest]
Thread overview: 70+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-12 8:25 Miroslav Šulc [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-07 17:03 [gentoo-commits] repo/gentoo:master commit in: media-sound/hydrogen/ Jakov Smolić
2025-01-07 17:03 Jakov Smolić
2025-01-07 17:03 Jakov Smolić
2025-01-07 17:03 Jakov Smolić
2024-12-07 13:39 Miroslav Šulc
2024-11-30 18:58 Arthur Zamarin
2024-11-30 18:58 Arthur Zamarin
2024-11-30 18:58 Arthur Zamarin
2023-10-14 9:06 Sam James
2023-10-14 9:06 Sam James
2023-10-14 9:06 Sam James
2023-09-25 7:00 Miroslav Šulc
2023-09-10 6:36 Miroslav Šulc
2023-07-16 6:00 Miroslav Šulc
2023-07-15 12:19 Arthur Zamarin
2023-07-08 21:44 Sam James
2023-07-08 21:44 Sam James
2023-07-08 19:24 Sam James
2023-06-19 6:47 Miroslav Šulc
2023-06-10 18:39 Andreas Sturmlechner
2023-06-09 7:04 Miroslav Šulc
2023-05-29 13:11 Andreas Sturmlechner
2023-05-10 5:25 Miroslav Šulc
2023-05-09 15:58 Sam James
2023-05-09 13:07 Sam James
2023-05-09 10:41 Jakov Smolić
2023-05-09 10:41 Jakov Smolić
2023-04-08 18:00 Miroslav Šulc
2023-04-08 6:00 Miroslav Šulc
2023-04-01 10:11 Miroslav Šulc
2022-12-18 15:50 Andreas Sturmlechner
2022-01-08 13:11 Miroslav Šulc
2022-01-07 15:30 Sam James
2022-01-07 9:38 Jakov Smolić
2022-01-06 21:02 Arthur Zamarin
2022-01-06 13:04 Sam James
2021-12-06 11:11 Miroslav Šulc
2021-12-06 9:38 Miroslav Šulc
2021-10-16 22:13 Sam James
2021-10-16 22:04 Sam James
2021-10-10 15:38 Agostino Sarubbo
2021-10-10 15:33 Agostino Sarubbo
2021-05-14 7:53 Miroslav Šulc
2021-05-14 6:42 Agostino Sarubbo
2021-05-13 16:44 Sam James
2021-05-13 16:24 Sam James
2021-05-13 16:18 Sam James
2020-10-07 7:09 Agostino Sarubbo
2020-10-07 6:53 Agostino Sarubbo
2020-10-07 6:50 Agostino Sarubbo
2020-09-07 14:54 Thomas Deutschmann
2020-09-04 7:51 Miroslav Šulc
2020-07-20 7:32 Miroslav Šulc
2020-07-19 7:38 Agostino Sarubbo
2020-07-19 7:38 Agostino Sarubbo
2020-07-17 15:17 Agostino Sarubbo
2020-07-17 15:05 Agostino Sarubbo
2020-07-17 11:56 Miroslav Šulc
2020-05-13 8:47 Miroslav Šulc
2020-05-11 11:38 Agostino Sarubbo
2020-05-07 15:58 Agostino Sarubbo
2020-05-06 9:02 Miroslav Šulc
2020-05-06 7:18 Sergei Trofimovich
2019-02-17 12:39 Andreas Sturmlechner
2018-03-18 12:28 Mikle Kolyada
2018-03-18 0:40 Thomas Deutschmann
2018-03-18 0:20 Sergei Trofimovich
2018-03-13 9:57 Andreas Sturmlechner
2017-06-18 16:42 Alexis Ballier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1618215950.bd6a39a71be70fa9446de607144409d05a826a1c.fordfrog@gentoo \
--to=fordfrog@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox