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 674AE15806E for ; Mon, 29 May 2023 12:23:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92A90E084E; Mon, 29 May 2023 12:23:23 +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 75FB7E084E for ; Mon, 29 May 2023 12:23:23 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3AF2D340CF8 for ; Mon, 29 May 2023 12:23:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F1D8A77 for ; Mon, 29 May 2023 12:23:20 +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: <1685362823.aadf4a888fde3d26c8fc3ac359cd582fde7a9778.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pamix/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pamix/pamix-1.6-r2.ebuild X-VCS-Directories: media-sound/pamix/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: aadf4a888fde3d26c8fc3ac359cd582fde7a9778 X-VCS-Branch: master Date: Mon, 29 May 2023 12:23:20 +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: 69272e93-088e-4c1c-b75d-9bb1cd794894 X-Archives-Hash: b9af0a15af6da869c6009b15c2f8709e commit: aadf4a888fde3d26c8fc3ac359cd582fde7a9778 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon May 29 12:18:47 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon May 29 12:20:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aadf4a88 media-sound/pamix: drop 1.6-r2 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/pamix/pamix-1.6-r2.ebuild | 53 ----------------------------------- 1 file changed, 53 deletions(-) diff --git a/media-sound/pamix/pamix-1.6-r2.ebuild b/media-sound/pamix/pamix-1.6-r2.ebuild deleted file mode 100644 index d0c727991818..000000000000 --- a/media-sound/pamix/pamix-1.6-r2.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 x86" - S="${WORKDIR}/PAmix-${PV}" -fi - -DESCRIPTION="A PulseAudio NCurses mixer" -HOMEPAGE="https://github.com/patroclos/PAmix" - -LICENSE="MIT" -SLOT="0" -IUSE="+unicode" - -RDEPEND=" - media-sound/pulseaudio - sys-libs/ncurses:=[unicode(+)?] -" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}/${P}-ncurses_pkgconfig.patch" - "${FILESDIR}/${P}-xdgconfigdir.patch" - "${FILESDIR}/${P}-fix-output-scrolling.patch" - "${FILESDIR}/${P}-fix-ncurses-freezing.patch" -) - -src_prepare() { - cmake_src_prepare - if [[ ${PV} != 9999 ]] ; then - sed -e "/^include(CMakeGitDefines.cmake)/d" -i CMakeLists.txt || die - fi -} - -src_configure() { - local mycmakeargs=( - -DWITH_UNICODE="$(usex unicode)" - ) - [[ ${PV} != 9999 ]] && mycmakeargs+=( -DGIT_VERSION=${PV} ) - cmake_src_configure -}