[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2024-05-02 Thread Miroslav Šulc
commit: 5d5557b178845bd88f3997cefea43b3ba4bf2c91
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu May  2 09:08:51 2024 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu May  2 09:09:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d5557b1

media-sound/qsynth: bump to 0.9.91

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

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 23a6a818f4c2..604805a1d54e 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1,3 @@
 DIST qsynth-0.9.13.tar.gz 333132 BLAKE2B 
2d0a388e59f244052b1c3f7e16bda40b3de314d2e8b9316b6f471dcc4869299b56f6234c5cecae2a8105c366d601a28cdb0d5c5ebb0bb9e7eee352d62b5af3d0
 SHA512 
8249438429191a2beb381af9f6fc6bc0d88711c2590379bfa10c558464c562f28453dacec8edbe1afdc590ee437530cefac211b272553cf8acc266706894f17c
 DIST qsynth-0.9.90.tar.gz 333577 BLAKE2B 
33a9f799423a0c93674ed57f2920f810edaada3ef65ec40594ed29654e6de9550b626b4fe17a2d75dc79fa74f8326ad7d7cd197d4c8d2b2b72ebae0ba10586cd
 SHA512 
f84df48a8bb7d9de56c8380e2fdac3381da78b90e472fb344d84cae552541c0021830b83faf848f48ff23989a51db33fbbab1cfb315ed847950df9e408fd27cf
+DIST qsynth-0.9.91.tar.gz 334833 BLAKE2B 
057ebf72aab4ea811046fede9df42ef7ccb7b98018544397e67212d694d7d798761340114a6609c230062791c81050f11c77348674008e09b1c1f9a28ea27f47
 SHA512 
0749195078e223ae7e42f2fc7d7f435bc174290f9d018ed01ec27088599f5e1e39739b20aa1233368e45336fb6ff74c9f634942e34543a7405f02749dc76446b

diff --git a/media-sound/qsynth/qsynth-0.9.91.ebuild 
b/media-sound/qsynth/qsynth-0.9.91.ebuild
new file mode 100644
index ..496e8129a1ca
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.91.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} == ** ]]; 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
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2024-04-13 Thread Miroslav Šulc
commit: 8026b7b0c254f22c9f4e82594fd2ad66d50a55e9
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Apr 13 07:52:04 2024 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Apr 13 07:52:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8026b7b0

media-sound/qsynth: bump to 0.9.90

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

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 60cf840ce933..23a6a818f4c2 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.13.tar.gz 333132 BLAKE2B 
2d0a388e59f244052b1c3f7e16bda40b3de314d2e8b9316b6f471dcc4869299b56f6234c5cecae2a8105c366d601a28cdb0d5c5ebb0bb9e7eee352d62b5af3d0
 SHA512 
8249438429191a2beb381af9f6fc6bc0d88711c2590379bfa10c558464c562f28453dacec8edbe1afdc590ee437530cefac211b272553cf8acc266706894f17c
+DIST qsynth-0.9.90.tar.gz 333577 BLAKE2B 
33a9f799423a0c93674ed57f2920f810edaada3ef65ec40594ed29654e6de9550b626b4fe17a2d75dc79fa74f8326ad7d7cd197d4c8d2b2b72ebae0ba10586cd
 SHA512 
f84df48a8bb7d9de56c8380e2fdac3381da78b90e472fb344d84cae552541c0021830b83faf848f48ff23989a51db33fbbab1cfb315ed847950df9e408fd27cf

diff --git a/media-sound/qsynth/qsynth-0.9.90.ebuild 
b/media-sound/qsynth/qsynth-0.9.90.ebuild
new file mode 100644
index ..9c11d8e94315
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.90.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} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/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
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2024-03-04 Thread Miroslav Šulc
commit: e3b8bee2922b13854a2b7bf920beac1fe73d3a6f
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Mar  4 10:39:14 2024 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Mar  4 10:39:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b8bee2

media-sound/qsynth: dropped obsolete 0.9.12

Bug: https://bugs.gentoo.org/925330
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest |  1 -
 media-sound/qsynth/qsynth-0.9.12.ebuild | 72 -
 2 files changed, 73 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 70b031c15b58..60cf840ce933 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.9.12.tar.gz 333588 BLAKE2B 
778edbb60535aea55f3d82074e8723b37fef6fa01975403211317753f790e14baf9f59db294f68e3d067a2142b450878cfaf412ad22480744936a2eee1d654d1
 SHA512 
44017d24c09714d174c774083462f7dc263f2abc7aaf7d2cda0f4987b007210a33dcfb35d47eacd5682859e5299f75e26e47fd2f73458eb2a05a36c27d5889f0
 DIST qsynth-0.9.13.tar.gz 333132 BLAKE2B 
2d0a388e59f244052b1c3f7e16bda40b3de314d2e8b9316b6f471dcc4869299b56f6234c5cecae2a8105c366d601a28cdb0d5c5ebb0bb9e7eee352d62b5af3d0
 SHA512 
8249438429191a2beb381af9f6fc6bc0d88711c2590379bfa10c558464c562f28453dacec8edbe1afdc590ee437530cefac211b272553cf8acc266706894f17c

diff --git a/media-sound/qsynth/qsynth-0.9.12.ebuild 
b/media-sound/qsynth/qsynth-0.9.12.ebuild
deleted file mode 100644
index 5928b0e9f74b..
--- a/media-sound/qsynth/qsynth-0.9.12.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2023 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} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/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
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2024-03-02 Thread Sam James
commit: 6e9d6bb4af6ad7f2aecde09bdc3eaf744b3d52e5
Author: Sam James  gentoo  org>
AuthorDate: Sat Mar  2 20:40:58 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Mar  2 20:40:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e9d6bb4

media-sound/qsynth: Stabilize 0.9.13 ppc, #925330

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.13.ebuild 
b/media-sound/qsynth/qsynth-0.9.13.ebuild
index 0e2919789c9c..4b6094e3e785 100644
--- a/media-sound/qsynth/qsynth-0.9.13.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.13.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2024-02-24 Thread Sam James
commit: a260b4e3ad4372dd164ca2ee55e1c038d72e1217
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb 24 10:06:20 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb 24 10:06:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a260b4e3

media-sound/qsynth: Stabilize 0.9.13 amd64, #925330

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.13.ebuild 
b/media-sound/qsynth/qsynth-0.9.13.ebuild
index ab89aae57d75..0e2919789c9c 100644
--- a/media-sound/qsynth/qsynth-0.9.13.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.13.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ppc64 x86"
+   KEYWORDS="amd64 ~ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2024-02-23 Thread Sam James
commit: 06166e0de447fca5fee0d1f6691b21b300d055d7
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb 24 07:07:39 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb 24 07:07:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06166e0d

media-sound/qsynth: Stabilize 0.9.13 x86, #925330

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.13.ebuild 
b/media-sound/qsynth/qsynth-0.9.13.ebuild
index a8ffd3ae54a9..ab89aae57d75 100644
--- a/media-sound/qsynth/qsynth-0.9.13.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.13.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2024-02-23 Thread Sam James
commit: 0f2a01304432e4c60381f730950e2484f0388120
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 23 17:33:13 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 23 17:33:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f2a0130

media-sound/qsynth: Stabilize 0.9.13 ppc64, #925330

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.13.ebuild 
b/media-sound/qsynth/qsynth-0.9.13.ebuild
index 9c11d8e94315..a8ffd3ae54a9 100644
--- a/media-sound/qsynth/qsynth-0.9.13.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.13.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2024-01-24 Thread Miroslav Šulc
commit: bc60e483735913f3c0761daa4f89022ae1a75c15
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jan 24 09:40:00 2024 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jan 24 09:40:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc60e483

media-sound/qsynth: bump to 0.9.13

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

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index c6036775be23..70b031c15b58 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.12.tar.gz 333588 BLAKE2B 
778edbb60535aea55f3d82074e8723b37fef6fa01975403211317753f790e14baf9f59db294f68e3d067a2142b450878cfaf412ad22480744936a2eee1d654d1
 SHA512 
44017d24c09714d174c774083462f7dc263f2abc7aaf7d2cda0f4987b007210a33dcfb35d47eacd5682859e5299f75e26e47fd2f73458eb2a05a36c27d5889f0
+DIST qsynth-0.9.13.tar.gz 333132 BLAKE2B 
2d0a388e59f244052b1c3f7e16bda40b3de314d2e8b9316b6f471dcc4869299b56f6234c5cecae2a8105c366d601a28cdb0d5c5ebb0bb9e7eee352d62b5af3d0
 SHA512 
8249438429191a2beb381af9f6fc6bc0d88711c2590379bfa10c558464c562f28453dacec8edbe1afdc590ee437530cefac211b272553cf8acc266706894f17c

diff --git a/media-sound/qsynth/qsynth-0.9.13.ebuild 
b/media-sound/qsynth/qsynth-0.9.13.ebuild
new file mode 100644
index ..9c11d8e94315
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.13.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} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/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
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-10-11 Thread Miroslav Šulc
commit: 399592cbc82b96895c181feb4adfd8e8e60e4c9d
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Oct 11 07:30:44 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Oct 11 07:30:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=399592cb

media-sound/qsynth: dropped obsolete 0.9.11-r2

Bug: https://bugs.gentoo.org/915542
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.11-r2.ebuild | 72 --
 2 files changed, 73 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index df5eb08e0e19..c6036775be23 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.9.11.tar.gz 333402 BLAKE2B 
72a57a978bad1c4b2abcb287ea27c1c1365c06efdeedcd9bb69ca01a20304f48b19065c5e5181e8d30a3d4137eee56ec69cfba32dd8d2fa29f3ea1140019e089
 SHA512 
3d6c40066db235fc39ca804de1a352ade9e03e162b5901d0e1170f1f0cb4ec3e1631d2fe2b1e50a9cbab9528bca54ebb0afb8e5d615fb8f0b06b9761ae472f2d
 DIST qsynth-0.9.12.tar.gz 333588 BLAKE2B 
778edbb60535aea55f3d82074e8723b37fef6fa01975403211317753f790e14baf9f59db294f68e3d067a2142b450878cfaf412ad22480744936a2eee1d654d1
 SHA512 
44017d24c09714d174c774083462f7dc263f2abc7aaf7d2cda0f4987b007210a33dcfb35d47eacd5682859e5299f75e26e47fd2f73458eb2a05a36c27d5889f0

diff --git a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild 
b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
deleted file mode 100644
index 5928b0e9f74b..
--- a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2023 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} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/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
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-10-10 Thread Sam James
commit: 436673a1463515f283b809352685f9cfe4467137
Author: Sam James  gentoo  org>
AuthorDate: Tue Oct 10 20:48:23 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Oct 10 20:48:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=436673a1

media-sound/qsynth: Stabilize 0.9.12 amd64, #915542

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.12.ebuild 
b/media-sound/qsynth/qsynth-0.9.12.ebuild
index 1dffde6cabf8..5928b0e9f74b 100644
--- a/media-sound/qsynth/qsynth-0.9.12.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.12.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ppc ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-10-10 Thread Arthur Zamarin
commit: f2bf139d1a6cad73e2c542e275ea0b19e2baef3f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Oct 10 15:09:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Oct 10 15:09:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2bf139d

media-sound/qsynth: Stabilize 0.9.12 ppc64, #915542

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.12.ebuild 
b/media-sound/qsynth/qsynth-0.9.12.ebuild
index 6d8d6769e7fb..1dffde6cabf8 100644
--- a/media-sound/qsynth/qsynth-0.9.12.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.12.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ppc ~ppc64 x86"
+   KEYWORDS="~amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-10-10 Thread Arthur Zamarin
commit: c29819ad5c7b253b215676d1c424c6f2f84eb1e8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Oct 10 15:09:02 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Oct 10 15:09:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c29819ad

media-sound/qsynth: Stabilize 0.9.12 ppc, #915542

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.12.ebuild 
b/media-sound/qsynth/qsynth-0.9.12.ebuild
index 2736a615b421..6d8d6769e7fb 100644
--- a/media-sound/qsynth/qsynth-0.9.12.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.12.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+   KEYWORDS="~amd64 ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-10-10 Thread Arthur Zamarin
commit: 39fa82f8824be09638766fd471ab6c3281643d3e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Oct 10 15:09:01 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Oct 10 15:09:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39fa82f8

media-sound/qsynth: Stabilize 0.9.12 x86, #915542

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.12.ebuild 
b/media-sound/qsynth/qsynth-0.9.12.ebuild
index ab43ec3a943b..2736a615b421 100644
--- a/media-sound/qsynth/qsynth-0.9.12.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.12.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-09-10 Thread Miroslav Šulc
commit: 7771610544997504cb807b76bc7d4b7af524f1d5
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Sep 10 06:39:20 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Sep 10 06:39:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77716105

media-sound/qsynth: bump to 0.9.12

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

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index e7fcec5f5499..df5eb08e0e19 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.11.tar.gz 333402 BLAKE2B 
72a57a978bad1c4b2abcb287ea27c1c1365c06efdeedcd9bb69ca01a20304f48b19065c5e5181e8d30a3d4137eee56ec69cfba32dd8d2fa29f3ea1140019e089
 SHA512 
3d6c40066db235fc39ca804de1a352ade9e03e162b5901d0e1170f1f0cb4ec3e1631d2fe2b1e50a9cbab9528bca54ebb0afb8e5d615fb8f0b06b9761ae472f2d
+DIST qsynth-0.9.12.tar.gz 333588 BLAKE2B 
778edbb60535aea55f3d82074e8723b37fef6fa01975403211317753f790e14baf9f59db294f68e3d067a2142b450878cfaf412ad22480744936a2eee1d654d1
 SHA512 
44017d24c09714d174c774083462f7dc263f2abc7aaf7d2cda0f4987b007210a33dcfb35d47eacd5682859e5299f75e26e47fd2f73458eb2a05a36c27d5889f0

diff --git a/media-sound/qsynth/qsynth-0.9.12.ebuild 
b/media-sound/qsynth/qsynth-0.9.12.ebuild
new file mode 100644
index ..ab43ec3a943b
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.12.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 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} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/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
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/, media-sound/qsynth/files/

2023-08-16 Thread Miroslav Šulc
commit: 2e7e271da86f17fd541a04453029903bcada677c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Aug 16 06:02:51 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Aug 16 06:02:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e7e271d

media-sound/qsynth: dropped obsolete 0.9.10

Bug: https://bugs.gentoo.org/911640
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 .../files/qsynth-0.9.1-cmake-no-git-version.patch  | 19 --
 media-sound/qsynth/qsynth-0.9.10.ebuild| 71 --
 3 files changed, 91 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index a2aeced3f50c..e7fcec5f5499 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.9.10.tar.gz 89 BLAKE2B 
87ca02e1f15a7b28f5af462d1ef52e9609fc0abc3d15d545493f448da61d85d8d264f5ab908816607de3291424b979348f330205fc6e727edb7287fd28e9067d
 SHA512 
