* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsa-scarlett-gui/
@ 2023-11-29 17:45 Jason A. Donenfeld
0 siblings, 0 replies; 5+ messages in thread
From: Jason A. Donenfeld @ 2023-11-29 17:45 UTC (permalink / raw
To: gentoo-commits
commit: becdf04ced44af8a9b90ef05c6ecf454a712bd55
Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 17:43:46 2023 +0000
Commit: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 17:45:30 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=becdf04c
media-sound/alsa-scarlett-gui: new package, add 0.3.2.0.0.20231129
It's mildly annoying that I have to grab a git commit, but the recent
improvements are substantial. I suspect a new tag won't be far away, and
I'll bump this to a properly tagged version then.
Signed-off-by: Jason A. Donenfeld <zx2c4 <AT> gentoo.org>
media-sound/alsa-scarlett-gui/Manifest | 1 +
.../alsa-scarlett-gui-0.3.2.0.0.20231129.ebuild | 25 ++++++++++++++++++++++
media-sound/alsa-scarlett-gui/metadata.xml | 8 +++++++
3 files changed, 34 insertions(+)
diff --git a/media-sound/alsa-scarlett-gui/Manifest b/media-sound/alsa-scarlett-gui/Manifest
new file mode 100644
index 000000000000..75e16480604d
--- /dev/null
+++ b/media-sound/alsa-scarlett-gui/Manifest
@@ -0,0 +1 @@
+DIST alsa-scarlett-gui-0.3.2.0.0.20231129.tar.gz 3113572 BLAKE2B 3af6bb7a6e1415285e070e5fde414b1456a1da94c65b88bd058d7cad693417e1f7114664bc386c6652ce6956b71064ec41c754942257811383c0953fe6b4f807 SHA512 4f6c99ee318cee218bb1235fe844f754787985ab44c4e24c73c21e0e8ee7a75e6da1423f7e3f577c2303394f7993d0757928b3e3c3f031f01cdb01816c153dbd
diff --git a/media-sound/alsa-scarlett-gui/alsa-scarlett-gui-0.3.2.0.0.20231129.ebuild b/media-sound/alsa-scarlett-gui/alsa-scarlett-gui-0.3.2.0.0.20231129.ebuild
new file mode 100644
index 000000000000..c29ec55d0c5b
--- /dev/null
+++ b/media-sound/alsa-scarlett-gui/alsa-scarlett-gui-0.3.2.0.0.20231129.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A UI for Focusrite Scarlett and Clarett audio interfaces"
+HOMEPAGE="https://github.com/geoffreybennett/alsa-scarlett-gui"
+MY_PV="32c00623676e70572195ef28fd01ab8409b82541"
+SRC_URI="https://github.com/geoffreybennett/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+ dev-libs/glib:2
+ gui-libs/gtk:4
+ media-libs/alsa-lib
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+S="${WORKDIR}/${PN}-${MY_PV}/src"
+
+export PREFIX="/usr"
diff --git a/media-sound/alsa-scarlett-gui/metadata.xml b/media-sound/alsa-scarlett-gui/metadata.xml
new file mode 100644
index 000000000000..78a9d6b02d0f
--- /dev/null
+++ b/media-sound/alsa-scarlett-gui/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+<email>zx2c4@gentoo.org</email>
+<name>Jason A. Donenfeld</name>
+</maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsa-scarlett-gui/
@ 2023-12-01 18:33 Jason A. Donenfeld
0 siblings, 0 replies; 5+ messages in thread
From: Jason A. Donenfeld @ 2023-12-01 18:33 UTC (permalink / raw
To: gentoo-commits
commit: a89192d6fdda7d54034c7bab4cd6c2409e2b171f
Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 1 18:32:18 2023 +0000
Commit: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Fri Dec 1 18:32:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a89192d6
media-sound/alsa-scarlett-gui: respect user MAKEOPTS
Signed-off-by: Jason A. Donenfeld <zx2c4 <AT> gentoo.org>
media-sound/alsa-scarlett-gui/alsa-scarlett-gui-0.3.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/alsa-scarlett-gui/alsa-scarlett-gui-0.3.3.ebuild b/media-sound/alsa-scarlett-gui/alsa-scarlett-gui-0.3.3.ebuild
index 1ff6d2f932c1..bbffa10a19b6 100644
--- a/media-sound/alsa-scarlett-gui/alsa-scarlett-gui-0.3.3.ebuild
+++ b/media-sound/alsa-scarlett-gui/alsa-scarlett-gui-0.3.3.ebuild
@@ -20,6 +20,6 @@ RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=( "${FILESDIR}"/"${P}"-cflags.patch )
-MAKEOPTS="-C src"
+MAKEOPTS="${MAKEOPTS} -C src"
export PREFIX="/usr"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsa-scarlett-gui/
@ 2023-12-01 19:49 Jason A. Donenfeld
0 siblings, 0 replies; 5+ messages in thread
From: Jason A. Donenfeld @ 2023-12-01 19:49 UTC (permalink / raw
To: gentoo-commits
commit: 86b2fbc11ccd90564269650d80698842846bddb4
Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 1 19:49:26 2023 +0000
Commit: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Fri Dec 1 19:49:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86b2fbc1
media-sound/alsa-scarlett-gui: add github upstream metadata
Signed-off-by: Jason A. Donenfeld <zx2c4 <AT> gentoo.org>
media-sound/alsa-scarlett-gui/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/media-sound/alsa-scarlett-gui/metadata.xml b/media-sound/alsa-scarlett-gui/metadata.xml
index 78a9d6b02d0f..32a05cd814b7 100644
--- a/media-sound/alsa-scarlett-gui/metadata.xml
+++ b/media-sound/alsa-scarlett-gui/metadata.xml
@@ -5,4 +5,7 @@
<email>zx2c4@gentoo.org</email>
<name>Jason A. Donenfeld</name>
</maintainer>
+<upstream>
+<remote-id type="github">geoffreybennett/alsa-scarlett-gui</remote-id>
+</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsa-scarlett-gui/
@ 2023-12-07 3:09 Jason A. Donenfeld
0 siblings, 0 replies; 5+ messages in thread
From: Jason A. Donenfeld @ 2023-12-07 3:09 UTC (permalink / raw
To: gentoo-commits
commit: 955ae2d5e7b6bbdf561085bbe65e57def4c80c2b
Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 7 03:08:29 2023 +0000
Commit: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Thu Dec 7 03:09:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=955ae2d5
media-sound/alsa-scarlett-gui: update maintainers
Signed-off-by: Jason A. Donenfeld <zx2c4 <AT> gentoo.org>
media-sound/alsa-scarlett-gui/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/media-sound/alsa-scarlett-gui/metadata.xml b/media-sound/alsa-scarlett-gui/metadata.xml
index 32a05cd814b7..8b5cf4c7c352 100644
--- a/media-sound/alsa-scarlett-gui/metadata.xml
+++ b/media-sound/alsa-scarlett-gui/metadata.xml
@@ -5,6 +5,10 @@
<email>zx2c4@gentoo.org</email>
<name>Jason A. Donenfeld</name>
</maintainer>
+<maintainer type="project">
+<email>sound@gentoo.org</email>
+<name>Gentoo Sound project</name>
+</maintainer>
<upstream>
<remote-id type="github">geoffreybennett/alsa-scarlett-gui</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsa-scarlett-gui/
@ 2023-12-17 4:21 Jason A. Donenfeld
0 siblings, 0 replies; 5+ messages in thread
From: Jason A. Donenfeld @ 2023-12-17 4:21 UTC (permalink / raw
To: gentoo-commits
commit: 24dff1d88488156a459211fb8f36cc1855c4c768
Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 17 04:21:01 2023 +0000
Commit: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
CommitDate: Sun Dec 17 04:21:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24dff1d8
media-sound/alsa-scarlett-gui: use correct project in metadata
Signed-off-by: Jason A. Donenfeld <zx2c4 <AT> gentoo.org>
media-sound/alsa-scarlett-gui/metadata.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/alsa-scarlett-gui/metadata.xml b/media-sound/alsa-scarlett-gui/metadata.xml
index 8b5cf4c7c352..14a5040e976b 100644
--- a/media-sound/alsa-scarlett-gui/metadata.xml
+++ b/media-sound/alsa-scarlett-gui/metadata.xml
@@ -6,8 +6,8 @@
<name>Jason A. Donenfeld</name>
</maintainer>
<maintainer type="project">
-<email>sound@gentoo.org</email>
-<name>Gentoo Sound project</name>
+<email>proaudio@gentoo.org</email>
+<name>Gentoo ProAudio Project</name>
</maintainer>
<upstream>
<remote-id type="github">geoffreybennett/alsa-scarlett-gui</remote-id>
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-12-17 4:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-01 18:33 [gentoo-commits] repo/gentoo:master commit in: media-sound/alsa-scarlett-gui/ Jason A. Donenfeld
-- strict thread matches above, loose matches on Subject: below --
2023-12-17 4:21 Jason A. Donenfeld
2023-12-07 3:09 Jason A. Donenfeld
2023-12-01 19:49 Jason A. Donenfeld
2023-11-29 17:45 Jason A. Donenfeld
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox