diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2008-03-06 20:43:16 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2008-03-06 20:43:16 +0000 |
commit | 37ca9b63ea412b3eac2e6f5bc591b518be8cdcfa (patch) | |
tree | 05ff7bb2c0c9bf82bec4168b24c01ab6ececbd90 /eclass | |
parent | mythappearance is gone and merged into mythtv with newer 0.21s (diff) | |
download | gentoo-2-37ca9b63ea412b3eac2e6f5bc591b518be8cdcfa.tar.gz gentoo-2-37ca9b63ea412b3eac2e6f5bc591b518be8cdcfa.tar.bz2 gentoo-2-37ca9b63ea412b3eac2e6f5bc591b518be8cdcfa.zip |
we're going to use _alpha instead of _pre since _pre comes after _beta for the future
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mythtv.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/mythtv.eclass b/eclass/mythtv.eclass index 18b9ee5eb22f..7fa9f0729f5c 100644 --- a/eclass/mythtv.eclass +++ b/eclass/mythtv.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/mythtv.eclass,v 1.11 2008/02/20 20:03:38 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv.eclass,v 1.12 2008/03/06 20:43:16 cardoe Exp $ # # @ECLASS: mythtv.eclass # @MAINTAINER: Doug Goldstein <cardoe@gentoo.org> @@ -30,8 +30,8 @@ REV_PREFIX="${BASH_REMATCH[1]}" # _beta, _pre, or _p MYTHTV_REV="${BASH_REMATCH[2]}" # revision number case $REV_PREFIX in - _pre) MYTHTV_REPO="trunk/${MY_PN}";; - _p|_beta|_alpha) VER_COMP=( $(get_version_components ${MY_PV}) ) + _pre|_alpha) MYTHTV_REPO="trunk/${MY_PN}";; + _p|_beta) VER_COMP=( $(get_version_components ${MY_PV}) ) FIXES_VER="${VER_COMP[0]}-${VER_COMP[1]}" MYTHTV_REPO="branches/release-${FIXES_VER}-fixes/${MY_PN}";; esac |