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 1S9qJG-0005IR-Mr for garchives@archives.gentoo.org; Tue, 20 Mar 2012 04:04:34 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BABEBE08D6; Tue, 20 Mar 2012 04:04:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 89DEEE08D6 for ; Tue, 20 Mar 2012 04:04:18 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA38E1B4014 for ; Tue, 20 Mar 2012 04:04:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A4934E5403 for ; Tue, 20 Mar 2012 04:04:16 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <1332215942.1ec0b2f81f2186c10411240a3b590c67dc341e1b.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: 1ec0b2f81f2186c10411240a3b590c67dc341e1b X-VCS-Branch: gentoolkit Date: Tue, 20 Mar 2012 04:04:16 +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: b7aed434-a563-4376-9419-b5a9392025a3 X-Archives-Hash: 66fb71648db60b9ef209ec9fa712b963 commit: 1ec0b2f81f2186c10411240a3b590c67dc341e1b Author: Paul Varner gentoo org> AuthorDate: Tue Mar 20 03:59:02 2012 +0000 Commit: Paul Varner gentoo org> CommitDate: Tue Mar 20 03:59:02 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoolkit.gi= t;a=3Dcommit;h=3D1ec0b2f8 Add patch from Vitaly Shimansky to fix regex in modify_packages() --- bin/euse | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/euse b/bin/euse index 9c00cc3..24edeb9 100755 --- a/bin/euse +++ b/bin/euse @@ -1036,7 +1036,7 @@ scrub_use_flag() { modify_package() { get_useflags =20 - local atom_re=3D"^[<>]?=3D?([a-z][\da-z/-]+[a-z])(-[0-9pr._*-]+)?" + local atom_re=3D"^[<>]?=3D?([a-z][0-9a-z/-]+[a-z])(-[0-9pr._*-]+)?" local pkg=3D$(echo "${PACKAGE}" | sed -re "s/${atom_re}/\1/") local V=3D$(echo "${PACKAGE}" | sed -re "s/${atom_re}/\2/") local pkg_re=3D"[<>]?=3D?${pkg}(-[\dpr._*-]+)?"