summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Mrozowski <reavertm@gentoo.org>2010-09-11 05:18:35 +0000
committerMaciej Mrozowski <reavertm@gentoo.org>2010-09-11 05:18:35 +0000
commit05c15a4d58547b43329df6aa2d247a5e55c84542 (patch)
tree85f8cb0a82e4cd4e8df6422a82e0715281e0b0db /eclass/kde4-base.eclass
parentAdd SRC_URI rule for kdepim-4.4.6 (diff)
downloadhistorical-05c15a4d58547b43329df6aa2d247a5e55c84542.tar.gz
historical-05c15a4d58547b43329df6aa2d247a5e55c84542.tar.bz2
historical-05c15a4d58547b43329df6aa2d247a5e55c84542.zip
Ensure that *two* digits of patch version component determine unstable snaphots
Diffstat (limited to 'eclass/kde4-base.eclass')
-rw-r--r--eclass/kde4-base.eclass8
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