commit: bb67c627551b8fdc6b0e2bcd28f445d7c8082b64
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun May 7 15:18:23 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May 10 20:19:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb67c627
kde4-meta.eclass: Drop unneeded pre20160211 tarball special handling
eclass/kde4-meta.eclass | 6 ------
1 file changed, 6 deletions(-)
diff --git a/eclass/kde4-meta.eclass b/eclass/kde4-meta.eclass
index e07161d2160..3df6fe39dbb 100644
--- a/eclass/kde4-meta.eclass
+++ b/eclass/kde4-meta.eclass
@@ -184,9 +184,6 @@ kde4-meta_src_extract() {
if [[ ${PV} =~ 4.4.11 ]]; then
postfix="bz2"
KMTARPARAMS+=" --bzip2"
- elif [[ ${PV} =~ _pre20160211 ]]; then
- postfix="gz"
- KMTARPARAMS+=" --gz"
else
postfix="xz"
KMTARPARAMS+=" --xz"
@@ -200,9 +197,6 @@ kde4-meta_src_extract() {
# Detect real toplevel dir from tarball name - it will be used
upon extraction
# and in _list_needed_subdirectories
topdir="${tarball%.tar.*}/"
- if [[ ${topdir} =~ _pre20160211 ]]; then
- topdir="${topdir%-$PV*}/"
- fi
ebegin "Unpacking parts of ${tarball} to ${WORKDIR}"