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 1QZhaR-0002zg-Iw for garchives@archives.gentoo.org; Thu, 23 Jun 2011 10:56:39 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F45C1C094; Thu, 23 Jun 2011 10:56:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 04E0E1C094 for ; Thu, 23 Jun 2011 10:56:23 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 499701B400F for ; Thu, 23 Jun 2011 10:56:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 8BD1B8003C for ; Thu, 23 Jun 2011 10:56:22 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/dep/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/dep/__init__.py X-VCS-Directories: pym/portage/dep/ X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: c5245c7472cb89f107b2f960b0f708ee009af892 Date: Thu, 23 Jun 2011 10:56:22 +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: X-Archives-Hash: 0584d2f28e78b48aa9233833715934fb commit: c5245c7472cb89f107b2f960b0f708ee009af892 Author: Arfrever Frehtes Taifersar Arahesis Gentoo Org> AuthorDate: Thu Jun 23 10:55:51 2011 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gentoo org> CommitDate: Thu Jun 23 10:55:51 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dc5245c74 Improve indentation for readability. --- pym/portage/dep/__init__.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage/dep/__init__.py b/pym/portage/dep/__init__.py index 5832fd9..fd5ad30 100644 --- a/pym/portage/dep/__init__.py +++ b/pym/portage/dep/__init__.py @@ -635,7 +635,7 @@ def flatten(mylist): =20 =20 _usedep_re =3D { - "0": re.compile("^(?P[!-]?)(?P[A-Za-z0-9][A-Za-z0-9+_@-]*= )(?P(\(\+\)|\(\-\))?)(?P[?=3D]?)$"), + "0": re.compile("^(?P[!-]?)(?P[A-Za-z0-9][A-Za-z0-= 9+_@-]*)(?P(\(\+\)|\(\-\))?)(?P[?=3D]?)$"), "4-python": re.compile("^(?P[!-]?)(?P[A-Za-z0-9][A-Za-z0-= 9+_@.-]*)(?P(\(\+\)|\(\-\))?)(?P[?=3D]?)$"), } =20 @@ -1622,7 +1622,7 @@ _extended_pkg =3D r'[\w+*][\w+*-]*?' _atom_wildcard_re =3D re.compile('(?P(' + _extended_cat + ')/(' = + _extended_pkg + '))(:(?P' + _slot + '))?(' + _repo_separator + '(= ?P' + _repo_name + '))?$') =20 _useflag_re =3D { - "0": re.compile(r'^[A-Za-z0-9][A-Za-z0-9+_@-]*$'), + "0": re.compile(r'^[A-Za-z0-9][A-Za-z0-9+_@-]*$'), "4-python": re.compile(r'^[A-Za-z0-9][A-Za-z0-9+_@.-]*$'), } =20