summaryrefslogtreecommitdiff
path: root/Master/tlpkg/etc
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-09-08 00:25:03 +0000
committerNorbert Preining <preining@logic.at>2008-09-08 00:25:03 +0000
commit312223ebc369a2dc7e17fa003b535082b73a163e (patch)
treeefc8508d87b47fdd2e561ce0742ce2852a8a3c0b /Master/tlpkg/etc
parentb15e35f41b5b136d0c6c89dff8fdb2a8cd9d3358 (diff)
remove patch that has been included
git-svn-id: svn://tug.org/texlive/trunk@10465 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/etc')
-rw-r--r--Master/tlpkg/etc/list-new-packages.diff32
1 files changed, 0 insertions, 32 deletions
diff --git a/Master/tlpkg/etc/list-new-packages.diff b/Master/tlpkg/etc/list-new-packages.diff
deleted file mode 100644
index 4f3a1f2aa7e..00000000000
--- a/Master/tlpkg/etc/list-new-packages.diff
+++ /dev/null
@@ -1,32 +0,0 @@
-Index: tlmgr.pl
-===================================================================
---- tlmgr.pl (revision 10450)
-+++ tlmgr.pl (working copy)
-@@ -621,6 +621,27 @@
- } else {
- @todo = @ARGV;
- }
-+ if ($opt_list) {
-+ # we check for new packages
-+ # loop over all installed collections
-+ for my $c ($localtlpdb->collections) {
-+ my $tlc = $mediatlpdb->get_package($c);
-+ if (!defined($tlc)) {
-+ debug("collection $c has disappeared from the network!\n");
-+ } else {
-+ # take all the dependencies of the installed collection
-+ # *as*found* in the network tlpdb
-+ for my $d ($tlc->depends) {
-+ my $tlp = $localtlpdb->get_package($d);
-+ if (!defined($tlp)) {
-+ # there is a dep that is either new or has been forcibly removed
-+ # report it as new/forcibly removed
-+ info("package $d ($c) is new (or has been forcibly removed)\n");
-+ }
-+ }
-+ }
-+ }
-+ }
- if (!@todo) {
- printf "tlmgr update takes either a list of packages or --all\n";
- }