From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 445FA138C9D for ; Tue, 2 Jun 2015 19:32:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26DA1E0928; Tue, 2 Jun 2015 19:32:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1E7AE0928 for ; Tue, 2 Jun 2015 19:32:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BA3A9340DF6 for ; Tue, 2 Jun 2015 19:32:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE6A0A0A for ; Tue, 2 Jun 2015 19:32:21 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <1433273431.e6f03e5fb6c26f9ada7fabf25126a135f5ef1dbf.fuzzyray@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: bin/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: bin/euse X-VCS-Directories: bin/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: e6f03e5fb6c26f9ada7fabf25126a135f5ef1dbf X-VCS-Branch: gentoolkit Date: Tue, 2 Jun 2015 19:32:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f21fa146-bf66-40f8-9795-f90cad0d1755 X-Archives-Hash: 9a6a4dcf785685ee9dadeb4ae593e7e3 commit: e6f03e5fb6c26f9ada7fabf25126a135f5ef1dbf Author: Paul Varner gentoo org> AuthorDate: Tue Jun 2 19:30:31 2015 +0000 Commit: Paul Varner gentoo org> CommitDate: Tue Jun 2 19:30:31 2015 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=e6f03e5f euse: Fix 'grep: Unmatched ( or \(' errors with euse -i bin/euse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/euse b/bin/euse index c3f9f24..56fc917 100755 --- a/bin/euse +++ b/bin/euse @@ -771,7 +771,7 @@ showdesc() { fi # Fetch all the packages data using this flag infos=$( grep -h ":${1} *-" ${PORTAGE_REPO_PATHS[@]/%//profiles/use.local.desc} 2> /dev/null \ - | sed -re "s/^([^:]+):(.*) *- *(.+)/\1|\2|\3/g") + | sed -re "s/^([^:]+):(.*) *- *(.+)/\1|\2|\3/g") OIFS=$IFS; IFS=$'\n'; infos=($infos); IFS=$OIFS; for line in "${infos[@]}"; do OIFS=$IFS; IFS="|"; line=($line); IFS=$OIFS