Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/mysql/
Date: Wed, 28 Feb 2018 17:31:05
Message-Id: 1519839049.8b6b21e5653ed81d841950eb1583120efaede280.grknight@gentoo
1 commit: 8b6b21e5653ed81d841950eb1583120efaede280
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 28 17:30:49 2018 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 28 17:30:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b6b21e5
7
8 virtual/mysql: Restore 5.6-r6 to fix dependencies
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 virtual/mysql/mysql-5.6-r6.ebuild | 35 +++++++++++++++++++++++++++++++++++
13 1 file changed, 35 insertions(+)
14
15 diff --git a/virtual/mysql/mysql-5.6-r6.ebuild b/virtual/mysql/mysql-5.6-r6.ebuild
16 new file mode 100644
17 index 00000000000..c0766fda8bf
18 --- /dev/null
19 +++ b/virtual/mysql/mysql-5.6-r6.ebuild
20 @@ -0,0 +1,35 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI="5"
25 +
26 +inherit multilib-build
27 +
28 +DESCRIPTION="Virtual for MySQL database server"
29 +SLOT="0/18"
30 +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
31 +IUSE="embedded static static-libs"
32 +
33 +RDEPEND="
34 + virtual/libmysqlclient[static-libs?,${MULTILIB_USEDEP}]
35 + embedded? (
36 + || (
37 + =dev-db/mariadb-10.1*[client-libs(+),embedded,static=]
38 + =dev-db/mariadb-10.0*[client-libs(+),embedded,static=]
39 + =dev-db/mysql-${PV}*[client-libs(+),embedded,static=]
40 + =dev-db/percona-server-${PV}*[client-libs(+),embedded,static=]
41 + =dev-db/mariadb-galera-10.0*[client-libs(+),embedded,static=]
42 + =dev-db/mysql-cluster-7.3*[client-libs(+),embedded,static=]
43 + )
44 + )
45 + !embedded? (
46 + || (
47 + =dev-db/mariadb-10.1*[-embedded,static=]
48 + =dev-db/mariadb-10.0*[-embedded,static=]
49 + =dev-db/mysql-${PV}*[-embedded,static=]
50 + =dev-db/percona-server-${PV}*[-embedded,static=]
51 + =dev-db/mariadb-galera-10.0*[-embedded,static=]
52 + =dev-db/mysql-cluster-7.3*[-embedded,static=]
53 + )
54 + )
55 +"