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 1SdrP4-0003iE-Ni for garchives@archives.gentoo.org; Sun, 10 Jun 2012 23:18:42 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B49AE0531; Sun, 10 Jun 2012 23:18:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6BB03E0531 for ; Sun, 10 Jun 2012 23:18:31 +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 CDB2F1B403E for ; Sun, 10 Jun 2012 23:18:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6BEA2E542E for ; Sun, 10 Jun 2012 23:18:29 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1339370295.8625d3282ec860b795d75322565a95bb4c2e9673.zmedico@gentoo> 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: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 8625d3282ec860b795d75322565a95bb4c2e9673 X-VCS-Branch: master Date: Sun, 10 Jun 2012 23:18:29 +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: c94b9bd7-1f48-46ca-81dd-28d2e2d67786 X-Archives-Hash: 33ccb9b5075208bd37e9fa5a4c6db896 commit: 8625d3282ec860b795d75322565a95bb4c2e9673 Author: Zac Medico gentoo org> AuthorDate: Sun Jun 10 23:18:15 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Jun 10 23:18:15 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D8625d328 dep: remove old "DEPEND SYNTAX" comments --- pym/portage/dep/__init__.py | 14 -------------- 1 files changed, 0 insertions(+), 14 deletions(-) diff --git a/pym/portage/dep/__init__.py b/pym/portage/dep/__init__.py index 4d0c4e2..d2df042 100644 --- a/pym/portage/dep/__init__.py +++ b/pym/portage/dep/__init__.py @@ -13,20 +13,6 @@ __all__ =3D [ '_repo_separator', '_slot_separator', ] =20 -# DEPEND SYNTAX: -# -# 'use?' only affects the immediately following word! -# Nesting is the only legal way to form multiple '[!]use?' requirements. -# -# Where: 'a' and 'b' are use flags, and 'z' is a depend atom. -# -# "a? z" -- If 'a' in [use], then b is valid. -# "a? ( z )" -- Syntax with parenthesis. -# "a? b? z" -- Deprecated. -# "a? ( b? z )" -- Valid -# "a? ( b? ( z ) ) -- Valid -# - import re, sys import warnings from itertools import chain