From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernhard Bitsch To: development@lists.ipfire.org Subject: Re: [PATCH] pakfire: Fix small bug: wrong pak count on list Date: Fri, 16 Jul 2021 09:36:33 +0200 Message-ID: In-Reply-To: <20210624220700.14161-1-robin.roevens@disroot.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6709406583313087870==" List-Id: --===============6709406583313087870== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Reviewed-by: Bernhard Bitsch Tested-by: Bernhard Bitsch Am 25.06.2021 um 00:07 schrieb Robin Roevens: > Fixes pakfire list installed/notinstalled command displaying the > count of all available paks instead of the count of actual installed > respectively not installed paks. > > Signed-off-by: Robin Roevens > --- > src/pakfire/lib/functions.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/pakfire/lib/functions.pl b/src/pakfire/lib/functions.pl > index f9a19b60d..c15e54f94 100644 > --- a/src/pakfire/lib/functions.pl > +++ b/src/pakfire/lib/functions.pl > @@ -512,13 +512,13 @@ sub dblist { > foreach $line (sort @db) { > next unless ($line =~ /.*;.*;.*;/ ); > $use_color = ""; > - $count++; > @templine = split(/\;/,$line); > if ("$filter" eq "notinstalled") { > next if ( -e "$Conf::dbdir/installed/meta-$templine[0]" ); > } elsif ("$filter" eq "installed") { > next unless ( -e "$Conf::dbdir/installed/meta-$templine[0]" ); > } > + $count++; > if ("$forweb" eq "forweb") > { > if ("$filter" eq "notinstalled") { > --===============6709406583313087870==--