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 1P5PEO-0000ns-Bb for garchives@archives.gentoo.org; Mon, 11 Oct 2010 20:44:24 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E0A9E0748; Mon, 11 Oct 2010 20:44:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4490DE0748 for ; Mon, 11 Oct 2010 20:44:21 +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 D6AB21B41ED for ; Mon, 11 Oct 2010 20:44:20 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2139) id 6D0902004C; Mon, 11 Oct 2010 20:44:19 +0000 (UTC) From: "Alexis Ballier (aballier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, aballier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: texlive-module.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: texlive-module.eclass X-VCS-Directories: eclass X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier Content-Type: text/plain; charset=utf8 Message-Id: <20101011204419.6D0902004C@flycatcher.gentoo.org> Date: Mon, 11 Oct 2010 20:44:19 +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: 8b1b0d24-7746-4bed-a4ce-a1f76825654e X-Archives-Hash: 50f4a088dfda752ae1fafbf34d9558a3 aballier 10/10/11 20:44:19 Modified: texlive-module.eclass Log: Strip \t too, one can see tlpobjs with \t in TeX Live 2010 Revision Changes Path 1.36 eclass/texlive-module.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/texlive-mod= ule.eclass?rev=3D1.36&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/texlive-mod= ule.eclass?rev=3D1.36&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/texlive-mod= ule.eclass?r1=3D1.35&r2=3D1.36 Index: texlive-module.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/texlive-module.eclass,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- texlive-module.eclass 11 Oct 2010 18:26:33 -0000 1.35 +++ texlive-module.eclass 11 Oct 2010 20:44:19 -0000 1.36 @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.35 2= 010/10/11 18:26:33 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.36 2= 010/10/11 20:44:19 aballier Exp $ =20 # @ECLASS: texlive-module.eclass # @MAINTAINER: @@ -205,7 +205,7 @@ # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. for i in "${S}"/tlpkg/tlpobj/*; do - grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' ' '@' |sort|un= iq >> "${T}/jobs" + grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' \t' '@@' |sort= |uniq >> "${T}/jobs" done =20 for i in $(<"${T}/jobs");