Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/mysql:master commit in: dev-db/mariadb/
Date: Fri, 26 Sep 2014 19:15:11
Message-Id: 1411758900.debdaf24fbac68c7e3698ed686e50669c11ead90.grknight@gentoo
1 commit: debdaf24fbac68c7e3698ed686e50669c11ead90
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 26 19:15:00 2014 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 26 19:15:00 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/mysql.git;a=commit;h=debdaf24
7
8 sync from tree
9
10 ---
11 dev-db/mariadb/mariadb-10.0.14.ebuild | 10 +++++++---
12 1 file changed, 7 insertions(+), 3 deletions(-)
13
14 diff --git a/dev-db/mariadb/mariadb-10.0.14.ebuild b/dev-db/mariadb/mariadb-10.0.14.ebuild
15 index f202746..8fe9f86 100644
16 --- a/dev-db/mariadb/mariadb-10.0.14.ebuild
17 +++ b/dev-db/mariadb/mariadb-10.0.14.ebuild
18 @@ -1,6 +1,6 @@
19 # Copyright 1999-2014 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21 -# $Header: $
22 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mariadb/mariadb-10.0.14.ebuild,v 1.1 2014/09/26 19:07:01 grknight Exp $
23
24 EAPI="5"
25 MY_EXTRAS_VER="20140924-1913Z"
26 @@ -10,7 +10,7 @@ inherit toolchain-funcs mysql-multilib
27 IUSE="$IUSE"
28
29 # REMEMBER: also update eclass/mysql*.eclass before committing!
30 -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
31 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
32
33 # When MY_EXTRAS is bumped, the index should be revised to exclude these.
34 EPATCH_EXCLUDE=''
35 @@ -55,6 +55,10 @@ multilib_src_test() {
36
37 # Ensure that parallel runs don't die
38 export MTR_BUILD_THREAD="$((${RANDOM} % 100))"
39 + # Enable parallel testing, auto will try to detect number of cores
40 + # You may set this by hand.
41 + # The default maximum is 8 unless MTR_MAX_PARALLEL is increased
42 + export MTR_PARALLEL="${MTR_PARALLEL:-auto}"
43
44 # create directories because mysqladmin might right out of order
45 mkdir -p "${S}"/mysql-test/var-tests{,/log}
46 @@ -86,7 +90,7 @@ multilib_src_test() {
47 # run mysql-test tests
48 # Skip all CONNECT engine tests until upstream respondes to how to reference data files
49 perl mysql-test-run.pl --force --vardir="${S}/mysql-test/var-tests" \
50 - --skip-test=connect --parallel=auto
51 + --skip-test=connect
52 retstatus_tests=$?
53 [[ $retstatus_tests -eq 0 ]] || eerror "tests failed"
54 has usersandbox $FEATURES && eerror "Some tests may fail with FEATURES=usersandbox"