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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 529F3138359 for ; Sun, 4 Oct 2020 11:09:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF806E0924; Sun, 4 Oct 2020 11:09:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9AB49E0924 for ; Sun, 4 Oct 2020 11:09:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72CFC340B35 for ; Sun, 4 Oct 2020 11:09:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2048038C for ; Sun, 4 Oct 2020 11:09:44 +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: <1601809737.a1e44dbf5cec055ce0300249d6d14c58f961062f.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: qlop.c X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: a1e44dbf5cec055ce0300249d6d14c58f961062f X-VCS-Branch: master Date: Sun, 4 Oct 2020 11:09:44 +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: 68671687-6775-4847-9c39-3a68b735bf8a X-Archives-Hash: 687b0737893bddfcf16ff939c15b1cb2 commit: a1e44dbf5cec055ce0300249d6d14c58f961062f Author: Fabian Groffen gentoo org> AuthorDate: Sun Oct 4 11:08:57 2020 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Oct 4 11:08:57 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=a1e44dbf qlop: ensure running merges are calculated of off package names #731122 Bug: https://bugs.gentoo.org/731122 Signed-off-by: Fabian Groffen gentoo.org> qlop.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qlop.c b/qlop.c index 385613a..f8248d4 100644 --- a/qlop.c +++ b/qlop.c @@ -1305,6 +1305,12 @@ static array_t *probe_proc(array_t *atoms) xarraydelete_ptr(ret_atoms, j); atom_implode(atomr); break; + } else { + /* bug #731122: match running packages without + * version */ + atomr->PV = NULL; + atomr->PVR = NULL; + atomr->PR_int = 0; } } atom_implode(atom);