82e04ccfe3193d570e28c4e5da3e9ea8afbc2b1f2e43f54459449b31ee5448a6232a5fe13631eed80a5cf75f4176e5a419ec6467bf3d7d5e30d34083d4d8f7aa
 DIST qsynth-0.9.11.tar.gz 333402 BLAKE2B 
72a57a978bad1c4b2abcb287ea27c1c1365c06efdeedcd9bb69ca01a20304f48b19065c5e5181e8d30a3d4137eee56ec69cfba32dd8d2fa29f3ea1140019e089
 SHA512 
3d6c40066db235fc39ca804de1a352ade9e03e162b5901d0e1170f1f0cb4ec3e1631d2fe2b1e50a9cbab9528bca54ebb0afb8e5d615fb8f0b06b9761ae472f2d

diff --git a/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch 
b/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch
deleted file mode 100644
index 0a0dcd59ee13..
--- a/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch
+++ /dev/null
@@ -1,19 +0,0 @@
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -8,6 +8,7 @@ project(qsynth
- list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
- 
- set (CONFIG_VERSION ${PROJECT_VERSION})
-+#[[
- execute_process (
-   COMMAND git describe --tags --dirty --abbrev=6
-   OUTPUT_VARIABLE GIT_DESCRIBE_OUTPUT
-@@ -29,6 +30,8 @@ if (GIT_DESCRIBE_RESULT EQUAL 0)
- else ()
-   set (VERSION "${PROJECT_VERSION}")
- endif ()
-+]]
-+set (VERSION "${PROJECT_VERSION}")
- 
- set (PACKAGE_NAME "Qsynth")
- set (PACKAGE_VERSION "${VERSION}")

diff --git a/media-sound/qsynth/qsynth-0.9.10.ebuild 
b/media-sound/qsynth/qsynth-0.9.10.ebuild
deleted file mode 100644
index 501b255863f6..
--- a/media-sound/qsynth/qsynth-0.9.10.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2023 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} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-08-15 Thread Arthur Zamarin
commit: 4eef86dbdbdbf46b13db9260724dc770246aaddc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Aug 15 15:32:09 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Aug 15 15:32:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eef86db

media-sound/qsynth: Stabilize 0.9.11-r2 ppc, #911640

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild 
b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
index e4f9cd05f764..5928b0e9f74b 100644
--- a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-08-03 Thread Sam James
commit: 96c2b94630cb83733a2d45fbab1dfba7808ea8ad
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug  3 15:28:25 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug  3 15:28:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96c2b946

media-sound/qsynth: Stabilize 0.9.11-r2 amd64, #911640

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild 
b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
index f215a5f8acf1..e4f9cd05f764 100644
--- a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ppc64 x86"
+   KEYWORDS="amd64 ~ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-08-03 Thread Sam James
commit: 754c7af70ba3f8ea97fb76355dd156880598f889
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug  3 15:13:07 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug  3 15:13:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=754c7af7

media-sound/qsynth: Stabilize 0.9.11-r2 x86, #911640

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild 
b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
index 2db9b4bf81ee..f215a5f8acf1 100644
--- a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-08-03 Thread Arthur Zamarin
commit: 268803ef7aa1c206b91a3c9c031c5b7ba684e023
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug  3 10:28:07 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug  3 10:28:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=268803ef

media-sound/qsynth: Stabilize 0.9.11-r2 ppc64, #911640

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild 
b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
index ab43ec3a943b..2db9b4bf81ee 100644
--- a/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-08-02 Thread Miroslav Šulc
commit: ad21e6c1f5d410580aa6591d5a7d7ffd40b1df26
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Aug  3 05:44:48 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Aug  3 05:44:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad21e6c1

media-sound/qsynth: fixed icon file name

Closes: https://bugs.gentoo.org/908524
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/{qsynth-0.9.11-r1.ebuild => qsynth-0.9.11-r2.ebuild} | 2 +-
 media-sound/qsynth/qsynth-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/qsynth/qsynth-0.9.11-r1.ebuild 
b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
similarity index 96%
rename from media-sound/qsynth/qsynth-0.9.11-r1.ebuild
rename to media-sound/qsynth/qsynth-0.9.11-r2.ebuild
index 5690fe3abd29..ab43ec3a943b 100644
--- a/media-sound/qsynth/qsynth-0.9.11-r1.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.11-r2.ebuild
@@ -68,5 +68,5 @@ src_install() {
cmd="qsynth -a oss"
fi
 
-   make_desktop_entry "${cmd}" Qsynth qsynth
+   make_desktop_entry "${cmd}" Qsynth org.rncbc.qsynth
 }

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-.ebuild
index 5690fe3abd29..ab43ec3a943b 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-.ebuild
@@ -68,5 +68,5 @@ src_install() {
cmd="qsynth -a oss"
fi
 
-   make_desktop_entry "${cmd}" Qsynth qsynth
+   make_desktop_entry "${cmd}" Qsynth org.rncbc.qsynth
 }



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-07-03 Thread Miroslav Šulc
commit: fd5fc2768ca299220de2d2a9a5a3ba61d1db22ca
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Jul  3 08:38:31 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Jul  3 08:38:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5fc276

media-sound/qsynth: added support fot qt6, fixed missing dep

Closes: https://bugs.gentoo.org/881297
Signed-off-by: Miroslav Šulc  gentoo.org>

 ...synth-0.9.11.ebuild => qsynth-0.9.11-r1.ebuild} | 29 +++---
 media-sound/qsynth/qsynth-.ebuild  | 29 --
 2 files changed, 31 insertions(+), 27 deletions(-)

diff --git a/media-sound/qsynth/qsynth-0.9.11.ebuild 
b/media-sound/qsynth/qsynth-0.9.11-r1.ebuild
similarity index 77%
rename from media-sound/qsynth/qsynth-0.9.11.ebuild
rename to media-sound/qsynth/qsynth-0.9.11-r1.ebuild
index 9304e1e44040..5690fe3abd29 100644
--- a/media-sound/qsynth/qsynth-0.9.11.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.11-r1.ebuild
@@ -18,33 +18,34 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
+IUSE="+alsa debug jack pulseaudio qt6"
 
 REQUIRED_USE="|| ( alsa jack pulseaudio )"
 
 BDEPEND="
-   dev-qt/linguist-tools:5
+   qt6? ( dev-qt/qttools:6[linguist] )
+   !qt6? ( dev-qt/linguist-tools:5 )
 "
 DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
+   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}"
 
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
 src_configure() {
local mycmakeargs=(
-DCONFIG_DEBUG=$(usex debug 1 0)
+   -DCONFIG_QT6=$(usex qt6 1 0)
)
cmake_src_configure
 }

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-.ebuild
index 76fd6013eca5..5690fe3abd29 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -18,31 +18,34 @@ fi
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
+IUSE="+alsa debug jack pulseaudio qt6"
 
 REQUIRED_USE="|| ( alsa jack pulseaudio )"
 
 BDEPEND="
-   dev-qt/linguist-tools:5
+   qt6? ( dev-qt/qttools:6[linguist] )
+   !qt6? ( dev-qt/linguist-tools:5 )
 "
 DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
+   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_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
 src_configure() {
local mycmakeargs=(
-DCONFIG_DEBUG=$(usex debug 1 0)
+   -DCONFIG_QT6=$(usex qt6 1 0)
)
cmake_src_configure
 }



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-06-02 Thread Miroslav Šulc
commit: aa59e1de6dcb942ac262cb9a0d61e3b11379e489
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Jun  2 06:59:15 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jun  2 06:59:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa59e1de

media-sound/qsynth: bump to 0.9.11

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

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 9037b3b07fd9..a2aeced3f50c 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.10.tar.gz 89 BLAKE2B 
87ca02e1f15a7b28f5af462d1ef52e9609fc0abc3d15d545493f448da61d85d8d264f5ab908816607de3291424b979348f330205fc6e727edb7287fd28e9067d
 SHA512 
82e04ccfe3193d570e28c4e5da3e9ea8afbc2b1f2e43f54459449b31ee5448a6232a5fe13631eed80a5cf75f4176e5a419ec6467bf3d7d5e30d34083d4d8f7aa
+DIST qsynth-0.9.11.tar.gz 333402 BLAKE2B 
72a57a978bad1c4b2abcb287ea27c1c1365c06efdeedcd9bb69ca01a20304f48b19065c5e5181e8d30a3d4137eee56ec69cfba32dd8d2fa29f3ea1140019e089
 SHA512 
3d6c40066db235fc39ca804de1a352ade9e03e162b5901d0e1170f1f0cb4ec3e1631d2fe2b1e50a9cbab9528bca54ebb0afb8e5d615fb8f0b06b9761ae472f2d

diff --git a/media-sound/qsynth/qsynth-0.9.11.ebuild 
b/media-sound/qsynth/qsynth-0.9.11.ebuild
new file mode 100644
index ..9304e1e44040
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.11.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2023 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} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DEBUG=$(usex debug 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 qsynth
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-06-02 Thread Miroslav Šulc
commit: 3dc679f91855e84f44c9957964a6e6bd8ca2b50b
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Jun  2 06:57:26 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jun  2 06:57:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dc679f9

media-sound/qsynth: dropped obsolete 0.9.8

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

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.8.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 94ee0e6c1a9b..9037b3b07fd9 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
 DIST qsynth-0.9.10.tar.gz 89 BLAKE2B 
87ca02e1f15a7b28f5af462d1ef52e9609fc0abc3d15d545493f448da61d85d8d264f5ab908816607de3291424b979348f330205fc6e727edb7287fd28e9067d
 SHA512 
82e04ccfe3193d570e28c4e5da3e9ea8afbc2b1f2e43f54459449b31ee5448a6232a5fe13631eed80a5cf75f4176e5a419ec6467bf3d7d5e30d34083d4d8f7aa
-DIST qsynth-0.9.8.tar.gz 333010 BLAKE2B 
60433afaccc6a1378b9799316bd8d4a0cbe3592059788feacf8564e6ee659ea61904358378d3307a12e706c8aeb70a51546063fc7f766091ea784f7e01bb780a
 SHA512 
f193dcbce0b92e25d5310c5f6d78a6360a8a6f089efceae55b7a425a823d418618ee2fd0debca6b9e4793e988b92f2dd8c2f32812f21224e8e566ab15d4d5e64

diff --git a/media-sound/qsynth/qsynth-0.9.8.ebuild 
b/media-sound/qsynth/qsynth-0.9.8.ebuild
deleted file mode 100644
index adcfb131ef7b..
--- a/media-sound/qsynth/qsynth-0.9.8.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2022 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} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-06-02 Thread Miroslav Šulc
commit: f94a3ba3424f5e75db0c19d713205f41fa3f3d6b
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Jun  2 06:56:50 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jun  2 06:57:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f94a3ba3

media-sound/qsynth: ppc stable 0.9.10

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

 media-sound/qsynth/qsynth-0.9.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.10.ebuild 
b/media-sound/qsynth/qsynth-0.9.10.ebuild
index f7183956614e..501b255863f6 100644
--- a/media-sound/qsynth/qsynth-0.9.10.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.10.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-06-02 Thread Miroslav Šulc
commit: 9a08eb77ef9c3dc99bc0a4ff015100906d28f71b
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Jun  2 06:53:13 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jun  2 06:53:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a08eb77

media-sound/qsynth: dropped obsolete 0.9.9

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

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.9.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 4f7287a71c87..94ee0e6c1a9b 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,3 +1,2 @@
 DIST qsynth-0.9.10.tar.gz 89 BLAKE2B 
87ca02e1f15a7b28f5af462d1ef52e9609fc0abc3d15d545493f448da61d85d8d264f5ab908816607de3291424b979348f330205fc6e727edb7287fd28e9067d
 SHA512 
82e04ccfe3193d570e28c4e5da3e9ea8afbc2b1f2e43f54459449b31ee5448a6232a5fe13631eed80a5cf75f4176e5a419ec6467bf3d7d5e30d34083d4d8f7aa
 DIST qsynth-0.9.8.tar.gz 333010 BLAKE2B 
60433afaccc6a1378b9799316bd8d4a0cbe3592059788feacf8564e6ee659ea61904358378d3307a12e706c8aeb70a51546063fc7f766091ea784f7e01bb780a
 SHA512 
f193dcbce0b92e25d5310c5f6d78a6360a8a6f089efceae55b7a425a823d418618ee2fd0debca6b9e4793e988b92f2dd8c2f32812f21224e8e566ab15d4d5e64
-DIST qsynth-0.9.9.tar.gz 333110 BLAKE2B 
efc22bc509445e1948d7dd28de8e6c6281967964dcf54e688a8830280945b37c51c70e0a64596bff2a7a12ccfcbaa3fd65d9465b11dc7abe2cca060cce6e3997
 SHA512 
79a3085a884b3bd3251ad059b8ab67eb3329f2e6b25df5dfa6d210d7d313000b52ccdfd8b9f18aa49bdc9db2a5cd1738f05c529cb4673bd579b4ba987b1edff6

diff --git a/media-sound/qsynth/qsynth-0.9.9.ebuild 
b/media-sound/qsynth/qsynth-0.9.9.ebuild
deleted file mode 100644
index f7183956614e..
--- a/media-sound/qsynth/qsynth-0.9.9.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2023 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} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/, media-sound/qsynth/files/

2023-03-24 Thread Miroslav Šulc
commit: ab2f8606d32755aa0b481520d28b519fb1dceafc
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Mar 24 06:14:05 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Mar 24 06:14:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab2f8606

media-sound/qsynth: bump to 0.9.10

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

 media-sound/qsynth/Manifest|  1 +
 .../files/qsynth-0.9.1-cmake-no-git-version.patch  |  2 -
 media-sound/qsynth/qsynth-0.9.10.ebuild| 71 ++
 3 files changed, 72 insertions(+), 2 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 818ae8ab2ba1..4f7287a71c87 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1,3 @@
+DIST qsynth-0.9.10.tar.gz 89 BLAKE2B 
87ca02e1f15a7b28f5af462d1ef52e9609fc0abc3d15d545493f448da61d85d8d264f5ab908816607de3291424b979348f330205fc6e727edb7287fd28e9067d
 SHA512 
82e04ccfe3193d570e28c4e5da3e9ea8afbc2b1f2e43f54459449b31ee5448a6232a5fe13631eed80a5cf75f4176e5a419ec6467bf3d7d5e30d34083d4d8f7aa
 DIST qsynth-0.9.8.tar.gz 333010 BLAKE2B 
60433afaccc6a1378b9799316bd8d4a0cbe3592059788feacf8564e6ee659ea61904358378d3307a12e706c8aeb70a51546063fc7f766091ea784f7e01bb780a
 SHA512 
f193dcbce0b92e25d5310c5f6d78a6360a8a6f089efceae55b7a425a823d418618ee2fd0debca6b9e4793e988b92f2dd8c2f32812f21224e8e566ab15d4d5e64
 DIST qsynth-0.9.9.tar.gz 333110 BLAKE2B 
