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
925
926
927
928
929
930
931
932
933
934
935
936
937
938
|
------------------------------------------------------------------------
r9064 | karl | 2008-06-27 03:21:46 +0200 (Fri, 27 Jun 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r9063 | karl | 2008-06-27 03:17:53 +0200 (Fri, 27 Jun 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/texmf-dist/ls-R
------------------------------------------------------------------------
r9062 | preining | 2008-06-26 22:29:40 +0200 (Thu, 26 Jun 2008) | 2 lines
undo stupid changes in tlmgrgui ...
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
------------------------------------------------------------------------
r9061 | preining | 2008-06-26 19:34:25 +0200 (Thu, 26 Jun 2008) | 2 lines
tlmgrgui: run updater tlmgr process only when needed
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
------------------------------------------------------------------------
r9060 | preining | 2008-06-26 18:58:21 +0200 (Thu, 26 Jun 2008) | 2 lines
do not save an emptry catalogue-version to the tlpdb
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLPOBJ.pm
------------------------------------------------------------------------
r9059 | preining | 2008-06-26 18:50:24 +0200 (Thu, 26 Jun 2008) | 2 lines
get rid of some warnings, and fix some tlpsrc
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLPSRC.pm
M /trunk/Master/tlpkg/TeXLive/TLTREE.pm
M /trunk/Master/tlpkg/tlpsrc/00texlive.installer.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/xetex.tlpsrc
------------------------------------------------------------------------
r9058 | karl | 2008-06-26 18:00:28 +0200 (Thu, 26 Jun 2008) | 1 line
consistency fixes, merge a2ping, xetex base maps in base
Changed paths:
A /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/base
A /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/base/qx-unicode.map (from /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/qx-unicode.map:9053)
A /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/base/qx-unicode.tec (from /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/qx-unicode.tec:9053)
A /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/base/tex-text.map (from /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/tex-text.map:9053)
A /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/base/tex-text.tec (from /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/tex-text.tec:9053)
D /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/qx-unicode.map
D /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/qx-unicode.tec
D /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/tex-text.map
D /trunk/Master/texmf-dist/fonts/misc/xetex/fontmapping/tex-text.tec
M /trunk/Master/tlpkg/tlpsrc/a2ping.tlpsrc
D /trunk/Master/tlpkg/tlpsrc/bin-a2ping.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/bin-texlive.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/context.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/xetex.tlpsrc
------------------------------------------------------------------------
------------------------------------------------------------------------
r9053 | karl | 2008-06-26 03:23:31 +0200 (Thu, 26 Jun 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r9052 | karl | 2008-06-26 03:17:40 +0200 (Thu, 26 Jun 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/texmf/ls-R
M /trunk/Master/texmf-dist/ls-R
M /trunk/Master/texmf-doc/ls-R
------------------------------------------------------------------------
r9051 | karl | 2008-06-26 01:51:54 +0200 (Thu, 26 Jun 2008) | 1 line
rm FAQ-ge, nonfree; hopefully it will be rereleased with a free license soon, and then we can call it FAQ-de too
Changed paths:
D /trunk/Master/texmf-doc/doc/german/FAQ-ge/de-tex-faq.pdf
D /trunk/Master/texmf-doc/doc/german/FAQ-ge/html
D /trunk/Master/texmf-doc/doc/german/FAQ-ge/index.html
D /trunk/Master/texmf-doc/doc/german/FAQ-ge/txt
D /trunk/Master/tlpkg/tlpsrc/FAQ-ge.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/collection-documentation-german.tlpsrc
------------------------------------------------------------------------
r9050 | karl | 2008-06-25 23:50:50 +0200 (Wed, 25 Jun 2008) | 2 lines
luatools.lua and mtxrun.lua only needed on w32.
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/bin-context.tlpsrc
------------------------------------------------------------------------
r9049 | preining | 2008-06-25 22:49:02 +0200 (Wed, 25 Jun 2008) | 2 lines
fix installer ..
Changed paths:
M /trunk/Master/install-tl
------------------------------------------------------------------------
r9048 | preining | 2008-06-25 21:40:41 +0200 (Wed, 25 Jun 2008) | 2 lines
check-execute-consistency: do not report possibly problematic pattern files
Changed paths:
M /trunk/Master/tlpkg/bin/check-execute-consistency
------------------------------------------------------------------------
r9047 | karl | 2008-06-25 19:46:16 +0200 (Wed, 25 Jun 2008) | 1 line
merge bin-xetex into xetex
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLPostActions.pm
D /trunk/Master/tlpkg/tlpsrc/bin-xetex.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/collection-xetex.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/xetex.tlpsrc
------------------------------------------------------------------------
r9046 | karl | 2008-06-25 19:43:52 +0200 (Wed, 25 Jun 2008) | 1 line
move xetex doc to base, and give positive package list instead of exceptions
Changed paths:
D /trunk/Master/texmf-dist/doc/xetex/XeTeX-notes.pdf
D /trunk/Master/texmf-dist/doc/xetex/XeTeX-notes.tex
A /trunk/Master/texmf-dist/doc/xetex/base
A /trunk/Master/texmf-dist/doc/xetex/base/XeTeX-notes.pdf (from /trunk/Master/texmf-dist/doc/xetex/XeTeX-notes.pdf:9027)
A /trunk/Master/texmf-dist/doc/xetex/base/XeTeX-notes.tex (from /trunk/Master/texmf-dist/doc/xetex/XeTeX-notes.tex:9027)
M /trunk/Master/tlpkg/tlpsrc/xetex.tlpsrc
------------------------------------------------------------------------
r9045 | karl | 2008-06-25 19:39:06 +0200 (Wed, 25 Jun 2008) | 1 line
fixes for file coverage report
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/00texlive.core.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/a2ping.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/bin-kpathsea.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/bin-tetex.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/bin-tlgs.win32.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/context.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/xetex.tlpsrc
------------------------------------------------------------------------
r9044 | mpg | 2008-06-25 17:27:09 +0200 (Wed, 25 Jun 2008) | 1 line
chapterfolder v2.0 2005-11-24, new in tlpkg-ctan-check
Changed paths:
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/README
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/aclocal.m4
A /trunk/Master/texmf-dist/doc/latex/chapterfolder/chapterfolder.pdf
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/configure
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/configure.in
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/documentation.pdf
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/documentation.tex
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/intro/intro.tex
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/util/cha/cha.tex
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/util/file/file.tex
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/util/part/part.tex
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/util/sec/sec.tex
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/util/sub/sub.tex
D /trunk/Master/texmf-dist/doc/latex/chapterfolder/util/util.tex
D /trunk/Master/texmf-dist/source/latex/chapterfolder/Makefile.in
A /trunk/Master/texmf-dist/source/latex/chapterfolder/chapterfolder.dtx
A /trunk/Master/texmf-dist/source/latex/chapterfolder/chapterfolder.ins
M /trunk/Master/texmf-dist/tex/latex/chapterfolder/chapterfolder.sty
------------------------------------------------------------------------
r9043 | mpg | 2008-06-25 17:19:34 +0200 (Wed, 25 Jun 2008) | 1 line
add an exception for cc-pl
Changed paths:
M /trunk/Master/tlpkg/bin/tlpkginfo
------------------------------------------------------------------------
r9042 | mpg | 2008-06-25 14:55:51 +0200 (Wed, 25 Jun 2008) | 1 line
isodate update, entring tlpkg-ctan-check
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/isodate/ChangeLog
M /trunk/Master/texmf-dist/doc/latex/isodate/README
D /trunk/Master/texmf-dist/doc/latex/isodate/install.bat
D /trunk/Master/texmf-dist/doc/latex/isodate/install.sh
M /trunk/Master/texmf-dist/doc/latex/isodate/isodate.pdf
M /trunk/Master/texmf-dist/doc/latex/isodate/isodate.xml
M /trunk/Master/texmf-dist/doc/latex/isodate/testdate.pdf
M /trunk/Master/texmf-dist/doc/latex/isodate/testdate.tex
D /trunk/Master/texmf-dist/doc/latex/isodate/testisodate_without_babel.pdf
M /trunk/Master/texmf-dist/source/latex/isodate/isodate.dtx
M /trunk/Master/texmf-dist/source/latex/isodate/isodate.ins
M /trunk/Master/texmf-dist/tex/latex/isodate/danish.idf
M /trunk/Master/texmf-dist/tex/latex/isodate/english.idf
M /trunk/Master/texmf-dist/tex/latex/isodate/french.idf
M /trunk/Master/texmf-dist/tex/latex/isodate/german.idf
M /trunk/Master/texmf-dist/tex/latex/isodate/isodate.sty
A /trunk/Master/texmf-dist/tex/latex/isodate/italian.idf
M /trunk/Master/texmf-dist/tex/latex/isodate/norsk.idf
M /trunk/Master/texmf-dist/tex/latex/isodate/swedish.idf
M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
------------------------------------------------------------------------
r9041 | mpg | 2008-06-25 14:43:43 +0200 (Wed, 25 Jun 2008) | 1 line
new --check-all option
Changed paths:
M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
------------------------------------------------------------------------
r9040 | mpg | 2008-06-25 13:34:57 +0200 (Wed, 25 Jun 2008) | 1 line
thmtools patch update v0.1beta6 2008/06/22
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/thmtools/TODO
D /trunk/Master/texmf-dist/doc/latex/thmtools/demo.tex
M /trunk/Master/texmf-dist/doc/latex/thmtools/thmtools.pdf
D /trunk/Master/texmf-dist/doc/latex/thmtools/thmtools.tex
M /trunk/Master/texmf-dist/source/latex/thmtools/aliasctr.dtx
A /trunk/Master/texmf-dist/source/latex/thmtools/parseargs.dtx
M /trunk/Master/texmf-dist/source/latex/thmtools/thm-autoref.dtx
M /trunk/Master/texmf-dist/source/latex/thmtools/thm-kv.dtx
M /trunk/Master/texmf-dist/source/latex/thmtools/thm-listof.dtx
M /trunk/Master/texmf-dist/source/latex/thmtools/thm-patch.dtx
M /trunk/Master/texmf-dist/source/latex/thmtools/thm-restate.dtx
A /trunk/Master/texmf-dist/source/latex/thmtools/thmtools.dtx
M /trunk/Master/texmf-dist/source/latex/thmtools/thmtools.ins
M /trunk/Master/texmf-dist/source/latex/thmtools/unique.dtx
A /trunk/Master/texmf-dist/tex/latex/thmtools/parseargs.sty
M /trunk/Master/texmf-dist/tex/latex/thmtools/thm-autoref.sty
M /trunk/Master/texmf-dist/tex/latex/thmtools/thm-kv.sty
M /trunk/Master/texmf-dist/tex/latex/thmtools/thm-listof.sty
M /trunk/Master/texmf-dist/tex/latex/thmtools/thm-patch.sty
M /trunk/Master/texmf-dist/tex/latex/thmtools/thm-restate.sty
A /trunk/Master/texmf-dist/tex/latex/thmtools/thmtools.sty
------------------------------------------------------------------------
r9039 | mpg | 2008-06-25 13:29:25 +0200 (Wed, 25 Jun 2008) | 1 line
rotating v1.13 2008/06/06
Changed paths:
D /trunk/Master/texmf-dist/doc/latex/rotating/cat.eps
D /trunk/Master/texmf-dist/doc/latex/rotating/examples.tex
M /trunk/Master/texmf-dist/doc/latex/rotating/rotating.pdf
M /trunk/Master/texmf-dist/source/latex/rotating/rotating.dtx
M /trunk/Master/texmf-dist/tex/latex/rotating/rotating.sty
------------------------------------------------------------------------
r9038 | mpg | 2008-06-25 13:25:08 +0200 (Wed, 25 Jun 2008) | 1 line
pst-slpe v0.01 2008/06/19
Changed paths:
M /trunk/Master/texmf-dist/doc/generic/pst-slpe/pst-slpe.pdf
M /trunk/Master/texmf-dist/source/generic/pst-slpe/Makefile
M /trunk/Master/texmf-dist/source/generic/pst-slpe/pst-slpe.dtx
M /trunk/Master/texmf-dist/tex/latex/pst-slpe/pst-slpe.sty
M /trunk/Master/tlpkg/bin/ctan2tds
------------------------------------------------------------------------
r9037 | preining | 2008-06-25 13:17:07 +0200 (Wed, 25 Jun 2008) | 2 lines
make install-tl working on relative pathes, too
Changed paths:
M /trunk/Master/install-tl
------------------------------------------------------------------------
r9036 | mpg | 2008-06-25 13:16:05 +0200 (Wed, 25 Jun 2008) | 1 line
pdfpages 0.4f 2008/06/22
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/pdfpages/pdfpages.pdf
M /trunk/Master/texmf-dist/source/latex/pdfpages/pdfpages.dtx
M /trunk/Master/texmf-dist/tex/latex/pdfpages/pdfpages.sty
M /trunk/Master/texmf-dist/tex/latex/pdfpages/ppnull.def
M /trunk/Master/texmf-dist/tex/latex/pdfpages/pppdftex.def
M /trunk/Master/texmf-dist/tex/latex/pdfpages/ppvtex.def
M /trunk/Master/texmf-dist/tex/latex/pdfpages/ppxetex.def
------------------------------------------------------------------------
r9035 | mpg | 2008-06-25 13:13:36 +0200 (Wed, 25 Jun 2008) | 1 line
mkpattern v1.2 2008/06/22
Changed paths:
M /trunk/Master/texmf-dist/doc/plain/mkpattern/README
M /trunk/Master/texmf-dist/doc/plain/mkpattern/mkpatdoc.tex
M /trunk/Master/texmf-dist/doc/plain/mkpattern/mkpatter.pdf
M /trunk/Master/texmf-dist/tex/plain/mkpattern/mkpatter.tex
------------------------------------------------------------------------
r9034 | mpg | 2008-06-25 13:11:14 +0200 (Wed, 25 Jun 2008) | 1 line
elsevier-bib v1.4 2008/06/24
Changed paths:
M /trunk/Master/texmf-dist/bibtex/bst/elsevier-bib/elsart-num-sort.bst
M /trunk/Master/texmf-dist/doc/bibtex/elsevier-bib/README-bst
------------------------------------------------------------------------
r9033 | mpg | 2008-06-25 13:08:49 +0200 (Wed, 25 Jun 2008) | 1 line
csquotes v4.2 200_/06/24
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/csquotes/README
M /trunk/Master/texmf-dist/doc/latex/csquotes/csquotes.pdf
M /trunk/Master/texmf-dist/doc/latex/csquotes/csquotes.tex
M /trunk/Master/texmf-dist/doc/latex/csquotes/tutorial.tex
M /trunk/Master/texmf-dist/tex/latex/csquotes/csquotes.cfg
M /trunk/Master/texmf-dist/tex/latex/csquotes/csquotes.def
M /trunk/Master/texmf-dist/tex/latex/csquotes/csquotes.sty
------------------------------------------------------------------------
r9032 | preining | 2008-06-25 12:53:02 +0200 (Wed, 25 Jun 2008) | 2 lines
update the texlive.tlpdb after removing files
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r9031 | preining | 2008-06-25 12:44:22 +0200 (Wed, 25 Jun 2008) | 3 lines
remove texmf/tex/generic/hyphen/skhyphen.ex since it is in csplain's dir
remove also the pattern line in hyphen-slovak
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/skhyphen.ex
M /trunk/Master/tlpkg/tlpsrc/hyphen-slovak.tlpsrc
------------------------------------------------------------------------
r9030 | preining | 2008-06-25 12:38:30 +0200 (Wed, 25 Jun 2008) | 3 lines
remove texmf/tex/generic/hyphen/czhyphen.ex, it is also in csplain package
and its base directory. remove also the tlpsrc line for it in hyphen-czech
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/czhyphen.ex
M /trunk/Master/tlpkg/tlpsrc/hyphen-czech.tlpsrc
------------------------------------------------------------------------
------------------------------------------------------------------------
r9027 | karl | 2008-06-25 03:24:29 +0200 (Wed, 25 Jun 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r9026 | karl | 2008-06-25 03:19:21 +0200 (Wed, 25 Jun 2008) | 1 line
autoupdate
Changed paths:
M /trunk/Master/texmf/ls-R
M /trunk/Master/texmf-dist/ls-R
M /trunk/Master/texmf-doc/ls-R
------------------------------------------------------------------------
r9024 | staw | 2008-06-25 02:10:00 +0200 (Wed, 25 Jun 2008) | 1 line
corrections in polish docs
Changed paths:
M /trunk/Master/texmf-doc/doc/polish/guides-pl/00readme
M /trunk/Master/texmf-doc/doc/polish/guides-pl/index.html
M /trunk/Master/texmf-doc/doc/polish/tex-virtual-academy-pl/cototex.html
D /trunk/Master/texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/latex-pl.htm
A /trunk/Master/texmf-doc/doc/polish/tex-virtual-academy-pl/poczatki/latex-pl.html
------------------------------------------------------------------------
r9023 | preining | 2008-06-24 23:10:06 +0200 (Tue, 24 Jun 2008) | 2 lines
update texlive.tlpdb after all these changes
Changed paths:
M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r9022 | preining | 2008-06-24 22:53:23 +0200 (Tue, 24 Jun 2008) | 2 lines
re-add plhyph.tex since we need it for mex and friends
Changed paths:
A /trunk/Master/texmf/tex/generic/hyphen/plhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-polish.tlpsrc
------------------------------------------------------------------------
r9021 | preining | 2008-06-24 22:31:24 +0200 (Tue, 24 Jun 2008) | 2 lines
use call in tlmgr generated batch file, I believe Staszek
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r9020 | preining | 2008-06-24 22:28:55 +0200 (Tue, 24 Jun 2008) | 2 lines
remove cathyph file since all files including it have been removed
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/cathyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-base.tlpsrc
------------------------------------------------------------------------
r9019 | preining | 2008-06-24 22:28:02 +0200 (Tue, 24 Jun 2008) | 2 lines
remove turkish pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/tkhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-turkish.tlpsrc
------------------------------------------------------------------------
r9018 | preining | 2008-06-24 22:27:36 +0200 (Tue, 24 Jun 2008) | 2 lines
remove swedish pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/svhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-swedish.tlpsrc
------------------------------------------------------------------------
r9017 | preining | 2008-06-24 22:27:07 +0200 (Tue, 24 Jun 2008) | 2 lines
remove uppersorbian pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/sorhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-uppersorbian.tlpsrc
------------------------------------------------------------------------
r9016 | preining | 2008-06-24 22:26:26 +0200 (Tue, 24 Jun 2008) | 2 lines
remove slovak pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/skhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-slovak.tlpsrc
------------------------------------------------------------------------
r9015 | preining | 2008-06-24 22:25:25 +0200 (Tue, 24 Jun 2008) | 2 lines
remove slovenian pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/sihyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-slovenian.tlpsrc
------------------------------------------------------------------------
r9014 | preining | 2008-06-24 22:24:52 +0200 (Tue, 24 Jun 2008) | 2 lines
remove romanian hyphen and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/rohyphen.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-romanian.tlpsrc
------------------------------------------------------------------------
r9013 | preining | 2008-06-24 22:24:24 +0200 (Tue, 24 Jun 2008) | 2 lines
remove chinese pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/pyhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-chinese.tlpsrc
------------------------------------------------------------------------
r9012 | preining | 2008-06-24 22:23:53 +0200 (Tue, 24 Jun 2008) | 2 lines
remove poruguese pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/pthyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-portuguese.tlpsrc
------------------------------------------------------------------------
r9011 | preining | 2008-06-24 22:23:24 +0200 (Tue, 24 Jun 2008) | 2 lines
remove polish pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/plhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-polish.tlpsrc
------------------------------------------------------------------------
r9010 | preining | 2008-06-24 22:22:52 +0200 (Tue, 24 Jun 2008) | 2 lines
remove dutch pattern and tlpsrc lines
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/nehyph96.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-dutch.tlpsrc
------------------------------------------------------------------------
r9009 | preining | 2008-06-24 22:22:19 +0200 (Tue, 24 Jun 2008) | 2 lines
remove norwegian pattern and tlpsrc lines
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/nbhyph.tex
D /trunk/Master/texmf/tex/generic/hyphen/nnhyph.tex
D /trunk/Master/texmf/tex/generic/hyphen/nohyphbx.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-norwegian.tlpsrc
------------------------------------------------------------------------
r9008 | preining | 2008-06-24 22:21:03 +0200 (Tue, 24 Jun 2008) | 2 lines
remove mongolian patterns and tlpsrc lines
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/mnhyph.tex
D /trunk/Master/texmf/tex/generic/hyphen/mnhyphn.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-mongolian.tlpsrc
------------------------------------------------------------------------
r9007 | preining | 2008-06-24 22:20:25 +0200 (Tue, 24 Jun 2008) | 2 lines
remove italian pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/ithyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-italian.tlpsrc
------------------------------------------------------------------------
r9006 | preining | 2008-06-24 22:19:46 +0200 (Tue, 24 Jun 2008) | 2 lines
remove indonesioan pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/inhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-indonesian.tlpsrc
------------------------------------------------------------------------
r9005 | preining | 2008-06-24 22:19:16 +0200 (Tue, 24 Jun 2008) | 2 lines
remove icelandic pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/icehyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-icelandic.tlpsrc
------------------------------------------------------------------------
r9004 | preining | 2008-06-24 22:18:44 +0200 (Tue, 24 Jun 2008) | 2 lines
remove interlingua pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/iahyphen.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-interlingua.tlpsrc
------------------------------------------------------------------------
r9003 | preining | 2008-06-24 22:18:06 +0200 (Tue, 24 Jun 2008) | 2 lines
remove hungarian pattern and tlpsrc
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/huhyphn.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-hungarian.tlpsrc
------------------------------------------------------------------------
r9002 | preining | 2008-06-24 22:17:10 +0200 (Tue, 24 Jun 2008) | 2 lines
remove croatian pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/hrhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-croatian.tlpsrc
------------------------------------------------------------------------
r9001 | preining | 2008-06-24 22:16:27 +0200 (Tue, 24 Jun 2008) | 2 lines
another greek file removal
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/grahyph4.tex
------------------------------------------------------------------------
r9000 | preining | 2008-06-24 22:15:35 +0200 (Tue, 24 Jun 2008) | 2 lines
remove greek pattern
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/grmhyph4.tex
D /trunk/Master/texmf/tex/generic/hyphen/grphyph4.tex
------------------------------------------------------------------------
r8999 | preining | 2008-06-24 22:13:06 +0200 (Tue, 24 Jun 2008) | 2 lines
remove galician pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/glhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-galician.tlpsrc
------------------------------------------------------------------------
r8998 | preining | 2008-06-24 22:12:28 +0200 (Tue, 24 Jun 2008) | 2 lines
finnish removal
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/fihyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-finnish.tlpsrc
------------------------------------------------------------------------
r8997 | preining | 2008-06-24 22:12:00 +0200 (Tue, 24 Jun 2008) | 2 lines
remove estonian pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/ethyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-estonian.tlpsrc
------------------------------------------------------------------------
r8996 | preining | 2008-06-24 22:11:22 +0200 (Tue, 24 Jun 2008) | 2 lines
remove spanish pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/eshyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-spanish.tlpsrc
------------------------------------------------------------------------
r8995 | preining | 2008-06-24 22:08:48 +0200 (Tue, 24 Jun 2008) | 2 lines
remove esperanto pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/eohyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-esperanto.tlpsrc
------------------------------------------------------------------------
r8994 | staw | 2008-06-24 21:22:11 +0200 (Tue, 24 Jun 2008) | 1 line
lang/pl for gui updated
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgrgui/lang/pl
------------------------------------------------------------------------
r8993 | karl | 2008-06-24 19:49:25 +0200 (Tue, 24 Jun 2008) | 1 line
rm xu-hyphen in favor of new hyph-utf8 world
Changed paths:
D /trunk/Master/texmf-dist/tex/generic/xu-hyphen
M /trunk/Master/tlpkg/tlpsrc/collection-basic.tlpsrc
D /trunk/Master/tlpkg/tlpsrc/xu-hyphen.tlpsrc
------------------------------------------------------------------------
r8992 | karl | 2008-06-24 19:47:24 +0200 (Tue, 24 Jun 2008) | 1 line
remove old teTeX texmf.in, use MAIN,LOCAL consistently (Nobuyuki Tsuchimura, 23 Jun 2008 20:15:47)
Changed paths:
M /trunk/Build/source/texk/kpathsea/texmf.cnf
D /trunk/Build/source/texk/kpathsea/texmf.in-teTeX
M /trunk/Master/texmf/web2c/texmf.cnf
------------------------------------------------------------------------
r8991 | karl | 2008-06-24 19:37:42 +0200 (Tue, 24 Jun 2008) | 1 line
new pstricks package pst-fun 0.03
Changed paths:
A /trunk/Master/texmf-dist/doc/generic/pst-fun
A /trunk/Master/texmf-dist/doc/generic/pst-fun/Changes
A /trunk/Master/texmf-dist/doc/generic/pst-fun/Makefile
A /trunk/Master/texmf-dist/doc/generic/pst-fun/README
A /trunk/Master/texmf-dist/doc/generic/pst-fun/pst-fun-doc.bib
A /trunk/Master/texmf-dist/doc/generic/pst-fun/pst-fun-doc.pdf
A /trunk/Master/texmf-dist/doc/generic/pst-fun/pst-fun-doc.tex
A /trunk/Master/texmf-dist/dvips/pst-fun
A /trunk/Master/texmf-dist/dvips/pst-fun/pst-fun.pro
A /trunk/Master/texmf-dist/tex/generic/pst-fun
A /trunk/Master/texmf-dist/tex/generic/pst-fun/pst-fun.tex
A /trunk/Master/texmf-dist/tex/latex/pst-fun
A /trunk/Master/texmf-dist/tex/latex/pst-fun/pst-fun.sty
M /trunk/Master/tlpkg/bin/ctan2tds
M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
M /trunk/Master/tlpkg/tlpsrc/collection-pstricks.tlpsrc
A /trunk/Master/tlpkg/tlpsrc/pst-fun.tlpsrc
------------------------------------------------------------------------
r8990 | karl | 2008-06-24 19:32:13 +0200 (Tue, 24 Jun 2008) | 1 line
siunitx update (23jun08)
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/siunitx/siunitx-manual.pdf
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/siunitx.sty
------------------------------------------------------------------------
r8989 | karl | 2008-06-24 19:31:41 +0200 (Tue, 24 Jun 2008) | 1 line
expdlist pdf update (23jun08)
Changed paths:
A /trunk/Master/texmf-dist/doc/latex/expdlist/expdlisg.pdf
A /trunk/Master/texmf-dist/doc/latex/expdlist/expdlist.pdf
------------------------------------------------------------------------
r8988 | karl | 2008-06-24 19:31:03 +0200 (Tue, 24 Jun 2008) | 1 line
pstricks xdvipdfmx.con update
Changed paths:
M /trunk/Master/texmf-dist/tex/generic/pstricks/xdvipdfmx.con
------------------------------------------------------------------------
r8987 | karl | 2008-06-24 19:30:23 +0200 (Tue, 24 Jun 2008) | 1 line
mdwtools pdf update (23jun08)
Changed paths:
A /trunk/Master/texmf-dist/doc/latex/mdwtools/at.pdf
A /trunk/Master/texmf-dist/doc/latex/mdwtools/cmtt.pdf
A /trunk/Master/texmf-dist/doc/latex/mdwtools/doafter.pdf
A /trunk/Master/texmf-dist/doc/latex/mdwtools/footnote.pdf
A /trunk/Master/texmf-dist/doc/latex/mdwtools/mdwlist.pdf
A /trunk/Master/texmf-dist/doc/latex/mdwtools/mdwmath.pdf
A /trunk/Master/texmf-dist/doc/latex/mdwtools/mdwtab.pdf
A /trunk/Master/texmf-dist/doc/latex/mdwtools/sverb.pdf
A /trunk/Master/texmf-dist/doc/latex/mdwtools/syntax.pdf
------------------------------------------------------------------------
r8986 | preining | 2008-06-24 19:16:40 +0200 (Tue, 24 Jun 2008) | 2 lines
remove czech pattern and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/czhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-czech.tlpsrc
------------------------------------------------------------------------
r8985 | preining | 2008-06-24 19:15:33 +0200 (Tue, 24 Jun 2008) | 2 lines
remove welsh patterns and tlpsrc line
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/cyhyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-welsh.tlpsrc
------------------------------------------------------------------------
r8984 | preining | 2008-06-24 19:14:00 +0200 (Tue, 24 Jun 2008) | 2 lines
remove catalan hyphenation patterns and line from tlpsrc
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/cahyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-catalan.tlpsrc
------------------------------------------------------------------------
r8983 | preining | 2008-06-24 19:13:04 +0200 (Tue, 24 Jun 2008) | 2 lines
remove basque hyphenation patterns and pattern in tlpsrc file
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/bahyph.sh
D /trunk/Master/texmf/tex/generic/hyphen/bahyph.tex
M /trunk/Master/tlpkg/tlpsrc/hyphen-basque.tlpsrc
------------------------------------------------------------------------
r8982 | preining | 2008-06-24 19:12:26 +0200 (Tue, 24 Jun 2008) | 2 lines
remove serbian hyphen file srhyphc.tex (email Mojca)
Changed paths:
D /trunk/Master/texmf/tex/generic/hyphen/srhyphc.tex
------------------------------------------------------------------------
r8981 | preining | 2008-06-24 19:10:03 +0200 (Tue, 24 Jun 2008) | 2 lines
remove also the other pattern from hyphen-serbian, it does not exists anyway
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/hyphen-serbian.tlpsrc
------------------------------------------------------------------------
r8980 | preining | 2008-06-24 19:08:57 +0200 (Tue, 24 Jun 2008) | 2 lines
remove srhyphc.tex from the patterns in hyphen-serbian
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/hyphen-serbian.tlpsrc
------------------------------------------------------------------------
r8979 | preining | 2008-06-24 19:01:54 +0200 (Tue, 24 Jun 2008) | 4 lines
TLPOBJ.pm: update_from_catalogue strips the bin- prefix if neither the
catalogue key is set nor there is an entry for the full package name
in the catalogue. So bin-aleph gets now the information of aleph etc.
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLPOBJ.pm
------------------------------------------------------------------------
r8978 | karl | 2008-06-24 18:44:48 +0200 (Tue, 24 Jun 2008) | 1 line
consistency checks
Changed paths:
M /trunk/Master/tlpkg/bin/check-wrapper-consistency
M /trunk/Master/tlpkg/tlpsrc/context.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/pgf.tlpsrc
------------------------------------------------------------------------
r8976 | preining | 2008-06-24 14:49:44 +0200 (Tue, 24 Jun 2008) | 3 lines
check-execute-consistency: search for files in hyph-utf8, and if not found
search the whole tlpdb and report them as possibly problematic
Changed paths:
M /trunk/Master/tlpkg/bin/check-execute-consistency
------------------------------------------------------------------------
r8975 | martin | 2008-06-24 13:41:58 +0200 (Tue, 24 Jun 2008) | 3 lines
File was damaged
set mime type
Changed paths:
M /trunk/Master/texmf-dist/doc/latex/etoolbox/etoolbox.pdf
------------------------------------------------------------------------
r8974 | preining | 2008-06-24 11:26:42 +0200 (Tue, 24 Jun 2008) | 2 lines
do not include tl-portable(.bat) in the installer package
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/00texlive.installer.tlpsrc
------------------------------------------------------------------------
r8973 | preining | 2008-06-24 10:02:36 +0200 (Tue, 24 Jun 2008) | 2 lines
hyphen-irish.tlpsrc: remove outdated gahyph file pattern
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/hyphen-irish.tlpsrc
------------------------------------------------------------------------
r8972 | preining | 2008-06-24 09:48:27 +0200 (Tue, 24 Jun 2008) | 2 lines
add comments to TEXDIR/texmf.cnf
Changed paths:
M /trunk/Master/install-tl
------------------------------------------------------------------------
r8971 | preining | 2008-06-24 09:37:25 +0200 (Tue, 24 Jun 2008) | 3 lines
leave texmf/web2c/texmf.cnf untouched, but created TEXDIR/texmf.cnf with
changed values
Changed paths:
M /trunk/Master/install-tl
------------------------------------------------------------------------
r8970 | preining | 2008-06-24 09:13:35 +0200 (Tue, 24 Jun 2008) | 2 lines
tlmgrgui, lang=fr, replace \" with "
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgrgui/lang/fr
------------------------------------------------------------------------
r8969 | preining | 2008-06-24 09:11:44 +0200 (Tue, 24 Jun 2008) | 2 lines
tlmgrgui: add the missing string for translating the win32/update warning
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgrgui/lang/de
M /trunk/Master/texmf/scripts/texlive/tlmgrgui/lang/en.sample
M /trunk/Master/texmf/scripts/texlive/tlmgrgui/lang/fr
M /trunk/Master/texmf/scripts/texlive/tlmgrgui/lang/pl
------------------------------------------------------------------------
r8968 | preining | 2008-06-24 09:06:03 +0200 (Tue, 24 Jun 2008) | 2 lines
tlmgrgui: give a warning that updating needs quitting the program
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
------------------------------------------------------------------------
r8967 | preining | 2008-06-24 08:57:08 +0200 (Tue, 24 Jun 2008) | 2 lines
fix check-execute-consistency, it checks now for existence of files
Changed paths:
M /trunk/Master/tlpkg/bin/check-execute-consistency
------------------------------------------------------------------------
r8966 | preining | 2008-06-24 08:43:24 +0200 (Tue, 24 Jun 2008) | 3 lines
move all the a2ping stuff from bin-tetex to a2ping.tlpsrc, fix multiple
inclusions
Changed paths:
M /trunk/Master/tlpkg/tlpsrc/a2ping.tlpsrc
M /trunk/Master/tlpkg/tlpsrc/bin-tetex.tlpsrc
------------------------------------------------------------------------
r8965 | preining | 2008-06-24 08:39:29 +0200 (Tue, 24 Jun 2008) | 2 lines
fix check-file-coverage
Changed paths:
M /trunk/Master/tlpkg/bin/check-file-coverage
------------------------------------------------------------------------
r8964 | preining | 2008-06-24 08:24:14 +0200 (Tue, 24 Jun 2008) | 2 lines
check-execute-consistency: try checking for the loader hyphen file
Changed paths:
M /trunk/Master/tlpkg/bin/check-execute-consistency
------------------------------------------------------------------------
r8963 | preining | 2008-06-24 07:52:42 +0200 (Tue, 24 Jun 2008) | 3 lines
tlmgr.pl: do not remove anything from the update.bat created stuff for the
moment to allow testing
Changed paths:
M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r8962 | preining | 2008-06-24 07:38:52 +0200 (Tue, 24 Jun 2008) | 2 lines
add bin-kpathsea to the list of packages that need special update treatment
Changed paths:
M /trunk/Master/tlpkg/TeXLive/TLConfig.pm
------------------------------------------------------------------------
|