From: "Andrew Ammerlaan" <andrewammerlaan@riseup.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: media-sound/ncpamixer/
Date: Fri, 5 Mar 2021 12:10:42 +0000 (UTC) [thread overview]
Message-ID: <1614938360.4f307e218da5662dc5345ee219479e6e67362750.andrewammerlaan@gentoo> (raw)
commit: 4f307e218da5662dc5345ee219479e6e67362750
Author: Octiabrina Terrien-Puig <octiabrina <AT> myrvogna <DOT> net>
AuthorDate: Fri Mar 5 09:59:20 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Mar 5 09:59:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4f307e21
media-sound/ncpamixer: new package
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Octiabrina Terrien-Puig <octiabrina <AT> myrvogna.net>
media-sound/ncpamixer/Manifest | 1 +
media-sound/ncpamixer/metadata.xml | 14 ++++++++++
media-sound/ncpamixer/ncpamixer-1.3.3.1.ebuild | 37 ++++++++++++++++++++++++++
media-sound/ncpamixer/ncpamixer-9999.ebuild | 37 ++++++++++++++++++++++++++
4 files changed, 89 insertions(+)
diff --git a/media-sound/ncpamixer/Manifest b/media-sound/ncpamixer/Manifest
new file mode 100644
index 00000000..ced470e6
--- /dev/null
+++ b/media-sound/ncpamixer/Manifest
@@ -0,0 +1 @@
+DIST 1.3.3.1.tar.gz 21805 BLAKE2B 89d2399672fa9f9f18e2f2bce17b9fd5d74fcd367c54f126de94f884948d6ab3ada8fb807813c841688a926ef71ab6fa52bc50222cf810b54c5167aeb5c346d6 SHA512 4c40992a7731859a855fc80ee012e4ead7a7f47e537163378565125acaad0beacd1a8583710d1d7f2f700c09c7563edfe734757ba1302d0e5c1e286b22af7890
diff --git a/media-sound/ncpamixer/metadata.xml b/media-sound/ncpamixer/metadata.xml
new file mode 100644
index 00000000..4817093d
--- /dev/null
+++ b/media-sound/ncpamixer/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>octiabrina@myrvogna.net</email>
+ <name>Octiabrina Terrien-Puig</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">fulhax/ncpamixer</remote-id>
+ </upstream>
+ <use>
+ <flag name="wide">Add ncurses wide characters support</flag>
+ </use>
+</pkgmetadata>
diff --git a/media-sound/ncpamixer/ncpamixer-1.3.3.1.ebuild b/media-sound/ncpamixer/ncpamixer-1.3.3.1.ebuild
new file mode 100644
index 00000000..f6a2bed9
--- /dev/null
+++ b/media-sound/ncpamixer/ncpamixer-1.3.3.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A ncurses mixer for PulseAudio inspired by pavucontrol"
+HOMEPAGE="https://github.com/fulhax/ncpamixer"
+
+if [[ ${PV} == 9999 ]]; then
+ EGIT_REPO_URI="https://github.com/fulhax/ncpamixer.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/fulhax/ncpamixer/archive/${PV}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+wide"
+
+DEPEND="
+ media-sound/pulseaudio
+ sys-libs/ncurses
+"
+RDEPEND="${DEPEND}"
+
+CMAKE_USE_DIR="${S}/src"
+
+src_configure() {
+ local mycmakeargs=(
+ -DUSE_WIDE="$(usex wide)"
+ )
+
+ cmake_src_configure
+}
diff --git a/media-sound/ncpamixer/ncpamixer-9999.ebuild b/media-sound/ncpamixer/ncpamixer-9999.ebuild
new file mode 100644
index 00000000..f6a2bed9
--- /dev/null
+++ b/media-sound/ncpamixer/ncpamixer-9999.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A ncurses mixer for PulseAudio inspired by pavucontrol"
+HOMEPAGE="https://github.com/fulhax/ncpamixer"
+
+if [[ ${PV} == 9999 ]]; then
+ EGIT_REPO_URI="https://github.com/fulhax/ncpamixer.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/fulhax/ncpamixer/archive/${PV}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+wide"
+
+DEPEND="
+ media-sound/pulseaudio
+ sys-libs/ncurses
+"
+RDEPEND="${DEPEND}"
+
+CMAKE_USE_DIR="${S}/src"
+
+src_configure() {
+ local mycmakeargs=(
+ -DUSE_WIDE="$(usex wide)"
+ )
+
+ cmake_src_configure
+}
next reply other threads:[~2021-03-05 12:10 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-05 12:10 Andrew Ammerlaan [this message]
-- strict thread matches above, loose matches on Subject: below --
2021-04-23 8:47 [gentoo-commits] repo/proj/guru:master commit in: media-sound/ncpamixer/ Haelwenn Monnier
2021-04-23 8:47 Haelwenn Monnier
2024-01-30 11:33 David Roman
2024-01-30 11:33 David Roman
2024-12-14 11:31 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-12-14 11:46 ` [gentoo-commits] repo/proj/guru:master " David Roman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1614938360.4f307e218da5662dc5345ee219479e6e67362750.andrewammerlaan@gentoo \
--to=andrewammerlaan@riseup.net \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox