Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in virtual/mysql: mysql-5.6-r6.ebuild ChangeLog
Date: Sat, 01 Aug 2015 21:38:07
Message-Id: 20150801213800.411B7113@oystercatcher.gentoo.org
1 grknight 15/08/01 21:38:00
2
3 Modified: ChangeLog
4 Added: mysql-5.6-r6.ebuild
5 Log:
6 Revbump to take into account that only server packages have the embedded library and must be paired with client-libs for mysql_config
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xD1F781EFF9F4A3B6)
9
10 Revision Changes Path
11 1.65 virtual/mysql/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/mysql/ChangeLog?rev=1.65&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/mysql/ChangeLog?rev=1.65&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/mysql/ChangeLog?r1=1.64&r2=1.65
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/virtual/mysql/ChangeLog,v
20 retrieving revision 1.64
21 retrieving revision 1.65
22 diff -u -r1.64 -r1.65
23 --- ChangeLog 29 Jul 2015 01:45:06 -0000 1.64
24 +++ ChangeLog 1 Aug 2015 21:38:00 -0000 1.65
25 @@ -1,6 +1,12 @@
26 # ChangeLog for virtual/mysql
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/virtual/mysql/ChangeLog,v 1.64 2015/07/29 01:45:06 grknight Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/virtual/mysql/ChangeLog,v 1.65 2015/08/01 21:38:00 grknight Exp $
30 +
31 +*mysql-5.6-r6 (01 Aug 2015)
32 +
33 + 01 Aug 2015; Brian Evans <grknight@g.o> +mysql-5.6-r6.ebuild:
34 + Revbump to take into account that only server packages have the embedded
35 + library and must be paired with client-libs for mysql_config
36
37 *mysql-5.6-r5 (29 Jul 2015)
38
39
40
41
42 1.1 virtual/mysql/mysql-5.6-r6.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/mysql/mysql-5.6-r6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/virtual/mysql/mysql-5.6-r6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mysql-5.6-r6.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/virtual/mysql/mysql-5.6-r6.ebuild,v 1.1 2015/08/01 21:38:00 grknight Exp $
52
53 EAPI="5"
54
55 inherit multilib-build
56
57 DESCRIPTION="Virtual for MySQL database server"
58 HOMEPAGE=""
59 SRC_URI=""
60
61 LICENSE=""
62 SLOT="0/18"
63 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"
64 IUSE="embedded static static-libs"
65
66 DEPEND=""
67 RDEPEND="
68 virtual/libmysqlclient[static-libs?,${MULTILIB_USEDEP}]
69 embedded? (
70 || (
71 =dev-db/mariadb-10.1*[client-libs(+),embedded,static=]
72 =dev-db/mariadb-10.0*[client-libs(+),embedded,static=]
73 =dev-db/mysql-${PV}*[client-libs(+),embedded,static=]
74 =dev-db/percona-server-${PV}*[client-libs(+),embedded,static=]
75 =dev-db/mariadb-galera-10.0*[client-libs(+),embedded,static=]
76 =dev-db/mysql-cluster-7.3*[client-libs(+),embedded,static=]
77 )
78 )
79 !embedded? (
80 || (
81 =dev-db/mariadb-10.1*[-embedded,static=]
82 =dev-db/mariadb-10.0*[-embedded,static=]
83 =dev-db/mysql-${PV}*[-embedded,static=]
84 =dev-db/percona-server-${PV}*[-embedded,static=]
85 =dev-db/mariadb-galera-10.0*[-embedded,static=]
86 =dev-db/mysql-cluster-7.3*[-embedded,static=]
87 )
88 )
89 "