summaryrefslogtreecommitdiff
path: root/Build/logs/svnlog
blob: aa1a1ee1e68a41f31c1e3926ca255e9f96f1c231 (plain)
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
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
------------------------------------------------------------------------
r9099 | karl | 2008-06-30 03:33:23 +0200 (Mon, 30 Jun 2008) | 1 line

autoupdate via tlmgr generate language

Changed paths:
   M /trunk/Master/texmf/tex/generic/config/language.dat
------------------------------------------------------------------------
r9098 | karl | 2008-06-30 03:22:44 +0200 (Mon, 30 Jun 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r9097 | karl | 2008-06-30 03:17:57 +0200 (Mon, 30 Jun 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf/ls-R
   M /trunk/Master/texmf-dist/ls-R
------------------------------------------------------------------------
r9096 | karl | 2008-06-30 01:24:20 +0200 (Mon, 30 Jun 2008) | 3 lines

(british,UKenglish): add as synonyms.  Torsten
Bronger via Norbert,  27 Jun 2008 12:44:31.


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/hyphen-ukenglish.tlpsrc
------------------------------------------------------------------------
r9095 | karl | 2008-06-30 01:10:27 +0200 (Mon, 30 Jun 2008) | 1 line

hpux update from tim

Changed paths:
   M /trunk/Master/bin/hppa-hpux/afm2pl
   M /trunk/Master/bin/hppa-hpux/afm2tfm
   M /trunk/Master/bin/hppa-hpux/aleph
   M /trunk/Master/bin/hppa-hpux/bbox
   M /trunk/Master/bin/hppa-hpux/bg5conv
   M /trunk/Master/bin/hppa-hpux/bibtex
   M /trunk/Master/bin/hppa-hpux/bibtex8
   M /trunk/Master/bin/hppa-hpux/cef5conv
   M /trunk/Master/bin/hppa-hpux/cefconv
   M /trunk/Master/bin/hppa-hpux/cefsconv
   M /trunk/Master/bin/hppa-hpux/cfftot1
   M /trunk/Master/bin/hppa-hpux/ctangle
   M /trunk/Master/bin/hppa-hpux/ctie
   R /trunk/Master/bin/hppa-hpux/ctxtools
   M /trunk/Master/bin/hppa-hpux/cweave
   M /trunk/Master/bin/hppa-hpux/detex
   M /trunk/Master/bin/hppa-hpux/devnag
   M /trunk/Master/bin/hppa-hpux/disdvi
   M /trunk/Master/bin/hppa-hpux/dmp
   M /trunk/Master/bin/hppa-hpux/dt2dv
   M /trunk/Master/bin/hppa-hpux/dv2dt
   M /trunk/Master/bin/hppa-hpux/dvi2tty
   M /trunk/Master/bin/hppa-hpux/dvibook
   M /trunk/Master/bin/hppa-hpux/dviconcat
   M /trunk/Master/bin/hppa-hpux/dvicopy
   M /trunk/Master/bin/hppa-hpux/dvidvi
   M /trunk/Master/bin/hppa-hpux/dvilj
   M /trunk/Master/bin/hppa-hpux/dvilj2p
   M /trunk/Master/bin/hppa-hpux/dvilj4
   M /trunk/Master/bin/hppa-hpux/dvilj4l
   M /trunk/Master/bin/hppa-hpux/dvipdfm
   M /trunk/Master/bin/hppa-hpux/dvipdfmx
   M /trunk/Master/bin/hppa-hpux/dvipng
   M /trunk/Master/bin/hppa-hpux/dvipos
   M /trunk/Master/bin/hppa-hpux/dvips
   M /trunk/Master/bin/hppa-hpux/dviselect
   M /trunk/Master/bin/hppa-hpux/dvitodvi
   M /trunk/Master/bin/hppa-hpux/dvitomp
   M /trunk/Master/bin/hppa-hpux/dvitype
   M /trunk/Master/bin/hppa-hpux/epsffit
   R /trunk/Master/bin/hppa-hpux/exatools
   M /trunk/Master/bin/hppa-hpux/extconv
   M /trunk/Master/bin/hppa-hpux/gftodvi
   M /trunk/Master/bin/hppa-hpux/gftopk
   M /trunk/Master/bin/hppa-hpux/gftype
   M /trunk/Master/bin/hppa-hpux/gsftopk
   M /trunk/Master/bin/hppa-hpux/hbf2gf
   M /trunk/Master/bin/hppa-hpux/info
   M /trunk/Master/bin/hppa-hpux/infokey
   M /trunk/Master/bin/hppa-hpux/install-info
   M /trunk/Master/bin/hppa-hpux/kpseaccess
   M /trunk/Master/bin/hppa-hpux/kpsereadlink
   M /trunk/Master/bin/hppa-hpux/kpsestat
   M /trunk/Master/bin/hppa-hpux/kpsewhich
   M /trunk/Master/bin/hppa-hpux/lacheck
   R /trunk/Master/bin/hppa-hpux/luatools
   M /trunk/Master/bin/hppa-hpux/mag
   M /trunk/Master/bin/hppa-hpux/makeindex
   M /trunk/Master/bin/hppa-hpux/makeinfo
   M /trunk/Master/bin/hppa-hpux/makempx
   R /trunk/Master/bin/hppa-hpux/makempy
   A /trunk/Master/bin/hppa-hpux/metafun
   M /trunk/Master/bin/hppa-hpux/mf
   M /trunk/Master/bin/hppa-hpux/mf-nowin
   M /trunk/Master/bin/hppa-hpux/mft
   M /trunk/Master/bin/hppa-hpux/mktexlsr
   M /trunk/Master/bin/hppa-hpux/mmafm
   M /trunk/Master/bin/hppa-hpux/mmpfb
   M /trunk/Master/bin/hppa-hpux/mpost
   R /trunk/Master/bin/hppa-hpux/mpstools
   M /trunk/Master/bin/hppa-hpux/mpto
   R /trunk/Master/bin/hppa-hpux/mptopdf
   A /trunk/Master/bin/hppa-hpux/mtxrun
   R /trunk/Master/bin/hppa-hpux/mtxtools
   M /trunk/Master/bin/hppa-hpux/musixflx
   M /trunk/Master/bin/hppa-hpux/newer
   M /trunk/Master/bin/hppa-hpux/odvicopy
   M /trunk/Master/bin/hppa-hpux/odvitype
   M /trunk/Master/bin/hppa-hpux/omega
   M /trunk/Master/bin/hppa-hpux/omfonts
   M /trunk/Master/bin/hppa-hpux/otangle
   M /trunk/Master/bin/hppa-hpux/otfinfo
   M /trunk/Master/bin/hppa-hpux/otftotfm
   M /trunk/Master/bin/hppa-hpux/otp2ocp
   M /trunk/Master/bin/hppa-hpux/outocp
   M /trunk/Master/bin/hppa-hpux/patgen
   M /trunk/Master/bin/hppa-hpux/pdfclose
   M /trunk/Master/bin/hppa-hpux/pdfopen
   M /trunk/Master/bin/hppa-hpux/pdftex
   R /trunk/Master/bin/hppa-hpux/pdftools
   M /trunk/Master/bin/hppa-hpux/pdftosrc
   A /trunk/Master/bin/hppa-hpux/pdftrimwhite
   M /trunk/Master/bin/hppa-hpux/pfb2pfa
   M /trunk/Master/bin/hppa-hpux/pk2bm
   M /trunk/Master/bin/hppa-hpux/pktogf
   M /trunk/Master/bin/hppa-hpux/pktype
   M /trunk/Master/bin/hppa-hpux/pltotf
   M /trunk/Master/bin/hppa-hpux/pooltype
   M /trunk/Master/bin/hppa-hpux/ps2pk
   M /trunk/Master/bin/hppa-hpux/psbook
   M /trunk/Master/bin/hppa-hpux/psnup
   M /trunk/Master/bin/hppa-hpux/psresize
   M /trunk/Master/bin/hppa-hpux/psselect
   R /trunk/Master/bin/hppa-hpux/pstopdf
   M /trunk/Master/bin/hppa-hpux/pstops
   R /trunk/Master/bin/hppa-hpux/rlxtools
   R /trunk/Master/bin/hppa-hpux/runtools
   M /trunk/Master/bin/hppa-hpux/sjisconv
   M /trunk/Master/bin/hppa-hpux/synctex
   M /trunk/Master/bin/hppa-hpux/t1ascii
   M /trunk/Master/bin/hppa-hpux/t1asm
   M /trunk/Master/bin/hppa-hpux/t1binary
   M /trunk/Master/bin/hppa-hpux/t1disasm
   M /trunk/Master/bin/hppa-hpux/t1dotlessj
   M /trunk/Master/bin/hppa-hpux/t1lint
   M /trunk/Master/bin/hppa-hpux/t1mac
   M /trunk/Master/bin/hppa-hpux/t1reencode
   M /trunk/Master/bin/hppa-hpux/t1testpage
   M /trunk/Master/bin/hppa-hpux/t1unmac
   M /trunk/Master/bin/hppa-hpux/t4ht
   M /trunk/Master/bin/hppa-hpux/tangle
   M /trunk/Master/bin/hppa-hpux/tcdialog
   M /trunk/Master/bin/hppa-hpux/tex
   M /trunk/Master/bin/hppa-hpux/tex4ht
   R /trunk/Master/bin/hppa-hpux/texexec
   A /trunk/Master/bin/hppa-hpux/texfind
   R /trunk/Master/bin/hppa-hpux/texfont
   M /trunk/Master/bin/hppa-hpux/texindex
   M /trunk/Master/bin/hppa-hpux/texlinks
   R /trunk/Master/bin/hppa-hpux/texmfstart
   A /trunk/Master/bin/hppa-hpux/texshow
   R /trunk/Master/bin/hppa-hpux/textools
   R /trunk/Master/bin/hppa-hpux/texutil
   M /trunk/Master/bin/hppa-hpux/tftopl
   M /trunk/Master/bin/hppa-hpux/tie
   R /trunk/Master/bin/hppa-hpux/tmftools
   M /trunk/Master/bin/hppa-hpux/ttf2afm
   M /trunk/Master/bin/hppa-hpux/ttf2pk
   M /trunk/Master/bin/hppa-hpux/ttf2tfm
   M /trunk/Master/bin/hppa-hpux/ttftotype42
   M /trunk/Master/bin/hppa-hpux/vftovp
   A /trunk/Master/bin/hppa-hpux/vlna
   M /trunk/Master/bin/hppa-hpux/vptovf
   M /trunk/Master/bin/hppa-hpux/weave
   M /trunk/Master/bin/hppa-hpux/xdvi-xaw.bin
   M /trunk/Master/bin/hppa-hpux/xdvipdfmx
   M /trunk/Master/bin/hppa-hpux/xetex
   R /trunk/Master/bin/hppa-hpux/xmltools
------------------------------------------------------------------------
r9094 | siepo | 2008-06-29 23:37:55 +0200 (Sun, 29 Jun 2008) | 2 lines

Don't pregenerate all formats from tl-portable


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r9093 | preining | 2008-06-29 19:50:30 +0200 (Sun, 29 Jun 2008) | 2 lines

remove latin pattern and tlpsrc line


Changed paths:
   D /trunk/Master/texmf/tex/generic/hyphen/lahyph.tex
   M /trunk/Master/tlpkg/tlpsrc/hyphen-latin.tlpsrc
------------------------------------------------------------------------
r9092 | preining | 2008-06-29 19:49:11 +0200 (Sun, 29 Jun 2008) | 2 lines

remove french pattern, now in hyph-utf8, also from tlpsrc


Changed paths:
   D /trunk/Master/texmf/tex/generic/hyphen/frhyph.tex
   M /trunk/Master/tlpkg/tlpsrc/hyphen-french.tlpsrc
------------------------------------------------------------------------
r9091 | preining | 2008-06-29 19:47:52 +0200 (Sun, 29 Jun 2008) | 2 lines

hyphen update, hyph-utf8 doe snot need dk*,. so remove it and from tlpsr


Changed paths:
   D /trunk/Master/texmf/tex/generic/hyphen/dkcommon.tex
   D /trunk/Master/texmf/tex/generic/hyphen/dkhyph.tex
   D /trunk/Master/texmf/tex/generic/hyphen/dkspecial.tex
   M /trunk/Master/tlpkg/tlpsrc/hyphen-danish.tlpsrc
------------------------------------------------------------------------
r9090 | preining | 2008-06-29 19:46:16 +0200 (Sun, 29 Jun 2008) | 2 lines

add hyphen-sanskrit, and add it to collection-langindic


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/collection-langindic.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/hyphen-sanskrit.tlpsrc
------------------------------------------------------------------------
r9089 | preining | 2008-06-29 19:44:16 +0200 (Sun, 29 Jun 2008) | 2 lines

update hyph-utf8 from CTAN


Changed paths:
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/data/encodings/il2.dat
   M /trunk/Master/texmf-dist/source/generic/hyph-utf8/generate-converters.rb
   M /trunk/Master/texmf-dist/source/generic/hyph-utf8/generate-pattern-loaders.rb
   M /trunk/Master/texmf-dist/source/generic/hyph-utf8/generate-tl-files.rb
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/eu
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/eu/generate_patterns_eu.rb
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/gl
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/README
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/glhybiox.tex
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/glhyextr.tex
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/glhymed.tex
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/glhyquim.tex
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/glhytec.tex
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/glhyxeog.tex
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/glpatter-utf8.tex
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/tr
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/tr/README
   A /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages/tr/generate_patterns_tr.rb
   M /trunk/Master/texmf-dist/source/generic/hyph-utf8/languages.rb
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il2.tex
   M /trunk/Master/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-da.tex
   M /trunk/Master/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-eu.tex
   M /trunk/Master/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-fr.tex
   M /trunk/Master/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-grc.tex
   M /trunk/Master/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-la.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sa.tex
   M /trunk/Master/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sr-latn.tex
   M /trunk/Master/texmf-dist/tex/generic/hyph-utf8/patterns/hyph-eu.tex
   M /trunk/Master/texmf-dist/tex/generic/hyph-utf8/patterns/hyph-gl.tex
   D /trunk/Master/texmf-dist/tex/generic/hyph-utf8/patterns/hyph-hbs.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/patterns/hyph-sa.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/patterns/hyph-sh-cyrl.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/patterns/hyph-sh-latn.tex
   M /trunk/Master/texmf-dist/tex/generic/hyph-utf8/patterns/hyph-tr.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/special
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/special/spechyph-ot1-da.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/special/spechyph-ot1-fr.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/special/spechyph-ot1-la.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/special/spechyph-utf8-fr.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/special/spechyph-utf8-it.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/special/spechyph-utf8-la.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/special/spechyph-utf8-uk.tex
   A /trunk/Master/texmf-dist/tex/generic/hyph-utf8/special/spechyph-utf8-zh-latn.tex
------------------------------------------------------------------------
r9088 | reinhardk | 2008-06-29 19:39:14 +0200 (Sun, 29 Jun 2008) | 2 lines

texmf/doc/man/man1: replaced symlinks by regular files using the .so macro.


Changed paths:
   R /trunk/Master/texmf/doc/man/man1/allec.1
   R /trunk/Master/texmf/doc/man/man1/ctangle.1
   R /trunk/Master/texmf/doc/man/man1/cweave.1
   R /trunk/Master/texmf/doc/man/man1/dvilj2p.1
   R /trunk/Master/texmf/doc/man/man1/dvilj4.1
   R /trunk/Master/texmf/doc/man/man1/dvilj4l.1
   R /trunk/Master/texmf/doc/man/man1/dvilj6.1
   R /trunk/Master/texmf/doc/man/man1/fmtutil-sys.1
   R /trunk/Master/texmf/doc/man/man1/kpsepath.1
   R /trunk/Master/texmf/doc/man/man1/kpsexpand.1
   R /trunk/Master/texmf/doc/man/man1/lambda.1
   R /trunk/Master/texmf/doc/man/man1/mf-nowin.1
   R /trunk/Master/texmf/doc/man/man1/mktexfmt.1
   R /trunk/Master/texmf/doc/man/man1/odvicopy.1
   R /trunk/Master/texmf/doc/man/man1/odvips.1
   R /trunk/Master/texmf/doc/man/man1/odvitype.1
   R /trunk/Master/texmf/doc/man/man1/oxdvi.1
   R /trunk/Master/texmf/doc/man/man1/pdflatex.1
   R /trunk/Master/texmf/doc/man/man1/texconfig-sys.1
   R /trunk/Master/texmf/doc/man/man1/texhash.1
   R /trunk/Master/texmf/doc/man/man1/texi2pdf.1
   R /trunk/Master/texmf/doc/man/man1/updmap-sys.1
------------------------------------------------------------------------
r9087 | preining | 2008-06-29 19:26:54 +0200 (Sun, 29 Jun 2008) | 2 lines

remove dependency on bghyphen


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/hyphen-bulgarian.tlpsrc
------------------------------------------------------------------------
r9086 | karl | 2008-06-29 18:44:26 +0200 (Sun, 29 Jun 2008) | 1 line

remove bghyphen from ctan-check, too

Changed paths:
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/bin/tlprm
------------------------------------------------------------------------
r9085 | karl | 2008-06-29 18:41:25 +0200 (Sun, 29 Jun 2008) | 1 line

rm bghyphen

Changed paths:
   D /trunk/Master/texmf-dist/doc/generic/bghyphen
   D /trunk/Master/texmf-dist/tex/generic/bghyphen
   D /trunk/Master/tlpkg/tlpsrc/bghyphen.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/collection-langcyrillic.tlpsrc
------------------------------------------------------------------------
r9083 | siepo | 2008-06-29 10:51:22 +0200 (Sun, 29 Jun 2008) | 2 lines

Removed pathext environment setting


Changed paths:
   M /trunk/Master/tl-portable.bat
------------------------------------------------------------------------
r9082 | siepo | 2008-06-29 10:50:09 +0200 (Sun, 29 Jun 2008) | 3 lines

Removed install-mini[.bat], which had been renamed to
install-w32client


Changed paths:
   D /trunk/Master/tlpkg/doc/install-mini
   D /trunk/Master/tlpkg/doc/install-mini.bat
------------------------------------------------------------------------
r9081 | preining | 2008-06-29 08:38:07 +0200 (Sun, 29 Jun 2008) | 2 lines

fix on one mirror, and allow restart, really


Changed paths:
   M /trunk/Master/install-tl
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
------------------------------------------------------------------------
r9079 | karl | 2008-06-29 03:22:29 +0200 (Sun, 29 Jun 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r9078 | preining | 2008-06-29 01:05:44 +0200 (Sun, 29 Jun 2008) | 2 lines

restart feature of installer


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLPDB.pm
   M /trunk/Master/tlpkg/TeXLive/TLPOBJ.pm
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
   M /trunk/Master/tlpkg/bin/tl-update-containers
------------------------------------------------------------------------
------------------------------------------------------------------------
r9076 | karl | 2008-06-28 03:22:25 +0200 (Sat, 28 Jun 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r9075 | karl | 2008-06-28 03:17:35 +0200 (Sat, 28 Jun 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/texmf-doc/ls-R
------------------------------------------------------------------------
r9074 | siepo | 2008-06-27 23:13:57 +0200 (Fri, 27 Jun 2008) | 2 lines

Rename install-mini to install-w32client


Changed paths:
   A /trunk/Master/tlpkg/doc/install-w32client (from /trunk/Master/tlpkg/doc/install-mini:9073)
   A /trunk/Master/tlpkg/doc/install-w32client.bat (from /trunk/Master/tlpkg/doc/install-mini.bat:9073)
------------------------------------------------------------------------
r9073 | siepo | 2008-06-27 23:12:19 +0200 (Fri, 27 Jun 2008) | 2 lines

See next commit


Changed paths:
   M /trunk/Master/tlpkg/doc/install-mini
   M /trunk/Master/tlpkg/doc/install-mini.bat
------------------------------------------------------------------------
r9072 | preining | 2008-06-27 18:54:38 +0200 (Fri, 27 Jun 2008) | 2 lines

do not pause de-installation


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLWinGoo.pm
------------------------------------------------------------------------
r9071 | vvv | 2008-06-27 14:12:48 +0200 (Fri, 27 Jun 2008) | 2 lines

rm empty dirs


Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/chapterfolder/intro
   D /trunk/Master/texmf-dist/doc/latex/chapterfolder/util
   D /trunk/Master/texmf-doc/doc/german/FAQ-ge
------------------------------------------------------------------------
r9069 | siepo | 2008-06-27 13:12:03 +0200 (Fri, 27 Jun 2008) | 2 lines

install-tl.bat: path gets prepended to instead of appended


Changed paths:
   M /trunk/Master/install-tl.bat
------------------------------------------------------------------------
r9067 | preining | 2008-06-27 09:36:30 +0200 (Fri, 27 Jun 2008) | 2 lines

TLUtils: fix strangly never hit bug in conv_to_win_path ...


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r9066 | preining | 2008-06-27 09:22:21 +0200 (Fri, 27 Jun 2008) | 2 lines

install-tl, fix another uninitialized $localpath


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
------------------------------------------------------------------------
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
------------------------------------------------------------------------