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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B5B113835A for ; Tue, 30 Mar 2021 18:36:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A70ADE0BF9; Tue, 30 Mar 2021 18:36:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63AC5E0BF9 for ; Tue, 30 Mar 2021 18:36:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2106A340B46 for ; Tue, 30 Mar 2021 18:36:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B19D6636 for ; Tue, 30 Mar 2021 18:36:46 +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: <1617129338.122cd3343ababac9fc36420b6eafb4b81a8441df.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.ebuild X-VCS-Directories: media-sound/pnmixer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 122cd3343ababac9fc36420b6eafb4b81a8441df X-VCS-Branch: master Date: Tue, 30 Mar 2021 18:36:46 +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: 15eaf540-fd3f-4901-907d-7f884f3a2345 X-Archives-Hash: 13461f91897234bc1119bd189c3d154d commit: 122cd3343ababac9fc36420b6eafb4b81a8441df Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Mar 30 18:35:38 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Mar 30 18:35:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=122cd334 media-sound/pnmixer: Drop 0.7.2 (r0), cmake-utils-- Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/pnmixer/pnmixer-0.7.2.ebuild | 51 -------------------------------- 1 file changed, 51 deletions(-) diff --git a/media-sound/pnmixer/pnmixer-0.7.2.ebuild b/media-sound/pnmixer/pnmixer-0.7.2.ebuild deleted file mode 100644 index ed3446af74c..00000000000 --- a/media-sound/pnmixer/pnmixer-0.7.2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils gnome2-utils - -MY_PV="v${PV}" -MY_P="${PN}-${MY_PV}" - -DESCRIPTION="Volume mixer for the system tray" -HOMEPAGE="https://github.com/nicklan/pnmixer" -SRC_URI="https://github.com/nicklan/${PN}/releases/download/${MY_PV}/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="doc libnotify nls" - -RDEPEND="dev-libs/glib:2 - media-libs/alsa-lib - x11-libs/gtk+:3 - x11-libs/libX11 - libnotify? ( x11-libs/libnotify )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( - app-doc/doxygen - media-gfx/graphviz - ) - nls? ( sys-devel/gettext )" - -S=${WORKDIR}/${MY_P} - -src_configure() { - local mycmakeargs=( - -DWITH_LIBNOTIFY="$(usex libnotify)" - -DENABLE_NLS="$(usex nls)" - -DBUILD_DOCUMENTATION="$(usex doc)" - -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}" - ) - cmake-utils_src_configure -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -}