diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2014-08-04 04:01:08 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2014-08-04 04:01:08 +0000 |
commit | 075d5a8bb3260e78e12917764ca88ef426251e0d (patch) | |
tree | 1c3773e6cfb7a2bdbd0e08284c0c37e3d4131f7a /dev-db/mysql/mysql-4.0.27-r1.ebuild | |
parent | Bump, newer NSS solved the FIPS issue. (diff) | |
download | historical-075d5a8bb3260e78e12917764ca88ef426251e0d.tar.gz historical-075d5a8bb3260e78e12917764ca88ef426251e0d.tar.bz2 historical-075d5a8bb3260e78e12917764ca88ef426251e0d.zip |
Cleanup finally, will live on in the overlay.
Package-Manager: portage-2.2.10/cvs/Linux x86_64
Diffstat (limited to 'dev-db/mysql/mysql-4.0.27-r1.ebuild')
-rw-r--r-- | dev-db/mysql/mysql-4.0.27-r1.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-db/mysql/mysql-4.0.27-r1.ebuild b/dev-db/mysql/mysql-4.0.27-r1.ebuild deleted file mode 100644 index 4e000a03859e..000000000000 --- a/dev-db/mysql/mysql-4.0.27-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-4.0.27-r1.ebuild,v 1.6 2008/12/14 20:17:13 klausman Exp $ - -MY_EXTRAS_VER="20070105" -SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" - -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" - -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 - addpredict /this-dir-does-not-exist/t9.MYI - - cd mysql-test - sed -i -e "s|PORT=3306|PORT=3307|g" mysql-test-run - ./mysql-test-run - retstatus=$? - - # Just to be sure ;) - pkill -9 -f "${S}/ndb" 2>/dev/null - pkill -9 -f "${S}/sql" 2>/dev/null - [[ $retstatus -eq 0 ]] || die "make test failed" - else - einfo "Skipping server tests due to minimal build." - fi -} |