From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E3514158090 for ; Thu, 19 May 2022 07:45:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E6CFE0970; Thu, 19 May 2022 07:45:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E2521E0970 for ; Thu, 19 May 2022 07:45:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5ADC341852 for ; Thu, 19 May 2022 07:45:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17BE042F for ; Thu, 19 May 2022 07:45:01 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1652946188.74aaef62c0bfad13cf528497faf4b12cbe3d52a5.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: libq/ X-VCS-Repository: proj/portage-utils X-VCS-Files: libq/atom.h X-VCS-Directories: libq/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 74aaef62c0bfad13cf528497faf4b12cbe3d52a5 X-VCS-Branch: master Date: Thu, 19 May 2022 07:45:01 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 58f78bfc-46cc-470e-9860-20ab6ac88797 X-Archives-Hash: 35517a9eb66c9f677ea726efb71c4ea3 commit: 74aaef62c0bfad13cf528497faf4b12cbe3d52a5 Author: Fabian Groffen gentoo org> AuthorDate: Thu May 19 07:43:08 2022 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu May 19 07:43:08 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=74aaef62 libq/atom.h: add BUILDID to atom for binpkg-multi-instance support References: https://github.com/gentoo/portage-utils/pull/16 Signed-off-by: Fabian Groffen gentoo.org> libq/atom.h | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/libq/atom.h b/libq/atom.h index 8291daf..fcfa0bd 100644 --- a/libq/atom.h +++ b/libq/atom.h @@ -1,5 +1,5 @@ /* - * Copyright 2005-2021 Gentoo Foundation + * Copyright 2005-2022 Gentoo Foundation * Distributed under the terms of the GNU General Public License v2 * * Copyright 2005-2008 Ned Ludd - @@ -68,23 +68,24 @@ typedef struct _atom_usedep { } atom_usedep; typedef struct { - atom_blocker blocker; + atom_blocker blocker; atom_operator pfx_op; atom_operator sfx_op; - char *CATEGORY; - char *PN; - char *PV; - char *PF; - unsigned int PR_int; - char letter; - atom_suffix *suffixes; - char *PVR; - char *P; - atom_usedep *usedeps; - char *SLOT; - char *SUBSLOT; - atom_slotdep slotdep; - char *REPO; + char *CATEGORY; + char *PN; + char *PV; + char *PF; + unsigned int PR_int; + char letter; + atom_suffix *suffixes; + char *PVR; + char *P; + atom_usedep *usedeps; + char *SLOT; + char *SUBSLOT; + atom_slotdep slotdep; + char *REPO; + unsigned int BUILDID; } depend_atom; extern const char * const booga[];