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: /
Date: Sun, 04 Oct 2020 11:09:47
Message-Id: 1601809737.a1e44dbf5cec055ce0300249d6d14c58f961062f.grobian@gentoo
1 commit: a1e44dbf5cec055ce0300249d6d14c58f961062f
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 4 11:08:57 2020 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 4 11:08:57 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=a1e44dbf
7
8 qlop: ensure running merges are calculated of off package names #731122
9
10 Bug: https://bugs.gentoo.org/731122
11 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
12
13 qlop.c | 6 ++++++
14 1 file changed, 6 insertions(+)
15
16 diff --git a/qlop.c b/qlop.c
17 index 385613a..f8248d4 100644
18 --- a/qlop.c
19 +++ b/qlop.c
20 @@ -1305,6 +1305,12 @@ static array_t *probe_proc(array_t *atoms)
21 xarraydelete_ptr(ret_atoms, j);
22 atom_implode(atomr);
23 break;
24 + } else {
25 + /* bug #731122: match running packages without
26 + * version */
27 + atomr->PV = NULL;
28 + atomr->PVR = NULL;
29 + atomr->PR_int = 0;
30 }
31 }
32 atom_implode(atom);