efc22bc509445e1948d7dd28de8e6c6281967964dcf54e688a8830280945b37c51c70e0a64596bff2a7a12ccfcbaa3fd65d9465b11dc7abe2cca060cce6e3997
 SHA512 
79a3085a884b3bd3251ad059b8ab67eb3329f2e6b25df5dfa6d210d7d313000b52ccdfd8b9f18aa49bdc9db2a5cd1738f05c529cb4673bd579b4ba987b1edff6

diff --git a/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch 
b/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch
index 9ea401abc26e..0a0dcd59ee13 100644
--- a/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch
+++ b/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch
@@ -1,5 +1,3 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 47ea36f..0194f32 100644
 --- a/CMakeLists.txt
 +++ b/CMakeLists.txt
 @@ -8,6 +8,7 @@ project(qsynth

diff --git a/media-sound/qsynth/qsynth-0.9.10.ebuild 
b/media-sound/qsynth/qsynth-0.9.10.ebuild
new file mode 100644
index ..f7183956614e
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.10.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2023 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} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="amd64 ~ppc ppc64 x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DEBUG=$(usex debug 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 qsynth
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-01-30 Thread Arthur Zamarin
commit: a512794f34fab9066db7e30bd5cb718b1d399faf
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 30 16:33:54 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 30 16:33:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a512794f

media-sound/qsynth: Stabilize 0.9.9 amd64, #892493

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.9.ebuild 
b/media-sound/qsynth/qsynth-0.9.9.ebuild
index fecbc9786fea..f7183956614e 100644
--- a/media-sound/qsynth/qsynth-0.9.9.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.9.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ppc64 x86"
+   KEYWORDS="amd64 ~ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-01-29 Thread Sam James
commit: 30fd07019bb015663dbb34900f010a8e5ac64d7c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 29 10:44:48 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 29 10:44:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30fd0701

media-sound/qsynth: Stabilize 0.9.9 ppc64, #892493

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.9.ebuild 
b/media-sound/qsynth/qsynth-0.9.9.ebuild
index 63303257e81c..fecbc9786fea 100644
--- a/media-sound/qsynth/qsynth-0.9.9.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.9.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+   KEYWORDS="~amd64 ~ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2023-01-29 Thread Sam James
commit: 025b024e3b5f661b1cd1649cc576b0d501cfcc29
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 29 10:44:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 29 10:44:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=025b024e

media-sound/qsynth: Stabilize 0.9.9 x86, #892493

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.9.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/qsynth/qsynth-0.9.9.ebuild 
b/media-sound/qsynth/qsynth-0.9.9.ebuild
index 802d146a7511..63303257e81c 100644
--- a/media-sound/qsynth/qsynth-0.9.9.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-12-29 Thread Miroslav Šulc
commit: 82989f7e9322b78747cab6f7f885691226034d42
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Dec 29 08:31:55 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Dec 29 08:31:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82989f7e

media-sound/qsynth: bump to 0.9.9

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

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index b83ff546167c..818ae8ab2ba1 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.8.tar.gz 333010 BLAKE2B 
60433afaccc6a1378b9799316bd8d4a0cbe3592059788feacf8564e6ee659ea61904358378d3307a12e706c8aeb70a51546063fc7f766091ea784f7e01bb780a
 SHA512 
f193dcbce0b92e25d5310c5f6d78a6360a8a6f089efceae55b7a425a823d418618ee2fd0debca6b9e4793e988b92f2dd8c2f32812f21224e8e566ab15d4d5e64
+DIST qsynth-0.9.9.tar.gz 333110 BLAKE2B 
efc22bc509445e1948d7dd28de8e6c6281967964dcf54e688a8830280945b37c51c70e0a64596bff2a7a12ccfcbaa3fd65d9465b11dc7abe2cca060cce6e3997
 SHA512 
79a3085a884b3bd3251ad059b8ab67eb3329f2e6b25df5dfa6d210d7d313000b52ccdfd8b9f18aa49bdc9db2a5cd1738f05c529cb4673bd579b4ba987b1edff6

diff --git a/media-sound/qsynth/qsynth-0.9.9.ebuild 
b/media-sound/qsynth/qsynth-0.9.9.ebuild
new file mode 100644
index ..802d146a7511
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.9.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 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} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DEBUG=$(usex debug 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 qsynth
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-12-17 Thread Miroslav Šulc
commit: cedf45e5ac0025e6269ebce6a0db10f953c7e38b
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Dec 17 09:33:42 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Dec 17 09:33:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cedf45e5

media-sound/qsynth: dropped obsolete 0.9.7

Bug: https://bugs.gentoo.org/886099
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.7.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index c08801f89441..b83ff546167c 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.9.7.tar.gz 335564 BLAKE2B 
7f74aebf0c635943e64be636035f86bb74e94514f97f199046cebed37675503c15225f626aba9bc862d07b13d941bb26bc3d3550f0f2c0dc32a8ed6db6c7f029
 SHA512 
1df8b96423a44d2a3db47417867319cea5df941e4e17e7b04c5b9c3839fff4c7d77cbc4a1ba86a2c17f5bbe13aefa59fc46a8769ecb1a2590c1f4c6c28ae6081
 DIST qsynth-0.9.8.tar.gz 333010 BLAKE2B 
60433afaccc6a1378b9799316bd8d4a0cbe3592059788feacf8564e6ee659ea61904358378d3307a12e706c8aeb70a51546063fc7f766091ea784f7e01bb780a
 SHA512 
f193dcbce0b92e25d5310c5f6d78a6360a8a6f089efceae55b7a425a823d418618ee2fd0debca6b9e4793e988b92f2dd8c2f32812f21224e8e566ab15d4d5e64

diff --git a/media-sound/qsynth/qsynth-0.9.7.ebuild 
b/media-sound/qsynth/qsynth-0.9.7.ebuild
deleted file mode 100644
index adcfb131ef7b..
--- a/media-sound/qsynth/qsynth-0.9.7.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2022 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} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-12-15 Thread Arthur Zamarin
commit: 5ef1c92fc08271ebd7e66b781dc6eab365182ca3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Dec 15 16:51:31 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Dec 15 16:51:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef1c92f

media-sound/qsynth: Stabilize 0.9.8 ppc64, #886099

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.8.ebuild 
b/media-sound/qsynth/qsynth-0.9.8.ebuild
index 057d7ea39667..f372d1927e39 100644
--- a/media-sound/qsynth/qsynth-0.9.8.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.8.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ppc ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-12-15 Thread Arthur Zamarin
commit: 7cc5093b6466b66c1bc9cd96c3af998a89499afa
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Dec 15 16:51:30 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Dec 15 16:51:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc5093b

media-sound/qsynth: Stabilize 0.9.8 ppc, #886099

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.8.ebuild 
b/media-sound/qsynth/qsynth-0.9.8.ebuild
index 802d146a7511..057d7ea39667 100644
--- a/media-sound/qsynth/qsynth-0.9.8.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.8.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ppc ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-12-15 Thread Arthur Zamarin
commit: 2851d7765df8fdab970cbf419844da8a68189798
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Dec 15 16:51:32 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Dec 15 16:51:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2851d776

media-sound/qsynth: Stabilize 0.9.8 amd64, #886099

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.8.ebuild 
b/media-sound/qsynth/qsynth-0.9.8.ebuild
index f68bb948f152..adcfb131ef7b 100644
--- a/media-sound/qsynth/qsynth-0.9.8.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.8.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ppc ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-12-15 Thread Arthur Zamarin
commit: 41cd401b4e12865b1a2c649a956c45dccedc309f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Dec 15 16:51:31 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Dec 15 16:51:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41cd401b

media-sound/qsynth: Stabilize 0.9.8 x86, #886099

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-sound/qsynth/qsynth-0.9.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.8.ebuild 
b/media-sound/qsynth/qsynth-0.9.8.ebuild
index f372d1927e39..f68bb948f152 100644
--- a/media-sound/qsynth/qsynth-0.9.8.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.8.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ppc ppc64 ~x86"
+   KEYWORDS="~amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-11-14 Thread Alexis Ballier
commit: 18146684a8bb0ebefed31b5bc95edf3d51d9d27a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Nov 14 14:59:45 2022 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Nov 14 15:24:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18146684

media-sound/qsynth: bump to 0.9.8

Signed-off-by: Alexis Ballier  gentoo.org>

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index f9e8a2fa6926..c08801f89441 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.7.tar.gz 335564 BLAKE2B 
7f74aebf0c635943e64be636035f86bb74e94514f97f199046cebed37675503c15225f626aba9bc862d07b13d941bb26bc3d3550f0f2c0dc32a8ed6db6c7f029
 SHA512 
1df8b96423a44d2a3db47417867319cea5df941e4e17e7b04c5b9c3839fff4c7d77cbc4a1ba86a2c17f5bbe13aefa59fc46a8769ecb1a2590c1f4c6c28ae6081
+DIST qsynth-0.9.8.tar.gz 333010 BLAKE2B 
60433afaccc6a1378b9799316bd8d4a0cbe3592059788feacf8564e6ee659ea61904358378d3307a12e706c8aeb70a51546063fc7f766091ea784f7e01bb780a
 SHA512 
f193dcbce0b92e25d5310c5f6d78a6360a8a6f089efceae55b7a425a823d418618ee2fd0debca6b9e4793e988b92f2dd8c2f32812f21224e8e566ab15d4d5e64

diff --git a/media-sound/qsynth/qsynth-0.9.8.ebuild 
b/media-sound/qsynth/qsynth-0.9.8.ebuild
new file mode 100644
index ..802d146a7511
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.8.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 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} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DEBUG=$(usex debug 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 qsynth
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-05-04 Thread Miroslav Šulc
commit: 52a049728dde627651f52d0a4f7cb6a7397916c6
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed May  4 18:54:22 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May  4 18:54:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52a04972

media-sound/qsynth: removed obsolete 0.9.6

Bug: https://bugs.gentoo.org/842549
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.6.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 63f27a27da07..f9e8a2fa6926 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.9.6.tar.gz 334419 BLAKE2B 
daeb82f102a9a754b708b3d3ebc1963a1cf08180ec16971b4b6fb2ea3b35d7f1ca3a663bd9381d4c90052e1c781a6fef64c4cbf0d456f47ac12791da485979ea
 SHA512 
4f596fefda29fad9298539aaf83bdcc699846416d10b1259041a414f3d89ecc76a6cad338742bac8ffa0ed78ff462fe70147e1ef6437c20241598bd7a1d41a84
 DIST qsynth-0.9.7.tar.gz 335564 BLAKE2B 
7f74aebf0c635943e64be636035f86bb74e94514f97f199046cebed37675503c15225f626aba9bc862d07b13d941bb26bc3d3550f0f2c0dc32a8ed6db6c7f029
 SHA512 
1df8b96423a44d2a3db47417867319cea5df941e4e17e7b04c5b9c3839fff4c7d77cbc4a1ba86a2c17f5bbe13aefa59fc46a8769ecb1a2590c1f4c6c28ae6081

diff --git a/media-sound/qsynth/qsynth-0.9.6.ebuild 
b/media-sound/qsynth/qsynth-0.9.6.ebuild
deleted file mode 100644
index adcfb131ef7b..
--- a/media-sound/qsynth/qsynth-0.9.6.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2022 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} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-05-04 Thread Sam James
commit: b8fdc9a3c77644ba8bac65e5a7d4fedd1c25fdc5
Author: Sam James  gentoo  org>
AuthorDate: Wed May  4 14:39:19 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  4 14:39:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8fdc9a3

media-sound/qsynth: Stabilize 0.9.7 ppc64, #842549

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.7.ebuild 
b/media-sound/qsynth/qsynth-0.9.7.ebuild
index 295f22a6a655..adcfb131ef7b 100644
--- a/media-sound/qsynth/qsynth-0.9.7.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.7.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ~ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-05-04 Thread Sam James
commit: e7ac7fcfd0564b5402c8851d95cf445e78d4e11d
Author: Sam James  gentoo  org>
AuthorDate: Wed May  4 14:38:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  4 14:38:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7ac7fcf

media-sound/qsynth: Stabilize 0.9.7 ppc, #842549

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.7.ebuild 
b/media-sound/qsynth/qsynth-0.9.7.ebuild
index 6bcf8deb5610..295f22a6a655 100644
--- a/media-sound/qsynth/qsynth-0.9.7.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.7.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-04-04 Thread Miroslav Šulc
commit: a283d1b13319fb342880b2be6e38009493e759bb
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Apr  4 06:08:28 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Apr  4 06:08:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a283d1b1

media-sound/qsynth: bump to 0.9.7

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

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 77c96d553675..63f27a27da07 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.6.tar.gz 334419 BLAKE2B 
daeb82f102a9a754b708b3d3ebc1963a1cf08180ec16971b4b6fb2ea3b35d7f1ca3a663bd9381d4c90052e1c781a6fef64c4cbf0d456f47ac12791da485979ea
 SHA512 
4f596fefda29fad9298539aaf83bdcc699846416d10b1259041a414f3d89ecc76a6cad338742bac8ffa0ed78ff462fe70147e1ef6437c20241598bd7a1d41a84
+DIST qsynth-0.9.7.tar.gz 335564 BLAKE2B 
7f74aebf0c635943e64be636035f86bb74e94514f97f199046cebed37675503c15225f626aba9bc862d07b13d941bb26bc3d3550f0f2c0dc32a8ed6db6c7f029
 SHA512 
1df8b96423a44d2a3db47417867319cea5df941e4e17e7b04c5b9c3839fff4c7d77cbc4a1ba86a2c17f5bbe13aefa59fc46a8769ecb1a2590c1f4c6c28ae6081

