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.60) (envelope-from ) id 1PBZMY-0008LQ-PY for garchives@archives.gentoo.org; Thu, 28 Oct 2010 20:46:18 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F461E0ACA; Thu, 28 Oct 2010 20:46:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 78AAFE0ACA for ; Thu, 28 Oct 2010 20:46:13 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7B7F1B41C0 for ; Thu, 28 Oct 2010 20:46:12 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 544) id 8437620051; Thu, 28 Oct 2010 20:46:11 +0000 (UTC) From: "Robin H. Johnson (robbat2)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, robbat2@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: mysql.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: mysql.eclass X-VCS-Directories: eclass X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson Content-Type: text/plain; charset=utf8 Message-Id: <20101028204611.8437620051@flycatcher.gentoo.org> Date: Thu, 28 Oct 2010 20:46:11 +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: 12d718cb-fe5c-4075-8221-929c7cbf71ed X-Archives-Hash: 0cac2b9cde0e5b0b3d8eea0fa665cb86 robbat2 10/10/28 20:46:11 Modified: mysql.eclass Log: Bug #336027: max-idx-128 broken by upstream presently, prevent it from = corrupting user data. Revision Changes Path 1.154 eclass/mysql.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mysql.eclas= s?rev=3D1.154&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mysql.eclas= s?rev=3D1.154&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/mysql.eclas= s?r1=3D1.153&r2=3D1.154 Index: mysql.eclass =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/eclass/mysql.eclass,v retrieving revision 1.153 retrieving revision 1.154 diff -p -w -b -B -u -u -r1.153 -r1.154 --- mysql.eclass 27 Oct 2010 07:19:24 -0000 1.153 +++ mysql.eclass 28 Oct 2010 20:46:11 -0000 1.154 @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.153 2010/10/2= 7 07:19:24 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.154 2010/10/2= 8 20:46:11 robbat2 Exp $ =20 # @ECLASS: mysql.eclass # @MAINTAINER: @@ -573,7 +573,10 @@ configure_51() { myconf=3D"${myconf} --without-pstack" myconf=3D"${myconf} --with-plugindir=3D/usr/$(get_libdir)/mysql/plugin" =20 - use max-idx-128 && myconf=3D"${myconf} --with-max-indexes=3D128" + # This is an explict die here, because if we just forcibly disable it, = then the + # user's data is not accessible. + use max-idx-128 && die "Bug #336027: upstream has a corruption issue wi= th max-idx-128 presently" + #use max-idx-128 && myconf=3D"${myconf} --with-max-indexes=3D128" if [ "${MYSQL_COMMUNITY_FEATURES}" =3D=3D "1" ]; then myconf=3D"${myconf} $(use_enable community community-features)" if use community; then