Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage-utils:master commit in: libq/
Date: Thu, 19 May 2022 07:45:04
Message-Id: 1652946188.74aaef62c0bfad13cf528497faf4b12cbe3d52a5.grobian@gentoo
1 commit: 74aaef62c0bfad13cf528497faf4b12cbe3d52a5
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 19 07:43:08 2022 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Thu May 19 07:43:08 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=74aaef62
7
8 libq/atom.h: add BUILDID to atom for binpkg-multi-instance support
9
10 References: https://github.com/gentoo/portage-utils/pull/16
11 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
12
13 libq/atom.h | 33 +++++++++++++++++----------------
14 1 file changed, 17 insertions(+), 16 deletions(-)
15
16 diff --git a/libq/atom.h b/libq/atom.h
17 index 8291daf..fcfa0bd 100644
18 --- a/libq/atom.h
19 +++ b/libq/atom.h
20 @@ -1,5 +1,5 @@
21 /*
22 - * Copyright 2005-2021 Gentoo Foundation
23 + * Copyright 2005-2022 Gentoo Foundation
24 * Distributed under the terms of the GNU General Public License v2
25 *
26 * Copyright 2005-2008 Ned Ludd - <solar@g.o>
27 @@ -68,23 +68,24 @@ typedef struct _atom_usedep {
28 } atom_usedep;
29
30 typedef struct {
31 - atom_blocker blocker;
32 + atom_blocker blocker;
33 atom_operator pfx_op;
34 atom_operator sfx_op;
35 - char *CATEGORY;
36 - char *PN;
37 - char *PV;
38 - char *PF;
39 - unsigned int PR_int;
40 - char letter;
41 - atom_suffix *suffixes;
42 - char *PVR;
43 - char *P;
44 - atom_usedep *usedeps;
45 - char *SLOT;
46 - char *SUBSLOT;
47 - atom_slotdep slotdep;
48 - char *REPO;
49 + char *CATEGORY;
50 + char *PN;
51 + char *PV;
52 + char *PF;
53 + unsigned int PR_int;
54 + char letter;
55 + atom_suffix *suffixes;
56 + char *PVR;
57 + char *P;
58 + atom_usedep *usedeps;
59 + char *SLOT;
60 + char *SUBSLOT;
61 + atom_slotdep slotdep;
62 + char *REPO;
63 + unsigned int BUILDID;
64 } depend_atom;
65
66 extern const char * const booga[];