From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.77) (envelope-from ) id 1SqfbS-0006x0-49 for garchives@archives.gentoo.org; Mon, 16 Jul 2012 07:20:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 265A3E0534; Mon, 16 Jul 2012 07:20:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D8B9DE0534 for ; Mon, 16 Jul 2012 07:20:08 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5298F1B4010 for ; Mon, 16 Jul 2012 07:20:05 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2306) id D6EC020063; Mon, 16 Jul 2012 07:20:03 +0000 (UTC) From: "Alexandre Rostovtsev (tetromino)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, tetromino@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/vhba: vhba-20110915.ebuild ChangeLog vhba-20120422.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: vhba-20110915.ebuild ChangeLog vhba-20120422.ebuild X-VCS-Directories: sys-fs/vhba X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev Content-Type: text/plain; charset=utf8 Message-Id: <20120716072003.D6EC020063@flycatcher.gentoo.org> Date: Mon, 16 Jul 2012 07:20:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: d4defa6f-a3ef-4844-8bcf-8e2b93f5fdbb X-Archives-Hash: a7a85c57207f5dfefd1539fd56a2d703 tetromino 12/07/16 07:20:03 Modified: vhba-20110915.ebuild ChangeLog vhba-20120422.ebui= ld Log: Avoid -Werror to prevent spurious build failures; might fix bug #426328= . =20 (Portage version: 2.2.0_alpha118/cvs/Linux x86_64) Revision Changes Path 1.8 sys-fs/vhba/vhba-20110915.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/vhba/vhba-2= 0110915.ebuild?rev=3D1.8&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/vhba/vhba-2= 0110915.ebuild?rev=3D1.8&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/vhba/vhba-2= 0110915.ebuild?r1=3D1.7&r2=3D1.8 Index: vhba-20110915.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-20110915.ebuild,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- vhba-20110915.ebuild 24 May 2012 04:20:30 -0000 1.7 +++ vhba-20110915.ebuild 16 Jul 2012 07:20:03 -0000 1.8 @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-20110915.ebuild,v 1.= 7 2012/05/24 04:20:30 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-20110915.ebuild,v 1.= 8 2012/07/16 07:20:03 tetromino Exp $ =20 EAPI=3D"4" =20 @@ -35,8 +35,10 @@ src_prepare() { # Build failure with >=3D3.4-rc1 and CONFIG_ENABLE_WARN_DEPRECATED, #41= 1459 epatch "${FILESDIR}/${P}-3.4-kmap_atomic.patch" - # Avoid "make jobserver unavailable" warning - sed -e 's:\t$(KMAKE):\t+$(KMAKE):g' -i Makefile || die "sed failed" + # Avoid "make jobserver unavailable" warning and -Werror problems + sed -e 's:\t$(KMAKE):\t+$(KMAKE):g' \ + -e '/EXTRA_CFLAGS/s/-Werror$/-Wall/' \ + -i Makefile || die "sed failed" } =20 src_install() { 1.35 sys-fs/vhba/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/vhba/Change= Log?rev=3D1.35&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/vhba/Change= Log?rev=3D1.35&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/vhba/Change= Log?r1=3D1.34&r2=3D1.35 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v retrieving revision 1.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- ChangeLog 5 Jul 2012 00:11:07 -0000 1.34 +++ ChangeLog 16 Jul 2012 07:20:03 -0000 1.35 @@ -1,6 +1,10 @@ # ChangeLog for sys-fs/vhba # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.34 2012/07/= 05 00:11:07 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.35 2012/07/= 16 07:20:03 tetromino Exp $ + + 16 Jul 2012; Alexandre Rostovtsev + vhba-20110915.ebuild, vhba-20120422.ebuild: + Avoid -Werror to prevent spurious build failures; might fix bug #42632= 8. =20 *vhba-20120422 (05 Jul 2012) =20 1.2 sys-fs/vhba/vhba-20120422.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/vhba/vhba-2= 0120422.ebuild?rev=3D1.2&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/vhba/vhba-2= 0120422.ebuild?rev=3D1.2&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/vhba/vhba-2= 0120422.ebuild?r1=3D1.1&r2=3D1.2 Index: vhba-20120422.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-20120422.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- vhba-20120422.ebuild 5 Jul 2012 00:11:07 -0000 1.1 +++ vhba-20120422.ebuild 16 Jul 2012 07:20:03 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-20120422.ebuild,v 1.= 1 2012/07/05 00:11:07 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-20120422.ebuild,v 1.= 2 2012/07/16 07:20:03 tetromino Exp $ =20 EAPI=3D"4" =20 @@ -33,8 +33,10 @@ } =20 src_prepare() { - # Avoid "make jobserver unavailable" warning - sed -e 's:\t$(KMAKE):\t+$(KMAKE):g' -i Makefile || die "sed failed" + # Avoid "make jobserver unavailable" warning and -Werror problems + sed -e 's:\t$(KMAKE):\t+$(KMAKE):g' \ + -e '/EXTRA_CFLAGS/s/-Werror$/-Wall/' \ + -i Makefile || die "sed failed" } =20 src_install() {