diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-04-14 03:36:41 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-04-14 03:36:41 +0000 |
commit | 3c4c700d28698db307198dbbe7b121017b21c317 (patch) | |
tree | 28aebbfd67804701dded138c90ab0e3558272ead /dev-db/mysql | |
parent | Added amarok-2.0.2. (diff) | |
download | gentoo-2-3c4c700d28698db307198dbbe7b121017b21c317.tar.gz gentoo-2-3c4c700d28698db307198dbbe7b121017b21c317.tar.bz2 gentoo-2-3c4c700d28698db307198dbbe7b121017b21c317.zip |
remove p.masked version after talking to robbat2 in irc
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/mysql')
-rw-r--r-- | dev-db/mysql/ChangeLog | 6 | ||||
-rw-r--r-- | dev-db/mysql/mysql-4.1.23_alpha20070101-r61.ebuild | 43 |
2 files changed, 5 insertions, 44 deletions
diff --git a/dev-db/mysql/ChangeLog b/dev-db/mysql/ChangeLog index d7bfa2fa7000..e33459ae3f39 100644 --- a/dev-db/mysql/ChangeLog +++ b/dev-db/mysql/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-db/mysql # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.486 2009/04/12 00:11:20 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.487 2009/04/14 03:36:41 darkside Exp $ + + 14 Apr 2009; Jeremy Olexa <darkside@gentoo.org> + -mysql-4.1.23_alpha20070101-r61.ebuild: + remove p.masked version after talking to robbat2 in irc *mysql-5.0.76-r1 (12 Apr 2009) diff --git a/dev-db/mysql/mysql-4.1.23_alpha20070101-r61.ebuild b/dev-db/mysql/mysql-4.1.23_alpha20070101-r61.ebuild deleted file mode 100644 index 2007c930eb6d..000000000000 --- a/dev-db/mysql/mysql-4.1.23_alpha20070101-r61.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-4.1.23_alpha20070101-r61.ebuild,v 1.6 2009/02/28 22:42:10 robbat2 Exp $ - -MY_EXTRAS_VER="20090228-2228Z" -SERVER_URI="mirror://gentoo/MySQL-${PV%.*}/mysql-${PV//_alpha/-bk-}.tar.bz2" - -inherit mysql -# only to make repoman happy. it is really set in the eclass -IUSE="$IUSE" - -# REMEMBER: also update eclass/mysql*.eclass before committing! -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" - -src_test() { - einfo ">>> Test phase [check]: ${CATEGORY}/${PF}" - make check || die "make check failed" - if ! use "minimal" ; then - einfo ">>> Test phase [test]: ${CATEGORY}/${PF}" - local retstatus - local testopts="--force" - - # sandbox makes ndbd zombie - hasq "sandbox" ${FEATURES} && testopts="${testopts} --skip-ndb" - - addpredict /this-dir-does-not-exist/t9.MYI - - cd mysql-test - - # from Makefile.am: - retstatus=1 - ./mysql-test-run.pl ${testopts} \ - && ./mysql-test-run.pl ${testopts} --ps-protocol \ - && retstatus=0 - - # Just to be sure ;) - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - [[ $retstatus -eq 0 ]] || die "test failed" - else - einfo "Skipping server tests due to minimal build." - fi -} |