From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B25A4138CD0 for ; Sun, 10 May 2015 13:31:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56AB6E085B; Sun, 10 May 2015 13:31:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9D37E085B for ; Sun, 10 May 2015 13:31:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20A67340F7F for ; Sun, 10 May 2015 13:31:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FBF99CD for ; Sun, 10 May 2015 13:31:25 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1429423500.72d07a815eee5f833379987b87ac28ac56a87906.dev-zero@gentoo> Subject: [gentoo-commits] dev/dev-zero:master commit in: x11-plugins/pa-applet/ X-VCS-Repository: dev/dev-zero X-VCS-Files: x11-plugins/pa-applet/Manifest x11-plugins/pa-applet/pa-applet-scm.ebuild X-VCS-Directories: x11-plugins/pa-applet/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: 72d07a815eee5f833379987b87ac28ac56a87906 X-VCS-Branch: master Date: Sun, 10 May 2015 13:31:25 +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: d1cd5374-e772-4452-9e61-129eb4ef63d4 X-Archives-Hash: efbcc1e5a4b87dd35f5c4106d7d82b11 commit: 72d07a815eee5f833379987b87ac28ac56a87906 Author: Tiziano Müller gentoo org> AuthorDate: Sun Apr 19 06:05:00 2015 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Sun Apr 19 06:05:00 2015 +0000 URL: https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=72d07a81 remove -Werror and update to git-r3 x11-plugins/pa-applet/Manifest | 1 - x11-plugins/pa-applet/pa-applet-scm.ebuild | 9 ++++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/x11-plugins/pa-applet/Manifest b/x11-plugins/pa-applet/Manifest deleted file mode 100644 index 9adc846..0000000 --- a/x11-plugins/pa-applet/Manifest +++ /dev/null @@ -1 +0,0 @@ -EBUILD pa-applet-scm.ebuild 583 SHA256 415819c666d39da7ae5bbc4047207a76c9f414417c52f400af89ca127137bb18 SHA512 05527c394fc3d23ff19fb8b8e570edccc72b40765a490d7dbf1b5af818ad7d371ed1bcec7d5000d4144b9d8a9161c8ce93dcaf04754c6ec7093ddb002004a354 WHIRLPOOL cb1e11e0986d108e51501c2b63b6765b215c3b0f0fb9a513014db16a95fb0cc62fb39c5c19832488cf7e92d765dc098fb6bbe90a3e04e1fb3142aaaaac379e16 diff --git a/x11-plugins/pa-applet/pa-applet-scm.ebuild b/x11-plugins/pa-applet/pa-applet-scm.ebuild index fca1a36..e55adc9 100644 --- a/x11-plugins/pa-applet/pa-applet-scm.ebuild +++ b/x11-plugins/pa-applet/pa-applet-scm.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 -inherit autotools git-2 +inherit autotools git-r3 DESCRIPTION="systray-applet that allows you to control some of PulseAudio's features." HOMEPAGE="https://github.com/fernandotcl/pa-applet" @@ -23,4 +23,7 @@ RDEPEND="x11-libs/gtk+:3 DEPEND="${RDEPEND} virtual/pkgconfig" -EGIT_BOOTSTRAP="autogen.sh" +src_prepare() { + sed -i -e 's| -Werror||' src/Makefile.am || die + ./autogen.sh || die +}