diff options
author | Karl Berry <karl@freefriends.org> | 2009-08-18 23:31:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-08-18 23:31:10 +0000 |
commit | 458f0d6cd95ba5d318c787ed7baf5c39b64f4206 (patch) | |
tree | 29e7bad2ea3825812ab5dd771d6d92b00062ed62 | |
parent | 0c9ca827cbce795f8b565e640f00bbacf1f70145 (diff) |
(action_show): do not use StudlyCaps, but all
lowercase item names, matching texlive.tlpdb values.
git-svn-id: svn://tug.org/texlive/trunk@14757 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index f9ab3e56f63..7706ca67618 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -881,19 +881,19 @@ sub action_show { # include arbitrary package in the list of collections, but # only collectons: @colls = grep {m;^collection-;} @colls; - print "Package: ", $tlp->name, "\n"; - print "Category: ", $tlp->category, "\n"; - print "ShortDesc: ", $tlp->shortdesc, "\n" if ($tlp->shortdesc); - print "LongDesc: ", $tlp->longdesc, "\n" if ($tlp->longdesc); - print "Installed: ", ($installed ? "Yes" : "No"), "\n"; - print "Revision: ", $tlp->revision, "\n" if ($installed); - print "Collection: ", @colls, "\n" if (@colls); + print "package: ", $tlp->name, "\n"; + print "category: ", $tlp->category, "\n"; + print "shortdesc: ", $tlp->shortdesc, "\n" if ($tlp->shortdesc); + print "longdesc: ", $tlp->longdesc, "\n" if ($tlp->longdesc); + print "installed: ", ($installed ? "Yes" : "No"), "\n"; + print "revision: ", $tlp->revision, "\n" if ($installed); + print "collection: ", @colls, "\n" if (@colls); if ($opts{"list"}) { if ($tlp->category eq "Collection" || $tlp->category eq "Scheme") { # in the case of collections of schemes we list the deps my @deps = $tlp->depends; if (@deps) { - print "Depends:\n"; + print "depends:\n"; for my $d (@deps) { print "\t$d\n"; } |