diff options
author | Luca Longinotti <chtekk@gentoo.org> | 2006-08-31 21:37:03 +0000 |
---|---|---|
committer | Luca Longinotti <chtekk@gentoo.org> | 2006-08-31 21:37:03 +0000 |
commit | a5f3a0442b570bcec364e567e33f528a6748795a (patch) | |
tree | 39927b4f994ca1ee74750298963d3bca1252acbc /eclass | |
parent | Rebuild digest & Manifest because of incorrect recorded filesize. (diff) | |
download | historical-a5f3a0442b570bcec364e567e33f528a6748795a.tar.gz historical-a5f3a0442b570bcec364e567e33f528a6748795a.tar.bz2 historical-a5f3a0442b570bcec364e567e33f528a6748795a.zip |
Add support for mysql re-releases, thanks to vivo.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index 0f179924a185..e746c3f5e375 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.32 2006/05/31 20:45:49 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.33 2006/08/31 21:37:03 chtekk Exp $ # Author: Francesco Riosa <vivo@gentoo.org> # Maintainer: Luca Longinotti <chtekk@gentoo.org> @@ -51,7 +51,7 @@ MY_FIXED_PV="${MY_FIXED_PV/_beta/}" MY_FIXED_PV="${MY_FIXED_PV/_rc/}" # Define correct SRC_URIs -SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${P/_/-}.tar.gz" +SRC_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/${P/_/-}${MYSQL_RERELEASE}.tar.gz" if [[ -n "${MYSQL_PATCHSET_REV}" ]] ; then MYSQL_PATCHSET_FILENAME="${PN}-patchset-${MY_FIXED_PV}-r${MYSQL_PATCHSET_REV}.tar.bz2" # We add the Gentoo mirror here, as we only use primaryuri for the MySQL tarball @@ -171,7 +171,7 @@ mysql_src_unpack() { unpack ${A} - mv -f "${WORKDIR}/${P/_/-}" "${S}" + mv -f "${WORKDIR}/${P/_/-}${MYSQL_RERELEASE}" "${S}" cd "${S}" # Apply the patches for this MySQL version |