commit: 74aaef62c0bfad13cf528497faf4b12cbe3d52a5 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Thu May 19 07:43:08 2022 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> 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 <grobian <AT> 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 - <[email protected]> @@ -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[];
