From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Pd8Bp-0004q8-Ao for garchives@archives.gentoo.org; Wed, 12 Jan 2011 21:25:10 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0848DE07C5; Wed, 12 Jan 2011 21:25:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id CA9B1E07C5 for ; Wed, 12 Jan 2011 21:25:00 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 450461B4039 for ; Wed, 12 Jan 2011 21:25:00 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2276) id 4F24E20054; Wed, 12 Jan 2011 21:24:58 +0000 (UTC) From: "Andreas HAttel (dilfridge)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, dilfridge@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: kde4-meta.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: kde4-meta.eclass X-VCS-Directories: eclass X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas HAttel Content-Type: text/plain; charset=utf8 Message-Id: <20110112212458.4F24E20054@flycatcher.gentoo.org> Date: Wed, 12 Jan 2011 21:24:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: bf310636-6092-42b1-a706-4d7f5c91952a X-Archives-Hash: 196b82318a699ff5bba962cf20816271 dilfridge 11/01/12 21:24:58 Modified: kde4-meta.eclass Log: Only show the developers the tar unpack warnings (I_KNOW_WHAT_I_AM_DOIN= G) Revision Changes Path 1.48 eclass/kde4-meta.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/kde4-meta.e= class?rev=3D1.48&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/kde4-meta.e= class?rev=3D1.48&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/kde4-meta.e= class?r1=3D1.47&r2=3D1.48 Index: kde4-meta.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- kde4-meta.eclass 29 Dec 2010 17:56:34 -0000 1.47 +++ kde4-meta.eclass 12 Jan 2011 21:24:58 -0000 1.48 @@ -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-meta.eclass,v 1.47 2010/1= 2/29 17:56:34 tampakrap Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.48 2011/0= 1/12 21:24:58 dilfridge Exp $ # # @ECLASS: kde4-meta.eclass # @MAINTAINER: @@ -253,7 +253,12 @@ =20 pushd "${WORKDIR}" > /dev/null [[ -n ${KDE4_STRICTER} ]] && echo tar -xpf "${tarfile}" ${KMTARPARAMS}= ${extractlist} - tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} || ewarn "tar extr= act command failed at least partially - continuing anyway" + if [[ ${I_KNOW_WHAT_I_AM_DOING} ]]; then + # to make the devs happy - bug 338397 + tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} || ewarn "tar ext= ract command failed at least partially - continuing anyway" + else + tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || e= cho "tar extract command failed at least partially - continuing anyway" + fi =20 # Default $S is based on $P; rename the extracted directory to match $= S if necessary mv ${topdir} ${P} || die "Died while moving \"${topdir}\" to \"${P}\""