From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 9A0AC158089 for ; Mon, 4 Sep 2023 21:25:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2D962BC06E; Mon, 4 Sep 2023 21:24:57 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9744E2BC06E for ; Mon, 4 Sep 2023 21:24:57 +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 120FF335D21 for ; Mon, 4 Sep 2023 21:24:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F1801133 for ; Mon, 4 Sep 2023 21:24:53 +0000 (UTC) From: "Andreas Sturmlechner" 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" Message-ID: <1693862669.2b731aedfe2227262bd332dac610180308041a4c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pnmixer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild X-VCS-Directories: media-sound/pnmixer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2b731aedfe2227262bd332dac610180308041a4c X-VCS-Branch: master Date: Mon, 4 Sep 2023 21:24:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 81e6e0ef-c8cc-421e-a771-59c12e0d8379 X-Archives-Hash: 084ae985a74f1f61ff06340968825c2d commit: 2b731aedfe2227262bd332dac610180308041a4c Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Sep 4 19:22:58 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Sep 4 21:24:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b731aed media-sound/pnmixer: update EAPI 7 -> 8 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild b/media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild index a76a058cd96f..739d024f7dad 100644 --- a/media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild +++ b/media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild @@ -1,14 +1,15 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 MY_P="${PN}-v${PV}" -inherit cmake xdg-utils +inherit cmake xdg DESCRIPTION="Volume mixer for the system tray" HOMEPAGE="https://github.com/nicklan/pnmixer" SRC_URI="https://github.com/nicklan/${PN}/releases/download/v${PV}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="GPL-3" SLOT="0" @@ -32,8 +33,6 @@ BDEPEND=" nls? ( sys-devel/gettext ) " -S="${WORKDIR}/${MY_P}" - PATCHES=( "${FILESDIR}/${P}-fix-assert-if-volume-gt-100.patch" "${FILESDIR}/${P}-fix-possible-garbage-value.patch" @@ -49,11 +48,3 @@ src_configure() { ) cmake_src_configure } - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -}