diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-06-27 07:57:42 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-06-27 07:58:14 +0200 |
commit | 831e3f05df898a0d3df1bbff8914ca28f08a95cb (patch) | |
tree | b9c80dc4cb039ce2e8a480a033c8b900034a3b31 /eclass | |
parent | toolchain-funcs.eclass: tc-ninja_magic_to_arch, remove old KV support (diff) | |
download | gentoo-831e3f05df898a0d3df1bbff8914ca28f08a95cb.tar.gz gentoo-831e3f05df898a0d3df1bbff8914ca28f08a95cb.tar.bz2 gentoo-831e3f05df898a0d3df1bbff8914ca28f08a95cb.zip |
eclass/tests: Remove KV_* functions from tests-common.sh
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/tests/tests-common.sh | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/eclass/tests/tests-common.sh b/eclass/tests/tests-common.sh index d3095e5fc350..faca39d57589 100644 --- a/eclass/tests/tests-common.sh +++ b/eclass/tests/tests-common.sh @@ -65,47 +65,6 @@ has_version() { portageq has_version / "$@" } -KV_major() { - [[ -z $1 ]] && return 1 - - local KV=$@ - echo "${KV%%.*}" -} - -KV_minor() { - [[ -z $1 ]] && return 1 - - local KV=$@ - KV=${KV#*.} - echo "${KV%%.*}" -} - -KV_micro() { - [[ -z $1 ]] && return 1 - - local KV=$@ - KV=${KV#*.*.} - echo "${KV%%[^[:digit:]]*}" -} - -KV_to_int() { - [[ -z $1 ]] && return 1 - - local KV_MAJOR=$(KV_major "$1") - local KV_MINOR=$(KV_minor "$1") - local KV_MICRO=$(KV_micro "$1") - local KV_int=$(( KV_MAJOR * 65536 + KV_MINOR * 256 + KV_MICRO )) - - # We make version 2.2.0 the minimum version we will handle as - # a sanity check ... if its less, we fail ... - if [[ ${KV_int} -ge 131584 ]] ; then - echo "${KV_int}" - return 0 - fi - - return 1 -} - tret=0 tbegin() { ebegin "Testing $*" |