From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1527749-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 13D9915810F
	for <garchives@archives.gentoo.org>; Sun, 11 Jun 2023 08:53:08 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 44911E08D4;
	Sun, 11 Jun 2023 08:53:07 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(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 pigeon.gentoo.org (Postfix) with ESMTPS id 2C7D7E08D4
	for <gentoo-commits@lists.gentoo.org>; Sun, 11 Jun 2023 08:53:07 +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 6038434118E
	for <gentoo-commits@lists.gentoo.org>; Sun, 11 Jun 2023 08:53:06 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id EEF33A66
	for <gentoo-commits@lists.gentoo.org>; Sun, 11 Jun 2023 08:53:04 +0000 (UTC)
From: "Andreas Sturmlechner" <asturm@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, "Andreas Sturmlechner" <asturm@gentoo.org>
Message-ID: <1686473546.341f4f8bf3ce54a3edec9f39362e50281c7f2db8.asturm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pavumeter/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-sound/pavumeter/pavumeter-0.9.3-r2.ebuild
X-VCS-Directories: media-sound/pavumeter/
X-VCS-Committer: asturm
X-VCS-Committer-Name: Andreas Sturmlechner
X-VCS-Revision: 341f4f8bf3ce54a3edec9f39362e50281c7f2db8
X-VCS-Branch: master
Date: Sun, 11 Jun 2023 08:53:04 +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: 07719769-f554-4367-94f9-67eb3ade9e98
X-Archives-Hash: 75ae3cc07875ebd03181e9caa66e7001

commit:     341f4f8bf3ce54a3edec9f39362e50281c7f2db8
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 08:31:34 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 08:52:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=341f4f8b

media-sound/pavumeter: update EAPI 7 -> 8

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/pavumeter/pavumeter-0.9.3-r2.ebuild | 28 +++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/media-sound/pavumeter/pavumeter-0.9.3-r2.ebuild b/media-sound/pavumeter/pavumeter-0.9.3-r2.ebuild
new file mode 100644
index 000000000000..fb32d14b9464
--- /dev/null
+++ b/media-sound/pavumeter/pavumeter-0.9.3-r2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="PulseAudio Volume Meter, simple GTK volume meter for PulseAudio"
+HOMEPAGE="https://0pointer.de/lennart/projects/pavumeter/"
+SRC_URI="https://0pointer.de/lennart/projects/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ~sparc x86"
+
+RDEPEND="
+	dev-cpp/gtkmm:2.4
+	dev-libs/libsigc++:2
+	media-libs/libpulse[glib]
+	x11-themes/tango-icon-theme"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/${P}-desktop-QA.patch )
+
+HTML_DOCS=( doc/{README.html,style.css} )
+
+src_configure() {
+	econf --disable-lynx
+}