diff --git a/media-sound/qsynth/qsynth-0.9.7.ebuild 
b/media-sound/qsynth/qsynth-0.9.7.ebuild
new file mode 100644
index ..802d146a7511
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.7.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 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} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DEBUG=$(usex debug 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 qsynth
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-04-04 Thread Miroslav Šulc
commit: 8eef8617b9400b75de624e78421b061cc33e2dbc
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Apr  4 06:00:28 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Apr  4 06:00:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eef8617

media-sound/qsynth: updated live to eapi8

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

 media-sound/qsynth/qsynth-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-.ebuild
index 764b1b7b1cea..76fd6013eca5 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake desktop xdg
 



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-03-17 Thread Miroslav Šulc
commit: 5704924b0a416894684fcd5d02699ca567e02d5b
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Mar 17 09:06:02 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Mar 17 09:06:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5704924b

media-sound/qsynth: removed obsolete 0.9.5

Bug: https://bugs.gentoo.org/show_bug.cgi?id=835170
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.5.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index db4ee6514f01..77c96d553675 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.9.5.tar.gz 331213 BLAKE2B 
3973c2ea0599b8bf9f12c3ce1bb7eff00b5d20b4f051ebcb578f556dbfce714cbe0bf77038b553289f27cfedc521bd7e179af652c721375e6bedc4d22ce061d5
 SHA512 
157e49e8ebfcf550754379c4f2bae221354cffbfe47dcaea747749c00520339f59de5fe7f17e105674ecc6099a98af5f2326d2d258fe359c0c7522366f4267d4
 DIST qsynth-0.9.6.tar.gz 334419 BLAKE2B 
daeb82f102a9a754b708b3d3ebc1963a1cf08180ec16971b4b6fb2ea3b35d7f1ca3a663bd9381d4c90052e1c781a6fef64c4cbf0d456f47ac12791da485979ea
 SHA512 
4f596fefda29fad9298539aaf83bdcc699846416d10b1259041a414f3d89ecc76a6cad338742bac8ffa0ed78ff462fe70147e1ef6437c20241598bd7a1d41a84

diff --git a/media-sound/qsynth/qsynth-0.9.5.ebuild 
b/media-sound/qsynth/qsynth-0.9.5.ebuild
deleted file mode 100644
index adcfb131ef7b..
--- a/media-sound/qsynth/qsynth-0.9.5.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2022 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} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-03-16 Thread Sam James
commit: 10f5f0855dfbeb5d88f3faa20a3857d341a09827
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 16 23:49:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 16 23:49:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10f5f085

media-sound/qsynth: Stabilize 0.9.6 ppc, #835170

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.6.ebuild 
b/media-sound/qsynth/qsynth-0.9.6.ebuild
index 34dfc4206ad7..adcfb131ef7b 100644
--- a/media-sound/qsynth/qsynth-0.9.6.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.6.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-03-15 Thread Jakov Smolić
commit: a616c0648984f22e9797ba7042f81949dd197bef
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Mar 15 09:58:42 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Mar 15 09:58:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a616c064

media-sound/qsynth: Stabilize 0.9.6 amd64, #835170

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/qsynth/qsynth-0.9.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.6.ebuild 
b/media-sound/qsynth/qsynth-0.9.6.ebuild
index 802d146a7511..4f2ddf2131e6 100644
--- a/media-sound/qsynth/qsynth-0.9.6.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.6.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-03-15 Thread Jakov Smolić
commit: 1f7d0eb575c565eebbec2e3bf971b32f0580997b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Tue Mar 15 09:59:08 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Tue Mar 15 09:59:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f7d0eb5

media-sound/qsynth: Stabilize 0.9.6 x86, #835170

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/qsynth/qsynth-0.9.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.6.ebuild 
b/media-sound/qsynth/qsynth-0.9.6.ebuild
index 4f2ddf2131e6..6bcf8deb5610 100644
--- a/media-sound/qsynth/qsynth-0.9.6.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.6.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-02-12 Thread Miroslav Šulc
commit: c221669186c4b8b314cd1f111977e19a4ecc08cb
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Feb 12 10:29:32 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Feb 12 10:29:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2216691

media-sound/qsynth: bump to 0.9.6

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 12dddcf1aa18..db4ee6514f01 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.5.tar.gz 331213 BLAKE2B 
3973c2ea0599b8bf9f12c3ce1bb7eff00b5d20b4f051ebcb578f556dbfce714cbe0bf77038b553289f27cfedc521bd7e179af652c721375e6bedc4d22ce061d5
 SHA512 
157e49e8ebfcf550754379c4f2bae221354cffbfe47dcaea747749c00520339f59de5fe7f17e105674ecc6099a98af5f2326d2d258fe359c0c7522366f4267d4
+DIST qsynth-0.9.6.tar.gz 334419 BLAKE2B 
daeb82f102a9a754b708b3d3ebc1963a1cf08180ec16971b4b6fb2ea3b35d7f1ca3a663bd9381d4c90052e1c781a6fef64c4cbf0d456f47ac12791da485979ea
 SHA512 
4f596fefda29fad9298539aaf83bdcc699846416d10b1259041a414f3d89ecc76a6cad338742bac8ffa0ed78ff462fe70147e1ef6437c20241598bd7a1d41a84

