From 1e81de2892c6a4816577bb9a6b0a27d051435ec0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 16 May 2014 13:58:43 +0200 Subject: checkpkgist: add sort option --- checkpkgist/checkpkgist.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/checkpkgist/checkpkgist.php b/checkpkgist/checkpkgist.php index b864d4e..3488d47 100755 --- a/checkpkgist/checkpkgist.php +++ b/checkpkgist/checkpkgist.php @@ -68,7 +68,7 @@ if (in_array('-h', $_SERVER['argv']) || in_array('--help', $_SERVER['argv'])) { usage checkpkg [ options ] -h - --help Display help (this page) + --help Display help (this page) -v --verbose Display all packages, with upsteam information @@ -76,10 +76,14 @@ usage checkpkg [ options ] -q --quiet Don't display not installed packages or packages with latest version installed + + -s + --sort Sort output by package name END; die("\n\n"); } +$sort = (in_array('-s', $_SERVER['argv']) || in_array('--sort', $_SERVER['argv'])); $verb = (in_array('-v', $_SERVER['argv']) || in_array('--verbose', $_SERVER['argv'])); $quiet = (in_array('-q', $_SERVER['argv']) || in_array('--quiet', $_SERVER['argv'])); $client = new PkgClient(); @@ -93,6 +97,9 @@ if (!$pkgs) { die("Bad configuration file\n"); } +if ($sort) { + natcasesort($pkgs); +} printf(" %-40s %15s %15s %15s\n", "Name", "Version", "Upstream", "Date"); foreach ($pkgs as $name => $rpm) { -- cgit