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 DB32B13832E for ; Thu, 18 Aug 2016 09:32:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6754E0B44; Thu, 18 Aug 2016 09:32:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39FF0E0B44 for ; Thu, 18 Aug 2016 09:32:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F5CE340756 for ; Thu, 18 Aug 2016 09:32:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1A4A2430 for ; Thu, 18 Aug 2016 09:31:57 +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: <1471512714.60ab074112a12d11236fc6337b5c00ea6ac6eeb6.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-9999.ebuild X-VCS-Directories: media-sound/pamix/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 60ab074112a12d11236fc6337b5c00ea6ac6eeb6 X-VCS-Branch: master Date: Thu, 18 Aug 2016 09:31:57 +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-Archives-Salt: eb3fe240-249f-4833-aa8b-1f999fe95a39 X-Archives-Hash: 9c915bebfa0e66f82ad5cf7ea124654f commit: 60ab074112a12d11236fc6337b5c00ea6ac6eeb6 Author: Lars Wendler gentoo org> AuthorDate: Thu Aug 18 09:31:39 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Aug 18 09:31:54 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60ab0741 media-sound/pamix: Prepare live ebuild for next release. Package-Manager: portage-2.3.0 Signed-off-by: Lars Wendler gentoo.org> media-sound/pamix/pamix-9999.ebuild | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/media-sound/pamix/pamix-9999.ebuild b/media-sound/pamix/pamix-9999.ebuild index 97f3fe1..4c7c30f 100644 --- a/media-sound/pamix/pamix-9999.ebuild +++ b/media-sound/pamix/pamix-9999.ebuild @@ -4,7 +4,10 @@ EAPI=6 -[[ "${PV}" == 9999 ]] && inherit autotools git-r3 +SCM="" +[[ "${PV}" == 9999 ]] && SCM="git-r3" +inherit autotools ${SCM} +unset SCM DESCRIPTION="A PulseAudio NCurses mixer" HOMEPAGE="https://github.com/patroclos/PAmix" @@ -24,15 +27,7 @@ RDEPEND="media-sound/pulseaudio DEPEND="virtual/pkgconfig ${RDEPEND}" -src_unpack() { - [[ "${PV}" == 9999 ]] && git-r3_src_unpack - default -} - src_prepare() { default - if [[ "${PV}" == 9999 ]] ; then - sed 's@^pamix_LDFLAGS@pamix_LDADD@' -i Makefile.am || die - eautoreconf - fi + eautoreconf }