1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
|
------------------------------------------------------------------------
r11086 | karl | 2008-10-28 03:41:38 +0100 (Tue, 28 Oct 2008) | 1 line
/home/texlive/karl/Master/tlpkg/bin/tl-update-auto
Changed paths:
M /trunk/Master/doc.html
------------------------------------------------------------------------
r11085 | karl | 2008-10-28 03:24:05 +0100 (Tue, 28 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/texmf-dist/ls-R
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11084 | preining | 2008-10-28 01:59:36 +0100 (Tue, 28 Oct 2008) | 2 lines
update the autopatterns patch to use only one file
Changed paths:
M /trunk/Master/tlpkg/etc/ready.use-autopatterns-from-dedicated-tlpsrc-files.patch
------------------------------------------------------------------------
r11083 | karl | 2008-10-28 01:23:03 +0100 (Tue, 28 Oct 2008) | 1 line
new latex package arsclassica (27oct08)
Changed paths:
A /trunk/Master/texmf-dist/bibtex/bst/arsclassica
A /trunk/Master/texmf-dist/bibtex/bst/arsclassica/classic.bst
A /trunk/Master/texmf-dist/doc/latex/arsclassica
A /trunk/Master/texmf-dist/doc/latex/arsclassica/ArsClassica.pdf
A /trunk/Master/texmf-dist/doc/latex/arsclassica/ArsClassica.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Bibliografia.bib
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Capitoli
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Capitoli/Basi.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Capitoli/Codice.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/Uccelli.jpg
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/esempio_1.jpg
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/esempio_2.jpg
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/esempio_3.jpg
A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/esempio_4.jpg
A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale
A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Bibliografia.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/DietroAlTitolo.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Frontespizio.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/IndiceAnalitico.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Indici.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Ringraziamenti.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Sommario+Abstract.tex
A /trunk/Master/texmf-dist/doc/latex/arsclassica/README
A /trunk/Master/texmf-dist/makeindex/arsclassica
A /trunk/Master/texmf-dist/makeindex/arsclassica/classic.ist
A /trunk/Master/texmf-dist/tex/latex/arsclassica
A /trunk/Master/texmf-dist/tex/latex/arsclassica/adhoc.sty
A /trunk/Master/texmf-dist/tex/latex/arsclassica/arsclassica.sty
M /trunk/Master/tlpkg/bin/ctan2tds
M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
A /trunk/Master/tlpkg/tlpsrc/arsclassica.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc
------------------------------------------------------------------------
r11082 | karl | 2008-10-28 01:18:36 +0100 (Tue, 28 Oct 2008) | 1 line
new math symbol font shuffle (27oct08)
Changed paths:
A /trunk/Master/texmf-dist/doc/latex/shuffle
A /trunk/Master/texmf-dist/doc/latex/shuffle/README
A /trunk/Master/texmf-dist/doc/latex/shuffle/shuffle.pdf
A /trunk/Master/texmf-dist/fonts/source/public/shuffle
A /trunk/Master/texmf-dist/fonts/source/public/shuffle/shuffle.mf
A /trunk/Master/texmf-dist/fonts/source/public/shuffle/shuffle10.mf
A /trunk/Master/texmf-dist/fonts/source/public/shuffle/shuffle7.mf
A /trunk/Master/texmf-dist/fonts/tfm/public/shuffle
A /trunk/Master/texmf-dist/fonts/tfm/public/shuffle/shuffle10.tfm
A /trunk/Master/texmf-dist/fonts/tfm/public/shuffle/shuffle7.tfm
A /trunk/Master/texmf-dist/source/latex/shuffle
A /trunk/Master/texmf-dist/source/latex/shuffle/shuffle.dtx
A /trunk/Master/texmf-dist/source/latex/shuffle/shuffle.ins
A /trunk/Master/texmf-dist/tex/latex/shuffle
A /trunk/Master/texmf-dist/tex/latex/shuffle/Ushuffle.fd
A /trunk/Master/texmf-dist/tex/latex/shuffle/shuffle.sty
M /trunk/Master/tlpkg/bin/ctan2tds
M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
M /trunk/Master/tlpkg/tlpsrc/collection-mathextra.tlpsrc
A /trunk/Master/tlpkg/tlpsrc/shuffle.tlpsrc
M /trunk/TODO
------------------------------------------------------------------------
r11081 | preining | 2008-10-28 00:34:50 +0100 (Tue, 28 Oct 2008) | 6 lines
remove several patches, prefix are now
dev.XXXX in development
ready.XXXX ready for inclusion
2009.XXXX patches to be included for 2009
rej.XXXX rejected patches
Changed paths:
A /trunk/Master/tlpkg/etc/2009.rework-AddFormat-lines.patch (from /trunk/Master/tlpkg/etc/rework-AddFormat-lines.patch:11079)
D /trunk/Master/tlpkg/etc/auto-backup-feature.patch
A /trunk/Master/tlpkg/etc/dev.auto-backup-feature.patch (from /trunk/Master/tlpkg/etc/auto-backup-feature.patch:11080)
A /trunk/Master/tlpkg/etc/dev.include-schemes.patch (from /trunk/Master/tlpkg/etc/include-schemes.diff:11079)
A /trunk/Master/tlpkg/etc/dev.multi-source-support.patch (from /trunk/Master/tlpkg/etc/multi-source-support.diff:11079)
A /trunk/Master/tlpkg/etc/dev.tempfile-for-tlpdb.patch (from /trunk/Master/tlpkg/etc/tempfile-for-tlpdb.diff:11079)
A /trunk/Master/tlpkg/etc/dev.texconf.tlu.diff-for-using-tlpdb.tlu.patch (from /trunk/Master/tlpkg/etc/texconf.tlu.diff-for-using-tlpdb.tlu.patch:11079)
A /trunk/Master/tlpkg/etc/dev.tlmgr-use-saved-remote-tlpdb.patch (from /trunk/Master/tlpkg/etc/tlmgr-use-saved-remote-tlpdb.patch:11079)
D /trunk/Master/tlpkg/etc/generalize-revisions.diff
D /trunk/Master/tlpkg/etc/include-schemes.diff
D /trunk/Master/tlpkg/etc/installed_avail_archs.diff
D /trunk/Master/tlpkg/etc/multi-source-support.diff
A /trunk/Master/tlpkg/etc/ready.use-autopatterns-from-dedicated-tlpsrc-files.patch (from /trunk/Master/tlpkg/etc/use-autopatterns-from-dedicated-tlpsrc-files.patch:11079)
A /trunk/Master/tlpkg/etc/rej.generalize-revisions.patch (from /trunk/Master/tlpkg/etc/generalize-revisions.diff:11079)
A /trunk/Master/tlpkg/etc/rej.installed-avail-archs.patch (from /trunk/Master/tlpkg/etc/installed_avail_archs.diff:11079)
A /trunk/Master/tlpkg/etc/rej.tlmgrgui-include-revisions-in-update-list.patch (from /trunk/Master/tlpkg/etc/tlmgrgui-include-revisions-in-update-list.diff:11079)
D /trunk/Master/tlpkg/etc/rework-AddFormat-lines.patch
D /trunk/Master/tlpkg/etc/tempfile-for-tlpdb.diff
D /trunk/Master/tlpkg/etc/texconf.tlu.diff-for-using-tlpdb.tlu.patch
D /trunk/Master/tlpkg/etc/tlmgr-use-saved-remote-tlpdb.patch
D /trunk/Master/tlpkg/etc/tlmgrgui-include-revisions-in-update-list.diff
D /trunk/Master/tlpkg/etc/use-autopatterns-from-dedicated-tlpsrc-files.patch
------------------------------------------------------------------------
r11080 | preining | 2008-10-28 00:06:47 +0100 (Tue, 28 Oct 2008) | 2 lines
update the auto-backup-feature for current tlmgr.pl
Changed paths:
M /trunk/Master/tlpkg/etc/auto-backup-feature.patch
------------------------------------------------------------------------
r11079 | staw | 2008-10-27 23:11:15 +0100 (Mon, 27 Oct 2008) | 1 line
pause added to tlmgr.pl
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11078 | karl | 2008-10-27 19:31:21 +0100 (Mon, 27 Oct 2008) | 4 lines
(handle_ret_hash): move code to a new function,
and return error count; exit 1 on failure.
Suggestion from cfrees, 16 Oct 2008 02:15:05.
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11077 | preining | 2008-10-27 14:20:00 +0100 (Mon, 27 Oct 2008) | 2 lines
Try to remove the last updater step stuff, including the .bat file itself
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
M /trunk/Master/tlpkg/TeXLive/TLWinGoo.pm
------------------------------------------------------------------------
r11076 | preining | 2008-10-27 11:21:07 +0100 (Mon, 27 Oct 2008) | 3 lines
rename many win32 to w32, and try to remove the updater.bat after execution.
Missing: try to remove the desktop shortcut
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11075 | karl | 2008-10-27 01:36:49 +0100 (Mon, 27 Oct 2008) | 1 line
antiqua and grotesq are not part of base35, cfrees 26 Oct 2008 21:46:03
Changed paths:
D /trunk/Master/texmf-dist/doc/fonts/antiqua/README.base35
A /trunk/Master/texmf-dist/doc/fonts/antiqua/readme.antiqua
D /trunk/Master/texmf-dist/doc/fonts/grotesq/README.base35
A /trunk/Master/texmf-dist/doc/fonts/grotesq/readme.grotesq
------------------------------------------------------------------------
r11074 | karl | 2008-10-27 01:29:37 +0100 (Mon, 27 Oct 2008) | 1 line
casyl 2 (26oct08)
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.pdf
M /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.tex
M /trunk/Master/texmf-dist/fonts/source/public/casyl/casyll10.mf
M /trunk/Master/texmf-dist/fonts/tfm/public/casyl/casyll10.tfm
M /trunk/Master/texmf-dist/tex/latex/casyl/casyltex.sty
------------------------------------------------------------------------
r11073 | karl | 2008-10-27 01:17:33 +0100 (Mon, 27 Oct 2008) | 1 line
adjust printed output too, Aaron Chen 25 Oct 2008 16:40:59
Changed paths:
M /trunk/Build/source/texk/tetex/ChangeLog
M /trunk/Build/source/texk/tetex/updmap.pl
M /trunk/Master/texmf/scripts/tetex/updmap.pl
------------------------------------------------------------------------
r11072 | preining | 2008-10-26 23:25:58 +0100 (Sun, 26 Oct 2008) | 2 lines
add two patches, see separate email and header of the patches
Changed paths:
A /trunk/Master/tlpkg/etc/auto-backup-feature.patch
A /trunk/Master/tlpkg/etc/use-autopatterns-from-dedicated-tlpsrc-files.patch
------------------------------------------------------------------------
r11071 | preining | 2008-10-26 23:11:37 +0100 (Sun, 26 Oct 2008) | 3 lines
fix the !!! something is missing, testing links with -e is not a good
idea, we need -l || -f
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLPOBJ.pm
------------------------------------------------------------------------
r11070 | reinhardk | 2008-10-26 21:44:28 +0100 (Sun, 26 Oct 2008) | 2 lines
getnonfreefonts: support brace expansion in TEXMFHOME and TEXMFLOCAL.
Changed paths:
M /trunk/Master/texmf/scripts/texlive/getnonfreefonts.pl
------------------------------------------------------------------------
r11069 | karl | 2008-10-26 17:17:46 +0100 (Sun, 26 Oct 2008) | 1 line
skak license update (17oct08)
Changed paths:
M /trunk/Master/texmf-dist/tex/latex/skak/lambda.sty
M /trunk/Master/tlpkg/bin/ctan2tds
------------------------------------------------------------------------
r11068 | karl | 2008-10-26 17:15:15 +0100 (Sun, 26 Oct 2008) | 1 line
install latex fragments (20oct08)
Changed paths:
A /trunk/Master/texmf-dist/doc/latex/fragments
A /trunk/Master/texmf-dist/doc/latex/fragments/README
A /trunk/Master/texmf-dist/tex/latex/fragments
A /trunk/Master/texmf-dist/tex/latex/fragments/checklab.tex
A /trunk/Master/texmf-dist/tex/latex/fragments/overrightarrow.sty
A /trunk/Master/texmf-dist/tex/latex/fragments/removefr.tex
A /trunk/Master/texmf-dist/tex/latex/fragments/subscript.sty
M /trunk/Master/tlpkg/bin/ctan2tds
M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
M /trunk/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
A /trunk/Master/tlpkg/tlpsrc/fragments.tlpsrc
------------------------------------------------------------------------
r11067 | karl | 2008-10-26 17:12:29 +0100 (Sun, 26 Oct 2008) | 1 line
pstricks update (20oct08)
Changed paths:
M /trunk/Master/texmf-dist/doc/generic/pstricks/Changes.latex
A /trunk/Master/texmf-dist/tex/generic/pstricks/pstricks97.tex
M /trunk/Master/texmf-dist/tex/latex/pstricks/pstricks.sty
------------------------------------------------------------------------
r11066 | karl | 2008-10-26 16:48:01 +0100 (Sun, 26 Oct 2008) | 1 line
casyl update (25oct08)
Changed paths:
A /trunk/Master/texmf-dist/doc/latex/casyl/README
D /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.dvi
A /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.pdf
M /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.tex
M /trunk/Master/texmf-dist/fonts/source/public/casyl/casyll10.mf
M /trunk/Master/texmf-dist/fonts/tfm/public/casyl/casyll10.tfm
M /trunk/Master/texmf-dist/tex/latex/casyl/casyltex.sty
M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
------------------------------------------------------------------------
r11065 | karl | 2008-10-26 16:44:52 +0100 (Sun, 26 Oct 2008) | 1 line
xskak 1.2 (20oct08)
Changed paths:
M /trunk/Master/texmf-dist/source/latex/xskak/xskak-src.dtx
M /trunk/Master/texmf-dist/tex/latex/xskak/xskak-keys.sty
M /trunk/Master/texmf-dist/tex/latex/xskak/xskak-nagdef.sty
M /trunk/Master/texmf-dist/tex/latex/xskak/xskak.sty
------------------------------------------------------------------------
r11064 | karl | 2008-10-26 16:43:01 +0100 (Sun, 26 Oct 2008) | 1 line
new latex package syllogism (22oct08)
Changed paths:
A /trunk/Master/texmf-dist/doc/latex/syllogism
A /trunk/Master/texmf-dist/doc/latex/syllogism/README
A /trunk/Master/texmf-dist/doc/latex/syllogism/syllogism.pdf
A /trunk/Master/texmf-dist/doc/latex/syllogism/syllogism.tex
A /trunk/Master/texmf-dist/tex/latex/syllogism
A /trunk/Master/texmf-dist/tex/latex/syllogism/syllogism.sty
M /trunk/Master/tlpkg/tlpsrc/collection-mathextra.tlpsrc
A /trunk/Master/tlpkg/tlpsrc/syllogism.tlpsrc
------------------------------------------------------------------------
r11063 | karl | 2008-10-26 16:41:49 +0100 (Sun, 26 Oct 2008) | 1 line
siunitx 1.1c (22oct08)
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/siunitx/siunitx.pdf
M /trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-DE.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-SIunits.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-UK.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-USA.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-ZA.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-abbr.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-accepted.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-addn.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-astro.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-binary.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-fancynum.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-fancyunits.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-hep.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-hepunits.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-named.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-physical.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-prefix.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-prefixed.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-sistyle.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-synchem.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-units.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-unitsdef.cfg
M /trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty
------------------------------------------------------------------------
r11062 | karl | 2008-10-26 16:41:28 +0100 (Sun, 26 Oct 2008) | 1 line
tablor 4.0.2 (22oct08)
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.0
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.1
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.10
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.12
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.13
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.14
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.15
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.16
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.17
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.18
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.19
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.2
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.20
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.21
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.22
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.23
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.24
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.26
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.27
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.28
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.29
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.3
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.30
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.31
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.32
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.33
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.34
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.36
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.37
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.38
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.39
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.4
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.40
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.41
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.42
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.43
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.44
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.45
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.46
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.5
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.6
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.7
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.8
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.9
M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.mp
M /trunk/Master/texmf-dist/doc/latex/tablor/README
M /trunk/Master/texmf-dist/doc/latex/tablor/README-fr.txt
M /trunk/Master/texmf-dist/doc/latex/tablor/tablor.html
M /trunk/Master/texmf-dist/doc/latex/tablor/tablor.pdf
M /trunk/Master/texmf-dist/doc/latex/tablor/tablor.tex
A /trunk/Master/texmf-dist/tex/latex/tablor/tablor-xetex.sty
M /trunk/Master/texmf-dist/tex/latex/tablor/tablor.sty
------------------------------------------------------------------------
r11061 | karl | 2008-10-26 16:40:51 +0100 (Sun, 26 Oct 2008) | 1 line
notes2bib 1.6 (22oct08)
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/notes2bib/notes2bib.pdf
M /trunk/Master/texmf-dist/doc/latex/notes2bib/xnotes2bib.pdf
M /trunk/Master/texmf-dist/source/latex/notes2bib/notes2bib.dtx
M /trunk/Master/texmf-dist/source/latex/notes2bib/xnotes2bib.dtx
M /trunk/Master/texmf-dist/tex/latex/notes2bib/notes2bib.sty
M /trunk/Master/texmf-dist/tex/latex/notes2bib/xnotes2bib.sty
------------------------------------------------------------------------
r11060 | karl | 2008-10-26 16:40:26 +0100 (Sun, 26 Oct 2008) | 1 line
todonotes update (23oct08)
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/todonotes/todonotes.pdf
M /trunk/Master/texmf-dist/doc/latex/todonotes/todonotesexample.pdf
M /trunk/Master/texmf-dist/doc/latex/todonotes/todonotesexample.tex
M /trunk/Master/texmf-dist/source/latex/todonotes/todonotes.dtx
M /trunk/Master/texmf-dist/tex/latex/todonotes/todonotes.sty
------------------------------------------------------------------------
r11059 | karl | 2008-10-26 02:51:10 +0200 (Sun, 26 Oct 2008) | 2 lines
exit 0 on success
Changed paths:
M /trunk/Master/tlpkg/bin/tl-update-containers
------------------------------------------------------------------------
r11058 | karl | 2008-10-26 02:35:33 +0200 (Sun, 26 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11057 | preining | 2008-10-26 01:52:29 +0200 (Sun, 26 Oct 2008) | 2 lines
fix warning if a dangling symlink should be packed
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLPOBJ.pm
------------------------------------------------------------------------
r11056 | karl | 2008-10-25 22:31:32 +0200 (Sat, 25 Oct 2008) | 2 lines
also update the updater executable.
Changed paths:
M /trunk/Master/tlpkg/bin/tl-update-tlcritical
------------------------------------------------------------------------
r11055 | karl | 2008-10-25 22:28:07 +0200 (Sat, 25 Oct 2008) | 4 lines
attempt to implement Norbert's advice to account
for the texlive.infra / bin-texlive changes, by
checking if there is any texlive.infra.win32 package.
Changed paths:
M /trunk/Master/tlpkg/bin/tl-update-nsis
------------------------------------------------------------------------
r11054 | karl | 2008-10-25 22:20:05 +0200 (Sat, 25 Oct 2008) | 1 line
add tlpkg/doc to 00texlive.core to avoid consistency complaints, doc fixes, small script to update tlcritical
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
A /trunk/Master/tlpkg/bin/tl-update-tlcritical
M /trunk/Master/tlpkg/tlpsrc/00texlive.core.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
------------------------------------------------------------------------
r11053 | karl | 2008-10-25 22:13:12 +0200 (Sat, 25 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11052 | karl | 2008-10-25 22:05:04 +0200 (Sat, 25 Oct 2008) | 3 lines
(docpattern): reduce to just tlpkg/README, in
hopes that the tlpkg/doc error messages will go away.
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
------------------------------------------------------------------------
r11051 | karl | 2008-10-25 19:27:45 +0200 (Sat, 25 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11050 | karl | 2008-10-25 19:23:25 +0200 (Sat, 25 Oct 2008) | 2 lines
oops, man files are back in bin-texlive too.
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
------------------------------------------------------------------------
r11049 | karl | 2008-10-25 19:17:30 +0200 (Sat, 25 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11048 | karl | 2008-10-25 19:04:44 +0200 (Sat, 25 Oct 2008) | 1 line
restore tlmgr to bin-texlive, and make bin-texlive critical again, in hopes that updates from an iso installation will work again
Changed paths:
M /trunk/Master/tlpkg/bin/tl-update-containers
M /trunk/Master/tlpkg/tlpsrc/bin-texlive.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
------------------------------------------------------------------------
r11047 | karl | 2008-10-25 15:21:45 +0200 (Sat, 25 Oct 2008) | 7 lines
TLUtils.pm (conv_to_win_path): rename to conv_to_w32_path, since Windows
is not a win.
(setup_programs): painfully strip off quotes added by conv_to_w32_path
for the sake of the file test.
TLPostActions.pm: change calls.
TLMedia.pm: no need to import conv_to_win_path, it isn't used.
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLMedia.pm
M /trunk/Master/tlpkg/TeXLive/TLPostActions.pm
M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r11046 | karl | 2008-10-25 03:54:58 +0200 (Sat, 25 Oct 2008) | 1 line
regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog
Changed paths:
M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11045 | karl | 2008-10-25 03:24:38 +0200 (Sat, 25 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11044 | karl | 2008-10-25 01:54:52 +0200 (Sat, 25 Oct 2008) | 2 lines
put rev numbers in local-newer-than-media message
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11043 | karl | 2008-10-24 20:37:09 +0200 (Fri, 24 Oct 2008) | 1 line
report source and target directories, not install-tl location
Changed paths:
M /trunk/Master/install-tl
M /trunk/Master/tlpkg/bin/tl-update-tlnet
------------------------------------------------------------------------
r11042 | karl | 2008-10-24 03:54:50 +0200 (Fri, 24 Oct 2008) | 1 line
regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog
Changed paths:
M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11041 | karl | 2008-10-24 03:24:41 +0200 (Fri, 24 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11040 | karl | 2008-10-24 01:40:08 +0200 (Fri, 24 Oct 2008) | 1 line
quote PATH arg to protect against spaces
Changed paths:
M /trunk/Build/source/texk/tetex/ChangeLog
M /trunk/Build/source/texk/tetex/Makefile.in
------------------------------------------------------------------------
r11039 | karl | 2008-10-23 20:56:51 +0200 (Thu, 23 Oct 2008) | 4 lines
(-scheme): new command line option to conveniently
change the default installation scheme. Some
wording changes.
Changed paths:
M /trunk/Master/install-tl
------------------------------------------------------------------------
r11038 | karl | 2008-10-23 15:42:13 +0200 (Thu, 23 Oct 2008) | 6 lines
(action_update): if pkg foo is new, also consider
foo.ARCH to be new, similar to what we did for
removals a little while back.
Also give an info msg when --dry-run is given, throughout.
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11037 | karl | 2008-10-23 15:22:21 +0200 (Thu, 23 Oct 2008) | 3 lines
(action_update): announce if dry run; silently
accept -n as a synonym for --dry-run.
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11036 | karl | 2008-10-23 15:15:47 +0200 (Thu, 23 Oct 2008) | 2 lines
(action_show): show revision number if installed.
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11035 | karl | 2008-10-23 03:56:12 +0200 (Thu, 23 Oct 2008) | 1 line
regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog
Changed paths:
M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11034 | karl | 2008-10-23 03:37:35 +0200 (Thu, 23 Oct 2008) | 1 line
/home/texlive/karl/Master/tlpkg/bin/tl-update-auto
Changed paths:
M /trunk/Master/texmf/doc/man/man1/tlmgr.1
M /trunk/Master/texmf/doc/man/man1/tlmgr.pdf
------------------------------------------------------------------------
r11033 | karl | 2008-10-23 03:26:25 +0200 (Thu, 23 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11032 | preining | 2008-10-23 01:50:23 +0200 (Thu, 23 Oct 2008) | 2 lines
remove even more kpsewhich traces
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11031 | karl | 2008-10-23 01:48:29 +0200 (Thu, 23 Oct 2008) | 4 lines
(@getopt_configure_subopts): new list of strings
for each action to pass to
Getopt::Long::Configure; include permute.
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11030 | preining | 2008-10-23 01:48:27 +0200 (Thu, 23 Oct 2008) | 2 lines
remove more traces of kpsewhich
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r11029 | karl | 2008-10-23 01:34:39 +0200 (Thu, 23 Oct 2008) | 15 lines
TLMedia.pm: message capitalizations.
TLUtils.pm (kpsewhich): remove this function,
since '...' fails on Windows. From Ruben Prins,
22 Oct 2008 23:53:37.
tlmgr.pl: change the two calls to kpsewhich() to
use direct `kpsewhich -var-value=...` invocations,
as is done everywhere else. (Also use "re" in
logging reinstalls, and msg changes.)
Maybe someday we will write a kpse_var_value
function to be used everywhere and checks its
argument so the single quotes can be safely omitted.
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
M /trunk/Master/tlpkg/TeXLive/TLMedia.pm
M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r11028 | karl | 2008-10-22 23:58:39 +0200 (Wed, 22 Oct 2008) | 2 lines
updmap-local.cfg, not .cnf
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11027 | karl | 2008-10-22 23:26:26 +0200 (Wed, 22 Oct 2008) | 1 line
do not force all non-true values to false, for the sake of LW35; from Aaron Chen, 17 Oct 2008 01:22:24
Changed paths:
M /trunk/Build/source/texk/tetex/ChangeLog
M /trunk/Build/source/texk/tetex/updmap.pl
M /trunk/Master/texmf/scripts/tetex/updmap.pl
------------------------------------------------------------------------
r11026 | karl | 2008-10-22 23:21:17 +0200 (Wed, 22 Oct 2008) | 2 lines
(texmf/xindy): should be runpattern not docpattern.
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/xindy.tlpsrc
------------------------------------------------------------------------
r11025 | karl | 2008-10-22 22:39:28 +0200 (Wed, 22 Oct 2008) | 2 lines
wording
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11024 | karl | 2008-10-22 03:54:22 +0200 (Wed, 22 Oct 2008) | 1 line
regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog
Changed paths:
M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11023 | karl | 2008-10-22 03:38:13 +0200 (Wed, 22 Oct 2008) | 1 line
autoupdate via tlmgr generate language.def
Changed paths:
M /trunk/Master/texmf/tex/generic/config/language.def
------------------------------------------------------------------------
r11022 | karl | 2008-10-22 03:24:15 +0200 (Wed, 22 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11021 | karl | 2008-10-22 01:53:44 +0200 (Wed, 22 Oct 2008) | 2 lines
(righthyphenmin): set to 3, per frenchb.ldf.
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/hyphen-french.tlpsrc
------------------------------------------------------------------------
r11020 | karl | 2008-10-22 01:52:05 +0200 (Wed, 22 Oct 2008) | 1 line
.
Changed paths:
M /trunk/Master/texmf-dist/tex/texinfo/txi-fr.tex
------------------------------------------------------------------------
r11019 | karl | 2008-10-21 03:56:47 +0200 (Tue, 21 Oct 2008) | 1 line
regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog
Changed paths:
M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11018 | karl | 2008-10-21 03:24:46 +0200 (Tue, 21 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11017 | reinhardk | 2008-10-20 23:19:51 +0200 (Mon, 20 Oct 2008) | 3 lines
getnonfreefonts.pl: latest version added to linked_scripts.
texlua wrappers: fixed PATH (wget needed by getnonfreefonts).
Changed paths:
M /trunk/Build/source/texk/texlive/linked_scripts/getnonfreefonts.pl
M /trunk/Master/bin/win32/tl-w32-texdoc-wrapper.texlua
M /trunk/Master/bin/win32/tl-w32-wrapper.texlua
------------------------------------------------------------------------
r11016 | karl | 2008-10-20 03:59:17 +0200 (Mon, 20 Oct 2008) | 1 line
regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog
Changed paths:
M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11015 | karl | 2008-10-20 03:24:35 +0200 (Mon, 20 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11014 | reinhardk | 2008-10-19 16:53:23 +0200 (Sun, 19 Oct 2008) | 2 lines
latexmk.bat: Use the wrapper in order to find Perl.
Changed paths:
M /trunk/Master/bin/win32/latexmk.bat
------------------------------------------------------------------------
r11013 | reinhardk | 2008-10-19 16:34:28 +0200 (Sun, 19 Oct 2008) | 2 lines
getnonfreefonts.pl: --http added, Windows related bug fixed.
Changed paths:
M /trunk/Master/texmf/scripts/texlive/getnonfreefonts.pl
------------------------------------------------------------------------
r11012 | reinhardk | 2008-10-19 13:36:55 +0200 (Sun, 19 Oct 2008) | 2 lines
texlua-wrappers: fixed bug in PATH settings for Perl.
Changed paths:
M /trunk/Master/bin/win32/tl-w32-texdoc-wrapper.texlua
M /trunk/Master/bin/win32/tl-w32-wrapper.texlua
------------------------------------------------------------------------
r11011 | karl | 2008-10-19 03:57:17 +0200 (Sun, 19 Oct 2008) | 1 line
regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog
Changed paths:
M /trunk/Build/logs/svnlog
A /trunk/Build/logs/svnlog.10998.gz
------------------------------------------------------------------------
------------------------------------------------------------------------
r11010 | karl | 2008-10-19 03:25:30 +0200 (Sun, 19 Oct 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11009 | preining | 2008-10-18 17:35:26 +0200 (Sat, 18 Oct 2008) | 2 lines
start work on supporting local copies of remote database
Changed paths:
A /trunk/Master/tlpkg/etc/tlmgr-use-saved-remote-tlpdb.patch
------------------------------------------------------------------------
r11008 | preining | 2008-10-18 17:05:32 +0200 (Sat, 18 Oct 2008) | 2 lines
add a todo idea
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11007 | preining | 2008-10-18 16:50:46 +0200 (Sat, 18 Oct 2008) | 2 lines
add a todo found on the guit meeting
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11006 | preining | 2008-10-18 13:39:05 +0200 (Sat, 18 Oct 2008) | 2 lines
fix two stupid bugs in texlive.tlpdb.lzma downloading
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLPDB.pm
------------------------------------------------------------------------
r11005 | preining | 2008-10-18 11:05:27 +0200 (Sat, 18 Oct 2008) | 2 lines
fix for tlmgr to auto-reinstalled packages that got auto-removed
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11004 | preining | 2008-10-18 10:43:06 +0200 (Sat, 18 Oct 2008) | 2 lines
remove old talk.tex
Changed paths:
D /trunk/Master/tlpkg/doc/guit08/talk.tex
------------------------------------------------------------------------
r11003 | preining | 2008-10-18 10:38:08 +0200 (Sat, 18 Oct 2008) | 2 lines
do not warn on packages that have been auto-removed
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11002 | preining | 2008-10-18 10:01:04 +0200 (Sat, 18 Oct 2008) | 2 lines
only remove a container if it is present
Changed paths:
M /trunk/Master/tlpkg/bin/tl-update-containers
------------------------------------------------------------------------
r11001 | preining | 2008-10-18 09:54:09 +0200 (Sat, 18 Oct 2008) | 2 lines
fix a next that should be a return when running tlmgr --dry-run on w32
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11000 | preining | 2008-10-18 09:53:42 +0200 (Sat, 18 Oct 2008) | 3 lines
tl-update-containers: .source and .doc are not real packages, only the
containers should be removed
Changed paths:
M /trunk/Master/tlpkg/bin/tl-update-containers
------------------------------------------------------------------------
r10999 | karl | 2008-10-18 04:01:27 +0200 (Sat, 18 Oct 2008) | 1 line
regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog
Changed paths:
M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
|