From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1448794-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5B84C158021 for <garchives@archives.gentoo.org>; Fri, 21 Oct 2022 06:04:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF2C2E07DB; Fri, 21 Oct 2022 06:04:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 90FC3E07D4 for <gentoo-commits@lists.gentoo.org>; Fri, 21 Oct 2022 06:04:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 95CBF34101D for <gentoo-commits@lists.gentoo.org>; Fri, 21 Oct 2022 06:04:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 377F962A for <gentoo-commits@lists.gentoo.org>; Fri, 21 Oct 2022 06:04:39 +0000 (UTC) From: "John Helmert III" <ajak@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "John Helmert III" <ajak@gentoo.org> Message-ID: <1666332273.28f09fe35705c77bfdeb6066b2f859f54bdd0fa1.ajak@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pulsemixer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pulsemixer/pulsemixer-1.5.1-r1.ebuild X-VCS-Directories: media-sound/pulsemixer/ X-VCS-Committer: ajak X-VCS-Committer-Name: John Helmert III X-VCS-Revision: 28f09fe35705c77bfdeb6066b2f859f54bdd0fa1 X-VCS-Branch: master Date: Fri, 21 Oct 2022 06:04:39 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 282d5446-7340-446f-a349-a6d775380788 X-Archives-Hash: 3a51dbf0dbe3b8e82c9b272b329159dd commit: 28f09fe35705c77bfdeb6066b2f859f54bdd0fa1 Author: John Helmert III <ajak <AT> gentoo <DOT> org> AuthorDate: Fri Oct 21 05:45:03 2022 +0000 Commit: John Helmert III <ajak <AT> gentoo <DOT> org> CommitDate: Fri Oct 21 06:04:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f09fe3 media-sound/pulsemixer: revbump to add DISTUTILS_USE_PEP517 Signed-off-by: John Helmert III <ajak <AT> gentoo.org> media-sound/pulsemixer/pulsemixer-1.5.1-r1.ebuild | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/media-sound/pulsemixer/pulsemixer-1.5.1-r1.ebuild b/media-sound/pulsemixer/pulsemixer-1.5.1-r1.ebuild new file mode 100644 index 000000000000..114d7ce451a3 --- /dev/null +++ b/media-sound/pulsemixer/pulsemixer-1.5.1-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_REQ_USE="ncurses" + +inherit distutils-r1 + +DESCRIPTION="CLI and curses mixer for PulseAudio" +HOMEPAGE="https://github.com/GeorgeFilipkin/pulsemixer" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/GeorgeFilipkin/${PN}" +else + SRC_URI="https://github.com/GeorgeFilipkin/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" + +RDEPEND="media-sound/pulseaudio"