From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1KjGOL-0007EE-NY for garchives@archives.gentoo.org; Fri, 26 Sep 2008 16:42:05 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D63D8E0444; Fri, 26 Sep 2008 16:42:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B1CADE0444 for ; Fri, 26 Sep 2008 16:42:05 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 9104D648C7 for ; Fri, 26 Sep 2008 16:42:04 +0000 (UTC) Received: from solar by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1KjGOI-00037h-76 for gentoo-commits@lists.gentoo.org; Fri, 26 Sep 2008 16:42:02 +0000 From: "Ned Ludd (solar)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, solar@gentoo.org Subject: [gentoo-commits] gentoo-projects commit in portage-utils: main.c X-VCS-Repository: gentoo-projects X-VCS-Files: main.c X-VCS-Directories: portage-utils X-VCS-Committer: solar X-VCS-Committer-Name: Ned Ludd Content-Type: text/plain; charset=utf8 Message-Id: Sender: Ned Ludd Date: Fri, 26 Sep 2008 16:42:02 +0000 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: 8a52bec6-b01e-433d-88f9-3b728d83232f X-Archives-Hash: f36239f9d6235967b30f7384fbde38d2 solar 08/09/26 16:42:02 Modified: main.c Log: - add new PROPERTIES field for the metadata cache handler Revision Changes Path 1.157 portage-utils/main.c file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils= /main.c?rev=3D1.157&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils= /main.c?rev=3D1.157&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils= /main.c?r1=3D1.156&r2=3D1.157 Index: main.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-projects/portage-utils/main.c,v retrieving revision 1.156 retrieving revision 1.157 diff -u -r1.156 -r1.157 --- main.c 13 Sep 2008 18:58:28 -0000 1.156 +++ main.c 26 Sep 2008 16:42:01 -0000 1.157 @@ -1,7 +1,7 @@ /* * Copyright 2005-2008 Gentoo Foundation * Distributed under the terms of the GNU General Public License v2 - * $Header: /var/cvsroot/gentoo-projects/portage-utils/main.c,v 1.156 20= 08/09/13 18:58:28 grobian Exp $ + * $Header: /var/cvsroot/gentoo-projects/portage-utils/main.c,v 1.157 20= 08/09/26 16:42:01 solar Exp $ * * Copyright 2005-2008 Ned Ludd - * Copyright 2005-2008 Mike Frysinger - @@ -756,6 +756,7 @@ char *PDEPEND; char *PROVIDE; /* line 14 */ char *EAPI; + char *PROPERTIES; depend_atom *atom; } portage_cache; =20 @@ -857,6 +858,7 @@ next_line(CDEPEND, PDEPEND) next_line(PDEPEND, PROVIDE) next_line(PROVIDE, EAPI) + next_line(EAPI, PROPERTIES) #undef next_line ptr =3D strchr(ptr+1, '\n'); *ptr =3D '\0'; @@ -891,6 +893,7 @@ printf("PDEPEND : %s\n", cache->PDEPEND); printf("PROVIDE : %s\n", cache->PROVIDE); printf("EAPI : %s\n", cache->EAPI); + printf("PROPERTIES : %s\n", cache->PROPERTIES); if (!cache->atom) return; printf("CATEGORY : %s\n", cache->atom->CATEGORY); printf("PN : %s\n", cache->atom->PN);