Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/mysql: mysql-5.0.70.ebuild ChangeLog
Date: Sat, 29 Nov 2008 02:32:23
Message-Id: E1L6Fd3-0006lH-Iu@stork.gentoo.org
1 robbat2 08/11/29 02:32:17
2
3 Modified: mysql-5.0.70.ebuild ChangeLog
4 Log:
5 Move the hostname==localhost check from pkg_setup to pkg_config and src_test instead, to enable building in binpkg hosts more easily.
6 (Portage version: 2.2_rc16/cvs/Linux 2.6.28-rc6-00007-ged31348 x86_64)
7
8 Revision Changes Path
9 1.12 dev-db/mysql/mysql-5.0.70.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.70.ebuild?rev=1.12&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.70.ebuild?rev=1.12&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/mysql-5.0.70.ebuild?r1=1.11&r2=1.12
14
15 Index: mysql-5.0.70.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.70.ebuild,v
18 retrieving revision 1.11
19 retrieving revision 1.12
20 diff -p -w -b -B -u -u -r1.11 -r1.12
21 --- mysql-5.0.70.ebuild 25 Nov 2008 22:43:19 -0000 1.11
22 +++ mysql-5.0.70.ebuild 29 Nov 2008 02:32:17 -0000 1.12
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.70.ebuild,v 1.11 2008/11/25 22:43:19 ranger Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.70.ebuild,v 1.12 2008/11/29 02:32:17 robbat2 Exp $
28
29 MY_EXTRAS_VER="20080601"
30 SERVER_URI="http://mirror.provenscaling.com/mysql/enterprise/source/5.0/${P}.tar.gz"
31 @@ -20,6 +20,10 @@ EPATCH_EXCLUDE=''
32 # and create your own mysql-extras tarball, looking at 000_index.txt
33
34 src_test() {
35 + # Bug #213475 - MySQL _will_ object strenously if your machine is named
36 + # localhost. Also causes weird failures.
37 + [[ "${HOSTNAME}" == "localhost" ]] && die "Your machine must NOT be named localhost"
38 +
39 emake check || die "make check failed"
40 if ! use "minimal" ; then
41 if [[ $UID -eq 0 ]]; then
42
43
44
45 1.473 dev-db/mysql/ChangeLog
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/ChangeLog?rev=1.473&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/ChangeLog?rev=1.473&content-type=text/plain
49 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/mysql/ChangeLog?r1=1.472&r2=1.473
50
51 Index: ChangeLog
52 ===================================================================
53 RCS file: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v
54 retrieving revision 1.472
55 retrieving revision 1.473
56 diff -p -w -b -B -u -u -r1.472 -r1.473
57 --- ChangeLog 25 Nov 2008 22:43:19 -0000 1.472
58 +++ ChangeLog 29 Nov 2008 02:32:17 -0000 1.473
59 @@ -1,6 +1,10 @@
60 # ChangeLog for dev-db/mysql
61 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
62 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.472 2008/11/25 22:43:19 ranger Exp $
63 +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.473 2008/11/29 02:32:17 robbat2 Exp $
64 +
65 + 29 Nov 2008; Robin H. Johnson <robbat2@g.o> mysql-5.0.70.ebuild:
66 + Move the hostname==localhost check from pkg_setup to pkg_config and
67 + src_test instead, to enable building in binpkg hosts more easily.
68
69 25 Nov 2008; Brent Baude <ranger@g.o> mysql-5.0.70.ebuild:
70 Marking mysql-5.0.70 ppc64 for bug 246652