grknight 15/07/30 20:40:20
Modified: mysql-5.6.26-r1.ebuild mysql-5.6.26.ebuild
ChangeLog
Log:
Use eclass variables to block the validate_password plugin wrt bug 556348
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key
D1F781EFF9F4A3B6)
Revision Changes Path
1.2 dev-db/mysql/mysql-5.6.26-r1.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.6.26-r1.ebuild?rev=1.2&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.6.26-r1.ebuild?rev=1.2&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.6.26-r1.ebuild?r1=1.1&r2=1.2
Index: mysql-5.6.26-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.6.26-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mysql-5.6.26-r1.ebuild 30 Jul 2015 04:26:27 -0000 1.1
+++ mysql-5.6.26-r1.ebuild 30 Jul 2015 20:40:19 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.6.26-r1.ebuild,v 1.1
2015/07/30 04:26:27 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.6.26-r1.ebuild,v 1.2
2015/07/30 20:40:19 grknight Exp $
EAPI="5"
@@ -27,13 +27,9 @@
# If you want to add a single patch, copy the ebuild to an overlay
# and create your own mysql-extras tarball, looking at 000_index.txt
-src_configure() {
- # validate_password plugin uses exceptions when it shouldn't yet (until
5.7)
- # disable until we see what happens with it
- local mycmakeargs
- mycmakeargs+=( -DWITHOUT_VALIDATE_PASSWORD=1 )
- mysql-multilib_src_configure
-}
+# validate_password plugin uses exceptions when it shouldn't yet (until 5.7)
+# disable until we see what happens with it
+MYSQL_CMAKE_NATIVE_DEFINES="-DWITHOUT_VALIDATE_PASSWORD=1"
# Official test instructions:
# USE='server embedded extraengine perl ssl static-libs community' \
1.2 dev-db/mysql/mysql-5.6.26.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.6.26.ebuild?rev=1.2&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.6.26.ebuild?rev=1.2&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/mysql-5.6.26.ebuild?r1=1.1&r2=1.2
Index: mysql-5.6.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.6.26.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mysql-5.6.26.ebuild 30 Jul 2015 04:26:27 -0000 1.1
+++ mysql-5.6.26.ebuild 30 Jul 2015 20:40:19 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.6.26.ebuild,v 1.1
2015/07/30 04:26:27 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.6.26.ebuild,v 1.2
2015/07/30 20:40:19 grknight Exp $
EAPI="5"
@@ -26,13 +26,9 @@
# If you want to add a single patch, copy the ebuild to an overlay
# and create your own mysql-extras tarball, looking at 000_index.txt
-src_configure() {
- # validate_password plugin uses exceptions when it shouldn't yet (until
5.7)
- # disable until we see what happens with it
- local mycmakeargs
- mycmakeargs+=( -DWITHOUT_VALIDATE_PASSWORD=1 )
- mysql-multilib_src_configure
-}
+# validate_password plugin uses exceptions when it shouldn't yet (until 5.7)
+# disable until we see what happens with it
+MYSQL_CMAKE_NATIVE_DEFINES="-DWITHOUT_VALIDATE_PASSWORD=1"
# Official test instructions:
# USE='embedded extraengine perl ssl static-libs community' \
1.745 dev-db/mysql/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/ChangeLog?rev=1.745&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/ChangeLog?rev=1.745&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mysql/ChangeLog?r1=1.744&r2=1.745
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v
retrieving revision 1.744
retrieving revision 1.745
diff -u -r1.744 -r1.745
--- ChangeLog 30 Jul 2015 04:26:27 -0000 1.744
+++ ChangeLog 30 Jul 2015 20:40:19 -0000 1.745
@@ -1,6 +1,10 @@
# ChangeLog for dev-db/mysql
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.744 2015/07/30
04:26:27 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.745 2015/07/30
20:40:19 grknight Exp $
+
+ 30 Jul 2015; Brian Evans <[email protected]> mysql-5.6.26-r1.ebuild,
+ mysql-5.6.26.ebuild:
+ Use eclass variables to block the validate_password plugin wrt bug 556348
*mysql-5.6.26 (30 Jul 2015)
*mysql-5.6.26-r1 (30 Jul 2015)