From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24074 invoked from network); 8 Aug 2004 18:08:57 +0000 Received: from smtp.gentoo.org (156.56.111.197) by lists.gentoo.org with AES256-SHA encrypted SMTP; 8 Aug 2004 18:08:57 +0000 Received: from lists.gentoo.org ([156.56.111.196] helo=parrot.gentoo.org) by smtp.gentoo.org with esmtp (Exim 4.34) id 1Bts6K-0005Mg-KU for arch-gentoo-portage-dev@lists.gentoo.org; Sun, 08 Aug 2004 18:08:56 +0000 Received: (qmail 15693 invoked by uid 89); 8 Aug 2004 18:08:48 +0000 Mailing-List: contact gentoo-portage-dev-help@gentoo.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail Reply-To: gentoo-portage-dev@lists.gentoo.org X-BeenThere: gentoo-portage-dev@gentoo.org Received: (qmail 23092 invoked from network); 8 Aug 2004 18:08:48 +0000 Message-ID: <41166C83.5020208@myrealbox.com> Date: Sun, 08 Aug 2004 11:10:11 -0700 From: Andy Lutomirski User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707) X-Accept-Language: en-us, en MIME-Version: 1.0 To: gentoo-portage-dev@lists.gentoo.org Content-Type: multipart/mixed; boundary="------------000704080700090505000305" Subject: [gentoo-portage-dev] =* support in package.{keywords,mask,unmask} X-Archives-Salt: 883b1bdf-894d-4726-bbc8-e24f91b22b3d X-Archives-Hash: 3ffb2989f668796f6f0b0df8d3aa8396 --------------000704080700090505000305 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit I like to use =*gnome-base/ ~amd64 in my portage.keywords. It looks like this is supposed to work, but it doesn't. Here's a short patch to fix it. Is this the right place to submit it? Thanks, Andy --------------000704080700090505000305 Content-Type: text/plain; name="portage.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="portage.patch" --- ./portage.py.orig 2004-08-08 10:46:45.009821264 -0700 +++ ./portage.py 2004-08-08 11:05:33.467269656 -0700 @@ -3541,7 +3541,11 @@ if not operator: return [] else: - operator = None + if mydep[0:2] == '=*': + operator = '=*' + mycpv = mydep[2:] + else: + operator = None mylist = [] --------------000704080700090505000305 Content-Type: text/plain; charset=us-ascii -- gentoo-portage-dev@gentoo.org mailing list --------------000704080700090505000305--