diff --git a/media-sound/qsynth/qsynth-0.9.6.ebuild 
b/media-sound/qsynth/qsynth-0.9.6.ebuild
new file mode 100644
index ..802d146a7511
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.6.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 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} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DEBUG=$(usex debug 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 qsynth
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-02-11 Thread Miroslav Šulc
commit: 1959f0425104091af0ba69337470076f0bbbcf37
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Feb 11 08:50:38 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Feb 11 08:50:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1959f042

media-sound/qsynth: removed obsolete 0.9.4

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.4.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index f48c0a084fce..12dddcf1aa18 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.9.4.tar.gz 395550 BLAKE2B 
e25195755c52c63912b03a416878d248712b78ba0014414bc8b1d31cbd5bb75562640de4a0255d2727a40274a6ff3a84b201d39c93674140ff31ccc581bfd254
 SHA512 
764a90fd86451cd3a12c71f061f4a603cdce54ae80e6543d05fa66a97ea0b7c50bac0350f01f597ec93ed445a5433a9dea6d9c5a43ce385c231aaea8e13675d4
 DIST qsynth-0.9.5.tar.gz 331213 BLAKE2B 
3973c2ea0599b8bf9f12c3ce1bb7eff00b5d20b4f051ebcb578f556dbfce714cbe0bf77038b553289f27cfedc521bd7e179af652c721375e6bedc4d22ce061d5
 SHA512 
157e49e8ebfcf550754379c4f2bae221354cffbfe47dcaea747749c00520339f59de5fe7f17e105674ecc6099a98af5f2326d2d258fe359c0c7522366f4267d4

diff --git a/media-sound/qsynth/qsynth-0.9.4.ebuild 
b/media-sound/qsynth/qsynth-0.9.4.ebuild
deleted file mode 100644
index 42c724b0c2e2..
--- a/media-sound/qsynth/qsynth-0.9.4.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake desktop xdg
-
-DESCRIPTION="Qt application to control FluidSynth"
-HOMEPAGE="https://qsynth.sourceforge.io/;
-
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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/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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-02-10 Thread Agostino Sarubbo
commit: 067bcc3abe86c00760a8ae4585dbb7c565f5259e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Feb 11 07:26:12 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Feb 11 07:26:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=067bcc3a

media-sound/qsynth: ppc64 stable wrt bug #833061

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.9.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.5.ebuild 
b/media-sound/qsynth/qsynth-0.9.5.ebuild
index 295f22a6a655..adcfb131ef7b 100644
--- a/media-sound/qsynth/qsynth-0.9.5.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ~ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-02-10 Thread Sam James
commit: b00afb61bf93abfa71781285e39270e6c251f99d
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 10 11:42:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 10 11:42:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b00afb61

media-sound/qsynth: Stabilize 0.9.5 ppc, #833061

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.5.ebuild 
b/media-sound/qsynth/qsynth-0.9.5.ebuild
index 6bcf8deb5610..295f22a6a655 100644
--- a/media-sound/qsynth/qsynth-0.9.5.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-02-10 Thread Jakov Smolić
commit: 80e48f9fb394ee34c06951e7eb3d9d8c34c35520
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Feb 10 09:10:10 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Feb 10 09:10:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80e48f9f

media-sound/qsynth: Stabilize 0.9.5 x86, #833061

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/qsynth/qsynth-0.9.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.5.ebuild 
b/media-sound/qsynth/qsynth-0.9.5.ebuild
index 4f2ddf2131e6..6bcf8deb5610 100644
--- a/media-sound/qsynth/qsynth-0.9.5.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-02-10 Thread Jakov Smolić
commit: 312fc9ff7326650a5d5c341957366f0511c69f84
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Feb 10 09:09:47 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Feb 10 09:09:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312fc9ff

media-sound/qsynth: Stabilize 0.9.5 amd64, #833061

Signed-off-by: Jakov Smolić  gentoo.org>

 media-sound/qsynth/qsynth-0.9.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.5.ebuild 
b/media-sound/qsynth/qsynth-0.9.5.ebuild
index 802d146a7511..4f2ddf2131e6 100644
--- a/media-sound/qsynth/qsynth-0.9.5.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2022-01-10 Thread Miroslav Šulc
commit: a7a3d4aef18dcfb3ffb5ed9b738fcd4d195cdb56
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Jan 10 08:55:56 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Jan 10 08:56:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a3d4ae

media-sound/qsynth: bump to 0.9.5, cleanup

dropped unused eclass, updated live

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 +
 media-sound/qsynth/qsynth-0.9.4.ebuild |  4 ++--
 .../qsynth/{qsynth-0.9.4.ebuild => qsynth-0.9.5.ebuild}| 10 +-
 media-sound/qsynth/qsynth-.ebuild  |  6 +++---
 4 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 6f5ae1ffe544..f48c0a084fce 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.4.tar.gz 395550 BLAKE2B 
e25195755c52c63912b03a416878d248712b78ba0014414bc8b1d31cbd5bb75562640de4a0255d2727a40274a6ff3a84b201d39c93674140ff31ccc581bfd254
 SHA512 
764a90fd86451cd3a12c71f061f4a603cdce54ae80e6543d05fa66a97ea0b7c50bac0350f01f597ec93ed445a5433a9dea6d9c5a43ce385c231aaea8e13675d4
+DIST qsynth-0.9.5.tar.gz 331213 BLAKE2B 
3973c2ea0599b8bf9f12c3ce1bb7eff00b5d20b4f051ebcb578f556dbfce714cbe0bf77038b553289f27cfedc521bd7e179af652c721375e6bedc4d22ce061d5
 SHA512 
157e49e8ebfcf550754379c4f2bae221354cffbfe47dcaea747749c00520339f59de5fe7f17e105674ecc6099a98af5f2326d2d258fe359c0c7522366f4267d4

diff --git a/media-sound/qsynth/qsynth-0.9.4.ebuild 
b/media-sound/qsynth/qsynth-0.9.4.ebuild
index a9c46977ac25..42c724b0c2e2 100644
--- a/media-sound/qsynth/qsynth-0.9.4.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit cmake desktop qmake-utils xdg
+inherit cmake desktop xdg
 
 DESCRIPTION="Qt application to control FluidSynth"
 HOMEPAGE="https://qsynth.sourceforge.io/;

diff --git a/media-sound/qsynth/qsynth-0.9.4.ebuild 
b/media-sound/qsynth/qsynth-0.9.5.ebuild
similarity index 87%
copy from media-sound/qsynth/qsynth-0.9.4.ebuild
copy to media-sound/qsynth/qsynth-0.9.5.ebuild
index a9c46977ac25..802d146a7511 100644
--- a/media-sound/qsynth/qsynth-0.9.4.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-inherit cmake desktop qmake-utils xdg
+inherit cmake desktop xdg
 
 DESCRIPTION="Qt application to control FluidSynth"
 HOMEPAGE="https://qsynth.sourceforge.io/;
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"
@@ -54,7 +54,7 @@ src_install() {
 
# The desktop file is invalid, and we also change the command
# depending on useflags
-   rm "${D}/usr/share/applications/qsynth.desktop" || die
+   rm "${D}/usr/share/applications/org.rncbc.qsynth.desktop" || die
 
local cmd
if use jack; then

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-.ebuild
index f2e790dc5a2b..764b1b7b1cea 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit cmake desktop qmake-utils xdg
+inherit cmake desktop xdg
 
 DESCRIPTION="Qt application to control FluidSynth"
 HOMEPAGE="https://qsynth.sourceforge.io/;
@@ -52,7 +52,7 @@ src_install() {
 
# The desktop file is invalid, and we also change the command
# depending on useflags
-   rm "${D}/usr/share/applications/qsynth.desktop" || die
+   rm "${D}/usr/share/applications/org.rncbc.qsynth.desktop" || die
 
local cmd
if use jack; then



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-08-08 Thread Miroslav Šulc
commit: 77c84ff72776abb2723568e02f15d4c8c79eae3e
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Aug  8 06:00:47 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Aug  8 06:00:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77c84ff7

media-sound/qsynth: removed obsolete 0.9.3

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.3.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 4d84a27ed38..6f5ae1ffe54 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.9.3.tar.gz 395265 BLAKE2B 
c19154ba02680ae784ea016bbcb2dcd6c3517d6e810d76cc16919508e2e7310d23a8e8397f45340c138f018340525ecae8d941ce5acf5d4e16295e88d3450069
 SHA512 
7da5bc0fd8feed6b3b0b048e7ac3fa86937d82ff34528fd0dbb1dd5a05fbff2bb2d8e360e499325660172acec7216964ce1442b75afc10ab0647b91376b2c421
 DIST qsynth-0.9.4.tar.gz 395550 BLAKE2B 
e25195755c52c63912b03a416878d248712b78ba0014414bc8b1d31cbd5bb75562640de4a0255d2727a40274a6ff3a84b201d39c93674140ff31ccc581bfd254
 SHA512 
764a90fd86451cd3a12c71f061f4a603cdce54ae80e6543d05fa66a97ea0b7c50bac0350f01f597ec93ed445a5433a9dea6d9c5a43ce385c231aaea8e13675d4

diff --git a/media-sound/qsynth/qsynth-0.9.3.ebuild 
b/media-sound/qsynth/qsynth-0.9.3.ebuild
deleted file mode 100644
index a9c46977ac2..000
--- a/media-sound/qsynth/qsynth-0.9.3.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake desktop qmake-utils xdg
-
-DESCRIPTION="Qt application to control FluidSynth"
-HOMEPAGE="https://qsynth.sourceforge.io/;
-
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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/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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-08-07 Thread Sam James
commit: fffbb5698681e8b8a1059f5d7aa0a0fc4b5b55e9
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug  7 23:33:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug  7 23:33:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fffbb569

media-sound/qsynth: Stabilize 0.9.4 x86, #806668

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.4.ebuild 
b/media-sound/qsynth/qsynth-0.9.4.ebuild
index 623312d2443..a9c46977ac2 100644
--- a/media-sound/qsynth/qsynth-0.9.4.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.4.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 ~x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-08-07 Thread Sam James
commit: 5698357a449ec5bf3c14f805c48087440a45f367
Author: Sam James  gentoo  org>
AuthorDate: Sat Aug  7 14:46:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Aug  7 14:49:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5698357a

media-sound/qsynth: Stabilize 0.9.4 ppc64, #806668

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.4.ebuild 
b/media-sound/qsynth/qsynth-0.9.4.ebuild
index 35d667a3ed3..623312d2443 100644
--- a/media-sound/qsynth/qsynth-0.9.4.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.4.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ppc ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-08-06 Thread Agostino Sarubbo
commit: fe5971a76c7879838355a8f3ae5cd10c8ed4c236
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Aug  7 05:09:03 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Aug  7 05:09:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe5971a7

media-sound/qsynth: amd64 stable wrt bug #806668

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.4.ebuild 
b/media-sound/qsynth/qsynth-0.9.4.ebuild
index 3d7c45b5ad4..35d667a3ed3 100644
--- a/media-sound/qsynth/qsynth-0.9.4.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.4.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ppc ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-08-06 Thread Sam James
commit: c6e6691dae2ab584d28da6455579334d6a80e466
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug  6 21:17:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug  6 21:17:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6e6691d

media-sound/qsynth: Stabilize 0.9.4 ppc, #806668

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.4.ebuild 
b/media-sound/qsynth/qsynth-0.9.4.ebuild
index 59c6e5666ca..3d7c45b5ad4 100644
--- a/media-sound/qsynth/qsynth-0.9.4.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.4.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ppc ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-07-05 Thread Miroslav Šulc
commit: b141f7f535e3369fbdaaff3ba84c868eb5b17e70
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Jul  6 04:35:06 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Jul  6 04:35:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b141f7f5

media-sound/qsynth: bump to 0.9.4

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 6b75a208755..4d84a27ed38 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.3.tar.gz 395265 BLAKE2B 
c19154ba02680ae784ea016bbcb2dcd6c3517d6e810d76cc16919508e2e7310d23a8e8397f45340c138f018340525ecae8d941ce5acf5d4e16295e88d3450069
 SHA512 
7da5bc0fd8feed6b3b0b048e7ac3fa86937d82ff34528fd0dbb1dd5a05fbff2bb2d8e360e499325660172acec7216964ce1442b75afc10ab0647b91376b2c421
+DIST qsynth-0.9.4.tar.gz 395550 BLAKE2B 
e25195755c52c63912b03a416878d248712b78ba0014414bc8b1d31cbd5bb75562640de4a0255d2727a40274a6ff3a84b201d39c93674140ff31ccc581bfd254
 SHA512 
764a90fd86451cd3a12c71f061f4a603cdce54ae80e6543d05fa66a97ea0b7c50bac0350f01f597ec93ed445a5433a9dea6d9c5a43ce385c231aaea8e13675d4

diff --git a/media-sound/qsynth/qsynth-0.9.4.ebuild 
b/media-sound/qsynth/qsynth-0.9.4.ebuild
new file mode 100644
index 000..59c6e5666ca
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.4.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake desktop qmake-utils xdg
+
+DESCRIPTION="Qt application to control FluidSynth"
+HOMEPAGE="https://qsynth.sourceforge.io/;
+
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DEBUG=$(usex debug 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/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 qsynth
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-06-12 Thread Miroslav Šulc
commit: 672d9c73b091b15dbe2e7c0aca2d65a505526dbb
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Jun 12 09:50:35 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Jun 12 09:51:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=672d9c73

media-sound/qsynth: removed obsolete 0.9.2

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.2.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 00a5e36dee6..6b75a208755 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.9.2.tar.gz 394009 BLAKE2B 
9560efe95992fc6e992871c8057898e1acac46718534c7e79060dde4d1519f9fd4798385812f384c97a764676e3e1005ebe24708545db3dfb9f8e08973f07441
 SHA512 
ab9a2268e3926439e4784c8dc2511d7c39aa2bfb97ffb7bb34f6761f1e859d1ea53f9f6da4d5c31395c6c03dc250b74c8c250b5d71321f2a151b75ec636be3d6
 DIST qsynth-0.9.3.tar.gz 395265 BLAKE2B 
c19154ba02680ae784ea016bbcb2dcd6c3517d6e810d76cc16919508e2e7310d23a8e8397f45340c138f018340525ecae8d941ce5acf5d4e16295e88d3450069
 SHA512 
7da5bc0fd8feed6b3b0b048e7ac3fa86937d82ff34528fd0dbb1dd5a05fbff2bb2d8e360e499325660172acec7216964ce1442b75afc10ab0647b91376b2c421

diff --git a/media-sound/qsynth/qsynth-0.9.2.ebuild 
b/media-sound/qsynth/qsynth-0.9.2.ebuild
deleted file mode 100644
index a9c46977ac2..000
--- a/media-sound/qsynth/qsynth-0.9.2.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake desktop qmake-utils xdg
-
-DESCRIPTION="Qt application to control FluidSynth"
-HOMEPAGE="https://qsynth.sourceforge.io/;
-
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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/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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-06-11 Thread Sam James
commit: 51be8c1a6b2a189774f53ad7ba7e40c71ed89c1c
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 12 03:29:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 12 03:29:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51be8c1a

media-sound/qsynth: Stabilize 0.9.3 amd64, #795369

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.3.ebuild 
b/media-sound/qsynth/qsynth-0.9.3.ebuild
index 1f62f63040e..a9c46977ac2 100644
--- a/media-sound/qsynth/qsynth-0.9.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ppc ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-06-11 Thread Sam James
commit: 6d9bc7666721149c818d4e11631bbe0453a861e4
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 12 01:20:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 12 01:20:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d9bc766

media-sound/qsynth: Stabilize 0.9.3 ppc64, #795369

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.3.ebuild 
b/media-sound/qsynth/qsynth-0.9.3.ebuild
index 6394fb5588e..1f62f63040e 100644
--- a/media-sound/qsynth/qsynth-0.9.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ppc ~ppc64 x86"
+   KEYWORDS="~amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-06-11 Thread Sam James
commit: 5b6b2249e2995a80e582d1e1850572ed8ef00f75
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 12 01:20:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 12 01:20:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b6b2249

media-sound/qsynth: Stabilize 0.9.3 ppc, #795369

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.3.ebuild 
b/media-sound/qsynth/qsynth-0.9.3.ebuild
index 9300c0a5252..6394fb5588e 100644
--- a/media-sound/qsynth/qsynth-0.9.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+   KEYWORDS="~amd64 ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-06-11 Thread Sam James
commit: 36a8314122add5dd847303aa340b43f1aeb3d298
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 12 01:17:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 12 01:17:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36a83141

media-sound/qsynth: Stabilize 0.9.3 x86, #795369

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.3.ebuild 
b/media-sound/qsynth/qsynth-0.9.3.ebuild
index 59c6e5666ca..9300c0a5252 100644
--- a/media-sound/qsynth/qsynth-0.9.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-05-30 Thread Miroslav Šulc
commit: 3d8b3837040d8b0f9d4abbdf1c847ba9904c89fd
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun May 30 10:48:02 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun May 30 10:48:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d8b3837

media-sound/qsynth: removed obsolete 0.9.1

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.9.1.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 2846ca3825e..00a5e36dee6 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,3 +1,2 @@
-DIST qsynth-0.9.1.tar.gz 393897 BLAKE2B 
f63766614d821409cd12e418e36b8dbd739da8e2cd7deae91c2b00dd4f5ba2f447a3ca19c3829de3282e368baa37567333be051641221300d13dd7948d762008
 SHA512 
70bba332b90963d1c1da18fb3de8f05544fed3406c2144b6ed78cf93720cbcb684ff367d7ef4bc80be94ebea060b38753ae0cb183e85f96f127014c08de701b0
 DIST qsynth-0.9.2.tar.gz 394009 BLAKE2B 
9560efe95992fc6e992871c8057898e1acac46718534c7e79060dde4d1519f9fd4798385812f384c97a764676e3e1005ebe24708545db3dfb9f8e08973f07441
 SHA512 
ab9a2268e3926439e4784c8dc2511d7c39aa2bfb97ffb7bb34f6761f1e859d1ea53f9f6da4d5c31395c6c03dc250b74c8c250b5d71321f2a151b75ec636be3d6
 DIST qsynth-0.9.3.tar.gz 395265 BLAKE2B 
c19154ba02680ae784ea016bbcb2dcd6c3517d6e810d76cc16919508e2e7310d23a8e8397f45340c138f018340525ecae8d941ce5acf5d4e16295e88d3450069
 SHA512 
7da5bc0fd8feed6b3b0b048e7ac3fa86937d82ff34528fd0dbb1dd5a05fbff2bb2d8e360e499325660172acec7216964ce1442b75afc10ab0647b91376b2c421

diff --git a/media-sound/qsynth/qsynth-0.9.1.ebuild 
b/media-sound/qsynth/qsynth-0.9.1.ebuild
deleted file mode 100644
index 9c902ccb2db..000
--- a/media-sound/qsynth/qsynth-0.9.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake desktop qmake-utils xdg
-
-DESCRIPTION="Qt application to control FluidSynth"
-HOMEPAGE="https://qsynth.sourceforge.io/;
-
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
-   inherit git-r3
-else
-   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${P}-cmake-no-git-version.patch" )
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCONFIG_DEBUG=$(usex debug 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/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 qsynth
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-05-30 Thread Sam James
commit: 7c48eff4df85209a26170abea40bd8e6222d29ab
Author: Sam James  gentoo  org>
AuthorDate: Sun May 30 09:58:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun May 30 09:58:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c48eff4

media-sound/qsynth: Stabilize 0.9.2 ppc, #792777

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.2.ebuild 
b/media-sound/qsynth/qsynth-0.9.2.ebuild
index 1afcf884512..a9c46977ac2 100644
--- a/media-sound/qsynth/qsynth-0.9.2.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ppc64 x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-05-30 Thread Agostino Sarubbo
commit: cf3999058637b0656df71583ad7197b7f63fa355
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun May 30 09:50:23 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun May 30 09:50:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf399905

media-sound/qsynth: ppc64 stable wrt bug #792777

Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.2.ebuild 
b/media-sound/qsynth/qsynth-0.9.2.ebuild
index f69064351e2..1afcf884512 100644
--- a/media-sound/qsynth/qsynth-0.9.2.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 ~ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-05-29 Thread Sam James
commit: 4f17c77c0f542238b6279d80c9de02264ffcf3fb
Author: Sam James  gentoo  org>
AuthorDate: Sat May 29 15:20:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat May 29 15:20:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f17c77c

media-sound/qsynth: Stabilize 0.9.2 amd64, #792777

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.2.ebuild 
b/media-sound/qsynth/qsynth-0.9.2.ebuild
index 9300c0a5252..f69064351e2 100644
--- a/media-sound/qsynth/qsynth-0.9.2.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-05-29 Thread Sam James
commit: a87952fba05d292d77af07ba1f6bb25a8bd3b2f2
Author: Sam James  gentoo  org>
AuthorDate: Sat May 29 10:18:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat May 29 10:21:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a87952fb

media-sound/qsynth: Stabilize 0.9.2 x86, #792777

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.2.ebuild 
b/media-sound/qsynth/qsynth-0.9.2.ebuild
index 59c6e5666ca..9300c0a5252 100644
--- a/media-sound/qsynth/qsynth-0.9.2.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-05-11 Thread Miroslav Šulc
commit: 3c1f4c4c955e4b18c0e81bc0ac21f6d614345f97
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed May 12 05:45:57 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 12 05:45:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c1f4c4c

media-sound/qsynth: bump to 0.9.3

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index cfb8ef799d8..2846ca3825e 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1,3 @@
 DIST qsynth-0.9.1.tar.gz 393897 BLAKE2B 
f63766614d821409cd12e418e36b8dbd739da8e2cd7deae91c2b00dd4f5ba2f447a3ca19c3829de3282e368baa37567333be051641221300d13dd7948d762008
 SHA512 
70bba332b90963d1c1da18fb3de8f05544fed3406c2144b6ed78cf93720cbcb684ff367d7ef4bc80be94ebea060b38753ae0cb183e85f96f127014c08de701b0
 DIST qsynth-0.9.2.tar.gz 394009 BLAKE2B 
9560efe95992fc6e992871c8057898e1acac46718534c7e79060dde4d1519f9fd4798385812f384c97a764676e3e1005ebe24708545db3dfb9f8e08973f07441
 SHA512 
ab9a2268e3926439e4784c8dc2511d7c39aa2bfb97ffb7bb34f6761f1e859d1ea53f9f6da4d5c31395c6c03dc250b74c8c250b5d71321f2a151b75ec636be3d6
+DIST qsynth-0.9.3.tar.gz 395265 BLAKE2B 
c19154ba02680ae784ea016bbcb2dcd6c3517d6e810d76cc16919508e2e7310d23a8e8397f45340c138f018340525ecae8d941ce5acf5d4e16295e88d3450069
 SHA512 
7da5bc0fd8feed6b3b0b048e7ac3fa86937d82ff34528fd0dbb1dd5a05fbff2bb2d8e360e499325660172acec7216964ce1442b75afc10ab0647b91376b2c421

diff --git a/media-sound/qsynth/qsynth-0.9.3.ebuild 
b/media-sound/qsynth/qsynth-0.9.3.ebuild
new file mode 100644
index 000..59c6e5666ca
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.3.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake desktop qmake-utils xdg
+
+DESCRIPTION="Qt application to control FluidSynth"
+HOMEPAGE="https://qsynth.sourceforge.io/;
+
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DEBUG=$(usex debug 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/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 qsynth
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-04-27 Thread Miroslav Šulc
commit: 7020d278c26896641c857bedc40979463164bbdc
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Apr 27 18:08:46 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Apr 27 18:08:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7020d278

media-sound/qsynth: bump to 0.9.2

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

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

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index b7d8b93ebcf..cfb8ef799d8 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.9.1.tar.gz 393897 BLAKE2B 
f63766614d821409cd12e418e36b8dbd739da8e2cd7deae91c2b00dd4f5ba2f447a3ca19c3829de3282e368baa37567333be051641221300d13dd7948d762008
 SHA512 
70bba332b90963d1c1da18fb3de8f05544fed3406c2144b6ed78cf93720cbcb684ff367d7ef4bc80be94ebea060b38753ae0cb183e85f96f127014c08de701b0
+DIST qsynth-0.9.2.tar.gz 394009 BLAKE2B 
9560efe95992fc6e992871c8057898e1acac46718534c7e79060dde4d1519f9fd4798385812f384c97a764676e3e1005ebe24708545db3dfb9f8e08973f07441
 SHA512 
ab9a2268e3926439e4784c8dc2511d7c39aa2bfb97ffb7bb34f6761f1e859d1ea53f9f6da4d5c31395c6c03dc250b74c8c250b5d71321f2a151b75ec636be3d6

diff --git a/media-sound/qsynth/qsynth-0.9.2.ebuild 
b/media-sound/qsynth/qsynth-0.9.2.ebuild
new file mode 100644
index 000..59c6e5666ca
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.9.2.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake desktop qmake-utils xdg
+
+DESCRIPTION="Qt application to control FluidSynth"
+HOMEPAGE="https://qsynth.sourceforge.io/;
+
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-0.9.1-cmake-no-git-version.patch" )
+
+src_prepare() {
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DEBUG=$(usex debug 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/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 qsynth
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/files/, media-sound/qsynth/

2021-03-08 Thread Andreas Sturmlechner
commit: 8ef14a2aa9f3ac313384537e65d99dd6a9b3c1af
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Mar  8 20:49:49 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Mar  8 21:13:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ef14a2a

media-sound/qsynth: Drop 0.6.3 and 0.9.0

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/qsynth/Manifest|  2 -
 .../qsynth/files/qsynth-0.4.0-qt5-tagging.patch| 11 ---
 .../files/qsynth-0.9.0-cmake-no-git-version.patch  | 37 --
 media-sound/qsynth/qsynth-0.6.3.ebuild | 69 ---
 media-sound/qsynth/qsynth-0.9.0.ebuild | 79 --
 5 files changed, 198 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index c24bb02be3e..b7d8b93ebcf 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,3 +1 @@
-DIST qsynth-0.6.3.tar.gz 382990 BLAKE2B 
37565c86b077602cd681b92aaea20d4aa07db1c4cf51d391562b5226ddde70dad0a3f641f0fcf54f35c6bb1a9e487a779c22237b0c8087666b7a2c1dea8a511e
 SHA512 
7320a355b5fbb347b04b46fdfe86c13ab18b264cff09f2ed133e2b065febac27e58bd709eea284b4d0f98034059647ad6e9b97638fdd75edb1524fd3cf9f07a2
-DIST qsynth-0.9.0.tar.gz 383118 BLAKE2B 
d9464a2f122d7281ff69171c431fff72d05886ec130d20aae8d8f122e1cefd1180b8bcdc157f324c5cdbc7e2c524c82a9cc7f481efc8b69912ce61912e73ed58
 SHA512 
5cc0e099cd05f3639ded81642bde80205c8921b65d22dcb32d40ac874107043edeb672e69d7e4734e0fd37a498be2e5b787f0b8c1707be45e39cfab616fd522c
 DIST qsynth-0.9.1.tar.gz 393897 BLAKE2B 
f63766614d821409cd12e418e36b8dbd739da8e2cd7deae91c2b00dd4f5ba2f447a3ca19c3829de3282e368baa37567333be051641221300d13dd7948d762008
 SHA512 
70bba332b90963d1c1da18fb3de8f05544fed3406c2144b6ed78cf93720cbcb684ff367d7ef4bc80be94ebea060b38753ae0cb183e85f96f127014c08de701b0

diff --git a/media-sound/qsynth/files/qsynth-0.4.0-qt5-tagging.patch 
b/media-sound/qsynth/files/qsynth-0.4.0-qt5-tagging.patch
deleted file mode 100644
index 6b164924aca..000
--- a/media-sound/qsynth/files/qsynth-0.4.0-qt5-tagging.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -ru qsynth-0.4.0/configure qsynth-0.4.0-modified/configure
 qsynth-0.4.0/configure 2015-09-07 16:59:25.083842955 +0200
-+++ qsynth-0.4.0-modified/configure2016-01-12 15:57:36.673008368 +0100
-@@ -4159,6 +4159,7 @@
- 
-   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
- /* end confdefs.h.  */
-+#define QT_NO_VERSION_TAGGING
- #include "QtCore/qglobal.h"
- int
- main ()

diff --git a/media-sound/qsynth/files/qsynth-0.9.0-cmake-no-git-version.patch 
b/media-sound/qsynth/files/qsynth-0.9.0-cmake-no-git-version.patch
deleted file mode 100644
index 11091ba1166..000
--- a/media-sound/qsynth/files/qsynth-0.9.0-cmake-no-git-version.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 7ddf562dfc92174f47e3da95a1e18e5b1af83bfc Mon Sep 17 00:00:00 2001
-From: Christoph Karl 
-Date: Dec 31 2020 15:42:42 +
-Subject: Fix version number in about dialog
-
-

-
-diff -rupN a/CMakeLists.txt b/CMakeLists.txt
 a/CMakeLists.txt 2020-12-31 16:31:19.395906813 +0100
-+++ b/CMakeLists.txt 2020-12-31 16:37:42.293523588 +0100
-@@ -5,25 +5,6 @@ cmake_minimum_required(VERSION 3.1)
- set (VERSION "0.9.0")
- 
- set (CONFIG_VERSION ${VERSION})
--execute_process (
--  COMMAND git describe --tags --dirty --abbrev=6
--  OUTPUT_VARIABLE GIT_DESCRIBE_OUTPUT
--  RESULT_VARIABLE GIT_DESCRIBE_RESULT
--  OUTPUT_STRIP_TRAILING_WHITESPACE)
--if (GIT_DESCRIBE_RESULT EQUAL 0)
--  set (VERSION "${GIT_DESCRIBE_OUTPUT}")
--  string (REGEX REPLACE "^[^0-9]+" "" VERSION "${VERSION}")
--  string (REGEX REPLACE "-g"   "git." VERSION "${VERSION}")
--  string (REGEX REPLACE "[_|-]+"  "." VERSION "${VERSION}")
--  execute_process (
--COMMAND git rev-parse --abbrev-ref HEAD
--OUTPUT_VARIABLE GIT_REVPARSE_OUTPUT
--RESULT_VARIABLE GIT_REVPARSE_RESULT
--OUTPUT_STRIP_TRAILING_WHITESPACE)
--  if (GIT_REVPARSE_RESULT EQUAL 0 AND NOT GIT_REVPARSE_OUTPUT STREQUAL 
"master")
--set (VERSION "${VERSION} [${GIT_REVPARSE_OUTPUT}]")
--  endif ()
--endif ()
- 
- set (PACKAGE_NAME "Qsynth")
- set (PACKAGE_VERSION "${VERSION}")

diff --git a/media-sound/qsynth/qsynth-0.6.3.ebuild 
b/media-sound/qsynth/qsynth-0.6.3.ebuild
deleted file mode 100644
index 2e469dea3b3..000
--- a/media-sound/qsynth/qsynth-0.6.3.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop qmake-utils xdg-utils
-
-DESCRIPTION="Qt application to control FluidSynth"
-HOMEPAGE="https://qsynth.sourceforge.io/;
-SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="amd64 ppc ppc64 x86"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   

[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-03-08 Thread Sam James
commit: dae2a709254a1358b74533cbb800999d2186e176
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 10:26:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 10:26:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae2a709

media-sound/qsynth: Stabilize 0.9.1 x86, #770310

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.1.ebuild 
b/media-sound/qsynth/qsynth-0.9.1.ebuild
index 3f7bda6bfcf..9c902ccb2db 100644
--- a/media-sound/qsynth/qsynth-0.9.1.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 ~x86"
+   KEYWORDS="amd64 ppc ppc64 x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-03-08 Thread Sam James
commit: 1ee63126147ac73355894813dfd1c821c7b6acb9
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 10:24:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 10:24:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee63126

media-sound/qsynth: Stabilize 0.9.1 amd64, #770310

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.1.ebuild 
b/media-sound/qsynth/qsynth-0.9.1.ebuild
index 9b58446e9d7..3f7bda6bfcf 100644
--- a/media-sound/qsynth/qsynth-0.9.1.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ppc ppc64 ~x86"
+   KEYWORDS="amd64 ppc ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-03-07 Thread Sam James
commit: bfb6044f0c3390d86ac5d661d425ceaa4bb54632
Author: Sam James  gentoo  org>
AuthorDate: Mon Mar  8 05:32:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Mar  8 05:32:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfb6044f

media-sound/qsynth: Stabilize 0.9.1 ppc, #770310

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.1.ebuild 
b/media-sound/qsynth/qsynth-0.9.1.ebuild
index a4ef7a12b46..9b58446e9d7 100644
--- a/media-sound/qsynth/qsynth-0.9.1.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ppc64 ~x86"
+   KEYWORDS="~amd64 ppc ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-03-07 Thread Sam James
commit: 7d6bccd5475aa744ba8e23e10d8d81015363a1c4
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar  7 23:06:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar  7 23:06:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d6bccd5

media-sound/qsynth: Stabilize 0.9.1 ppc64, #770310

Signed-off-by: Sam James  gentoo.org>

 media-sound/qsynth/qsynth-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.9.1.ebuild 
b/media-sound/qsynth/qsynth-0.9.1.ebuild
index dac583b64db..a4ef7a12b46 100644
--- a/media-sound/qsynth/qsynth-0.9.1.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~ppc ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/, media-sound/qsynth/files/

2021-02-07 Thread Miroslav Šulc
commit: de8d5c247b2699a7c713f13557e1cca59915f9b9
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Feb  7 14:21:25 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Feb  7 14:21:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de8d5c24

media-sound/qsynth: bump to 0.9.1, xdg-utils -> xdg, updated live

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest |  1 +
 .../files/qsynth-0.9.1-cmake-no-git-version.patch   | 21 +
 .../{qsynth-.ebuild => qsynth-0.9.1.ebuild} | 12 +++-
 media-sound/qsynth/qsynth-.ebuild   | 10 +-
 4 files changed, 26 insertions(+), 18 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index b6fb37b4356..c24bb02be3e 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1,3 @@
 DIST qsynth-0.6.3.tar.gz 382990 BLAKE2B 
37565c86b077602cd681b92aaea20d4aa07db1c4cf51d391562b5226ddde70dad0a3f641f0fcf54f35c6bb1a9e487a779c22237b0c8087666b7a2c1dea8a511e
 SHA512 
7320a355b5fbb347b04b46fdfe86c13ab18b264cff09f2ed133e2b065febac27e58bd709eea284b4d0f98034059647ad6e9b97638fdd75edb1524fd3cf9f07a2
 DIST qsynth-0.9.0.tar.gz 383118 BLAKE2B 
d9464a2f122d7281ff69171c431fff72d05886ec130d20aae8d8f122e1cefd1180b8bcdc157f324c5cdbc7e2c524c82a9cc7f481efc8b69912ce61912e73ed58
 SHA512 
5cc0e099cd05f3639ded81642bde80205c8921b65d22dcb32d40ac874107043edeb672e69d7e4734e0fd37a498be2e5b787f0b8c1707be45e39cfab616fd522c
+DIST qsynth-0.9.1.tar.gz 393897 BLAKE2B 
f63766614d821409cd12e418e36b8dbd739da8e2cd7deae91c2b00dd4f5ba2f447a3ca19c3829de3282e368baa37567333be051641221300d13dd7948d762008
 SHA512 
70bba332b90963d1c1da18fb3de8f05544fed3406c2144b6ed78cf93720cbcb684ff367d7ef4bc80be94ebea060b38753ae0cb183e85f96f127014c08de701b0

diff --git a/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch 
b/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch
new file mode 100644
index 000..9ea401abc26
--- /dev/null
+++ b/media-sound/qsynth/files/qsynth-0.9.1-cmake-no-git-version.patch
@@ -0,0 +1,21 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 47ea36f..0194f32 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -8,6 +8,7 @@ project(qsynth
+ list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
+ 
+ set (CONFIG_VERSION ${PROJECT_VERSION})
++#[[
+ execute_process (
+   COMMAND git describe --tags --dirty --abbrev=6
+   OUTPUT_VARIABLE GIT_DESCRIBE_OUTPUT
+@@ -29,6 +30,8 @@ if (GIT_DESCRIBE_RESULT EQUAL 0)
+ else ()
+   set (VERSION "${PROJECT_VERSION}")
+ endif ()
++]]
++set (VERSION "${PROJECT_VERSION}")
+ 
+ set (PACKAGE_NAME "Qsynth")
+ set (PACKAGE_VERSION "${VERSION}")

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-0.9.1.ebuild
similarity index 91%
copy from media-sound/qsynth/qsynth-.ebuild
copy to media-sound/qsynth/qsynth-0.9.1.ebuild
index b0cfa6dfb05..dac583b64db 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake desktop qmake-utils xdg-utils
+inherit cmake desktop qmake-utils xdg
 
 DESCRIPTION="Qt application to control FluidSynth"
 HOMEPAGE="https://qsynth.sourceforge.io/;
@@ -34,6 +34,8 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
+PATCHES=( "${FILESDIR}/${P}-cmake-no-git-version.patch" )
+
 src_prepare() {
cmake_src_prepare
 
@@ -67,11 +69,3 @@ src_install() {
 
make_desktop_entry "${cmd}" Qsynth qsynth
 }
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-.ebuild
index b0cfa6dfb05..f2e790dc5a2 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake desktop qmake-utils xdg-utils
+inherit cmake desktop qmake-utils xdg
 
 DESCRIPTION="Qt application to control FluidSynth"
 HOMEPAGE="https://qsynth.sourceforge.io/;
@@ -67,11 +67,3 @@ src_install() {
 
make_desktop_entry "${cmd}" Qsynth qsynth
 }
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-01-25 Thread Miroslav Šulc
commit: deb10e03abb4442986603bea4d91a8b9a400616c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Jan 25 09:37:29 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Jan 25 09:37:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deb10e03

media-sound/qsynth: dropped no-git-version patch from live

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/qsynth-.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-.ebuild
index e7d76b66393..b0cfa6dfb05 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-.ebuild
@@ -34,8 +34,6 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
-PATCHES=( "${FILESDIR}/${PN}-0.9.0-cmake-no-git-version.patch" )
-
 src_prepare() {
cmake_src_prepare
 



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2021-01-20 Thread Miroslav Šulc
commit: 51936a7dbc829e73d98bd79f11058d9ee388bb27
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Jan 21 07:59:19 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Jan 21 07:59:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51936a7d

media-sound/qsynth: fixed path to the patch in live

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/qsynth-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-.ebuild
index 70d95bac46a..e7d76b66393 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-.ebuild
@@ -34,7 +34,7 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
-PATCHES=( "${FILESDIR}/${P}-cmake-no-git-version.patch" )
+PATCHES=( "${FILESDIR}/${PN}-0.9.0-cmake-no-git-version.patch" )
 
 src_prepare() {
cmake_src_prepare



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/, media-sound/qsynth/files/

2021-01-13 Thread Andreas Sturmlechner
commit: ed3d458a0390ff32516bed6606d9ff7482b03959
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 13 23:17:54 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 13 23:17:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed3d458a

media-sound/qsynth: 0.9.0 version bump, switch to cmake

CMake does not rely on shaky guesswork of Qt binary names and locations.

Closes: https://bugs.gentoo.org/764944
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/qsynth/Manifest|  1 +
 .../files/qsynth-0.9.0-cmake-no-git-version.patch  | 37 ++
 .../{qsynth-.ebuild => qsynth-0.9.0.ebuild}| 35 
 media-sound/qsynth/qsynth-.ebuild  | 35 
 4 files changed, 80 insertions(+), 28 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index aded7a7e5b5..b6fb37b4356 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.6.3.tar.gz 382990 BLAKE2B 
37565c86b077602cd681b92aaea20d4aa07db1c4cf51d391562b5226ddde70dad0a3f641f0fcf54f35c6bb1a9e487a779c22237b0c8087666b7a2c1dea8a511e
 SHA512 
7320a355b5fbb347b04b46fdfe86c13ab18b264cff09f2ed133e2b065febac27e58bd709eea284b4d0f98034059647ad6e9b97638fdd75edb1524fd3cf9f07a2
+DIST qsynth-0.9.0.tar.gz 383118 BLAKE2B 
d9464a2f122d7281ff69171c431fff72d05886ec130d20aae8d8f122e1cefd1180b8bcdc157f324c5cdbc7e2c524c82a9cc7f481efc8b69912ce61912e73ed58
 SHA512 
5cc0e099cd05f3639ded81642bde80205c8921b65d22dcb32d40ac874107043edeb672e69d7e4734e0fd37a498be2e5b787f0b8c1707be45e39cfab616fd522c

diff --git a/media-sound/qsynth/files/qsynth-0.9.0-cmake-no-git-version.patch 
b/media-sound/qsynth/files/qsynth-0.9.0-cmake-no-git-version.patch
new file mode 100644
index 000..11091ba1166
--- /dev/null
+++ b/media-sound/qsynth/files/qsynth-0.9.0-cmake-no-git-version.patch
@@ -0,0 +1,37 @@
+From 7ddf562dfc92174f47e3da95a1e18e5b1af83bfc Mon Sep 17 00:00:00 2001
+From: Christoph Karl 
+Date: Dec 31 2020 15:42:42 +
+Subject: Fix version number in about dialog
+
+
+---
+
+diff -rupN a/CMakeLists.txt b/CMakeLists.txt
+--- a/CMakeLists.txt 2020-12-31 16:31:19.395906813 +0100
 b/CMakeLists.txt 2020-12-31 16:37:42.293523588 +0100
+@@ -5,25 +5,6 @@ cmake_minimum_required(VERSION 3.1)
+ set (VERSION "0.9.0")
+ 
+ set (CONFIG_VERSION ${VERSION})
+-execute_process (
+-  COMMAND git describe --tags --dirty --abbrev=6
+-  OUTPUT_VARIABLE GIT_DESCRIBE_OUTPUT
+-  RESULT_VARIABLE GIT_DESCRIBE_RESULT
+-  OUTPUT_STRIP_TRAILING_WHITESPACE)
+-if (GIT_DESCRIBE_RESULT EQUAL 0)
+-  set (VERSION "${GIT_DESCRIBE_OUTPUT}")
+-  string (REGEX REPLACE "^[^0-9]+" "" VERSION "${VERSION}")
+-  string (REGEX REPLACE "-g"   "git." VERSION "${VERSION}")
+-  string (REGEX REPLACE "[_|-]+"  "." VERSION "${VERSION}")
+-  execute_process (
+-COMMAND git rev-parse --abbrev-ref HEAD
+-OUTPUT_VARIABLE GIT_REVPARSE_OUTPUT
+-RESULT_VARIABLE GIT_REVPARSE_RESULT
+-OUTPUT_STRIP_TRAILING_WHITESPACE)
+-  if (GIT_REVPARSE_RESULT EQUAL 0 AND NOT GIT_REVPARSE_OUTPUT STREQUAL 
"master")
+-set (VERSION "${VERSION} [${GIT_REVPARSE_OUTPUT}]")
+-  endif ()
+-endif ()
+ 
+ set (PACKAGE_NAME "Qsynth")
+ set (PACKAGE_VERSION "${VERSION}")

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-0.9.0.ebuild
similarity index 65%
copy from media-sound/qsynth/qsynth-.ebuild
copy to media-sound/qsynth/qsynth-0.9.0.ebuild
index 7866d934551..70d95bac46a 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-0.9.0.ebuild
@@ -1,18 +1,26 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit desktop qmake-utils xdg-utils git-r3 autotools
+inherit cmake desktop qmake-utils xdg-utils
 
 DESCRIPTION="Qt application to control FluidSynth"
 HOMEPAGE="https://qsynth.sourceforge.io/;
-EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
+   inherit git-r3
+else
+   SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
 
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS=""
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
 
 BDEPEND="
dev-qt/linguist-tools:5
@@ -26,24 +34,23 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
+PATCHES=( "${FILESDIR}/${P}-cmake-no-git-version.patch" )
 
 src_prepare() {
-   default
-   eautoreconf
+   cmake_src_prepare
+
+   sed -e "/^find_package.*QT/s/Qt6 //" -i CMakeLists.txt || die
 }
 
 src_configure() {
-   sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
-   econf \
-   $(use_enable debug)
-
-   

[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-10-13 Thread Andreas Sturmlechner
commit: 35ca782ed8e703824059736d39e16b25d77738c6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Oct 13 14:20:20 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Oct 13 15:01:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35ca782e

media-sound/qsynth: Drop 0.6.2

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.6.2.ebuild | 70 --
 2 files changed, 71 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index ec10b52bb77..aded7a7e5b5 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.6.2.tar.gz 383146 BLAKE2B 
6e93a1d16dc57ce5cc180932eec049cbd62eb64d6667cbfc748c474fe2b751273ff50a94a5497f1d268e2d413831095bea92a2f086b417625f02fecf1bc6ec9d
 SHA512 
6e6f5dc64c39ab18ad1a9e791376e0dcf6eea4882986b1723a5a2f7c53309ce166d443a198c62b33ac31ed3fc17100c3a4f8e3b1e474b70afcec0ffa7f1ffc08
 DIST qsynth-0.6.3.tar.gz 382990 BLAKE2B 
37565c86b077602cd681b92aaea20d4aa07db1c4cf51d391562b5226ddde70dad0a3f641f0fcf54f35c6bb1a9e487a779c22237b0c8087666b7a2c1dea8a511e
 SHA512 
7320a355b5fbb347b04b46fdfe86c13ab18b264cff09f2ed133e2b065febac27e58bd709eea284b4d0f98034059647ad6e9b97638fdd75edb1524fd3cf9f07a2

diff --git a/media-sound/qsynth/qsynth-0.6.2.ebuild 
b/media-sound/qsynth/qsynth-0.6.2.ebuild
deleted file mode 100644
index c820943f1db..000
--- a/media-sound/qsynth/qsynth-0.6.2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop flag-o-matic qmake-utils xdg-utils
-
-DESCRIPTION="A Qt application to control FluidSynth"
-HOMEPAGE="https://qsynth.sourceforge.io/;
-SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="amd64 ppc ppc64 x86"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
-
-src_configure() {
-   append-cxxflags -std=c++11
-   sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
-   econf \
-   $(use_enable debug)
-
-   eqmake5 ${PN}.pro -o ${PN}.mak
-}
-
-src_install() {
-   emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
-   einstalldocs
-
-   # The desktop file is invalid, and we also change the command
-   # depending on useflags
-   rm "${ED}/usr/share/applications/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 qsynth
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-10-13 Thread Agostino Sarubbo
commit: 5242ab01e0df7d73fa6eaf35219825bde00039b1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Oct 13 09:25:04 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Oct 13 09:25:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5242ab01

media-sound/qsynth: amd64 stable wrt bug #747676

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.3.ebuild 
b/media-sound/qsynth/qsynth-0.6.3.ebuild
index 3978c552306..2e469dea3b3 100644
--- a/media-sound/qsynth/qsynth-0.6.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-10-12 Thread Agostino Sarubbo
commit: cd3327cf85d6c696404eb02d8d2688a06c2d71aa
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Oct 12 12:35:45 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Oct 12 12:35:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3327cf

media-sound/qsynth: x86 stable wrt bug #747676

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.3.ebuild 
b/media-sound/qsynth/qsynth-0.6.3.ebuild
index 8df30b12690..3978c552306 100644
--- a/media-sound/qsynth/qsynth-0.6.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ppc ppc64 ~x86"
+KEYWORDS="~amd64 ppc ppc64 x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-10-12 Thread Agostino Sarubbo
commit: 93a448505073bc9d22b6a7ff19d8008d9b3250a7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Oct 12 11:49:43 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Oct 12 11:49:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a44850

media-sound/qsynth: ppc64 stable wrt bug #747676

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.3.ebuild 
b/media-sound/qsynth/qsynth-0.6.3.ebuild
index 8960f17a8c6..8df30b12690 100644
--- a/media-sound/qsynth/qsynth-0.6.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ppc64 ~x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-10-12 Thread Agostino Sarubbo
commit: a869bde5eee84466a4600268b41dcee49859f324
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Oct 12 11:47:54 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Oct 12 11:47:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a869bde5

media-sound/qsynth: ppc stable wrt bug #747676

Package-Manager: Portage-3.0.4, Repoman-3.0.1
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.3.ebuild 
b/media-sound/qsynth/qsynth-0.6.3.ebuild
index 5cb416916d3..8960f17a8c6 100644
--- a/media-sound/qsynth/qsynth-0.6.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ~ppc64 ~x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-09-03 Thread Miroslav Šulc
commit: 7fb037f89af148f70b6980b51c82e538b1cfdc7d
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Sep  3 16:50:46 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Sep  3 16:51:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fb037f8

media-sound/qsynth: removed patch from live

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/qsynth-.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-.ebuild
index 341c0c4efdb..7866d934551 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-.ebuild
@@ -28,8 +28,6 @@ RDEPEND="${DEPEND}"
 
 REQUIRED_USE="|| ( alsa jack pulseaudio )"
 
-PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
-
 src_prepare() {
default
eautoreconf



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-08-22 Thread Andreas Sturmlechner
commit: 3a007f5152ece04fb10bfe161df6d11c756d65cb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Aug 21 22:24:01 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Aug 22 16:05:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a007f51

media-sound/qsynth: Update , run default before eautoreconf

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/qsynth/qsynth-.ebuild | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/media-sound/qsynth/qsynth-.ebuild 
b/media-sound/qsynth/qsynth-.ebuild
index b8f87dedef2..341c0c4efdb 100644
--- a/media-sound/qsynth/qsynth-.ebuild
+++ b/media-sound/qsynth/qsynth-.ebuild
@@ -3,9 +3,9 @@
 
 EAPI=7
 
-inherit desktop flag-o-matic qmake-utils xdg-utils git-r3 autotools
+inherit desktop qmake-utils xdg-utils git-r3 autotools
 
-DESCRIPTION="A Qt application to control FluidSynth"
+DESCRIPTION="Qt application to control FluidSynth"
 HOMEPAGE="https://qsynth.sourceforge.io/;
 EGIT_REPO_URI="https://git.code.sf.net/p/qsynth/code;
 
@@ -31,13 +31,11 @@ REQUIRED_USE="|| ( alsa jack pulseaudio )"
 PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
 
 src_prepare() {
-   eautoreconf
-
default
+   eautoreconf
 }
 
 src_configure() {
-   append-cxxflags -std=c++11
sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
econf \
$(use_enable debug)
@@ -51,7 +49,7 @@ src_install() {
 
# The desktop file is invalid, and we also change the command
# depending on useflags
-   rm "${ED}/usr/share/applications/qsynth.desktop" || die
+   rm "${D}/usr/share/applications/qsynth.desktop" || die
 
local cmd
if use jack; then



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-08-22 Thread Andreas Sturmlechner
commit: 77be775f9b731a24af9cc1013050d0ea22f1d540
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Aug 21 22:28:16 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Aug 22 16:05:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77be775f

media-sound/qsynth: 0.6.3 version bump

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/qsynth/Manifest|  1 +
 media-sound/qsynth/qsynth-0.6.3.ebuild | 69 ++
 2 files changed, 70 insertions(+)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 59e267c0362..ec10b52bb77 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.6.2.tar.gz 383146 BLAKE2B 
6e93a1d16dc57ce5cc180932eec049cbd62eb64d6667cbfc748c474fe2b751273ff50a94a5497f1d268e2d413831095bea92a2f086b417625f02fecf1bc6ec9d
 SHA512 
6e6f5dc64c39ab18ad1a9e791376e0dcf6eea4882986b1723a5a2f7c53309ce166d443a198c62b33ac31ed3fc17100c3a4f8e3b1e474b70afcec0ffa7f1ffc08
+DIST qsynth-0.6.3.tar.gz 382990 BLAKE2B 
37565c86b077602cd681b92aaea20d4aa07db1c4cf51d391562b5226ddde70dad0a3f641f0fcf54f35c6bb1a9e487a779c22237b0c8087666b7a2c1dea8a511e
 SHA512 
7320a355b5fbb347b04b46fdfe86c13ab18b264cff09f2ed133e2b065febac27e58bd709eea284b4d0f98034059647ad6e9b97638fdd75edb1524fd3cf9f07a2

diff --git a/media-sound/qsynth/qsynth-0.6.3.ebuild 
b/media-sound/qsynth/qsynth-0.6.3.ebuild
new file mode 100644
index 000..5cb416916d3
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.6.3.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop qmake-utils xdg-utils
+
+DESCRIPTION="Qt application to control FluidSynth"
+HOMEPAGE="https://qsynth.sourceforge.io/;
+SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
+
+src_configure() {
+   sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
+   econf \
+   $(use_enable debug)
+
+   eqmake5 ${PN}.pro -o ${PN}.mak
+}
+
+src_install() {
+   emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
+   einstalldocs
+
+   # The desktop file is invalid, and we also change the command
+   # depending on useflags
+   rm "${D}/usr/share/applications/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 qsynth
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-05-09 Thread Miroslav Šulc
commit: e59c55fdffa83a316d7480a8f2804db9682a50d1
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat May  9 08:39:46 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat May  9 08:41:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e59c55fd

media-sound/qsynth: removed obsolete 0.6.1

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.6.1.ebuild | 70 --
 2 files changed, 71 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index ddcabb3a35d..59e267c0362 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.6.1.tar.gz 337277 BLAKE2B 
c0f160bc4a1db84a53fb96fe66212b335a07736f6659514a61a20e9d23a95e50bee5818443035095e262f45a38d09b59aff10062cfc121c75a20e2b57a488aef
 SHA512 
597ec51f2f2bc45e717dd6e039d10ace3540c6e7332832cbd36a16fb05b88248a59e5ba107369c8bd66d29060c31d0daef13f4967794e2f7b55c85a64dcd6e0c
 DIST qsynth-0.6.2.tar.gz 383146 BLAKE2B 
6e93a1d16dc57ce5cc180932eec049cbd62eb64d6667cbfc748c474fe2b751273ff50a94a5497f1d268e2d413831095bea92a2f086b417625f02fecf1bc6ec9d
 SHA512 
6e6f5dc64c39ab18ad1a9e791376e0dcf6eea4882986b1723a5a2f7c53309ce166d443a198c62b33ac31ed3fc17100c3a4f8e3b1e474b70afcec0ffa7f1ffc08

diff --git a/media-sound/qsynth/qsynth-0.6.1.ebuild 
b/media-sound/qsynth/qsynth-0.6.1.ebuild
deleted file mode 100644
index afd6bb7009c..000
--- a/media-sound/qsynth/qsynth-0.6.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop flag-o-matic qmake-utils xdg-utils
-
-DESCRIPTION="A Qt application to control FluidSynth"
-HOMEPAGE="https://qsynth.sourceforge.io/;
-SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="amd64 ppc x86"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
-
-src_configure() {
-   append-cxxflags -std=c++11
-   sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
-   econf \
-   $(use_enable debug)
-
-   eqmake5 ${PN}.pro -o ${PN}.mak
-}
-
-src_install() {
-   emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
-   einstalldocs
-
-   # The desktop file is invalid, and we also change the command
-   # depending on useflags
-   rm "${ED}/usr/share/applications/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 qsynth
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-05-08 Thread Agostino Sarubbo
commit: fddeb2ed1522a581dc0ab842b1c38bfc4da3be08
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri May  8 10:45:54 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri May  8 10:45:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fddeb2ed

media-sound/qsynth: x86 stable wrt bug #720454

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.2.ebuild 
b/media-sound/qsynth/qsynth-0.6.2.ebuild
index a4add682687..c820943f1db 100644
--- a/media-sound/qsynth/qsynth-0.6.2.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-05-07 Thread Agostino Sarubbo
commit: f51a80ac9b70c931ad3675a51b4b70264d438cc3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu May  7 15:58:35 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu May  7 15:58:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f51a80ac

media-sound/qsynth: amd64 stable wrt bug #720454

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.2.ebuild 
b/media-sound/qsynth/qsynth-0.6.2.ebuild
index abc35215eb3..a4add682687 100644
--- a/media-sound/qsynth/qsynth-0.6.2.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 ~x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-05-06 Thread Sergei Trofimovich
commit: 1ecd1e4e332dcebe5869392e46ced40a58de786e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May  6 07:12:38 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May  6 07:17:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ecd1e4e

media-sound/qsynth: stable 0.6.2 for ppc64, bug #720454

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-sound/qsynth/qsynth-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.2.ebuild 
b/media-sound/qsynth/qsynth-0.6.2.ebuild
index 8f73778a818..abc35215eb3 100644
--- a/media-sound/qsynth/qsynth-0.6.2.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ppc64 ~x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-05-06 Thread Sergei Trofimovich
commit: b0d7f31e8354a1cfcdd84c32e10798e6d242606f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May  6 06:51:08 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May  6 07:01:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0d7f31e

media-sound/qsynth: stable 0.6.2 for ppc, bug #720454

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-sound/qsynth/qsynth-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.2.ebuild 
b/media-sound/qsynth/qsynth-0.6.2.ebuild
index 8cf21bfa2aa..8f73778a818 100644
--- a/media-sound/qsynth/qsynth-0.6.2.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ~ppc64 ~x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-04-23 Thread Georgy Yakovlev
commit: 48c56f63bc75d70ae390aef50dd7869dabf064d7
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Apr 23 08:28:25 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Apr 23 09:02:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48c56f63

media-sound/qsynth: add ~ppc64 keyword

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev  gentoo.org>

 media-sound/qsynth/qsynth-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.2.ebuild 
b/media-sound/qsynth/qsynth-0.6.2.ebuild
index 71cbc9eebd1..8cf21bfa2aa 100644
--- a/media-sound/qsynth/qsynth-0.6.2.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-04-11 Thread Miroslav Šulc
commit: d127fa03b9f55457a2a1fcc7e97f6d929b222187
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sun Apr 12 04:45:28 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sun Apr 12 04:45:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d127fa03

media-sound/qsynth: removed old 0.6.0

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.6.0.ebuild | 70 --
 2 files changed, 71 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 0af60a7f042..ddcabb3a35d 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,3 +1,2 @@
-DIST qsynth-0.6.0.tar.gz 316308 BLAKE2B 
d414c73d5baf3be1563c45390735de964c79774a4d7cc37ff4bc609a7fa4d291a5b0cba7f3b8ed52649c50325a3ba2fba7baad3943122cc76a98aa6cfdf2cb0f
 SHA512 
34e15d283f403ec6633fef911285dc2d4d4b2c5a0cd3614bd38feefbf68cff5fd8e296f47d1bcd527658b8a9dab212106aa63ca71ea60cf49f8126adb7d28591
 DIST qsynth-0.6.1.tar.gz 337277 BLAKE2B 
c0f160bc4a1db84a53fb96fe66212b335a07736f6659514a61a20e9d23a95e50bee5818443035095e262f45a38d09b59aff10062cfc121c75a20e2b57a488aef
 SHA512 
597ec51f2f2bc45e717dd6e039d10ace3540c6e7332832cbd36a16fb05b88248a59e5ba107369c8bd66d29060c31d0daef13f4967794e2f7b55c85a64dcd6e0c
 DIST qsynth-0.6.2.tar.gz 383146 BLAKE2B 
6e93a1d16dc57ce5cc180932eec049cbd62eb64d6667cbfc748c474fe2b751273ff50a94a5497f1d268e2d413831095bea92a2f086b417625f02fecf1bc6ec9d
 SHA512 
6e6f5dc64c39ab18ad1a9e791376e0dcf6eea4882986b1723a5a2f7c53309ce166d443a198c62b33ac31ed3fc17100c3a4f8e3b1e474b70afcec0ffa7f1ffc08

diff --git a/media-sound/qsynth/qsynth-0.6.0.ebuild 
b/media-sound/qsynth/qsynth-0.6.0.ebuild
deleted file mode 100644
index afd6bb7009c..000
--- a/media-sound/qsynth/qsynth-0.6.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop flag-o-matic qmake-utils xdg-utils
-
-DESCRIPTION="A Qt application to control FluidSynth"
-HOMEPAGE="https://qsynth.sourceforge.io/;
-SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="amd64 ppc x86"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
-
-src_configure() {
-   append-cxxflags -std=c++11
-   sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
-   econf \
-   $(use_enable debug)
-
-   eqmake5 ${PN}.pro -o ${PN}.mak
-}
-
-src_install() {
-   emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
-   einstalldocs
-
-   # The desktop file is invalid, and we also change the command
-   # depending on useflags
-   rm "${ED}/usr/share/applications/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 qsynth
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-04-11 Thread Agostino Sarubbo
commit: 19eb80e2787568728addb526fe3e93b2d9529f1b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Apr 11 16:12:19 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Apr 11 16:12:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19eb80e2

media-sound/qsynth: x86 stable wrt bug #716766

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.1.ebuild 
b/media-sound/qsynth/qsynth-0.6.1.ebuild
index d2ed2329a87..afd6bb7009c 100644
--- a/media-sound/qsynth/qsynth-0.6.1.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-04-11 Thread Agostino Sarubbo
commit: 2fc24776104770026edf606076ca4e60dcf50d40
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Apr 11 15:59:34 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Apr 11 15:59:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fc24776

media-sound/qsynth: ppc stable wrt bug #716766

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.1.ebuild 
b/media-sound/qsynth/qsynth-0.6.1.ebuild
index dbb92cdf6f8..d2ed2329a87 100644
--- a/media-sound/qsynth/qsynth-0.6.1.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-04-09 Thread Agostino Sarubbo
commit: 1cb8345124c348e01795aadec3701f3f486a54be
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Apr  9 12:25:20 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Apr  9 12:25:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cb83451

media-sound/qsynth: amd64 stable wrt bug #716766

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qsynth/qsynth-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qsynth/qsynth-0.6.1.ebuild 
b/media-sound/qsynth/qsynth-0.6.1.ebuild
index 71cbc9eebd1..dbb92cdf6f8 100644
--- a/media-sound/qsynth/qsynth-0.6.1.ebuild
+++ b/media-sound/qsynth/qsynth-0.6.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-04-03 Thread Miroslav Šulc
commit: bef0bb576ee18eabbcf7dbd1cddea39a9f84eaa9
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Apr  3 14:39:51 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Apr  3 14:42:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bef0bb57

media-sound/qsynth: bump to 0.6.2

Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 +
 media-sound/qsynth/qsynth-0.6.2.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 91042baaefb..0af60a7f042 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1,3 @@
 DIST qsynth-0.6.0.tar.gz 316308 BLAKE2B 
d414c73d5baf3be1563c45390735de964c79774a4d7cc37ff4bc609a7fa4d291a5b0cba7f3b8ed52649c50325a3ba2fba7baad3943122cc76a98aa6cfdf2cb0f
 SHA512 
34e15d283f403ec6633fef911285dc2d4d4b2c5a0cd3614bd38feefbf68cff5fd8e296f47d1bcd527658b8a9dab212106aa63ca71ea60cf49f8126adb7d28591
 DIST qsynth-0.6.1.tar.gz 337277 BLAKE2B 
c0f160bc4a1db84a53fb96fe66212b335a07736f6659514a61a20e9d23a95e50bee5818443035095e262f45a38d09b59aff10062cfc121c75a20e2b57a488aef
 SHA512 
597ec51f2f2bc45e717dd6e039d10ace3540c6e7332832cbd36a16fb05b88248a59e5ba107369c8bd66d29060c31d0daef13f4967794e2f7b55c85a64dcd6e0c
+DIST qsynth-0.6.2.tar.gz 383146 BLAKE2B 
6e93a1d16dc57ce5cc180932eec049cbd62eb64d6667cbfc748c474fe2b751273ff50a94a5497f1d268e2d413831095bea92a2f086b417625f02fecf1bc6ec9d
 SHA512 
6e6f5dc64c39ab18ad1a9e791376e0dcf6eea4882986b1723a5a2f7c53309ce166d443a198c62b33ac31ed3fc17100c3a4f8e3b1e474b70afcec0ffa7f1ffc08

diff --git a/media-sound/qsynth/qsynth-0.6.2.ebuild 
b/media-sound/qsynth/qsynth-0.6.2.ebuild
new file mode 100644
index 000..71cbc9eebd1
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.6.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop flag-o-matic qmake-utils xdg-utils
+
+DESCRIPTION="A Qt application to control FluidSynth"
+HOMEPAGE="https://qsynth.sourceforge.io/;
+SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
+
+src_configure() {
+   append-cxxflags -std=c++11
+   sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
+   econf \
+   $(use_enable debug)
+
+   eqmake5 ${PN}.pro -o ${PN}.mak
+}
+
+src_install() {
+   emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
+   einstalldocs
+
+   # The desktop file is invalid, and we also change the command
+   # depending on useflags
+   rm "${ED}/usr/share/applications/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 qsynth
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2020-03-09 Thread Miroslav Šulc
commit: 1de42708d3dd6074be542a120f53f9a3e84f
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Mar  9 11:17:14 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Mar  9 11:17:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1de4

media-sound/qsynth: bump to 0.6.1

Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 +
 media-sound/qsynth/qsynth-0.6.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 3809de6b5f6..91042baaefb 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1 +1,2 @@
 DIST qsynth-0.6.0.tar.gz 316308 BLAKE2B 
d414c73d5baf3be1563c45390735de964c79774a4d7cc37ff4bc609a7fa4d291a5b0cba7f3b8ed52649c50325a3ba2fba7baad3943122cc76a98aa6cfdf2cb0f
 SHA512 
34e15d283f403ec6633fef911285dc2d4d4b2c5a0cd3614bd38feefbf68cff5fd8e296f47d1bcd527658b8a9dab212106aa63ca71ea60cf49f8126adb7d28591
+DIST qsynth-0.6.1.tar.gz 337277 BLAKE2B 
c0f160bc4a1db84a53fb96fe66212b335a07736f6659514a61a20e9d23a95e50bee5818443035095e262f45a38d09b59aff10062cfc121c75a20e2b57a488aef
 SHA512 
597ec51f2f2bc45e717dd6e039d10ace3540c6e7332832cbd36a16fb05b88248a59e5ba107369c8bd66d29060c31d0daef13f4967794e2f7b55c85a64dcd6e0c

diff --git a/media-sound/qsynth/qsynth-0.6.1.ebuild 
b/media-sound/qsynth/qsynth-0.6.1.ebuild
new file mode 100644
index 000..71cbc9eebd1
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.6.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop flag-o-matic qmake-utils xdg-utils
+
+DESCRIPTION="A Qt application to control FluidSynth"
+HOMEPAGE="https://qsynth.sourceforge.io/;
+SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa debug jack pulseaudio"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+"
+RDEPEND="${DEPEND}"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
+
+src_configure() {
+   append-cxxflags -std=c++11
+   sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
+   econf \
+   $(use_enable debug)
+
+   eqmake5 ${PN}.pro -o ${PN}.mak
+}
+
+src_install() {
+   emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
+   einstalldocs
+
+   # The desktop file is invalid, and we also change the command
+   # depending on useflags
+   rm "${ED}/usr/share/applications/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 qsynth
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2019-12-13 Thread Miroslav Šulc
commit: d2e3473ee63783d3ac4dadbc6de11016205e52ac
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Dec 13 09:42:19 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Dec 13 10:01:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e3473e

media-sound/qsynth-0.5.6: removed old

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qsynth/Manifest|  1 -
 media-sound/qsynth/qsynth-0.5.6.ebuild | 62 --
 2 files changed, 63 deletions(-)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index b1cc0d68851..3809de6b5f6 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1 @@
-DIST qsynth-0.5.6.tar.gz 269583 BLAKE2B 
9b06f7be1aa39addebd0b088eff885bce39c6bc245461b64fe45243306afae8879d4b516bd46c30c2a8074e580e412c38a3c264d647a35ff5c81301703731067
 SHA512 
752b3ac7e478594ef873b2d1c9fcb1a1dcdd1fb33f34cab5f588f628d1f11f01ecd150c9d51021a41040794b68f0538ad6979751773d5c537f53a1f227b3bf88
 DIST qsynth-0.6.0.tar.gz 316308 BLAKE2B 
d414c73d5baf3be1563c45390735de964c79774a4d7cc37ff4bc609a7fa4d291a5b0cba7f3b8ed52649c50325a3ba2fba7baad3943122cc76a98aa6cfdf2cb0f
 SHA512 
34e15d283f403ec6633fef911285dc2d4d4b2c5a0cd3614bd38feefbf68cff5fd8e296f47d1bcd527658b8a9dab212106aa63ca71ea60cf49f8126adb7d28591

diff --git a/media-sound/qsynth/qsynth-0.5.6.ebuild 
b/media-sound/qsynth/qsynth-0.5.6.ebuild
deleted file mode 100644
index d6e9dd919db..000
--- a/media-sound/qsynth/qsynth-0.5.6.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop flag-o-matic qmake-utils
-
-DESCRIPTION="A Qt application to control FluidSynth"
-HOMEPAGE="https://qsynth.sourceforge.io/;
-SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa debug jack pulseaudio"
-KEYWORDS="amd64 ppc x86"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-"
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
-"
-RDEPEND="${DEPEND}"
-
-REQUIRED_USE="|| ( alsa jack pulseaudio )"
-
-PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
-
-src_configure() {
-   append-cxxflags -std=c++11
-   sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
-   econf \
-   $(use_enable debug)
-
-   eqmake5 ${PN}.pro -o ${PN}.mak
-}
-
-src_install () {
-   emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
-   einstalldocs
-
-   # The desktop file is invalid, and we also change the command
-   # depending on useflags
-   rm "${ED}/usr/share/applications/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 qsynth
-}



  1   2   >