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 AF9351381F3 for ; Tue, 11 Dec 2012 09:43:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC60AE0160; Tue, 11 Dec 2012 09:43:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 616DFE0160 for ; Tue, 11 Dec 2012 09:43:00 +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 5842633DA88 for ; Tue, 11 Dec 2012 09:42:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id F3661E543C for ; Tue, 11 Dec 2012 09:42:56 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <1355218778.f0e2fa9404570891e564d9c6f65f0d577ba53d35.arfrever@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: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: f0e2fa9404570891e564d9c6f65f0d577ba53d35 X-VCS-Branch: master Date: Tue, 11 Dec 2012 09:42:56 +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: 372437dc-7143-4033-a85d-962a96633a1f X-Archives-Hash: f3d8c46dce3e3191178ebbe7af467fc3 commit: f0e2fa9404570891e564d9c6f65f0d577ba53d35 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Tue Dec 11 09:39:38 2012 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gmail com> CommitDate: Tue Dec 11 09:39:38 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=f0e2fa94 Disallow SLOT="${slot}/${subslot}=" in ebuilds. --- pym/portage/dep/__init__.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/portage/dep/__init__.py b/pym/portage/dep/__init__.py index b3417e2..634b42b 100644 --- a/pym/portage/dep/__init__.py +++ b/pym/portage/dep/__init__.py @@ -64,7 +64,7 @@ def _get_slot_re(eapi_attrs): return slot_re if eapi_attrs.slot_operator: - slot_re = _slot + r'(/' + _slot + r'=?)?' + slot_re = _slot + r'(/' + _slot + r')?' else: slot_re = _slot