diff options
author | Maciej Mrozowski <reavertm@gentoo.org> | 2010-09-11 05:18:35 +0000 |
---|---|---|
committer | Maciej Mrozowski <reavertm@gentoo.org> | 2010-09-11 05:18:35 +0000 |
commit | 7a3ca869a706ab0dd3026d3e0d0877d43aa20f18 (patch) | |
tree | aa5300914de0af9ad098e14904a56bfb4aeaff80 /eclass | |
parent | Add SRC_URI rule for kdepim-4.4.6 (diff) | |
download | gentoo-2-7a3ca869a706ab0dd3026d3e0d0877d43aa20f18.tar.gz gentoo-2-7a3ca869a706ab0dd3026d3e0d0877d43aa20f18.tar.bz2 gentoo-2-7a3ca869a706ab0dd3026d3e0d0877d43aa20f18.zip |
Ensure that *two* digits of patch version component determine unstable snaphots
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde4-base.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index 83945399cee8..0c08181aeb9b 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.71 2010/09/11 04:37:07 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-base.eclass,v 1.72 2010/09/11 05:18:35 reavertm Exp $ # @ECLASS: kde4-base.eclass # @MAINTAINER: @@ -62,9 +62,9 @@ case ${KDEBASE} in # Determine SLOT from PVs case ${PV} in *.9999*) SLOT="${PV/.9999*/}" ;; # stable live - 4.6* | 4.5.[6-9]*) SLOT="4.6" ;; - 4.5* | 4.4.[6-9]*) SLOT="4.5" ;; - 4.4* | 4.3.[6-9]*) SLOT="4.4" ;; + 4.6* | 4.5.[6-9][0-9]*) SLOT="4.6" ;; + 4.5* | 4.4.[6-9][0-9]*) SLOT="4.5" ;; + 4.4* | 4.3.[6-9][0-9]*) SLOT="4.4" ;; 9999*) SLOT="live" ;; # regular live *) die "Unsupported ${PV}" ;; esac |