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 3FF8A13832E for ; Wed, 10 Aug 2016 16:39:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CE6C21C073; Wed, 10 Aug 2016 16:39:24 +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 EC75521C073 for ; Wed, 10 Aug 2016 16:39:23 +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 8C3BA340831 for ; Wed, 10 Aug 2016 16:39:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05BD82450 for ; Wed, 10 Aug 2016 16:39:20 +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: <1470847151.afdee627b5077b5697b7e9fd001c56a1c84e4c8f.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/Manifest media-sound/pamix/metadata.xml media-sound/pamix/pamix-1.1.ebuild 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: afdee627b5077b5697b7e9fd001c56a1c84e4c8f X-VCS-Branch: master Date: Wed, 10 Aug 2016 16:39: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-Archives-Salt: e32d959e-ea18-4c22-85d0-030e44b14a7b X-Archives-Hash: 2d3ac731073b3b7407b0aaba5ae0e0b7 commit: afdee627b5077b5697b7e9fd001c56a1c84e4c8f Author: Lars Wendler gentoo org> AuthorDate: Wed Aug 10 16:39:11 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Aug 10 16:39:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afdee627 media-sound/pamix: Initial commit (bug #590728). Thanks to Joshua Jensch for the bug report and the ebuild work. Package-Manager: portage-2.3.0 Signed-off-by: Lars Wendler gentoo.org> media-sound/pamix/Manifest | 1 + media-sound/pamix/metadata.xml | 11 +++++++++++ media-sound/pamix/pamix-1.1.ebuild | 30 ++++++++++++++++++++++++++++++ media-sound/pamix/pamix-9999.ebuild | 30 ++++++++++++++++++++++++++++++ 4 files changed, 72 insertions(+) diff --git a/media-sound/pamix/Manifest b/media-sound/pamix/Manifest new file mode 100644 index 0000000..e696d39 --- /dev/null +++ b/media-sound/pamix/Manifest @@ -0,0 +1 @@ +DIST pamix-1.1.tar.gz 7955 SHA256 81e88b5c305b2864ea5c6adda79a9a2fe18c7ed7721354e865862e779acb6f5f SHA512 cdec746bfbb1887d558762a0247370616f480b4695a7802f4ac47c7d9f545efe77af228b1992dd61e2bed09118ca095546bde206be4b8dfea1839b91c768cdbc WHIRLPOOL c1113e4783637c1ec5f77be735d4a96ffc3060449571ad3f32d06e9d369c7dba6140863ab5b2f0a19f78b7a591614c32980e1e87c8ec950fe3e589514e5759a2 diff --git a/media-sound/pamix/metadata.xml b/media-sound/pamix/metadata.xml new file mode 100644 index 0000000..88f381f --- /dev/null +++ b/media-sound/pamix/metadata.xml @@ -0,0 +1,11 @@ + + + + + polynomial-c@gentoo.org + Lars Wendler + + + patroclos/PAmix + + diff --git a/media-sound/pamix/pamix-1.1.ebuild b/media-sound/pamix/pamix-1.1.ebuild new file mode 100644 index 0000000..986dad7 --- /dev/null +++ b/media-sound/pamix/pamix-1.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +[[ "${PV}" == 9999 ]] && inherit git-r3 + +DESCRIPTION="A PulseAudio NCurses mixer" +HOMEPAGE="https://github.com/patroclos/PAmix" +LICENSE="MIT" +SLOT="0" + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="git://github.com/patroclos/PAmix.git" +else + SRC_URI="https://github.com/patroclos/PAmix/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/PAmix-${PV}" +fi + +RDEPEND="media-sound/pulseaudio + sys-libs/ncurses:0=[unicode]" +DEPEND="virtual/pkgconfig + ${RDEPEND}" + +src_unpack() { + [[ "${PV}" == 9999 ]] && git-r3_src_unpack + default +} diff --git a/media-sound/pamix/pamix-9999.ebuild b/media-sound/pamix/pamix-9999.ebuild new file mode 100644 index 0000000..986dad7 --- /dev/null +++ b/media-sound/pamix/pamix-9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +[[ "${PV}" == 9999 ]] && inherit git-r3 + +DESCRIPTION="A PulseAudio NCurses mixer" +HOMEPAGE="https://github.com/patroclos/PAmix" +LICENSE="MIT" +SLOT="0" + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="git://github.com/patroclos/PAmix.git" +else + SRC_URI="https://github.com/patroclos/PAmix/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/PAmix-${PV}" +fi + +RDEPEND="media-sound/pulseaudio + sys-libs/ncurses:0=[unicode]" +DEPEND="virtual/pkgconfig + ${RDEPEND}" + +src_unpack() { + [[ "${PV}" == 9999 ]] && git-r3_src_unpack + default +}