From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-854517-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B98C01384B4 for <garchives@archives.gentoo.org>; Thu, 31 Dec 2015 18:31:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F289321C021; Thu, 31 Dec 2015 18:31:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9717521C005 for <gentoo-commits@lists.gentoo.org>; Thu, 31 Dec 2015 18:31:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A480340961 for <gentoo-commits@lists.gentoo.org>; Thu, 31 Dec 2015 18:31:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3EB1CB0 for <gentoo-commits@lists.gentoo.org>; Thu, 31 Dec 2015 18:31:20 +0000 (UTC) From: "Brian Evans" <grknight@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" <grknight@gentoo.org> Message-ID: <1451586671.79c8e1081470024db9698ddd4a78e62ef0a2e487.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/mysql/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/mysql/mysql-5.6-r7.ebuild X-VCS-Directories: virtual/mysql/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 79c8e1081470024db9698ddd4a78e62ef0a2e487 X-VCS-Branch: master Date: Thu, 31 Dec 2015 18:31:20 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7f74189b-0e03-4861-87c0-71fedabf6ead X-Archives-Hash: 4decb9e2abb0a5c9a87b038fa070264a commit: 79c8e1081470024db9698ddd4a78e62ef0a2e487 Author: Brian Evans <grknight <AT> gentoo <DOT> org> AuthorDate: Thu Dec 31 18:31:11 2015 +0000 Commit: Brian Evans <grknight <AT> gentoo <DOT> org> CommitDate: Thu Dec 31 18:31:11 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79c8e108 virtual/mysql: Revbump to add PDEPEND wrt bug 556432 Moved virtual/libmysqlclient to PDEPEND to fix new installs Portage sometimes would place the dependencies out of order and this is an attempt to fix it so both virtuals can be satisfied by the same package. Package-Manager: portage-2.2.26 virtual/mysql/mysql-5.6-r7.ebuild | 41 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/virtual/mysql/mysql-5.6-r7.ebuild b/virtual/mysql/mysql-5.6-r7.ebuild new file mode 100644 index 0000000..c7e9372 --- /dev/null +++ b/virtual/mysql/mysql-5.6-r7.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit multilib-build + +DESCRIPTION="Virtual for MySQL database server" +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="0/18" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~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" +IUSE="embedded static static-libs" + +DEPEND="" +PDEPEND="virtual/libmysqlclient[static-libs?,${MULTILIB_USEDEP}]" +RDEPEND=" + embedded? ( + || ( + =dev-db/mariadb-10.1*[client-libs(+),embedded,static=] + =dev-db/mariadb-10.0*[client-libs(+),embedded,static=] + =dev-db/mysql-${PV}*[client-libs(+),embedded,static=] + =dev-db/percona-server-${PV}*[client-libs(+),embedded,static=] + =dev-db/mariadb-galera-10.0*[client-libs(+),embedded,static=] + =dev-db/mysql-cluster-7.3*[client-libs(+),embedded,static=] + ) + ) + !embedded? ( + || ( + =dev-db/mariadb-10.1*[-embedded,static=] + =dev-db/mariadb-10.0*[-embedded,static=] + =dev-db/mysql-${PV}*[-embedded,static=] + =dev-db/percona-server-${PV}*[-embedded,static=] + =dev-db/mariadb-galera-10.0*[-embedded,static=] + =dev-db/mysql-cluster-7.3*[-embedded,static=] + ) + ) +"