* [gentoo-commits] repo/proj/guru:dev commit in: media-sound/pamixer/
@ 2024-07-30 15:41 Yuhang Zeng
0 siblings, 0 replies; 2+ messages in thread
From: Yuhang Zeng @ 2024-07-30 15:41 UTC (permalink / raw
To: gentoo-commits
commit: 450eaab2218a07c3f4e831504a4dc16dd3ba259d
Author: Yuhang Zeng <unlsycn <AT> unlsycn <DOT> com>
AuthorDate: Tue Jul 30 15:39:11 2024 +0000
Commit: Yuhang Zeng <unlsycn <AT> unlsycn <DOT> com>
CommitDate: Tue Jul 30 15:41:05 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=450eaab2
media-sound/pamixer: new package, add 1.6, 9999
Signed-off-by: Yuhang Zeng <unlsycn <AT> unlsycn.com>
media-sound/pamixer/Manifest | 1 +
media-sound/pamixer/metadata.xml | 10 ++++++++++
media-sound/pamixer/pamixer-1.6.ebuild | 28 ++++++++++++++++++++++++++++
media-sound/pamixer/pamixer-9999.ebuild | 28 ++++++++++++++++++++++++++++
4 files changed, 67 insertions(+)
diff --git a/media-sound/pamixer/Manifest b/media-sound/pamixer/Manifest
new file mode 100644
index 000000000..2f7d3fb51
--- /dev/null
+++ b/media-sound/pamixer/Manifest
@@ -0,0 +1 @@
+DIST pamixer-1.6.tar.gz 18574 BLAKE2B f7951102b2605d31886a7d76f608e3a349ab760a0995e81514dfc978d92e322ce83abb733364169317b996494bc898c1a81efc71805a62b61f9817c743a31e79 SHA512 c01b7c4184901955bff82aaeef0cde7f0b613e6ebff1158b3603f2835e13590a9353920a430598a3cde5c305a7316a78e302186bf4d3bf458133262578b42eb3
diff --git a/media-sound/pamixer/metadata.xml b/media-sound/pamixer/metadata.xml
new file mode 100644
index 000000000..b1b113fad
--- /dev/null
+++ b/media-sound/pamixer/metadata.xml
@@ -0,0 +1,10 @@
+<pkgmetadata>
+ <maintainer type="person">
+ <email>unlsycn@unlsycn.com</email>
+ <name>unlsycn</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">cdemoulins/pamixer</remote-id>
+ </upstream>
+ <longdescription lang="en">pamixer is like amixer but for pulseaudio. It can control the volume levels of the sinks.</longdescription>
+</pkgmetadata>
diff --git a/media-sound/pamixer/pamixer-1.6.ebuild b/media-sound/pamixer/pamixer-1.6.ebuild
new file mode 100644
index 000000000..88af5d4dd
--- /dev/null
+++ b/media-sound/pamixer/pamixer-1.6.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Pulseaudio command line mixer."
+HOMEPAGE="https://github.com/cdemoulins/pamixer"
+
+inherit meson
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/cdemoulins/pamixer"
+else
+ SRC_URI="https://github.com/cdemoulins/pamixer/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+RESTRICT="mirror"
+
+RDEPEND="
+ dev-libs/cxxopts
+ media-libs/libpulse
+"
+
+DEPEND="${RDEPEND}"
diff --git a/media-sound/pamixer/pamixer-9999.ebuild b/media-sound/pamixer/pamixer-9999.ebuild
new file mode 100644
index 000000000..88af5d4dd
--- /dev/null
+++ b/media-sound/pamixer/pamixer-9999.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Pulseaudio command line mixer."
+HOMEPAGE="https://github.com/cdemoulins/pamixer"
+
+inherit meson
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/cdemoulins/pamixer"
+else
+ SRC_URI="https://github.com/cdemoulins/pamixer/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+RESTRICT="mirror"
+
+RDEPEND="
+ dev-libs/cxxopts
+ media-libs/libpulse
+"
+
+DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-sound/pamixer/
@ 2024-07-30 16:33 Yuhang Zeng
0 siblings, 0 replies; 2+ messages in thread
From: Yuhang Zeng @ 2024-07-30 16:33 UTC (permalink / raw
To: gentoo-commits
commit: edec5ee9c3f2a901d2985a34a0df6cd7c1e60628
Author: Yuhang Zeng <unlsycn <AT> unlsycn <DOT> com>
AuthorDate: Tue Jul 30 16:33:09 2024 +0000
Commit: Yuhang Zeng <unlsycn <AT> unlsycn <DOT> com>
CommitDate: Tue Jul 30 16:33:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=edec5ee9
media-sound/pamixer: update LICENSE
Signed-off-by: Yuhang Zeng <unlsycn <AT> unlsycn.com>
media-sound/pamixer/pamixer-1.6.ebuild | 3 +--
media-sound/pamixer/pamixer-9999.ebuild | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/media-sound/pamixer/pamixer-1.6.ebuild b/media-sound/pamixer/pamixer-1.6.ebuild
index 88af5d4dd..6edfdcba3 100644
--- a/media-sound/pamixer/pamixer-1.6.ebuild
+++ b/media-sound/pamixer/pamixer-1.6.ebuild
@@ -16,9 +16,8 @@ else
KEYWORDS="~amd64 ~x86"
fi
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
SLOT="0"
-RESTRICT="mirror"
RDEPEND="
dev-libs/cxxopts
diff --git a/media-sound/pamixer/pamixer-9999.ebuild b/media-sound/pamixer/pamixer-9999.ebuild
index 88af5d4dd..6edfdcba3 100644
--- a/media-sound/pamixer/pamixer-9999.ebuild
+++ b/media-sound/pamixer/pamixer-9999.ebuild
@@ -16,9 +16,8 @@ else
KEYWORDS="~amd64 ~x86"
fi
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
SLOT="0"
-RESTRICT="mirror"
RDEPEND="
dev-libs/cxxopts
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-07-30 16:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-30 16:33 [gentoo-commits] repo/proj/guru:dev commit in: media-sound/pamixer/ Yuhang Zeng
-- strict thread matches above, loose matches on Subject: below --
2024-07-30 15:41 Yuhang Zeng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox