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 148B41382C5 for ; Mon, 19 Apr 2021 09:34:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A60CE0827; Mon, 19 Apr 2021 09:33:59 +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 2CCFFE0827 for ; Mon, 19 Apr 2021 09:33:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 48BB5340E42 for ; Mon, 19 Apr 2021 09:33:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B22D76EB for ; Mon, 19 Apr 2021 09:33:56 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1618824829.823a7db7dbf359fcd3054049f7d9281cf0762ee7.polynomial-c@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.ebuild X-VCS-Directories: media-sound/pamix/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 823a7db7dbf359fcd3054049f7d9281cf0762ee7 X-VCS-Branch: master Date: Mon, 19 Apr 2021 09:33:56 +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: ca63fe5f-4895-4e69-a7df-0e2476ff0317 X-Archives-Hash: 510fdf7d9d5a418e37e0dcd9aeb138b5 commit: 823a7db7dbf359fcd3054049f7d9281cf0762ee7 Author: Lars Wendler gentoo org> AuthorDate: Mon Apr 19 09:33:24 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Apr 19 09:33:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=823a7db7 media-sound/pamix: Removed old Signed-off-by: Lars Wendler gentoo.org> media-sound/pamix/pamix-1.6.ebuild | 40 -------------------------------------- 1 file changed, 40 deletions(-) diff --git a/media-sound/pamix/pamix-1.6.ebuild b/media-sound/pamix/pamix-1.6.ebuild deleted file mode 100644 index f77264e2b20..00000000000 --- a/media-sound/pamix/pamix-1.6.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -SCM="" -[[ "${PV}" == 9999 ]] && SCM="git-r3" -inherit cmake-utils ${SCM} -unset SCM - -DESCRIPTION="A PulseAudio NCurses mixer" -HOMEPAGE="https://github.com/patroclos/PAmix" -LICENSE="MIT" -SLOT="0" -IUSE="+unicode" - -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/patroclos/PAmix.git" -else - SRC_URI="https://github.com/patroclos/PAmix/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 x86" - S="${WORKDIR}/PAmix-${PV}" -fi - -RDEPEND="media-sound/pulseaudio - sys-libs/ncurses:0=[unicode?]" -DEPEND="sys-devel/autoconf-archive - virtual/pkgconfig - ${RDEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-ncurses_pkgconfig.patch" -) - -src_configure() { - local mycmakeargs=( - -DWITH_UNICODE="$(usex unicode)" - ) - cmake-utils_src_configure -}