commit: f99e2f6d364ea383b917fb31e226d1cc26f97bca Author: Alfred Wingate <parona <AT> protonmail <DOT> com> AuthorDate: Tue Mar 25 22:36:46 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Mar 28 15:07:31 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f99e2f6d
media-sound/pamix: add 2.0 Musl bug fixed indirectly in the rewrite. Bug: https://bugs.gentoo.org/832324 Closes: https://bugs.gentoo.org/950121 Signed-off-by: Alfred Wingate <parona <AT> protonmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> media-sound/pamix/Manifest | 1 + media-sound/pamix/pamix-2.0.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/media-sound/pamix/Manifest b/media-sound/pamix/Manifest index 29aed1f0f4c0..5378203ae64b 100644 --- a/media-sound/pamix/Manifest +++ b/media-sound/pamix/Manifest @@ -1 +1,2 @@ DIST pamix-1.6.tar.gz 18552 BLAKE2B 35cc2844cf0d5824c961a226f1b857b3ac070dc5c4fc802a9aa21a3317f9afdc42fb87e18d9e9a61276ace66a93d42c256e7811e946e3f9fba19f645ab8f07ef SHA512 53f3a892b41418cdbfff28d29636997e777ab9e1042f002e1df47735941e5a34f0391866939c539594d22f0b3f0cbd1ad5342dc5663d816e12354ae9e744d5f8 +DIST pamix-2.0.tar.gz 14996 BLAKE2B 6af98a29efaf3335bd075de285b19465675beb347e53daec8f9c9daaae37d88f5726c9ab758521bca14e60a317172382653acf95cd7dd23da4e63ac68435a8ea SHA512 b84518ae1ea10fb2aa4cab722cc941fb1e7a9cf4c745d4191d89bd99b4ab0ad1fc025be2f305459b728bad8ac5babe2cf542f11042b635dd4e46bf13011b6dd6 diff --git a/media-sound/pamix/pamix-2.0.ebuild b/media-sound/pamix/pamix-2.0.ebuild new file mode 100644 index 000000000000..77f1f2c11b02 --- /dev/null +++ b/media-sound/pamix/pamix-2.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://github.com/patroclos/PAmix.git" + inherit git-r3 +else + SRC_URI="https://github.com/patroclos/PAmix/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/PAmix-${PV}" +fi + +DESCRIPTION="PulseAudio NCurses mixer" +HOMEPAGE="https://github.com/patroclos/PAmix" + +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + media-libs/libpulse + sys-libs/ncurses:=[unicode(+)] +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig"
