public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/
Date: Fri,  4 Oct 2024 09:25:24 +0000 (UTC)	[thread overview]
Message-ID: <1728033916.042d234f8a74a1fd3105d27990f5b9011cfc960c.fordfrog@gentoo> (raw)

commit:     042d234f8a74a1fd3105d27990f5b9011cfc960c
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  4 09:25:16 2024 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Oct  4 09:25:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=042d234f

media-sound/qsynth: bump to 1.0.2

Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-sound/qsynth/Manifest            |  1 +
 media-sound/qsynth/qsynth-1.0.2.ebuild | 72 ++++++++++++++++++++++++++++++++++
 2 files changed, 73 insertions(+)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 815e8ba41691..7de002f3f872 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1,3 @@
 DIST qsynth-1.0.0.tar.gz 337358 BLAKE2B 40e2b6aacf21eb17169b0899f1b089cb2869295fd5a3b87a4d0e8d7632bce8518ce4d2dc22dafa2c9d4fafe0211c90b9729432a7407bd35f8237c357ce1cb897 SHA512 9533cb425345a83ed9695917885cba52278035c2a6f7b824981b9ec5033b5d61b7ac050cc7e516a6aa7f4ff76e29eb29089a93a727294e7a6a1e5fb631720ea4
 DIST qsynth-1.0.1.tar.gz 338049 BLAKE2B 9fc3d70aa20af4523a0c1e8ff6d9190b30359b7cd5fa1516e8ad0e6cc9aa0ec9e23cfc850e2796519fa462c0028550c9c43eebb8f1dc413bc9e5fd5a953ba6e8 SHA512 be81442e3eb50cdd8075e7674413c8f9b297bc19c799da138bc8491dc225f03290856d4048b27dcc192fab636d4175ed457bdf798f3a4b61c2b195c2e8a92b33
+DIST qsynth-1.0.2.tar.gz 337605 BLAKE2B 8b1911c8baa7d1b73a18061628044b4b428c2c01a0bdbac9b37388bf6cb65e872272af002d943f062b64bb275cb675b91d2a50e3fc0c970fb4eeb631734a6b9b SHA512 a5585481ca88f65a38da75cb6355e5b0e23b04da70ac9ab8e55abafe2b0fac83905a873a990e4de8adcf3cf484b48088d83a7aec99252a48a004158504a7e137

diff --git a/media-sound/qsynth/qsynth-1.0.2.ebuild b/media-sound/qsynth/qsynth-1.0.2.ebuild
new file mode 100644
index 000000000000..496e8129a1ca
--- /dev/null
+++ b/media-sound/qsynth/qsynth-1.0.2.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake desktop xdg
+
+DESCRIPTION="Qt application to control FluidSynth"
+HOMEPAGE="https://qsynth.sourceforge.io/"
+
+if [[ ${PV} == *9999* ]]; then
+	EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code"
+	inherit git-r3
+else
+	SRC_URI="https://downloads.sourceforge.net/qsynth/${P}.tar.gz"
+	KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio qt6"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+	qt6? ( dev-qt/qttools:6[linguist] )
+	!qt6? ( dev-qt/linguist-tools:5 )
+"
+DEPEND="
+	qt6? (
+		dev-qt/qtbase:6[gui,network,widgets]
+		dev-qt/qtsvg:6
+	)
+	!qt6? (
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtnetwork:5
+		dev-qt/qtsvg:5
+		dev-qt/qtwidgets:5
+	)
+	media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DCONFIG_DEBUG=$(usex debug 1 0)
+		-DCONFIG_QT6=$(usex qt6 1 0)
+	)
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+
+	# The desktop file is invalid, and we also change the command
+	# depending on useflags
+	rm "${D}/usr/share/applications/org.rncbc.qsynth.desktop" || die
+
+	local cmd
+	if use jack; then
+		cmd="qsynth"
+	elif use pulseaudio; then
+		cmd="qsynth -a pulseaudio"
+	elif use alsa; then
+		cmd="qsynth -a alsa"
+	else
+		cmd="qsynth -a oss"
+	fi
+
+	make_desktop_entry "${cmd}" Qsynth org.rncbc.qsynth
+}


             reply	other threads:[~2024-10-04  9:25 UTC|newest]

Thread overview: 152+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-04  9:25 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-12  5:59 [gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/ Miroslav Šulc
2024-07-20 10:06 Miroslav Šulc
2024-07-19 22:58 Sam James
2024-07-19 21:39 Sam James
2024-07-19 15:43 Arthur Zamarin
2024-07-19 15:06 Arthur Zamarin
2024-06-19  8:30 Miroslav Šulc
2024-06-08  8:12 Miroslav Šulc
2024-06-03 11:20 Sam James
2024-06-03 11:20 Sam James
2024-06-03 11:20 Sam James
2024-05-31 14:28 Sam James
2024-05-31 14:09 Arthur Zamarin
2024-05-31 12:04 Arthur Zamarin
2024-05-02  9:09 Miroslav Šulc
2024-04-13  7:52 Miroslav Šulc
2024-03-04 10:39 Miroslav Šulc
2024-03-02 20:41 Sam James
2024-02-24 10:07 Sam James
2024-02-24  7:08 Sam James
2024-02-23 17:33 Sam James
2024-01-24  9:40 Miroslav Šulc
2023-10-11  7:31 Miroslav Šulc
2023-10-10 20:48 Sam James
2023-10-10 15:09 Arthur Zamarin
2023-10-10 15:09 Arthur Zamarin
2023-10-10 15:09 Arthur Zamarin
2023-09-10  6:39 Miroslav Šulc
2023-08-15 15:32 Arthur Zamarin
2023-08-03 15:28 Sam James
2023-08-03 15:13 Sam James
2023-08-03 10:28 Arthur Zamarin
2023-08-03  5:45 Miroslav Šulc
2023-07-03  8:38 Miroslav Šulc
2023-06-02  6:59 Miroslav Šulc
2023-06-02  6:57 Miroslav Šulc
2023-06-02  6:57 Miroslav Šulc
2023-06-02  6:53 Miroslav Šulc
2023-01-30 16:34 Arthur Zamarin
2023-01-29 10:45 Sam James
2023-01-29 10:45 Sam James
2022-12-29  8:32 Miroslav Šulc
2022-12-17  9:33 Miroslav Šulc
2022-12-15 16:51 Arthur Zamarin
2022-12-15 16:51 Arthur Zamarin
2022-12-15 16:51 Arthur Zamarin
2022-12-15 16:51 Arthur Zamarin
2022-11-14 15:24 Alexis Ballier
2022-05-04 18:54 Miroslav Šulc
2022-05-04 14:40 Sam James
2022-05-04 14:40 Sam James
2022-04-04  6:08 Miroslav Šulc
2022-04-04  6:08 Miroslav Šulc
2022-03-17  9:06 Miroslav Šulc
2022-03-16 23:53 Sam James
2022-03-15  9:59 Jakov Smolić
2022-03-15  9:59 Jakov Smolić
2022-02-12 10:29 Miroslav Šulc
2022-02-11  8:50 Miroslav Šulc
2022-02-11  7:26 Agostino Sarubbo
2022-02-10 11:43 Sam James
2022-02-10  9:10 Jakov Smolić
2022-02-10  9:10 Jakov Smolić
2022-01-10  8:56 Miroslav Šulc
2021-08-08  6:00 Miroslav Šulc
2021-08-07 23:37 Sam James
2021-08-07 14:49 Sam James
2021-08-07  5:10 Agostino Sarubbo
2021-08-06 21:18 Sam James
2021-07-06  4:35 Miroslav Šulc
2021-06-12  9:51 Miroslav Šulc
2021-06-12  3:29 Sam James
2021-06-12  1:22 Sam James
2021-06-12  1:22 Sam James
2021-06-12  1:18 Sam James
2021-05-30 10:48 Miroslav Šulc
2021-05-30  9:59 Sam James
2021-05-30  9:50 Agostino Sarubbo
2021-05-29 15:23 Sam James
2021-05-29 13:28 Sam James
2021-05-12  5:46 Miroslav Šulc
2021-04-27 18:08 Miroslav Šulc
2021-03-08 10:26 Sam James
2021-03-08 10:25 Sam James
2021-03-08  5:32 Sam James
2021-03-07 23:06 Sam James
2021-01-25  9:37 Miroslav Šulc
2021-01-21  7:59 Miroslav Šulc
2020-10-13 15:02 Andreas Sturmlechner
2020-10-13  9:26 Agostino Sarubbo
2020-10-12 12:35 Agostino Sarubbo
2020-10-12 11:49 Agostino Sarubbo
2020-10-12 11:47 Agostino Sarubbo
2020-09-03 16:51 Miroslav Šulc
2020-08-22 16:06 Andreas Sturmlechner
2020-08-22 16:06 Andreas Sturmlechner
2020-05-09  8:41 Miroslav Šulc
2020-05-08 10:46 Agostino Sarubbo
2020-05-07 15:58 Agostino Sarubbo
2020-05-06  7:18 Sergei Trofimovich
2020-05-06  7:01 Sergei Trofimovich
2020-04-23  9:03 Georgy Yakovlev
2020-04-12  4:45 Miroslav Šulc
2020-04-11 16:12 Agostino Sarubbo
2020-04-11 16:00 Agostino Sarubbo
2020-04-09 12:25 Agostino Sarubbo
2020-04-03 14:42 Miroslav Šulc
2020-03-09 11:17 Miroslav Šulc
2019-12-13 10:01 Miroslav Šulc
2019-12-13  7:36 Agostino Sarubbo
2019-12-10 10:54 Agostino Sarubbo
2019-12-03 10:03 Agostino Sarubbo
2019-11-01 12:32 Miroslav Šulc
2019-11-01 12:21 Miroslav Šulc
2019-11-01 12:16 Miroslav Šulc
2019-11-01 12:16 Miroslav Šulc
2019-08-13 11:40 Agostino Sarubbo
2019-08-11 21:30 Thomas Deutschmann
2019-08-08  7:43 Agostino Sarubbo
2019-05-25 20:59 Andreas Sturmlechner
2019-05-20 17:10 Andreas Sturmlechner
2019-05-20 11:13 Mikle Kolyada
2019-05-19 13:14 Thomas Deutschmann
2019-05-12 21:57 Sergei Trofimovich
2019-03-19  2:03 Thomas Deutschmann
2019-03-16 20:18 Sergei Trofimovich
2019-03-15 23:09 Mikle Kolyada
2019-03-10 22:46 Andreas Sturmlechner
2019-03-10 22:46 Andreas Sturmlechner
2018-11-09  0:43 Andreas Sturmlechner
2018-09-15  2:31 Andreas Sturmlechner
2018-09-13 11:05 Mikle Kolyada
2018-09-09  1:12 Thomas Deutschmann
2018-09-07 22:54 Sergei Trofimovich
2018-01-21 12:37 Alexis Ballier
2017-12-21  9:40 Andreas Sturmlechner
2017-12-16 10:31 Tobias Klausmann
2017-10-23 19:51 Thomas Deutschmann
2017-09-24 17:23 Sergei Trofimovich
2017-05-09  7:14 Alexis Ballier
2016-11-15  9:09 Alexis Ballier
2016-10-21 22:19 David Seifert
2016-10-21 22:19 David Seifert
2016-10-21 22:19 David Seifert
2016-09-26 15:03 Alexis Ballier
2016-09-26 15:03 Alexis Ballier
2016-05-12 13:40 Alexis Ballier
2015-11-22 17:52 Michael Palimaka
2015-11-01 16:12 Mikle Kolyada
2015-09-24 12:38 Agostino Sarubbo
2015-09-14 13:24 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=1728033916.042d234f8a74a1fd3105d27990f5b9011cfc960c.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