diff options
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 8f7578e439d..7c16bd7c9a1 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -6,6 +6,8 @@ # or any later version. # # TODO: +# - remove_package: before removing a file check that it is not listed +# in any other package ... # - backup extensions (email from Manuel) # tlmgr option backupdir /some/fix/location # with default TLROOT/backups as default @@ -516,12 +518,12 @@ sub action_show { @colls = $tlmediatlpdb->needed_by($pkg); } } - 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\n":"No\n"); - 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\n":"No\n"); + print "Collection: ", @colls, "\n" if (@colls); print "\n"; } else { printf STDERR "Cannot find $pkg\n"; @@ -711,10 +713,6 @@ EOF $::updater_started = 0; # -# TODO TODO TODO -# Creating a win32 updater does currently NOT include the doc files since -# they are in a separate container and are thus not installed. -# sub add_win32_updater { my ($tlp, $opt_dry) = @_; sub do_one { |