summaryrefslogtreecommitdiff
path: root/Build/logs/svnlog
blob: 85196b1c07ff382cbd30ecdef2bc9ffd32f26061 (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
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
------------------------------------------------------------------------
r37088 | karl | 2015-04-28 03:11:35 +0200 (Tue, 28 Apr 2015) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r37087 | preining | 2015-04-28 03:03:06 +0200 (Tue, 28 Apr 2015) | 2 lines

updates for alpha-linux after latest round of fixes


Changed paths:
   M /trunk/Master/bin/alpha-linux/bibtexu
   M /trunk/Master/bin/alpha-linux/dvipdfmx
   M /trunk/Master/bin/alpha-linux/luatex
   M /trunk/Master/bin/alpha-linux/xdvipdfmx
   M /trunk/Master/bin/alpha-linux/xetex
------------------------------------------------------------------------
r37086 | karl | 2015-04-28 00:20:28 +0200 (Tue, 28 Apr 2015) | 5 lines

(\xe@alloc@intercharclass): define if not already
defined (which it can't be, but anyway).  Report
from Scott Kostyshak,
http://tug.org/pipermail/tex-live/2015-April/036640.html.


Changed paths:
   M /trunk/Master/texmf-dist/tex/latex/latexconfig/xelatex.ini
------------------------------------------------------------------------
r37085 | karl | 2015-04-28 00:10:28 +0200 (Tue, 28 Apr 2015) | 1 line

empty dirs, dll exec

Changed paths:
   D /trunk/Master/tlpkg/tlperl/lib/B/Lint
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Backend
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Config
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Configure
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Dist/Build
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Constants
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Source/SQLite
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Utils
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Module/Author
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins
   D /trunk/Master/tlpkg/tlperl/lib/Log/Message
   D /trunk/Master/tlpkg/tlperl/lib/Module/Pluggable
   D /trunk/Master/tlpkg/tlperl/lib/Object
   D /trunk/Master/tlpkg/tlperl/lib/Term/UI
   D /trunk/Master/tlpkg/tlperl/lib/Win32/Process/Info
   D /trunk/Master/tlpkg/tlperl/lib/auto/LWP/Protocol/https
   D /trunk/Master/tlpkg/tlperl/lib/auto/Text/Soundex
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Console/Console.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Process/Info
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/AHex
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/IDSB
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/IDST
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/JoinC
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Radical
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/VS
------------------------------------------------------------------------
r37084 | karl | 2015-04-27 23:53:00 +0200 (Mon, 27 Apr 2015) | 1 line

biber (26apr15)

Changed paths:
   M /trunk/Master/bin/amd64-freebsd/biber
   M /trunk/Master/bin/i386-cygwin/biber.exe
   M /trunk/Master/bin/i386-freebsd/biber
   M /trunk/Master/bin/i386-linux/biber
   M /trunk/Master/bin/i386-solaris/biber
   M /trunk/Master/bin/universal-darwin/biber
   M /trunk/Master/bin/win32/biber.exe
   M /trunk/Master/bin/x86_64-darwin/biber
   M /trunk/Master/bin/x86_64-linux/biber
   M /trunk/Master/bin/x86_64-solaris/biber
   M /trunk/Master/texmf-dist/doc/bibtex/biber/biber.pdf
   M /trunk/Master/texmf-dist/source/bibtex/biber/Changes
   M /trunk/Master/texmf-dist/source/bibtex/biber/biblatex-biber.tar.gz
   M /trunk/Master/texmf-dist/source/bibtex/biber/utf8-macro-map.html
------------------------------------------------------------------------
r37083 | karl | 2015-04-27 23:49:29 +0200 (Mon, 27 Apr 2015) | 1 line

biblatex (26apr15)

Changed paths:
   M /trunk/Master/texmf-dist/bibtex/bib/biblatex/biblatex/biblatex-examples.bib
   M /trunk/Master/texmf-dist/bibtex/bst/biblatex/biblatex.bst
   M /trunk/Master/texmf-dist/doc/latex/biblatex/RELEASE
   M /trunk/Master/texmf-dist/doc/latex/biblatex/biblatex.pdf
   M /trunk/Master/texmf-dist/doc/latex/biblatex/biblatex.tex
   M /trunk/Master/texmf-dist/doc/latex/biblatex/examples/03-localization-keys.tex
   M /trunk/Master/texmf-dist/doc/latex/biblatex/examples/91-sorting-schemes.tex
   M /trunk/Master/texmf-dist/doc/latex/biblatex/examples/biblatex-examples.bib
   M /trunk/Master/texmf-dist/tex/latex/biblatex/biblatex.def
   M /trunk/Master/texmf-dist/tex/latex/biblatex/biblatex.sty
   M /trunk/Master/texmf-dist/tex/latex/biblatex/biblatex1.sty
   M /trunk/Master/texmf-dist/tex/latex/biblatex/biblatex2.sty
   M /trunk/Master/texmf-dist/tex/latex/biblatex/blx-dm.def
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/danish.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/dutch.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/french.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/greek.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/portuguese.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/spanish.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/swedish.lbx
   M /trunk/Master/tlpkg/libexec/ctan2tds
------------------------------------------------------------------------
r37082 | karl | 2015-04-27 23:41:17 +0200 (Mon, 27 Apr 2015) | 1 line

i386-linux/tl15

Changed paths:
   M /trunk/Master/bin/i386-linux/dvipdfmx
   M /trunk/Master/bin/i386-linux/luajittex
   M /trunk/Master/bin/i386-linux/luatex
   M /trunk/Master/bin/i386-linux/xdvipdfmx
   M /trunk/Master/bin/i386-linux/xetex
------------------------------------------------------------------------
r37081 | karl | 2015-04-27 23:28:46 +0200 (Mon, 27 Apr 2015) | 1 line

biblatex-multiple-dm (27apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/biblatex-multiple-dm/biblatex-multiple-dm.pdf
   M /trunk/Master/texmf-dist/doc/latex/biblatex-multiple-dm/biblatex-multiple-dm.tex
   M /trunk/Master/texmf-dist/tex/latex/biblatex-multiple-dm/biblatex-multiple-dm.sty
   M /trunk/Master/texmf-dist/tex/latex/biblatex-multiple-dm/multiple-dm.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex-multiple-dm/multiple-dm.dbx
------------------------------------------------------------------------
r37080 | karl | 2015-04-27 23:28:32 +0200 (Mon, 27 Apr 2015) | 1 line

bidi (27apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/xelatex/bidi/README
   M /trunk/Master/texmf-dist/doc/xelatex/bidi/bidi.pdf
   M /trunk/Master/texmf-dist/source/xelatex/bidi/bidi.dtx
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/adjmulticol-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/algorithm2e-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amsart-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amsbook-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amsmath-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amstext-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amsthm-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/array-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/article-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/artikel1-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/artikel2-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/artikel3-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/arydshln-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidi-longtable.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidi.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidi.tex
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidi2in1.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidicode.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidiftnxtra.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidimoderncv.cls
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidipoem.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/biditools.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/biditufte-book.cls
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/biditufte-handout.cls
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftefloat.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftegeneralstructure.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftehyperref.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftesidenote.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftetitle.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftetoc.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/boek-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/boek3-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/book-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bookest-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/breqn-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cals-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/caption-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/caption3-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/color-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/colortbl-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/combine-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/crop-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cuted-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cutwin-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cvthemebidicasual.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cvthemebidiclassic.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/dblfnote-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/draftwatermark-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/empheq-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/eso-pic-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extarticle-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extbook-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extletter-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extrafootnotefeatures-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extreport-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/fancybox-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/fancyhdr-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/fix2col-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/fleqn-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/float-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/floatrow-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/flowfram-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/footnote-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/framed-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/ftnright-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/geometry-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/graphicx-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/hvfloat-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/hyperref-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/latex-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/leqno-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/letter-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/lettrine-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/listings-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/loadingorder-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/longtable-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/mdframed-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/memoir-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/midfloat-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/minitoc-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/multicol-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/multienum-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/natbib-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/newfloat-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/ntheorem-hyper-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/ntheorem-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/pdfpages-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/pgf-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/picinpar-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/plain-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/pstricks-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/quotchap-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/ragged2e-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/rapport1-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/rapport3-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/refrep-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/report-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/rotating-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/scrartcl-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/scrbook-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/scrlettr-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/scrreprt-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/sidecap-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/stabular-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/subfigure-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tabls-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tabularx-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tabulary-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tc-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tikz-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/titlesec-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/titletoc-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tocbibind-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tocloft-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tocstyle-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/todonotes-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/wrapfig-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/xcolor-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/xltxtra-xetex-bidi.def
------------------------------------------------------------------------
r37079 | karl | 2015-04-27 22:58:39 +0200 (Mon, 27 Apr 2015) | 1 line

darwin/tl15

Changed paths:
   M /trunk/Master/bin/universal-darwin/afm2pl
   M /trunk/Master/bin/universal-darwin/afm2tfm
   M /trunk/Master/bin/universal-darwin/aleph
   M /trunk/Master/bin/universal-darwin/bbox
   M /trunk/Master/bin/universal-darwin/bg5conv
   M /trunk/Master/bin/universal-darwin/bibtex
   M /trunk/Master/bin/universal-darwin/bibtex8
   M /trunk/Master/bin/universal-darwin/bibtexu
   M /trunk/Master/bin/universal-darwin/cef5conv
   M /trunk/Master/bin/universal-darwin/cefconv
   M /trunk/Master/bin/universal-darwin/cefsconv
   M /trunk/Master/bin/universal-darwin/cfftot1
   M /trunk/Master/bin/universal-darwin/chktex
   M /trunk/Master/bin/universal-darwin/ctangle
   M /trunk/Master/bin/universal-darwin/ctie
   M /trunk/Master/bin/universal-darwin/cweave
   M /trunk/Master/bin/universal-darwin/detex
   M /trunk/Master/bin/universal-darwin/devnag
   M /trunk/Master/bin/universal-darwin/disdvi
   M /trunk/Master/bin/universal-darwin/dt2dv
   M /trunk/Master/bin/universal-darwin/dv2dt
   M /trunk/Master/bin/universal-darwin/dvi2tty
   M /trunk/Master/bin/universal-darwin/dvibook
   M /trunk/Master/bin/universal-darwin/dviconcat
   M /trunk/Master/bin/universal-darwin/dvicopy
   M /trunk/Master/bin/universal-darwin/dvidvi
   M /trunk/Master/bin/universal-darwin/dvilj
   M /trunk/Master/bin/universal-darwin/dvilj2p
   M /trunk/Master/bin/universal-darwin/dvilj4
   M /trunk/Master/bin/universal-darwin/dvilj4l
   M /trunk/Master/bin/universal-darwin/dvipdfmx
   M /trunk/Master/bin/universal-darwin/dvipng
   M /trunk/Master/bin/universal-darwin/dvipos
   M /trunk/Master/bin/universal-darwin/dvips
   M /trunk/Master/bin/universal-darwin/dviselect
   M /trunk/Master/bin/universal-darwin/dvisvgm
   M /trunk/Master/bin/universal-darwin/dvitodvi
   M /trunk/Master/bin/universal-darwin/dvitype
   M /trunk/Master/bin/universal-darwin/epsffit
   M /trunk/Master/bin/universal-darwin/eptex
   M /trunk/Master/bin/universal-darwin/euptex
   M /trunk/Master/bin/universal-darwin/extconv
   M /trunk/Master/bin/universal-darwin/fixmsxpart
   M /trunk/Master/bin/universal-darwin/gftodvi
   M /trunk/Master/bin/universal-darwin/gftopk
   M /trunk/Master/bin/universal-darwin/gftype
   M /trunk/Master/bin/universal-darwin/gsftopk
   M /trunk/Master/bin/universal-darwin/hbf2gf
   M /trunk/Master/bin/universal-darwin/kpseaccess
   M /trunk/Master/bin/universal-darwin/kpsereadlink
   M /trunk/Master/bin/universal-darwin/kpsestat
   M /trunk/Master/bin/universal-darwin/kpsewhich
   M /trunk/Master/bin/universal-darwin/lacheck
   M /trunk/Master/bin/universal-darwin/luajittex
   M /trunk/Master/bin/universal-darwin/luatex
   M /trunk/Master/bin/universal-darwin/mag
   M /trunk/Master/bin/universal-darwin/makeindex
   M /trunk/Master/bin/universal-darwin/makejvf
   M /trunk/Master/bin/universal-darwin/mendex
   M /trunk/Master/bin/universal-darwin/mf
   M /trunk/Master/bin/universal-darwin/mf-nowin
   M /trunk/Master/bin/universal-darwin/mft
   M /trunk/Master/bin/universal-darwin/mmafm
   M /trunk/Master/bin/universal-darwin/mmpfb
   M /trunk/Master/bin/universal-darwin/mpost
   M /trunk/Master/bin/universal-darwin/msxlint
   M /trunk/Master/bin/universal-darwin/odvicopy
   M /trunk/Master/bin/universal-darwin/odvitype
   M /trunk/Master/bin/universal-darwin/omfonts
   M /trunk/Master/bin/universal-darwin/otangle
   M /trunk/Master/bin/universal-darwin/otfinfo
   M /trunk/Master/bin/universal-darwin/otftotfm
   M /trunk/Master/bin/universal-darwin/otp2ocp
   M /trunk/Master/bin/universal-darwin/outocp
   M /trunk/Master/bin/universal-darwin/patgen
   M /trunk/Master/bin/universal-darwin/pbibtex
   M /trunk/Master/bin/universal-darwin/pdfclose
   M /trunk/Master/bin/universal-darwin/pdfopen
   M /trunk/Master/bin/universal-darwin/pdftex
   M /trunk/Master/bin/universal-darwin/pdftosrc
   M /trunk/Master/bin/universal-darwin/pdvitype
   M /trunk/Master/bin/universal-darwin/pfb2pfa
   M /trunk/Master/bin/universal-darwin/pk2bm
   M /trunk/Master/bin/universal-darwin/pktogf
   M /trunk/Master/bin/universal-darwin/pktype
   M /trunk/Master/bin/universal-darwin/pltotf
   M /trunk/Master/bin/universal-darwin/pmpost
   M /trunk/Master/bin/universal-darwin/pmxab
   M /trunk/Master/bin/universal-darwin/pooltype
   M /trunk/Master/bin/universal-darwin/ppltotf
   M /trunk/Master/bin/universal-darwin/prepmx
   M /trunk/Master/bin/universal-darwin/ps2pk
   M /trunk/Master/bin/universal-darwin/psbook
   M /trunk/Master/bin/universal-darwin/psnup
   M /trunk/Master/bin/universal-darwin/psresize
   M /trunk/Master/bin/universal-darwin/psselect
   M /trunk/Master/bin/universal-darwin/pstops
   M /trunk/Master/bin/universal-darwin/ptex
   M /trunk/Master/bin/universal-darwin/ptftopl
   M /trunk/Master/bin/universal-darwin/scor2prt
   M /trunk/Master/bin/universal-darwin/sjisconv
   M /trunk/Master/bin/universal-darwin/synctex
   M /trunk/Master/bin/universal-darwin/t1ascii
   M /trunk/Master/bin/universal-darwin/t1asm
   M /trunk/Master/bin/universal-darwin/t1binary
   M /trunk/Master/bin/universal-darwin/t1disasm
   M /trunk/Master/bin/universal-darwin/t1dotlessj
   M /trunk/Master/bin/universal-darwin/t1lint
   M /trunk/Master/bin/universal-darwin/t1mac
   M /trunk/Master/bin/universal-darwin/t1rawafm
   M /trunk/Master/bin/universal-darwin/t1reencode
   M /trunk/Master/bin/universal-darwin/t1testpage
   M /trunk/Master/bin/universal-darwin/t1unmac
   M /trunk/Master/bin/universal-darwin/t4ht
   M /trunk/Master/bin/universal-darwin/tangle
   M /trunk/Master/bin/universal-darwin/teckit_compile
   M /trunk/Master/bin/universal-darwin/tex
   M /trunk/Master/bin/universal-darwin/tex2xindy
   M /trunk/Master/bin/universal-darwin/tex4ht
   M /trunk/Master/bin/universal-darwin/tftopl
   M /trunk/Master/bin/universal-darwin/tie
   M /trunk/Master/bin/universal-darwin/ttf2afm
   M /trunk/Master/bin/universal-darwin/ttf2pk
   M /trunk/Master/bin/universal-darwin/ttf2tfm
   M /trunk/Master/bin/universal-darwin/ttfdump
   M /trunk/Master/bin/universal-darwin/ttftotype42
   M /trunk/Master/bin/universal-darwin/upbibtex
   M /trunk/Master/bin/universal-darwin/updvitype
   M /trunk/Master/bin/universal-darwin/upmpost
   M /trunk/Master/bin/universal-darwin/uppltotf
   M /trunk/Master/bin/universal-darwin/uptex
   M /trunk/Master/bin/universal-darwin/uptftopl
   M /trunk/Master/bin/universal-darwin/vftovp
   M /trunk/Master/bin/universal-darwin/vlna
   M /trunk/Master/bin/universal-darwin/vptovf
   M /trunk/Master/bin/universal-darwin/weave
   M /trunk/Master/bin/universal-darwin/wofm2opl
   M /trunk/Master/bin/universal-darwin/wopl2ofm
   M /trunk/Master/bin/universal-darwin/wovf2ovp
   M /trunk/Master/bin/universal-darwin/wovp2ovf
   M /trunk/Master/bin/universal-darwin/xdvi-xaw
   M /trunk/Master/bin/universal-darwin/xdvipdfmx
   M /trunk/Master/bin/universal-darwin/xetex
   M /trunk/Master/bin/x86_64-darwin/dvipdfmx
   M /trunk/Master/bin/x86_64-darwin/luajittex
   M /trunk/Master/bin/x86_64-darwin/luatex
   M /trunk/Master/bin/x86_64-darwin/xdvipdfmx
   M /trunk/Master/bin/x86_64-darwin/xetex
------------------------------------------------------------------------
r37078 | karl | 2015-04-27 20:34:09 +0200 (Mon, 27 Apr 2015) | 1 line

man page sync

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/texlive/fmtutil.pl
   M /trunk/Build/source/texk/texlive/linked_scripts/texlive/updmap.pl
   M /trunk/Master/texmf-dist/doc/man/man1/afm2pl.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/afm2tfm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/aleph.1
   M /trunk/Master/texmf-dist/doc/man/man1/aleph.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/allcm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/allec.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/allneeded.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/amstex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/bbox.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/bg5conv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/bibtex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cef5conv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cefconv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cefsconv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cfftot1.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/chktex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/chkweb.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ctangle.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ctie.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cweave.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cweb.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/detex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/deweb.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/disdvi.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dt2dv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dv2dt.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvi2fax.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvi2tty.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvibook.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dviconcat.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvicopy.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvidvi.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvigif.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvihp.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj2p.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj4.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj4l.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj6.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvipdfm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvipdfmx.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvipdft.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvipng.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvipos.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvips.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvired.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dviselect.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvisvgm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvitodvi.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvitomp.1
   M /trunk/Master/texmf-dist/doc/man/man1/dvitomp.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvitype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/e2pall.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ebb.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/epsffit.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/extconv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/extractbb.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/extractres.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/fixmsxpart.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/fmtutil.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/fontinst.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/gftodvi.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/gftopk.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/gftype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/gsftopk.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/hbf2gf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/includeres.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpseaccess.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsepath.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsereadlink.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsestat.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsetool.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsewhere.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsewhich.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsexpand.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/lacheck.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/lamed.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/latex.1
   M /trunk/Master/texmf-dist/doc/man/man1/latex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/luatex.1
   M /trunk/Master/texmf-dist/doc/man/man1/luatex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mag.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/makeindex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mendex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mf-nowin.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mf.1
   M /trunk/Master/texmf-dist/doc/man/man1/mf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mft.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mkindex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mkocp.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mkofm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktexfmt.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktexlsr.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktexmf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktexpk.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktextfm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mmafm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mmpfb.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mpost.1
   M /trunk/Master/texmf-dist/doc/man/man1/mpost.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/msxlint.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/odvicopy.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/odvitype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ofm2opl.1
   M /trunk/Master/texmf-dist/doc/man/man1/ofm2opl.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/opl2ofm.1
   M /trunk/Master/texmf-dist/doc/man/man1/opl2ofm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/otangle.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/otfinfo.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/otftotfm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/otp2ocp.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/outocp.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ovf2ovp.1
   M /trunk/Master/texmf-dist/doc/man/man1/ovf2ovp.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ovp2ovf.1
   M /trunk/Master/texmf-dist/doc/man/man1/ovp2ovf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/patgen.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdfclose.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdfetex.1
   M /trunk/Master/texmf-dist/doc/man/man1/pdfetex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdflatex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdfopen.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdftex.1
   M /trunk/Master/texmf-dist/doc/man/man1/pdftex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdftosrc.1
   M /trunk/Master/texmf-dist/doc/man/man1/pdftosrc.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pfb2pfa.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pk2bm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pktogf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pktype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pltotf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pooltype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/prepmx.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ps2eps.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ps2frag.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ps2pk.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/psbook.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/psjoin.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pslatex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/psnup.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/psresize.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/psselect.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pstops.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/psutils.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/rubibtex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/rumakeindex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/sjisconv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/synctex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1ascii.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1asm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1binary.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1disasm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1dotlessj.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1lint.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1mac.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1rawafm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1reencode.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1testpage.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1unmac.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tangle.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tex.1
   M /trunk/Master/texmf-dist/doc/man/man1/tex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tex2xindy.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texconfig-sys.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texconfig.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texdoctk.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texhash.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texindy.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texlinks.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texlua.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texluac.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tftopl.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tie.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tpic2pdftex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ttf2afm.1
   M /trunk/Master/texmf-dist/doc/man/man1/ttf2afm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ttf2pk.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ttf2tfm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ttfdump.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ttftotype42.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/updmap-sys.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/updmap.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/vftovp.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/vlna.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/vptovf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/weave.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/xdvi.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/xdvipdfmx.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/xindy.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man5/fmtutil.cnf.5
   M /trunk/Master/texmf-dist/doc/man/man5/fmtutil.cnf.man5.pdf
   M /trunk/Master/texmf-dist/doc/man/man5/synctex.man5.pdf
   M /trunk/Master/texmf-dist/doc/man/man5/updmap.cfg.5
   M /trunk/Master/texmf-dist/doc/man/man5/updmap.cfg.man5.pdf
   M /trunk/Master/tlpkg/bin/tl-update-man
   M /trunk/Master/tlpkg/doc/releng.txt
------------------------------------------------------------------------
r37077 | karl | 2015-04-27 20:01:36 +0200 (Mon, 27 Apr 2015) | 1 line

README.solaris: move to doc/ subdir, public domain, a couple words about configure

Changed paths:
   M /trunk/Build/source/README
   D /trunk/Build/source/README.solaris
   A /trunk/Build/source/doc/README.solaris (from /trunk/Build/source/README.solaris:37071)
------------------------------------------------------------------------
r37076 | karl | 2015-04-27 19:08:10 +0200 (Mon, 27 Apr 2015) | 1 line

tweak help text

Changed paths:
   M /trunk/Master/texmf-dist/scripts/texlive/fmtutil.pl
   M /trunk/Master/texmf-dist/scripts/texlive/updmap.pl
------------------------------------------------------------------------
r37075 | kakuto | 2015-04-27 15:04:36 +0200 (Mon, 27 Apr 2015) | 1 line

update w32 binaries (2015, r37074)

Changed paths:
   M /trunk/Master/bin/win32/dvipdfmx.dll
   M /trunk/Master/bin/win32/xdvipdfmx.exe
------------------------------------------------------------------------
r37074 | jjgod | 2015-04-27 14:31:57 +0200 (Mon, 27 Apr 2015) | 6 lines

Ignore empty file in filetype checking

On OS X 10.6 at least opening non-exist resource fork of a file with /rsrc
suffix by fopen() will not return NULL but instead you will get a valid
FILE* but you can't read anything. It regressed in r36978, probably
because we didn't try to check for dfonts like that before the change.

Changed paths:
   M /trunk/Build/source/texk/dvipdfm-x/ChangeLog
   M /trunk/Build/source/texk/dvipdfm-x/dpxfile.c
------------------------------------------------------------------------
r37073 | peter | 2015-04-27 11:54:16 +0200 (Mon, 27 Apr 2015) | 1 line

x86_64-linux binaries (r37072)

Changed paths:
   M /trunk/Master/bin/x86_64-linux/dvipdfmx
   M /trunk/Master/bin/x86_64-linux/xdvipdfmx
------------------------------------------------------------------------
r37072 | peter | 2015-04-27 09:44:09 +0200 (Mon, 27 Apr 2015) | 1 line

Sync Master => Build

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r37071 | karl | 2015-04-27 03:48:40 +0200 (Mon, 27 Apr 2015) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r37070 | karl | 2015-04-27 03:20:10 +0200 (Mon, 27 Apr 2015) | 1 line

/home/texlive/karl/Master/tlpkg/bin/tl-update-auto

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r37069 | karl | 2015-04-27 03:12:40 +0200 (Mon, 27 Apr 2015) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r37068 | karl | 2015-04-27 03:11:21 +0200 (Mon, 27 Apr 2015) | 1 line

(tl-update-tlpdb) force increased revision after removal of files

Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/metapost.tlpsrc
------------------------------------------------------------------------
r37067 | karl | 2015-04-27 01:57:20 +0200 (Mon, 27 Apr 2015) | 1 line

xmans convenience target, no mpost mems any more; more version number removals

Changed paths:
   M /trunk/Build/source/texk/texlive/tl_scripts/ChangeLog
   M /trunk/Build/source/texk/texlive/tl_scripts/Makefile.am
   M /trunk/Build/source/texk/texlive/tl_scripts/Makefile.in
   M /trunk/Build/source/texk/texlive/tl_scripts/fmtutil.help2man
   M /trunk/Build/source/texk/web2c/man/ChangeLog
   M /trunk/Build/source/texk/web2c/man/dvitomp.man
   M /trunk/Build/source/texk/web2c/man/latex.man
   M /trunk/Build/source/texk/web2c/man/luatex.man
   M /trunk/Build/source/texk/web2c/man/mf.man
   M /trunk/Build/source/texk/web2c/man/ofm2opl.man
   M /trunk/Build/source/texk/web2c/man/opl2ofm.man
   M /trunk/Build/source/texk/web2c/man/ovf2ovp.man
   M /trunk/Build/source/texk/web2c/man/ovp2ovf.man
   M /trunk/Build/source/texk/web2c/man/pdfetex.man
   M /trunk/Build/source/texk/web2c/man/pdftex.man
------------------------------------------------------------------------
r37066 | karl | 2015-04-27 01:17:22 +0200 (Mon, 27 Apr 2015) | 1 line

luatex doc update from https://foundry.supelec.fr/scm/viewvc.php/tags/beta-0.80.0/manual/?root=luatex, minus function stuff and man page per hans

Changed paths:
   D /trunk/Master/texmf-dist/doc/luatex/base/fdata.lua
   D /trunk/Master/texmf-dist/doc/luatex/base/fdata_epdf.lua
   D /trunk/Master/texmf-dist/doc/luatex/base/fdata_img.lua
   D /trunk/Master/texmf-dist/doc/luatex/base/functionref.pdf
   D /trunk/Master/texmf-dist/doc/luatex/base/functionref.tex
   D /trunk/Master/texmf-dist/doc/luatex/base/luatex.man
   M /trunk/Master/texmf-dist/doc/luatex/base/luatexref-env.tex
   M /trunk/Master/texmf-dist/doc/luatex/base/luatexref-t.pdf
   M /trunk/Master/texmf-dist/doc/luatex/base/luatexref-t.tex
------------------------------------------------------------------------
r37065 | karl | 2015-04-27 00:51:39 +0200 (Mon, 27 Apr 2015) | 1 line

update/remove some version numbers, etc.

Changed paths:
   M /trunk/Build/source/texk/web2c/man/ChangeLog
   M /trunk/Build/source/texk/web2c/man/aleph.man
   M /trunk/Build/source/texk/web2c/man/latex.man
   M /trunk/Build/source/texk/web2c/man/luatex.man
   M /trunk/Build/source/texk/web2c/man/mpost.man
   M /trunk/Build/source/texk/web2c/man/pdftex.man
   M /trunk/Build/source/texk/web2c/man/pdftosrc.man
   M /trunk/Build/source/texk/web2c/man/tex.man
   M /trunk/Build/source/texk/web2c/man/ttf2afm.man
------------------------------------------------------------------------
r37064 | karl | 2015-04-27 00:16:26 +0200 (Mon, 27 Apr 2015) | 1 line

(tl)perl 5.20.2 for windows, from siep

Changed paths:
   M /trunk/Master/tlpkg/tlperl/README.TEXLIVE
   M /trunk/Master/tlpkg/tlperl/bin/a2p.exe
   M /trunk/Master/tlpkg/tlperl/bin/libgcc_s_sjlj-1.dll
   D /trunk/Master/tlpkg/tlperl/bin/libpng16-16_.dll
   M /trunk/Master/tlpkg/tlperl/bin/libstdc++-6.dll
   A /trunk/Master/tlpkg/tlperl/bin/libwinpthread-1.dll
   M /trunk/Master/tlpkg/tlperl/bin/perl.exe
   D /trunk/Master/tlpkg/tlperl/bin/perl5.18.2.exe
   A /trunk/Master/tlpkg/tlperl/bin/perl5.20.2.exe
   D /trunk/Master/tlpkg/tlperl/bin/perl518.dll
   A /trunk/Master/tlpkg/tlperl/bin/perl520.dll
   M /trunk/Master/tlpkg/tlperl/bin/perlglob.exe
   M /trunk/Master/tlpkg/tlperl/bin/wperl.exe
   D /trunk/Master/tlpkg/tlperl/bin/zlib1_.dll
   M /trunk/Master/tlpkg/tlperl/lib/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/App/Cpan.pm
   M /trunk/Master/tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm
   M /trunk/Master/tlpkg/tlperl/lib/App/Prove/State/Result.pm
   M /trunk/Master/tlpkg/tlperl/lib/App/Prove/State.pm
   M /trunk/Master/tlpkg/tlperl/lib/App/Prove.pm
   D /trunk/Master/tlpkg/tlperl/lib/Archive/Extract.pm
   M /trunk/Master/tlpkg/tlperl/lib/Archive/Tar/Constant.pm
   M /trunk/Master/tlpkg/tlperl/lib/Archive/Tar/File.pm
   M /trunk/Master/tlpkg/tlperl/lib/Archive/Tar.pm
   M /trunk/Master/tlpkg/tlperl/lib/Attribute/Handlers.pm
   M /trunk/Master/tlpkg/tlperl/lib/AutoLoader.pm
   M /trunk/Master/tlpkg/tlperl/lib/B/Concise.pm
   M /trunk/Master/tlpkg/tlperl/lib/B/Debug.pm
   M /trunk/Master/tlpkg/tlperl/lib/B/Deparse.pm
   D /trunk/Master/tlpkg/tlperl/lib/B/Lint/Debug.pm
   D /trunk/Master/tlpkg/tlperl/lib/B/Lint.pm
   M /trunk/Master/tlpkg/tlperl/lib/B/Showlex.pm
   M /trunk/Master/tlpkg/tlperl/lib/B.pm
   M /trunk/Master/tlpkg/tlperl/lib/Benchmark.pm
   M /trunk/Master/tlpkg/tlperl/lib/CGI/Apache.pm
   M /trunk/Master/tlpkg/tlperl/lib/CGI/Carp.pm
   M /trunk/Master/tlpkg/tlperl/lib/CGI/Cookie.pm
   M /trunk/Master/tlpkg/tlperl/lib/CGI/Fast.pm
   M /trunk/Master/tlpkg/tlperl/lib/CGI/Pretty.pm
   M /trunk/Master/tlpkg/tlperl/lib/CGI/Push.pm
   M /trunk/Master/tlpkg/tlperl/lib/CGI/Switch.pm
   M /trunk/Master/tlpkg/tlperl/lib/CGI/Util.pm
   M /trunk/Master/tlpkg/tlperl/lib/CGI.pm
   M /trunk/Master/tlpkg/tlperl/lib/CORE/XSUB.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/av.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/charclass_invlists.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/config.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/cop.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/cv.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/dosish.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/embed.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/embedvar.h
   D /trunk/Master/tlpkg/tlperl/lib/CORE/fakethr.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/feature.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/gv.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/handy.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/hv.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/hv_func.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/inline.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/intrpvar.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/iperlsys.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/keywords.h
   D /trunk/Master/tlpkg/tlperl/lib/CORE/libperl518.a
   A /trunk/Master/tlpkg/tlperl/lib/CORE/libperl520.a
   M /trunk/Master/tlpkg/tlperl/lib/CORE/mg.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/mg_data.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/mg_raw.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/op.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/opcode.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/opnames.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/pad.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/parser.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/patchlevel.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/perl.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/perlio.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/perliol.h
   D /trunk/Master/tlpkg/tlperl/lib/CORE/perlsfio.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/perlvars.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/perly.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/pp.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/pp_proto.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/proto.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/reentr.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/regcharclass.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/regcomp.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/regexp.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/regnodes.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/scope.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/sv.h
   A /trunk/Master/tlpkg/tlperl/lib/CORE/sys/errno2.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/sys/socket.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/thread.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/time64.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/uconfig.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/unicode_constants.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/utf8.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/utfebcdic.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/util.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/vdir.h
   A /trunk/Master/tlpkg/tlperl/lib/CORE/vutil.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/warnings.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/win32.h
   M /trunk/Master/tlpkg/tlperl/lib/CORE/win32iop.h
   A /trunk/Master/tlpkg/tlperl/lib/CORE.pod
   A /trunk/Master/tlpkg/tlperl/lib/CPAN/API
   A /trunk/Master/tlpkg/tlperl/lib/CPAN/API/HOWTO.pod
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Author.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Bundle.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/CacheMgr.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Complete.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Distribution.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Distroprefs.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/FTP.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/FirstTime.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/HTTP/Client.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/HandleConfig.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Index.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/LWP/UserAgent.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Meta/Converter.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Meta/Feature.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Meta/History.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Meta/Prereqs.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Meta/Requirements.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Meta/Spec.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Meta/Validator.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Meta/YAML.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Meta.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Mirrors.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Queue.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Shell.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Tarzip.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN/Version.pm
   M /trunk/Master/tlpkg/tlperl/lib/CPAN.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Backend/RV.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Backend.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Config/HomeEnv.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Config.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Configure/Setup.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Configure.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Dist/Autobundle.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Dist/Base.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Dist/Build/Constants.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Dist/Build.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Dist/MM.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Dist/Sample.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Dist.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Error.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Constants/Report.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Constants.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Extract.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Fetch.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Report.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Search.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Source/Memory.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Source/SQLite/Tie.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Source/SQLite.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Source.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Utils/Autoflush.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals/Utils.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Internals.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Module/Author/Fake.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Module/Author.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Module/Checksums.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Module/Fake.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Module/Signature.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Module.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Selfupdate.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Shell/Classic.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/CustomSource.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/Remote.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Shell/Default/Plugins/Source.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Shell/Default.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS/Shell.pm
   D /trunk/Master/tlpkg/tlperl/lib/CPANPLUS.pm
   M /trunk/Master/tlpkg/tlperl/lib/Carp/Heavy.pm
   M /trunk/Master/tlpkg/tlperl/lib/Carp.pm
   M /trunk/Master/tlpkg/tlperl/lib/Class/Struct.pm
   M /trunk/Master/tlpkg/tlperl/lib/Compress/Raw/Bzip2.pm
   M /trunk/Master/tlpkg/tlperl/lib/Compress/Raw/Zlib.pm
   M /trunk/Master/tlpkg/tlperl/lib/Compress/Zlib.pm
   M /trunk/Master/tlpkg/tlperl/lib/Config/Perl/V.pm
   M /trunk/Master/tlpkg/tlperl/lib/Config.pm
   M /trunk/Master/tlpkg/tlperl/lib/Config.pm.orig
   A /trunk/Master/tlpkg/tlperl/lib/Config.pod
   M /trunk/Master/tlpkg/tlperl/lib/Config_heavy.pl
   M /trunk/Master/tlpkg/tlperl/lib/Config_heavy.pl.orig
   M /trunk/Master/tlpkg/tlperl/lib/Cwd.pm
   M /trunk/Master/tlpkg/tlperl/lib/DB.pm
   M /trunk/Master/tlpkg/tlperl/lib/DBM_Filter/compress.pm
   M /trunk/Master/tlpkg/tlperl/lib/DBM_Filter/encode.pm
   M /trunk/Master/tlpkg/tlperl/lib/DBM_Filter/int32.pm
   M /trunk/Master/tlpkg/tlperl/lib/DBM_Filter/null.pm
   M /trunk/Master/tlpkg/tlperl/lib/DBM_Filter/utf8.pm
   M /trunk/Master/tlpkg/tlperl/lib/DBM_Filter.pm
   M /trunk/Master/tlpkg/tlperl/lib/Data/Dumper.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date
   A /trunk/Master/tlpkg/tlperl/lib/Date/Format.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Afar.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Amharic.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Austrian.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Brazilian.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Bulgarian.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Chinese.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Chinese_GB.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Czech.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Danish.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Dutch.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/English.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Finnish.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/French.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Gedeo.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/German.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Greek.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Hungarian.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Icelandic.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Italian.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Norwegian.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Oromo.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Romanian.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Russian.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Russian_cp1251.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Russian_koi8r.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Sidama.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Somali.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Spanish.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Swedish.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Tigrinya.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/TigrinyaEritrean.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/TigrinyaEthiopian.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language/Turkish.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Language.pm
   A /trunk/Master/tlpkg/tlperl/lib/Date/Parse.pm
   D /trunk/Master/tlpkg/tlperl/lib/Devel/InnerPackage.pm
   M /trunk/Master/tlpkg/tlperl/lib/Devel/PPPort.pm
   M /trunk/Master/tlpkg/tlperl/lib/Devel/Peek.pm
   M /trunk/Master/tlpkg/tlperl/lib/Digest/MD5.pm
   M /trunk/Master/tlpkg/tlperl/lib/Digest/SHA.pm
   M /trunk/Master/tlpkg/tlperl/lib/DynaLoader.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/Alias.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/CN/HZ.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/Encoder.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/Encoding.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/GSM0338.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/Guess.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/JP/JIS7.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/KR/2022_KR.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/Locale.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/MIME/Header/ISO_2022_JP.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/MIME/Header.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/Makefile_PL.e2x
   A /trunk/Master/tlpkg/tlperl/lib/Encode/PerlIO.pod
   A /trunk/Master/tlpkg/tlperl/lib/Encode/Supported.pod
   M /trunk/Master/tlpkg/tlperl/lib/Encode/Unicode/UTF7.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/Unicode.pm
   A /trunk/Master/tlpkg/tlperl/lib/Encode/compat
   A /trunk/Master/tlpkg/tlperl/lib/Encode/compat/5006001.pm
   A /trunk/Master/tlpkg/tlperl/lib/Encode/compat/Alias.pm
   A /trunk/Master/tlpkg/tlperl/lib/Encode/compat/common.pm
   A /trunk/Master/tlpkg/tlperl/lib/Encode/compat.pm
   M /trunk/Master/tlpkg/tlperl/lib/Encode/encode.h
   M /trunk/Master/tlpkg/tlperl/lib/Encode.pm
   M /trunk/Master/tlpkg/tlperl/lib/English.pm
   M /trunk/Master/tlpkg/tlperl/lib/Errno.pm
   M /trunk/Master/tlpkg/tlperl/lib/Exporter/Heavy.pm
   M /trunk/Master/tlpkg/tlperl/lib/Exporter.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Base.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Unix.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/VMS.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/aix.pm
   A /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/android.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/cygwin.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/darwin.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/os2.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Command/MM.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Command.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Embed.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Install.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Installed.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Liblist/Kid.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Liblist.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_AIX.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_Any.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_BeOS.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_Cygwin.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_DOS.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_MacOS.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_NW5.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_OS2.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_QNX.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_UWIN.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_Unix.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_VMS.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_VOS.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_Win32.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MM_Win95.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MY.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MakeMaker/Config.pm
   A /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MakeMaker/FAQ.pod
   A /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MakeMaker/Tutorial.pod
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/MakeMaker.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Miniperl.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Mkbootstrap.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Mksymlists.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Packlist.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/ParseXS/Constants.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/ParseXS/CountLines.pm
   A /trunk/Master/tlpkg/tlperl/lib/ExtUtils/ParseXS/Eval.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/ParseXS/Utilities.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/ParseXS.pm
   A /trunk/Master/tlpkg/tlperl/lib/ExtUtils/ParseXS.pod
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Typemaps/Cmd.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Typemaps/InputMap.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Typemaps/OutputMap.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Typemaps/Type.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/Typemaps.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/testlib.pm
   M /trunk/Master/tlpkg/tlperl/lib/ExtUtils/xsubpp
   M /trunk/Master/tlpkg/tlperl/lib/Fatal.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Basename.pm
   D /trunk/Master/tlpkg/tlperl/lib/File/CheckTree.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Copy.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/DosGlob.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Fetch.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Find.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Glob.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Spec/Cygwin.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Spec/Epoc.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Spec/Functions.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Spec/Mac.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Spec/OS2.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Spec/Unix.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Spec/VMS.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Spec/Win32.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Spec.pm
   M /trunk/Master/tlpkg/tlperl/lib/File/Temp.pm
   A /trunk/Master/tlpkg/tlperl/lib/File/Which.pm
   M /trunk/Master/tlpkg/tlperl/lib/FileCache.pm
   M /trunk/Master/tlpkg/tlperl/lib/Filter/Simple.pm
   M /trunk/Master/tlpkg/tlperl/lib/Filter/Util/Call.pm
   M /trunk/Master/tlpkg/tlperl/lib/Getopt/Long.pm
   M /trunk/Master/tlpkg/tlperl/lib/Getopt/Std.pm
   M /trunk/Master/tlpkg/tlperl/lib/HTTP/Tiny.pm
   M /trunk/Master/tlpkg/tlperl/lib/Hash/Util/FieldHash.pm
   M /trunk/Master/tlpkg/tlperl/lib/I18N/LangTags.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Adapter/Bzip2.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Adapter/Deflate.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Adapter/Identity.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Base/Common.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Base.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Bzip2.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Deflate.pm
   A /trunk/Master/tlpkg/tlperl/lib/IO/Compress/FAQ.pod
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Gzip/Constants.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Gzip.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/RawDeflate.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Zip/Constants.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Zip.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Zlib/Constants.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Compress/Zlib/Extra.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/HTML.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Handle.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Select.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Socket/INET.pm
   A /trunk/Master/tlpkg/tlperl/lib/IO/Socket/IP.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Socket/UNIX.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Socket.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/Adapter/Bunzip2.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/Adapter/Identity.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/Adapter/Inflate.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/AnyInflate.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/AnyUncompress.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/Base.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/Gunzip.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/Inflate.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/RawInflate.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm
   M /trunk/Master/tlpkg/tlperl/lib/IO.pm
   M /trunk/Master/tlpkg/tlperl/lib/IPC/Cmd.pm
   M /trunk/Master/tlpkg/tlperl/lib/IPC/Open3.pm
   M /trunk/Master/tlpkg/tlperl/lib/JSON/PP.pm
   M /trunk/Master/tlpkg/tlperl/lib/LWP/Authen/Ntlm.pm
   M /trunk/Master/tlpkg/tlperl/lib/LWP/ConnCache.pm
   M /trunk/Master/tlpkg/tlperl/lib/LWP/Protocol/http.pm
   D /trunk/Master/tlpkg/tlperl/lib/LWP/Protocol/https.pm
   M /trunk/Master/tlpkg/tlperl/lib/LWP/Protocol.pm
   M /trunk/Master/tlpkg/tlperl/lib/LWP/RobotUA.pm
   M /trunk/Master/tlpkg/tlperl/lib/LWP/Simple.pm
   M /trunk/Master/tlpkg/tlperl/lib/LWP/UserAgent.pm
   M /trunk/Master/tlpkg/tlperl/lib/LWP.pm
   M /trunk/Master/tlpkg/tlperl/lib/List/Util/XS.pm
   M /trunk/Master/tlpkg/tlperl/lib/List/Util.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/API.pod
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Changes.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Constants.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Constants.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Country.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Country.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Country_Codes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Country_Retired.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Currency.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Currency.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Currency_Codes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Currency_Retired.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangExt.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangExt.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangExt_Codes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangExt_Retired.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangFam.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangFam.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangFam_Codes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangFam_Retired.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangVar.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangVar.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangVar_Codes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/LangVar_Retired.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Language.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Language.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Language_Codes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Language_Retired.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Script.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Script.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Script_Codes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes/Script_Retired.pm
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Codes.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Codes.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Country.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Country.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Currency.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Currency.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Language.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Language.pod
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Maketext/Cookbook.pod
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Maketext/TPJ13.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Maketext.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Maketext.pod
   M /trunk/Master/tlpkg/tlperl/lib/Locale/Script.pm
   A /trunk/Master/tlpkg/tlperl/lib/Locale/Script.pod
   D /trunk/Master/tlpkg/tlperl/lib/Log/Message/Config.pm
   D /trunk/Master/tlpkg/tlperl/lib/Log/Message/Handlers.pm
   D /trunk/Master/tlpkg/tlperl/lib/Log/Message/Item.pm
   D /trunk/Master/tlpkg/tlperl/lib/Log/Message/Simple.pm
   D /trunk/Master/tlpkg/tlperl/lib/Log/Message.pm
   M /trunk/Master/tlpkg/tlperl/lib/MIME/Base64.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/BigFloat/Trace.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/BigFloat.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/BigInt/Calc.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/BigInt/CalcEmu.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/BigInt/FastCalc.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/BigInt/Trace.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/BigInt.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/BigRat.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/Int64/die_on_overflow.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/Int64/native_if_available.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/Int64.pm
   M /trunk/Master/tlpkg/tlperl/lib/Math/UInt64.pm
   A /trunk/Master/tlpkg/tlperl/lib/Module/Build/API.pod
   A /trunk/Master/tlpkg/tlperl/lib/Module/Build/Authoring.pod
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Base.pm
   A /trunk/Master/tlpkg/tlperl/lib/Module/Build/Bundling.pod
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Compat.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Config.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/ConfigData.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Cookbook.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Dumper.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/ModuleInfo.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Notes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/PPMMaker.pm
   D /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/Amiga.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/Default.pm
   D /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/EBCDIC.pm
   D /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/MPEiX.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/MacOS.pm
   D /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/RiscOS.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/Unix.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/VMS.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/VOS.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/Windows.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/aix.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/cygwin.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/darwin.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/Platform/os2.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build/PodParser.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Build.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/CoreList/TieHashDelta.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/CoreList/Utils.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/CoreList.pm
   A /trunk/Master/tlpkg/tlperl/lib/Module/CoreList.pod
   M /trunk/Master/tlpkg/tlperl/lib/Module/Load/Conditional.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Load.pm
   M /trunk/Master/tlpkg/tlperl/lib/Module/Metadata.pm
   D /trunk/Master/tlpkg/tlperl/lib/Module/Pluggable/Object.pm
   D /trunk/Master/tlpkg/tlperl/lib/Module/Pluggable.pm
   A /trunk/Master/tlpkg/tlperl/lib/Mozilla
   A /trunk/Master/tlpkg/tlperl/lib/Mozilla/CA
   A /trunk/Master/tlpkg/tlperl/lib/Mozilla/CA/cacert.pem
   A /trunk/Master/tlpkg/tlperl/lib/Mozilla/CA.pm
   A /trunk/Master/tlpkg/tlperl/lib/Mozilla/mk-ca-bundle.pl
   M /trunk/Master/tlpkg/tlperl/lib/Net/Cmd.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/Config.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/Domain.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/FTP/A.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/FTP/dataconn.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/FTP.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/HTTP/Methods.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/HTTP.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/NNTP.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/Netrc.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/POP3.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/Ping.pm
   M /trunk/Master/tlpkg/tlperl/lib/Net/SMTP.pm
   A /trunk/Master/tlpkg/tlperl/lib/Net/libnetFAQ.pod
   D /trunk/Master/tlpkg/tlperl/lib/Object/Accessor.pm
   M /trunk/Master/tlpkg/tlperl/lib/Opcode.pm
   M /trunk/Master/tlpkg/tlperl/lib/POSIX.pm
   A /trunk/Master/tlpkg/tlperl/lib/POSIX.pod
   M /trunk/Master/tlpkg/tlperl/lib/Package/Constants.pm
   M /trunk/Master/tlpkg/tlperl/lib/Params/Check.pm
   M /trunk/Master/tlpkg/tlperl/lib/Parse/CPAN/Meta.pm
   M /trunk/Master/tlpkg/tlperl/lib/Perl/OSType.pm
   M /trunk/Master/tlpkg/tlperl/lib/PerlIO/encoding.pm
   M /trunk/Master/tlpkg/tlperl/lib/PerlIO/scalar.pm
   M /trunk/Master/tlpkg/tlperl/lib/PerlIO/via.pm
   M /trunk/Master/tlpkg/tlperl/lib/PerlIO.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Escapes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Find.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Functions.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Html.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/InputObjects.pm
   D /trunk/Master/tlpkg/tlperl/lib/Pod/LaTeX.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Man.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/ParseUtils.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Parser.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/BaseTo.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/GetOptsOO.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToANSI.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToChecker.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToMan.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToNroff.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToPod.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToRtf.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToTerm.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToText.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToTk.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc/ToXml.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Perldoc.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/PlainText.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Select.pm
   A /trunk/Master/tlpkg/tlperl/lib/Pod/Simple/Subclassing.pod
   A /trunk/Master/tlpkg/tlperl/lib/Pod/Simple.pod
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Text/Termcap.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Text.pm
   M /trunk/Master/tlpkg/tlperl/lib/Pod/Usage.pm
   M /trunk/Master/tlpkg/tlperl/lib/SDBM_File.pm
   M /trunk/Master/tlpkg/tlperl/lib/Safe.pm
   M /trunk/Master/tlpkg/tlperl/lib/Scalar/Util.pm
   M /trunk/Master/tlpkg/tlperl/lib/Socket.pm
   M /trunk/Master/tlpkg/tlperl/lib/Storable.pm
   M /trunk/Master/tlpkg/tlperl/lib/Sys/Hostname.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Base.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Formatter/Base.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Formatter/Color.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Formatter/Console/ParallelSession.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Formatter/Console/Session.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Formatter/Console.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Formatter/File/Session.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Formatter/File.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Formatter/Session.pm
   A /trunk/Master/tlpkg/tlperl/lib/TAP/Harness
   A /trunk/Master/tlpkg/tlperl/lib/TAP/Harness/Beyond.pod
   A /trunk/Master/tlpkg/tlperl/lib/TAP/Harness/Env.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Harness.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Object.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Aggregator.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Grammar.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Iterator/Array.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Iterator/Process.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Iterator/Stream.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Iterator.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/IteratorFactory.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Multiplexer.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Result/Bailout.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Result/Comment.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Result/Plan.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Result/Pragma.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Result/Test.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Result/Unknown.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Result/Version.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Result/YAML.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Result.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/ResultFactory.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Scheduler/Job.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Scheduler/Spinner.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Scheduler.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Source.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Executable.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/SourceHandler/File.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Handle.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/SourceHandler/Perl.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/SourceHandler/RawTAP.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/SourceHandler.pm
   D /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/Utils.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/YAMLish/Reader.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser/YAMLish/Writer.pm
   M /trunk/Master/tlpkg/tlperl/lib/TAP/Parser.pm
   M /trunk/Master/tlpkg/tlperl/lib/Term/Cap.pm
   M /trunk/Master/tlpkg/tlperl/lib/Term/ReadLine.pm
   D /trunk/Master/tlpkg/tlperl/lib/Term/UI/History.pm
   D /trunk/Master/tlpkg/tlperl/lib/Term/UI.pm
   M /trunk/Master/tlpkg/tlperl/lib/Test/Builder/Module.pm
   M /trunk/Master/tlpkg/tlperl/lib/Test/Builder/Tester/Color.pm
   M /trunk/Master/tlpkg/tlperl/lib/Test/Builder/Tester.pm
   M /trunk/Master/tlpkg/tlperl/lib/Test/Builder.pm
   M /trunk/Master/tlpkg/tlperl/lib/Test/Harness.pm
   M /trunk/Master/tlpkg/tlperl/lib/Test/More.pm
   M /trunk/Master/tlpkg/tlperl/lib/Test/Simple.pm
   A /trunk/Master/tlpkg/tlperl/lib/Test/Tutorial.pod
   M /trunk/Master/tlpkg/tlperl/lib/Text/ParseWords.pm
   D /trunk/Master/tlpkg/tlperl/lib/Text/Soundex.pm
   M /trunk/Master/tlpkg/tlperl/lib/Text/Tabs.pm
   M /trunk/Master/tlpkg/tlperl/lib/Text/Wrap.pm
   M /trunk/Master/tlpkg/tlperl/lib/Thread/Queue.pm
   M /trunk/Master/tlpkg/tlperl/lib/Thread.pm
   M /trunk/Master/tlpkg/tlperl/lib/Tie/Array.pm
   M /trunk/Master/tlpkg/tlperl/lib/Tie/File.pm
   M /trunk/Master/tlpkg/tlperl/lib/Tie/Hash.pm
   M /trunk/Master/tlpkg/tlperl/lib/Tie/Scalar.pm
   M /trunk/Master/tlpkg/tlperl/lib/Tie/StdHandle.pm
   M /trunk/Master/tlpkg/tlperl/lib/Time/HiRes.pm
   M /trunk/Master/tlpkg/tlperl/lib/Time/Piece.pm
   M /trunk/Master/tlpkg/tlperl/lib/Time/Seconds.pm
   A /trunk/Master/tlpkg/tlperl/lib/Time/Zone.pm
   A /trunk/Master/tlpkg/tlperl/lib/Tk/804delta.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Adjuster.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Animation.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Balloon.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Bitmap.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/BrowseEntry.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Button.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Canvas.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Checkbutton.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Clipboard.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/CmdLine.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/ColorEditor.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Compound.pod
   M /trunk/Master/tlpkg/tlperl/lib/Tk/Config.pm
   A /trunk/Master/tlpkg/tlperl/lib/Tk/ConfigSpecs.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/DItem.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Derived.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Dialog.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/DialogBox.pod
   M /trunk/Master/tlpkg/tlperl/lib/Tk/DirTree.pm
   A /trunk/Master/tlpkg/tlperl/lib/Tk/DirTree.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/DragDrop/Common.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/DragDrop/SunConst.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/DropSite.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Entry.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Error.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/ErrorDialog.pod
   M /trunk/Master/tlpkg/tlperl/lib/Tk/Event.pm
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Eventloop.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/FBox.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/FileSelect.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Font.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Frame.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/HList.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/IO.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/IconList.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Image.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/InputO.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Internals.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/LabFrame.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Label.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Labelframe.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Listbox.pod
   M /trunk/Master/tlpkg/tlperl/lib/Tk/MMutil.pm
   A /trunk/Master/tlpkg/tlperl/lib/Tk/MainWindow.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Menu/Item.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Menu.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Menubutton.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Message.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/MsgBox.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Mwm.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/NoteBook.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Optionmenu.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Panedwindow.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Photo.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Pixmap.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Popup.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/ROText.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Radiobutton.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Scale.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Scrollbar.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Scrolled.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Spinbox.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Submethods.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/TList.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Table.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Tcl-perl.pod
   M /trunk/Master/tlpkg/tlperl/lib/Tk/Text.pm
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Text.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/TextUndo.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Tiler.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/TixGrid.pod
   D /trunk/Master/tlpkg/tlperl/lib/Tk/Tk.def
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Toplevel.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Tree.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/UserGuide.pod
   M /trunk/Master/tlpkg/tlperl/lib/Tk/Widget.pm
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Widget.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/WidgetDemo.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Wm.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/X.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/X11Font.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/Xrm.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/after.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/bind.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/bindtags.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/callbacks.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/chooseColor.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/chooseDirectory.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/composite.pod
   M /trunk/Master/tlpkg/tlperl/lib/Tk/demos/widget_lib/HList.pl
   A /trunk/Master/tlpkg/tlperl/lib/Tk/event.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/exit.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/fileevent.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/focus.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/form.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/getOpenFile.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/grab.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/grid.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/mega.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/messageBox.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/option.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/options.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/overview.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/pTk.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/pack.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/palette.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/place.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/selection.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/send.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/tixWm.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/tkvars.pod
   A /trunk/Master/tlpkg/tlperl/lib/Tk/widgets.pod
   M /trunk/Master/tlpkg/tlperl/lib/Tk.pm
   A /trunk/Master/tlpkg/tlperl/lib/Tk.pod
   M /trunk/Master/tlpkg/tlperl/lib/URI/Escape.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/Heuristic.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/IRI.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/QueryParam.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/Split.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/URL.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/WithBase.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_foreign.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_generic.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_idna.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_ldap.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_login.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_punycode.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_query.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_segment.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_server.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/_userpass.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/data.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/file/Base.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/file/FAT.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/file/Mac.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/file/OS2.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/file/QNX.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/file/Unix.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/file/Win32.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/file.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/ftp.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/gopher.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/http.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/https.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/ldap.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/ldapi.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/ldaps.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/mailto.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/mms.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/news.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/nntp.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/pop.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/rlogin.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/rsync.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/rtsp.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/rtspu.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/sip.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/sips.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/snews.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/ssh.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/telnet.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/tn3270.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/urn/isbn.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/urn/oid.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI/urn.pm
   M /trunk/Master/tlpkg/tlperl/lib/URI.pm
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/CJK/Korean.pm
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/af.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ar.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/as.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/az.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/be.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/bg.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/bn.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ca.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/cs.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/cy.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/da.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/de_phone.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ee.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/eo.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/es.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/es_trad.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/et.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/fa.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/fi.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/fi_phone.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/fil.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/fo.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/gu.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ha.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/haw.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/hi.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/hr.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/hu.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/hy.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ig.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/is.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ja.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/kk.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/kl.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/kn.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ko.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/kok.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ln.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/lt.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/lv.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/mk.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ml.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/mr.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/mt.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/nb.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/nn.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/nso.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/om.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/or.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/pa.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/pl.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ro.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ru.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/sa.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/se.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/si.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/si_dict.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/sk.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/sl.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/sq.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/sr.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/sv.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/sv_refo.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ta.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/te.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/th.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/tn.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/to.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/tr.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/uk.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/ur.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/vi.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/wae.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/wo.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/yo.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/zh.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_big5.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_gb.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_pin.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_strk.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale/zh_zhu.pl
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/Locale.pm
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate/allkeys.txt
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Collate.pm
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/Normalize.pm
   M /trunk/Master/tlpkg/tlperl/lib/Unicode/UCD.pm
   A /trunk/Master/tlpkg/tlperl/lib/Win32/API/Callback
   A /trunk/Master/tlpkg/tlperl/lib/Win32/API/Callback/IATPatch.pod
   M /trunk/Master/tlpkg/tlperl/lib/Win32/API/Callback.pm
   M /trunk/Master/tlpkg/tlperl/lib/Win32/API.pm
   A /trunk/Master/tlpkg/tlperl/lib/Win32/Console.pm
   A /trunk/Master/tlpkg/tlperl/lib/Win32/OLE/NEWS.pod
   A /trunk/Master/tlpkg/tlperl/lib/Win32/OLE/TPJ.pod
   M /trunk/Master/tlpkg/tlperl/lib/Win32/OLE.pm
   D /trunk/Master/tlpkg/tlperl/lib/Win32/Process/Info/NT.pm
   D /trunk/Master/tlpkg/tlperl/lib/Win32/Process/Info/PT.pm
   D /trunk/Master/tlpkg/tlperl/lib/Win32/Process/Info/WMI.pm
   D /trunk/Master/tlpkg/tlperl/lib/Win32/Process/Info.pm
   M /trunk/Master/tlpkg/tlperl/lib/Win32/TieRegistry.pm
   A /trunk/Master/tlpkg/tlperl/lib/Win32/WinError.pm
   M /trunk/Master/tlpkg/tlperl/lib/Win32.pm
   M /trunk/Master/tlpkg/tlperl/lib/Win32API/Registry.pm
   M /trunk/Master/tlpkg/tlperl/lib/XSLoader.pm
   M /trunk/Master/tlpkg/tlperl/lib/_charnames.pm
   M /trunk/Master/tlpkg/tlperl/lib/arybase.pm
   M /trunk/Master/tlpkg/tlperl/lib/attributes.pm
   D /trunk/Master/tlpkg/tlperl/lib/auto/B/B.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/B/B.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Compress/Raw/Bzip2/Bzip2.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Compress/Raw/Bzip2/Bzip2.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Compress/Raw/Bzip2/autosplit.ix
   D /trunk/Master/tlpkg/tlperl/lib/auto/Compress/Raw/Zlib/Zlib.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Compress/Raw/Zlib/Zlib.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Compress/Raw/Zlib/autosplit.ix
   D /trunk/Master/tlpkg/tlperl/lib/auto/Cwd/Cwd.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Cwd/Cwd.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Data/Dumper/Dumper.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Data/Dumper/Dumper.dll
   A /trunk/Master/tlpkg/tlperl/lib/auto/Date
   A /trunk/Master/tlpkg/tlperl/lib/auto/Date/Parse
   A /trunk/Master/tlpkg/tlperl/lib/auto/Date/Parse/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Devel/PPPort/PPPort.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Devel/PPPort/PPPort.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Devel/Peek/Peek.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Devel/Peek/Peek.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Digest/MD5/MD5.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Digest/MD5/MD5.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Digest/SHA/SHA.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Digest/SHA/SHA.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/Digest/SHA1/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Digest/SHA1/SHA1.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Digest/SHA1/SHA1.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Encode/Byte/Byte.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/Byte/Byte.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Encode/CN/CN.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/CN/CN.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Encode/EBCDIC/EBCDIC.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/EBCDIC/EBCDIC.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Encode/Encode.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/Encode.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Encode/JP/JP.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/JP/JP.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Encode/KR/KR.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/KR/KR.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/Locale/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Encode/Symbol/Symbol.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/Symbol/Symbol.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Encode/TW/TW.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/TW/TW.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Encode/Unicode/Unicode.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Encode/Unicode/Unicode.dll
   A /trunk/Master/tlpkg/tlperl/lib/auto/Encode/compat
   A /trunk/Master/tlpkg/tlperl/lib/auto/Encode/compat/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Fcntl/Fcntl.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Fcntl/Fcntl.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/File/DosGlob/DosGlob.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/File/Glob/Glob.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/File/Glob/Glob.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/File/Listing/.packlist
   A /trunk/Master/tlpkg/tlperl/lib/auto/File/Which
   A /trunk/Master/tlpkg/tlperl/lib/auto/File/Which/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Filter/Util/Call/Call.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Filter/Util/Call/Call.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/HTML/Parser/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/HTML/Parser/Parser.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/HTML/Parser/Parser.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/HTML/Tagset/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/HTTP/Cookies/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/HTTP/Daemon/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/HTTP/Date/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/HTTP/Message/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/HTTP/Negotiate/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Hash/Util/FieldHash/FieldHash.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Hash/Util/FieldHash/FieldHash.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Hash/Util/Util.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Hash/Util/Util.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/IO/HTML/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/IO/IO.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/IO/IO.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/IO/String/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/LWP/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/LWP/MediaTypes/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/LWP/Protocol/https/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/List/Util/Util.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/List/Util/Util.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/MIME/Base64/Base64.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/MIME/Base64/Base64.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Math/BigInt/FastCalc/FastCalc.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/Math/Int64/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Math/Int64/Int64.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Math/Int64/Int64.dll
   A /trunk/Master/tlpkg/tlperl/lib/auto/Mozilla
   A /trunk/Master/tlpkg/tlperl/lib/auto/Mozilla/CA
   A /trunk/Master/tlpkg/tlperl/lib/auto/Mozilla/CA/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/Net/HTTP/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Opcode/Opcode.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Opcode/Opcode.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/POSIX/POSIX.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/POSIX/POSIX.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/PerlIO/encoding/encoding.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/PerlIO/encoding/encoding.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/PerlIO/mmap/mmap.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/PerlIO/mmap/mmap.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/PerlIO/scalar/scalar.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/PerlIO/scalar/scalar.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/PerlIO/via/via.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/PerlIO/via/via.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/SDBM_File/SDBM_File.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/SDBM_File/SDBM_File.dll
   A /trunk/Master/tlpkg/tlperl/lib/auto/Socket/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Socket/Socket.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Socket/Socket.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Storable/Storable.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Storable/Storable.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Sys/Hostname/Hostname.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Sys/Hostname/Hostname.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Text/Soundex/Soundex.bs
   D /trunk/Master/tlpkg/tlperl/lib/auto/Text/Soundex/Soundex.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tie/Hash/NamedCapture/NamedCapture.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tie/Hash/NamedCapture/NamedCapture.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Time/HiRes/HiRes.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Time/HiRes/HiRes.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Time/Piece/Piece.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Time/Piece/Piece.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Canvas/Canvas.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Canvas/Canvas.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Compound/Compound.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Compound/Compound.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/DirSelect/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/DragDrop/Win32Site/Win32Site.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/DragDrop/Win32Site/Win32Site.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Entry/Entry.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Entry/Entry.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Event/Event.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Event/Event.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/HList/HList.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/HList/HList.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/IO/IO.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/IO/IO.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/JPEG/JPEG.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/JPEG/JPEG.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Listbox/Listbox.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Listbox/Listbox.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Menubutton/Menubutton.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Menubutton/Menubutton.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/NBFrame/NBFrame.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/NBFrame/NBFrame.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/PNG/PNG.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/PNG/PNG.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Pixmap/Pixmap.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Pixmap/Pixmap.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Scale/Scale.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Scale/Scale.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Scrollbar/Scrollbar.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Scrollbar/Scrollbar.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/TList/TList.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/TList/TList.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Text/Text.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Text/Text.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/TixGrid/TixGrid.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/TixGrid/TixGrid.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Tk.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Tk.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Widget/bindDump.al
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/X/X.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/X/X.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Xlib/Xlib.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Tk/Xlib/Xlib.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/URI/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Unicode/Collate/Collate.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Unicode/Collate/Collate.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Unicode/Normalize/Normalize.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Unicode/Normalize/Normalize.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/WWW/RobotRules/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/API/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Win32/API/API.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/API/API.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Win32/API/Callback/Callback.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/API/Callback/Callback.dll
   A /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Console
   A /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Console/.packlist
   A /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Console/Console.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/OLE/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Win32/OLE/OLE.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/OLE/OLE.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Process/Info/.packlist
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Shortcut/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Shortcut/Shortcut.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Shortcut/Shortcut.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/TieRegistry/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Win32.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32/Win32.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/Win32API/File/File.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32API/File/File.dll
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32API/Registry/.packlist
   D /trunk/Master/tlpkg/tlperl/lib/auto/Win32API/Registry/Registry.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/Win32API/Registry/Registry.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/arybase/arybase.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/arybase/arybase.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/attributes/attributes.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/attributes/attributes.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/mro/mro.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/mro/mro.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/re/re.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/re/re.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/threads/shared/shared.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/threads/shared/shared.dll
   D /trunk/Master/tlpkg/tlperl/lib/auto/threads/threads.bs
   M /trunk/Master/tlpkg/tlperl/lib/auto/threads/threads.dll
   M /trunk/Master/tlpkg/tlperl/lib/autodie/exception/system.pm
   M /trunk/Master/tlpkg/tlperl/lib/autodie/exception.pm
   M /trunk/Master/tlpkg/tlperl/lib/autodie/hints.pm
   A /trunk/Master/tlpkg/tlperl/lib/autodie/skip.pm
   M /trunk/Master/tlpkg/tlperl/lib/autodie.pm
   M /trunk/Master/tlpkg/tlperl/lib/autouse.pm
   M /trunk/Master/tlpkg/tlperl/lib/base.pm
   M /trunk/Master/tlpkg/tlperl/lib/bigint.pm
   M /trunk/Master/tlpkg/tlperl/lib/bignum.pm
   M /trunk/Master/tlpkg/tlperl/lib/bigrat.pm
   M /trunk/Master/tlpkg/tlperl/lib/charnames.pm
   M /trunk/Master/tlpkg/tlperl/lib/constant.pm
   M /trunk/Master/tlpkg/tlperl/lib/deprecate.pm
   M /trunk/Master/tlpkg/tlperl/lib/diagnostics.pm
   M /trunk/Master/tlpkg/tlperl/lib/encoding.pm
   A /trunk/Master/tlpkg/tlperl/lib/experimental.pm
   M /trunk/Master/tlpkg/tlperl/lib/feature.pm
   M /trunk/Master/tlpkg/tlperl/lib/fields.pm
   M /trunk/Master/tlpkg/tlperl/lib/if.pm
   M /trunk/Master/tlpkg/tlperl/lib/inc/latest/private.pm
   M /trunk/Master/tlpkg/tlperl/lib/inc/latest.pm
   M /trunk/Master/tlpkg/tlperl/lib/integer.pm
   M /trunk/Master/tlpkg/tlperl/lib/locale.pm
   A /trunk/Master/tlpkg/tlperl/lib/lwpcook.pod
   A /trunk/Master/tlpkg/tlperl/lib/lwptut.pod
   M /trunk/Master/tlpkg/tlperl/lib/mro.pm
   M /trunk/Master/tlpkg/tlperl/lib/parent.pm
   M /trunk/Master/tlpkg/tlperl/lib/perl5db.pl
   M /trunk/Master/tlpkg/tlperl/lib/perlfaq.pm
   A /trunk/Master/tlpkg/tlperl/lib/perllocal.pod
   M /trunk/Master/tlpkg/tlperl/lib/re.pm
   M /trunk/Master/tlpkg/tlperl/lib/strict.pm
   M /trunk/Master/tlpkg/tlperl/lib/subs.pm
   M /trunk/Master/tlpkg/tlperl/lib/threads/shared.pm
   M /trunk/Master/tlpkg/tlperl/lib/threads.pm
   M /trunk/Master/tlpkg/tlperl/lib/unicore/Blocks.txt
   M /trunk/Master/tlpkg/tlperl/lib/unicore/CombiningClass.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/Decomposition.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/Heavy.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/Name.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/Name.pm
   M /trunk/Master/tlpkg/tlperl/lib/unicore/NamedSequences.txt
   M /trunk/Master/tlpkg/tlperl/lib/unicore/SpecialCasing.txt
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Age.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Bc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Bmg.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/To/Bpb.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/To/Bpt.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Cf.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Digit.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Ea.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Fold.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/GCB.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Gc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Hst.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Isc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Jg.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Jt.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Lb.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Lc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Lower.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/NFCQC.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/NFDQC.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/NFKCCF.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/NFKCQC.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/NFKDQC.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Na1.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/NameAlia.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Nt.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Nv.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/PerlDeci.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/SB.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Sc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Scx.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Tc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Title.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Uc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/Upper.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/To/WB.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/UCD.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/AHex/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/NA.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V11.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V20.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V21.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V30.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V31.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V32.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V40.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V41.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V50.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V51.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V52.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V60.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V61.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Age/V62.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Alpha/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/AL.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/AN.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/B.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/BN.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/CS.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/EN.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/ES.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/ET.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/L.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/LRE.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/LRO.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/NSM.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/ON.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/PDF.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/R.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/RLE.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/RLO.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/S.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bc/WS.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/BidiC/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/BidiM/Y.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/ASCII.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/AegeanNu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Alchemic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Alphabet.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Ancient2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/AncientG.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/AncientS.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Arabic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/ArabicEx.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/ArabicMa.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/ArabicP2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/ArabicPF.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/ArabicSu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Armenian.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Arrows.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Avestan.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Balinese.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Bamum.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/BamumSup.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Batak.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Bengali.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/BlockEle.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Bopomof2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Bopomofo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/BoxDrawi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Brahmi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Braille.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Buginese.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Buhid.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Byzantin.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJK.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKComp2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKComp3.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKComp4.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKCompa.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKExtA.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKExtB.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKExtC.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKExtD.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKRadic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKStrok.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CJKSymbo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Carian.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Chakma.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Cham.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Cherokee.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CompatJa.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/ControlP.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Coptic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Counting.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Cuneifo2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Cuneifor.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Currency.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/CypriotS.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Cyrilli2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Cyrilli3.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Cyrilli4.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Cyrillic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Deseret.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Devanag2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Devanaga.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Diacrit2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Diacrit3.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Diacriti.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Dingbats.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Domino.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Egyptian.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Emoticon.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Enclose2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Enclose3.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Enclose4.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Enclosed.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Ethiopi2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Ethiopi3.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Ethiopi4.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Ethiopic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Geometri.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Georgia2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Georgian.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Glagolit.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Gothic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Greek.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/GreekExt.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Gujarati.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Gurmukhi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/HalfAndF.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/HalfMark.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Hangul.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Hanunoo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Hebrew.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/HighPUSu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/HighSurr.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Hiragana.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/IDC.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/IPAExt.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Imperial.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/IndicNum.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Inscrip2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Inscript.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Jamo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/JamoExtA.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/JamoExtB.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Javanese.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Kaithi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/KanaSup.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Kanbun.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Kangxi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Kannada.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Katakan2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Katakana.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/KayahLi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Kharosht.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Khmer.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/KhmerSym.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Lao.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Latin1.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/LatinEx2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/LatinEx3.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/LatinEx4.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/LatinEx5.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/LatinExt.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Lepcha.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Letterli.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Limbu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/LinearBI.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/LinearBS.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Lisu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/LowSurro.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Lycian.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Lydian.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Mahjong.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Malayala.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Mandaic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MathAlph.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MathOper.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MeeteiM2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MeeteiMa.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Meroiti2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Meroitic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Miao.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MiscArro.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MiscMat2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MiscMath.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MiscPict.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MiscSymb.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MiscTech.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Modifie2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Modifier.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Mongolia.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Music.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Myanmar.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/MyanmarE.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/NB.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/NKo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/NewTaiLu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/NumberFo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/OCR.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Ogham.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/OlChiki.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/OldItali.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/OldPersi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/OldSouth.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/OldTurki.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Oriya.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Osmanya.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/PUA.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/PhagsPa.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Phaistos.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Phoenici.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Phoneti2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Phonetic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/PlayingC.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Punctuat.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Rejang.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Rumi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Runic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Samarita.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Saurasht.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Sharada.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Shavian.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Sinhala.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SmallFor.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SoraSomp.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Specials.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Sundane2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Sundanes.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SupArro2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SupArrow.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SupMathO.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SupPUAA.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SupPUAB.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SupPunct.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SuperAnd.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/SylotiNa.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Syriac.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Tagalog.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Tagbanwa.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Tags.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/TaiLe.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/TaiTham.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/TaiViet.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/TaiXuanJ.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Takri.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Tamil.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Telugu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Thaana.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Thai.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Tibetan.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Tifinagh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Transpor.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/UCAS.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/UCASExt.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Ugaritic.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/VS.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/VSSup.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Vai.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/VedicExt.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Vertical.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/YiRadica.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/YiSyllab.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Blk/Yijing.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bpt
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bpt/C.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bpt/N.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Bpt/O.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/CE/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/CI/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/CWCF/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/CWCM/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/CWKCF/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/CWL/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/CWT/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/CWU/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Cased/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/A.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/AL.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/AR.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/ATA.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/ATAR.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/ATB.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/B.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/BL.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/BR.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC10.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC103.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC107.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC11.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC118.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC12.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC122.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC129.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC13.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC130.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC132.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC14.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC15.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC16.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC17.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC18.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC19.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC20.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC21.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC22.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC23.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC24.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC25.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC26.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC27.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC28.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC29.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC30.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC31.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC32.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC33.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC34.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC35.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC36.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC84.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/CCC91.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/DA.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/DB.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/IS.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/KV.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/L.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/NK.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/NR.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/OV.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/R.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ccc/VR.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/CompEx/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/DI/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dash/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dep/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dia/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Com.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Enc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Fin.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Font.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Fra.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Init.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Iso.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Med.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Nar.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Nb.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/NonCanon.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Sml.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Sqr.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Sub.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Sup.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Vert.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Dt/Wide.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ea/A.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ea/H.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ea/N.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ea/Na.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ea/W.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ext/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/GCB/CN.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/GCB/CR.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/GCB/EX.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/GCB/LF.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/GCB/LV.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/GCB/LVT.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/GCB/SM.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/GCB/XX.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/C.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Cc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Cf.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Cn.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Co.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Cs.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/L.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/LC.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Ll.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Lm.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Lo.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Lt.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Lu.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/M.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Mc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Me.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Mn.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/N.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Nd.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Nl.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/No.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/P.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Pd.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Pe.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Pf.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Pi.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Po.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Ps.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/S.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Sc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Sk.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Sm.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/So.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Z.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Zl.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Zp.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Gc/Zs.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/GrBase/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Hex/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Hst/NA.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Hyphen/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/IDC/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/IDS/Y.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/IDSB/Y.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/IDST/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Ideo/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/2_0.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/2_1.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/3_0.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/3_1.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/3_2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/4_0.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/4_1.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/5_0.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/5_1.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/5_2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/6_0.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/6_1.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/6_2.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/In/6_3.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Ain.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Alaph.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Alef.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Beh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Beth.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Burushas.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Dal.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/DalathRi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/E.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/FarsiYeh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Fe.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Feh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/FinalSem.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Gaf.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Gamal.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Hah.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/HamzaOnH.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/He.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Heh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/HehGoal.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Heth.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Kaf.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Kaph.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Khaph.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/KnottedH.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Lam.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Lamadh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Meem.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Mim.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/NoJoinin.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Noon.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Nun.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Nya.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Pe.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Qaf.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Qaph.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Reh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Reversed.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Rohingya.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Sad.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Sadhe.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Seen.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Semkath.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Shin.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/SwashKaf.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/SyriacWa.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Tah.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Taw.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/TehMarbu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Teth.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Waw.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Yeh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/YehBarre.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/YehWithT.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Yudh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/YudhHe.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Zain.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jg/Zhain.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/JoinC/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jt/C.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jt/D.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jt/R.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jt/T.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Jt/U.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/LOE/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/AI.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/AL.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/B2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/BA.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/BB.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/BK.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/CB.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/CJ.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/CL.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/CM.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/CP.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/EX.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/GL.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/HL.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/HY.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/ID.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/IN.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/IS.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/NL.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/NS.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/OP.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/PO.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/PR.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/QU.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/SA.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/SG.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/SP.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/SY.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/WJ.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/XX.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lb/ZW.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Lower/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Math/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/NChar/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/NFCQC/M.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/NFCQC/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/NFDQC/N.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/NFDQC/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/NFKCQC/N.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/NFKCQC/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/NFKDQC/N.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/NFKDQC/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nt/Di.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nt/None.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nt/Nu.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/0.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/10.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/100.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1000.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/10000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/100000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/10000000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/10000002.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/11.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/11_2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/12.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/13.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/13_2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/14.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/15.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/15_2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/16.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/17.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/17_2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/18.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/19.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_10.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_16.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_3.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_4.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_5.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_6.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_7.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_8.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/1_9.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/20.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/200.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/2000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/20000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/21.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/216000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/22.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/23.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/24.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/25.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/26.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/27.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/28.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/29.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/2_3.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/2_5.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/3.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/30.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/300.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/3000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/30000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/31.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/32.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/33.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/34.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/35.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/36.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/37.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/38.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/39.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/3_16.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/3_2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/3_4.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/3_5.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/3_8.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/4.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/40.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/400.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/4000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/40000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/41.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/42.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/43.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/432000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/44.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/45.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/46.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/47.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/48.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/49.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/4_5.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/5.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/50.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/500.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/5000.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/50000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/5_2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/5_6.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/5_8.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/6.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/60.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/600.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/6000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/60000.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/7.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/70.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/700.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/7000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/70000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/7_2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/7_8.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/8.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/80.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/800.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/8000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/80000.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/9.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/90.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/900.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/9000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/90000.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/9_2.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/_1.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Nv/_1_2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/PatSyn/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/PatWS/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/Alnum.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/Any.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/Assigned.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/Blank.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/Graph.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PerlSpac.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PerlWord.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixAln.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixAlp.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixBla.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixCnt.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixDig.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixGra.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixLow.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixPri.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixPun.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/PosixUpp.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/Print.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/SpacePer.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/Title.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/VertSpac.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/Word.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/XPosixPu.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_PerlAny.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCh2.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_PerlCha.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_PerlFol.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDC.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_PerlIDS.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPr2.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_PerlPro.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_PerlQuo.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XExtend.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBL.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBLV.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBLVT.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBT.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XGCBV.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XLVLVTV.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XRI.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XRegula.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Perl/_XSpecia.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/QMark/Y.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Radical/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/AT.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/CL.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/EX.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/FO.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/LE.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/LO.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/NU.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/SC.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/SE.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/ST.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/Sp.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/UP.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SB/XX.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/SD/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/STerm/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Arab.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Armi.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Armn.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Avst.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Bali.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Bamu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Batk.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Beng.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Bopo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Brah.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Bugi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Buhd.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Cakm.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Cans.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Cari.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Cham.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Cher.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Copt.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Cprt.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Cyrl.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Deva.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Egyp.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Ethi.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Geor.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Glag.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Goth.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Grek.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Gujr.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Guru.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Han.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Hang.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Hano.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Hebr.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Hira.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Ital.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Java.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Kana.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Khar.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Khmr.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Knda.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Kthi.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Lana.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Lao.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Latn.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Lepc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Limb.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Linb.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Lyci.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Lydi.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Mand.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Merc.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Miao.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Mlym.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Mong.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Mtei.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Mymr.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Nko.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Ogam.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Orkh.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Orya.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Osma.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Phag.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Phli.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Phnx.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Prti.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Rjng.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Runr.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Samr.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Saur.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Shrd.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Sinh.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Sora.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Sund.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Sylo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Syrc.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Tagb.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Takr.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Tale.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Talu.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Taml.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Tavt.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Telu.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Tfng.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Tglg.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Thaa.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Thai.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Tibt.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Ugar.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Vai.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Xpeo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Xsux.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Yi.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Zinh.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Zyyy.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Sc/Zzzz.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Arab.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Armn.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Beng.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Bopo.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Buhd.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Cakm.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Cprt.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Cyrl.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Deva.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Geor.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Grek.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Gujr.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Guru.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Han.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Hang.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Hano.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Hira.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Kana.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Kthi.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Latn.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Linb.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Mand.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Mong.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Orya.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Phag.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Syrc.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Tagb.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Takr.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Tglg.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Thaa.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Yi.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Zinh.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Scx/Zyyy.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Space
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Space/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Term/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/UIdeo/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/Upper/Y.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/VS/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/EX.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/FO.pl
   A /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/HL.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/KA.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/LE.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/MB.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/ML.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/MN.pl
   D /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/NL.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/NU.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/WB/XX.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/XIDC/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/lib/XIDS/Y.pl
   M /trunk/Master/tlpkg/tlperl/lib/unicore/version
   M /trunk/Master/tlpkg/tlperl/lib/utf8.pm
   M /trunk/Master/tlpkg/tlperl/lib/utf8_heavy.pl
   A /trunk/Master/tlpkg/tlperl/lib/version
   A /trunk/Master/tlpkg/tlperl/lib/version/Internals.pod
   A /trunk/Master/tlpkg/tlperl/lib/version/regex.pm
   A /trunk/Master/tlpkg/tlperl/lib/version/vpp.pm
   M /trunk/Master/tlpkg/tlperl/lib/version.pm
   A /trunk/Master/tlpkg/tlperl/lib/version.pod
   M /trunk/Master/tlpkg/tlperl/lib/vmsish.pm
   M /trunk/Master/tlpkg/tlperl/lib/warnings/register.pm
   M /trunk/Master/tlpkg/tlperl/lib/warnings.pm
------------------------------------------------------------------------
r37063 | karl | 2015-04-26 23:24:24 +0200 (Sun, 26 Apr 2015) | 1 line

elzcards (26apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/elzcards/README
   M /trunk/Master/texmf-dist/doc/latex/elzcards/elzcards-example.tex
   M /trunk/Master/texmf-dist/doc/latex/elzcards/elzcards.pdf
   M /trunk/Master/texmf-dist/source/latex/elzcards/elzcards.dtx
   M /trunk/Master/texmf-dist/source/latex/elzcards/elzcards.ins
   D /trunk/Master/texmf-dist/tex/latex/elzcards/elzcards.cls
   A /trunk/Master/texmf-dist/tex/latex/elzcards/elzcards.sty
------------------------------------------------------------------------
r37062 | karl | 2015-04-26 23:24:05 +0200 (Sun, 26 Apr 2015) | 1 line

biblatex-realauthor (26apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.pdf
   M /trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/biblatex-realauthor.tex
   M /trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.pdf
   M /trunk/Master/texmf-dist/doc/latex/biblatex-realauthor/documentation/example.tex
   M /trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex-realauthor/realauthor.dbx
------------------------------------------------------------------------
r37061 | karl | 2015-04-26 23:23:42 +0200 (Sun, 26 Apr 2015) | 1 line

abntex2 (26apr15)

Changed paths:
   M /trunk/Master/texmf-dist/bibtex/bst/abntex2/abntex2-alf.bst
   M /trunk/Master/texmf-dist/bibtex/bst/abntex2/abntex2-num.bst
   M /trunk/Master/texmf-dist/doc/latex/abntex2/README
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-doc-test.bib
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-doc.bib
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2cite-alf.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2cite-alf.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2cite.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2cite.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-artigo.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-artigo.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-glossarios.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-glossarios.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-include-comandos.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-livro.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-livro.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-references.bib
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-relatorio-tecnico.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-relatorio-tecnico.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-slides.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-slides.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/examples/abntex2-modelo-trabalho-academico.tex
   M /trunk/Master/texmf-dist/tex/latex/abntex2/abntex2.cls
   M /trunk/Master/texmf-dist/tex/latex/abntex2/abntex2abrev.sty
   M /trunk/Master/texmf-dist/tex/latex/abntex2/abntex2cite.sty
------------------------------------------------------------------------
r37060 | mojca | 2015-04-26 23:19:15 +0200 (Sun, 26 Apr 2015) | 1 line

sparc-solaris binaries (r37055)

Changed paths:
   M /trunk/Master/bin/sparc-solaris/dvipdfmx
   M /trunk/Master/bin/sparc-solaris/luatex
   M /trunk/Master/bin/sparc-solaris/xdvipdfmx
   M /trunk/Master/bin/sparc-solaris/xetex
------------------------------------------------------------------------
r37059 | boris | 2015-04-26 22:45:36 +0200 (Sun, 26 Apr 2015) | 2 lines

Armel-linux is up to r37058


Changed paths:
   M /trunk/Master/bin/armel-linux/dvipdfmx
   M /trunk/Master/bin/armel-linux/xdvipdfmx
   M /trunk/Master/bin/armel-linux/xetex
------------------------------------------------------------------------
r37058 | karl | 2015-04-26 20:13:32 +0200 (Sun, 26 Apr 2015) | 1 line

some updates to engine doc

Changed paths:
   M /trunk/Master/texmf-dist/doc/aleph/base/News
   D /trunk/Master/texmf-dist/doc/metapost/base/index.html
   M /trunk/Master/texmf-dist/doc/pdftex/NEWS
   M /trunk/Master/texmf-dist/doc/pdftex/manual/pdftex-a.pdf
   M /trunk/Master/texmf-dist/doc/pdftex/manual/pdftex-l.pdf
   M /trunk/Master/texmf-dist/doc/pdftex/manual/pdftex-s.pdf
   M /trunk/Master/texmf-dist/doc/pdftex/manual/pdftex-syntax.txt
   M /trunk/Master/texmf-dist/doc/pdftex/manual/pdftex-t.tex
   M /trunk/Master/texmf-dist/doc/pdftex/manual/pdftex-t.txt
   A /trunk/Master/texmf-dist/doc/xetex/base/NEWS
   A /trunk/Master/texmf-dist/doc/xetex/base/README
------------------------------------------------------------------------
r37057 | karl | 2015-04-26 19:43:30 +0200 (Sun, 26 Apr 2015) | 1 line

etex_gen.tex: sync from Build

Changed paths:
   M /trunk/Master/texmf-dist/doc/etex/base/etex_gen.tex
------------------------------------------------------------------------
r37056 | kakuto | 2015-04-26 18:05:48 +0200 (Sun, 26 Apr 2015) | 1 line

update w32 binaries (2015, r37055)

Changed paths:
   M /trunk/Master/bin/win32/dvipdfmx.dll
   M /trunk/Master/bin/win32/xdvipdfmx.exe
------------------------------------------------------------------------
r37055 | jjgod | 2015-04-26 17:19:05 +0200 (Sun, 26 Apr 2015) | 1 line

Reject invalid font files instead of bail out

Changed paths:
   M /trunk/Build/source/texk/dvipdfm-x/cidtype0.c
------------------------------------------------------------------------
r37054 | jjgod | 2015-04-26 15:54:20 +0200 (Sun, 26 Apr 2015) | 3 lines

Support also CID-keyed type 0 font

...which means Hannotate and HanziPen are fixed.

Changed paths:
   M /trunk/Build/source/texk/dvipdfm-x/cidtype0.c
------------------------------------------------------------------------
r37053 | jjgod | 2015-04-26 15:36:42 +0200 (Sun, 26 Apr 2015) | 4 lines

Support loading CID type 0 font from TrueType Collection

Try not only otf files but also ttc files when reading CID type 0
font.

Changed paths:
   M /trunk/Build/source/texk/dvipdfm-x/ChangeLog
   M /trunk/Build/source/texk/dvipdfm-x/cidtype0.c
   M /trunk/Build/source/texk/dvipdfm-x/cidtype2.c
   M /trunk/Build/source/texk/dvipdfm-x/truetype.c
------------------------------------------------------------------------
r37052 | karl | 2015-04-26 03:45:29 +0200 (Sun, 26 Apr 2015) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r37051 | karl | 2015-04-26 03:11:25 +0200 (Sun, 26 Apr 2015) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r37050 | karl | 2015-04-26 00:54:38 +0200 (Sun, 26 Apr 2015) | 1 line

bidi (25apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/xelatex/bidi/README
   M /trunk/Master/texmf-dist/doc/xelatex/bidi/bidi.pdf
   M /trunk/Master/texmf-dist/source/xelatex/bidi/bidi.dtx
   M /trunk/Master/texmf-dist/source/xelatex/bidi/bidi.ins
   A /trunk/Master/texmf-dist/tex/xelatex/bidi/adjmulticol-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/algorithm2e-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amsart-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amsbook-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amsmath-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amstext-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/amsthm-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/array-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/article-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/artikel1-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/artikel2-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/artikel3-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/arydshln-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidi-longtable.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidi.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidi.tex
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidi2in1.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidicode.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidiftnxtra.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidimoderncv.cls
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidipoem.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/biditools.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/biditufte-book.cls
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/biditufte-handout.cls
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftefloat.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftegeneralstructure.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftehyperref.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftesidenote.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftetitle.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bidituftetoc.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/boek-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/boek3-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/book-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/bookest-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/breqn-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cals-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/caption-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/caption3-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/color-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/colortbl-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/combine-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/crop-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cuted-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cutwin-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cvthemebidicasual.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/cvthemebidiclassic.sty
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/dblfnote-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/draftwatermark-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/empheq-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/eso-pic-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extarticle-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extbook-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extletter-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extrafootnotefeatures-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/extreport-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/fancybox-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/fancyhdr-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/fix2col-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/fleqn-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/float-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/floatrow-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/flowfram-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/footnote-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/framed-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/ftnright-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/geometry-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/graphicx-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/hvfloat-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/hyperref-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/latex-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/leqno-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/letter-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/lettrine-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/listings-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/loadingorder-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/longtable-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/mdframed-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/memoir-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/midfloat-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/minitoc-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/multicol-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/multienum-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/natbib-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/newfloat-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/ntheorem-hyper-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/ntheorem-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/pdfpages-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/pgf-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/picinpar-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/plain-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/pstricks-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/quotchap-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/ragged2e-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/rapport1-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/rapport3-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/refrep-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/report-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/rotating-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/scrartcl-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/scrbook-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/scrlettr-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/scrreprt-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/sidecap-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/stabular-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/subfigure-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tabls-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tabularx-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tabulary-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tc-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tikz-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/titlesec-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/titletoc-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tocbibind-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tocloft-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/tocstyle-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/todonotes-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/wrapfig-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/xcolor-xetex-bidi.def
   M /trunk/Master/texmf-dist/tex/xelatex/bidi/xltxtra-xetex-bidi.def
------------------------------------------------------------------------
r37049 | karl | 2015-04-26 00:54:05 +0200 (Sun, 26 Apr 2015) | 1 line

eledmac (25apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/eledmac/Makefile
   M /trunk/Master/texmf-dist/doc/latex/eledmac/eledmac.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/eledpar.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/columns-alignment.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/cross-referencing.pdf
   A /trunk/Master/texmf-dist/doc/latex/eledmac/examples/eledmac.xdy
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/indexing.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/lemma-disambiguation.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/line-numbers-in-header.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/lualatex-parallel-rtl.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/minimal-parallels.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/minimal-verses.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/mixing-columns-and-not-columns.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/one-series-per-pstart-eledpar.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/one-series-per-pstart.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/parallel-column-two-languages.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/parallel-pages-longnotes.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/parallel-pages-notes-on-leftpage.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/sections-not-in-line-numbering.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/sections-parallel-not-in-line-numbering.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/sections-with-critical-notes-in-parallel-columns.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/sections-with-critical-notes-in-parallel-pages.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/sections-with-critical-notes.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/separator-between-paragraphs.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/side-notes.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/spaces-around-footnote-rule.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/tabular.pdf
   M /trunk/Master/texmf-dist/doc/latex/eledmac/examples/text-between-verses-in-parallel.pdf
   M /trunk/Master/texmf-dist/source/latex/eledmac/eledmac.dtx
   M /trunk/Master/texmf-dist/tex/latex/eledmac/eledmac.sty
------------------------------------------------------------------------
r37048 | karl | 2015-04-25 23:44:59 +0200 (Sat, 25 Apr 2015) | 1 line

i386-netbsd/tl15

Changed paths:
   M /trunk/Master/bin/i386-netbsd/dvipdfmx
   M /trunk/Master/bin/i386-netbsd/luajittex
   M /trunk/Master/bin/i386-netbsd/luatex
   M /trunk/Master/bin/i386-netbsd/xdvipdfmx
   M /trunk/Master/bin/i386-netbsd/xetex
------------------------------------------------------------------------
r37047 | kakuto | 2015-04-25 23:44:13 +0200 (Sat, 25 Apr 2015) | 1 line

Update w32 binaries (2015, r37046).

Changed paths:
   M /trunk/Master/bin/win32/dvipdfmx.dll
   M /trunk/Master/bin/win32/xdvipdfmx.exe
------------------------------------------------------------------------
r37046 | jjgod | 2015-04-25 15:49:46 +0200 (Sat, 25 Apr 2015) | 4 lines

Be more permissive about CFF dict parsing

Ignore CFF dict with unknown opcode instead of treating it as an
error and immediately bail out.

Changed paths:
   M /trunk/Build/source/texk/dvipdfm-x/ChangeLog
   M /trunk/Build/source/texk/dvipdfm-x/cff_dict.c
------------------------------------------------------------------------
r37045 | peter | 2015-04-25 15:08:24 +0200 (Sat, 25 Apr 2015) | 1 line

x86_64-linux binaries (r37044)

Changed paths:
   M /trunk/Master/bin/x86_64-linux/dvipdfmx
   M /trunk/Master/bin/x86_64-linux/xdvipdfmx
------------------------------------------------------------------------
r37044 | peter | 2015-04-25 14:23:27 +0200 (Sat, 25 Apr 2015) | 1 line

x86_64-linuxbinaries (r37042)

Changed paths:
   M /trunk/Master/bin/x86_64-linux/dvipdfmx
   M /trunk/Master/bin/x86_64-linux/luajittex
   M /trunk/Master/bin/x86_64-linux/luatex
   M /trunk/Master/bin/x86_64-linux/xdvi-xaw
   M /trunk/Master/bin/x86_64-linux/xdvipdfmx
   M /trunk/Master/bin/x86_64-linux/xetex
------------------------------------------------------------------------
r37043 | jjgod | 2015-04-25 14:13:13 +0200 (Sat, 25 Apr 2015) | 4 lines

Restore Mac TrueType support removed in r34718

r34718 accidentally removed Mac TrueType font support, broke fonts
like Osaka on OS X.

Changed paths:
   M /trunk/Build/source/texk/dvipdfm-x/ChangeLog
   M /trunk/Build/source/texk/dvipdfm-x/sfnt.c
------------------------------------------------------------------------
r37042 | karl | 2015-04-25 03:47:34 +0200 (Sat, 25 Apr 2015) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r37041 | karl | 2015-04-25 03:11:29 +0200 (Sat, 25 Apr 2015) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r37040 | karl | 2015-04-25 01:43:39 +0200 (Sat, 25 Apr 2015) | 1 line

sync from Build

Changed paths:
   M /trunk/Master/texmf-dist/doc/man/man1/Makefile
   M /trunk/Master/texmf-dist/dvips/base/special.pro
------------------------------------------------------------------------
r37039 | kakuto | 2015-04-25 01:24:32 +0200 (Sat, 25 Apr 2015) | 1 line

update w32 binaries (2015).

Changed paths:
   M /trunk/Master/bin/win32/fixmsxpart.exe
   M /trunk/Master/bin/win32/msxlint.exe
------------------------------------------------------------------------
r37038 | karl | 2015-04-25 01:20:11 +0200 (Sat, 25 Apr 2015) | 1 line

upmethodology (24apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/upmethodology/upmethodology-doc.pdf
   M /trunk/Master/texmf-dist/doc/latex/upmethodology/upmethodology-doc.tex
   M /trunk/Master/texmf-dist/tex/latex/upmethodology/UPMVERSION.def
   M /trunk/Master/texmf-dist/tex/latex/upmethodology/upmethodology-document.sty
   M /trunk/Master/texmf-dist/tex/latex/upmethodology/upmethodology-fmt.sty
   M /trunk/Master/texmf-dist/tex/latex/upmethodology/upmethodology-p-common.sty
------------------------------------------------------------------------
r37037 | karl | 2015-04-25 01:19:49 +0200 (Sat, 25 Apr 2015) | 1 line

mhchem (24apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/mhchem/README
   M /trunk/Master/texmf-dist/doc/latex/mhchem/mhchem.pdf
   M /trunk/Master/texmf-dist/doc/latex/mhchem/mhchem.tex
   M /trunk/Master/texmf-dist/tex/latex/mhchem/mhchem.sty
------------------------------------------------------------------------
r37036 | karl | 2015-04-25 01:19:31 +0200 (Sat, 25 Apr 2015) | 1 line

koma-script (24apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/koma-script/README
   M /trunk/Master/texmf-dist/doc/latex/koma-script/manifest.txt
   M /trunk/Master/texmf-dist/doc/latex/koma-script/scrguide.html
   M /trunk/Master/texmf-dist/doc/latex/koma-script/scrguide.pdf
   M /trunk/Master/texmf-dist/doc/latex/koma-script/scrguien.html
   M /trunk/Master/texmf-dist/doc/latex/koma-script/scrguien.pdf
   M /trunk/Master/texmf-dist/doc/latex/koma-script/scrhack.pdf
   M /trunk/Master/texmf-dist/doc/latex/koma-script/scrjura.pdf
   M /trunk/Master/texmf-dist/doc/latex/koma-script/scrpage2.pdf
   M /trunk/Master/texmf-dist/doc/latex/koma-script/tocstyle.pdf
   M /trunk/Master/texmf-dist/source/latex/koma-script/ChangeLog
   M /trunk/Master/texmf-dist/source/latex/koma-script/Makefile
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-0.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-1.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-12.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-13.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-14.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-15.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-2.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-20.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-21.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-3.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-4.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-5.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-6.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-7.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-8.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/common-9.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/guide.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/introduction.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/japanlco.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/preface.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scraddr.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrbase.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrbookreportarticle-experts.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrbookreportarticle.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrdatetime.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrextend.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrhack.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrlayer-notecolumn.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrlayer-scrpage-experts.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrlayer-scrpage.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrlayer.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrlfile.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrlttr2-experts.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrlttr2.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/scrwfile.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/tocbasic.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/typearea-experts.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/english/typearea.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/guide.bib
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/guide.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-0.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-1.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-12.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-13.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-14.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-15.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-2.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-20.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-21.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-3.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-4.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-5.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-6.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-7.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-8.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/common-9.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/guide.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/introduction.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scraddr.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrbase.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrbookreportarticle-experts.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrbookreportarticle.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrdatetime.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrextend.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrhack.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrlayer-scrpage-experts.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrlayer-scrpage.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrlayer.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrlfile.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrlttr2-experts.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrlttr2.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/scrwfile.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/tocbasic.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/typearea-experts.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/ngerman/typearea.tex
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/scrguide.cls
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/scrguide.html
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/scrguide.pdf
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/scrguien.html
   M /trunk/Master/texmf-dist/source/latex/koma-script/doc/scrguien.pdf
   D /trunk/Master/texmf-dist/source/latex/koma-script/scrbeta.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrextend.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrhack.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrjura.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-basics.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-bibliography.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-circularletters.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-compatibility.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-floats.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-fonts.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-footnotes.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-index.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-language.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-letterclassoptions.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-listsandtabulars.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-listsof.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-miscellaneous.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-notepaper.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-pagestyles.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-paragraphs.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-pseudolengths.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-sections.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-title.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-typearea.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-variables.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrkernel-version.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrlayer-scrpage.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrlayer.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/scrmain.ins
   M /trunk/Master/texmf-dist/source/latex/koma-script/tocbasic.dtx
   M /trunk/Master/texmf-dist/source/latex/koma-script/tocstyle.dtx
   M /trunk/Master/texmf-dist/tex/latex/koma-script/DIN.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/DINmtext.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/KOMAold.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/KakuLL.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/NF.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/NipponEH.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/NipponEL.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/NipponLH.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/NipponLL.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/NipponRL.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/SN.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/SNleft.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/UScommercial9.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/UScommercial9DW.lco
   M /trunk/Master/texmf-dist/tex/latex/koma-script/float.hak
   M /trunk/Master/texmf-dist/tex/latex/koma-script/floatrow.hak
   M /trunk/Master/texmf-dist/tex/latex/koma-script/hyperref.hak
   M /trunk/Master/texmf-dist/tex/latex/koma-script/listings.hak
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrartcl.cls
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrbase.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrbook.cls
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrdate.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrextend.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrfontsizes.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrhack.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrjura.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrkbase.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrlayer-notecolumn.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrlayer-scrpage.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrlayer.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrletter.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrlfile.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrlttr2.cls
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrpage2.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrreprt.cls
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrsize10pt.clo
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrsize11pt.clo
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrsize12pt.clo
   M /trunk/Master/texmf-dist/tex/latex/koma-script/scrtime.sty
   A /trunk/Master/texmf-dist/tex/latex/koma-script/setspace.hak
   M /trunk/Master/texmf-dist/tex/latex/koma-script/tocbasic.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/tocstyle.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/typearea.sty
   M /trunk/Master/texmf-dist/tex/latex/koma-script/visualize.lco
------------------------------------------------------------------------
r37035 | karl | 2015-04-25 01:16:22 +0200 (Sat, 25 Apr 2015) | 1 line

restore lost musixtnt binaries

Changed paths:
   A /trunk/Master/bin/alpha-linux/fixmsxpart
   A /trunk/Master/bin/alpha-linux/msxlint
   A /trunk/Master/bin/amd64-freebsd/fixmsxpart
   A /trunk/Master/bin/amd64-freebsd/msxlint
   A /trunk/Master/bin/amd64-netbsd/fixmsxpart
   A /trunk/Master/bin/amd64-netbsd/msxlint
   A /trunk/Master/bin/armel-linux/fixmsxpart
   A /trunk/Master/bin/armel-linux/msxlint
   A /trunk/Master/bin/armhf-linux/fixmsxpart
   A /trunk/Master/bin/armhf-linux/msxlint
   A /trunk/Master/bin/i386-cygwin/fixmsxpart.exe
   A /trunk/Master/bin/i386-cygwin/msxlint.exe
   A /trunk/Master/bin/i386-freebsd/fixmsxpart
   A /trunk/Master/bin/i386-freebsd/msxlint
   A /trunk/Master/bin/i386-linux/fixmsxpart
   A /trunk/Master/bin/i386-linux/msxlint
   A /trunk/Master/bin/i386-netbsd/fixmsxpart
   A /trunk/Master/bin/i386-netbsd/msxlint
   A /trunk/Master/bin/mipsel-linux/fixmsxpart
   A /trunk/Master/bin/mipsel-linux/msxlint
   A /trunk/Master/bin/powerpc-linux/fixmsxpart
   A /trunk/Master/bin/powerpc-linux/msxlint
   A /trunk/Master/bin/sparc-solaris/fixmsxpart
   A /trunk/Master/bin/sparc-solaris/msxlint
   A /trunk/Master/bin/universal-darwin/fixmsxpart
   A /trunk/Master/bin/universal-darwin/msxlint
   A /trunk/Master/bin/win32/fixmsxpart.exe
   A /trunk/Master/bin/win32/msxlint.exe
   A /trunk/Master/bin/x86_64-cygwin/fixmsxpart.exe
   A /trunk/Master/bin/x86_64-cygwin/msxlint.exe
   A /trunk/Master/bin/x86_64-darwin/fixmsxpart
   A /trunk/Master/bin/x86_64-darwin/msxlint
   A /trunk/Master/bin/x86_64-linux/fixmsxpart
   A /trunk/Master/bin/x86_64-linux/msxlint
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/musixtnt.tlpsrc
------------------------------------------------------------------------
r37034 | kakuto | 2015-04-24 16:54:34 +0200 (Fri, 24 Apr 2015) | 1 line

update w32 binaries (2015)

Changed paths:
   M /trunk/Master/bin/win32/dvipdfmx.dll
   M /trunk/Master/bin/win32/xdvipdfmx.exe
   M /trunk/Master/bin/win32/xetex.exe
------------------------------------------------------------------------
r37033 | kakuto | 2015-04-24 16:30:43 +0200 (Fri, 24 Apr 2015) | 1 line

fix a bug in jpegimage.c in dvipdfm-x and xetexdir/image.

Changed paths:
   M /trunk/Build/source/texk/dvipdfm-x/jpegimage.c
   M /trunk/Build/source/texk/web2c/xetexdir/image/jpegimage.c
------------------------------------------------------------------------
r37032 | boris | 2015-04-24 15:21:23 +0200 (Fri, 24 Apr 2015) | 2 lines

Armel-linux updated to r37031 of sources


Changed paths:
   M /trunk/Master/bin/armel-linux/dvipdfmx
   M /trunk/Master/bin/armel-linux/luajittex
   M /trunk/Master/bin/armel-linux/luatex
   M /trunk/Master/bin/armel-linux/xdvipdfmx
   M /trunk/Master/bin/armel-linux/xetex
------------------------------------------------------------------------
r37031 | peter | 2015-04-24 12:59:55 +0200 (Fri, 24 Apr 2015) | 1 line

x86_64 linux binaries (r37030)

Changed paths:
   M /trunk/Master/bin/x86_64-linux/luajittex
   M /trunk/Master/bin/x86_64-linux/luatex
   M /trunk/Master/bin/x86_64-linux/xetex
------------------------------------------------------------------------
r37030 | preining | 2015-04-24 04:45:40 +0200 (Fri, 24 Apr 2015) | 2 lines

return code from generate, make generate fmtutil deprecated


Changed paths:
   M /trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r37029 | karl | 2015-04-24 03:44:52 +0200 (Fri, 24 Apr 2015) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r37028 | karl | 2015-04-24 03:20:08 +0200 (Fri, 24 Apr 2015) | 1 line

/home/texlive/karl/Master/tlpkg/bin/tl-update-auto

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r37027 | karl | 2015-04-24 03:12:41 +0200 (Fri, 24 Apr 2015) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r37026 | karl | 2015-04-24 03:11:23 +0200 (Fri, 24 Apr 2015) | 1 line

(tl-update-tlpdb) force increased revision after removal of files

Changed paths:
   M /trunk/Master/bin/alpha-linux/musixtex
   M /trunk/Master/bin/amd64-freebsd/musixtex
   M /trunk/Master/bin/amd64-netbsd/musixtex
   M /trunk/Master/bin/armel-linux/musixtex
   M /trunk/Master/bin/armhf-linux/musixtex
   M /trunk/Master/bin/i386-cygwin/musixtex
   M /trunk/Master/bin/i386-freebsd/musixtex
   M /trunk/Master/bin/i386-linux/musixtex
   M /trunk/Master/bin/i386-netbsd/musixtex
   M /trunk/Master/bin/mipsel-linux/musixtex
   M /trunk/Master/bin/powerpc-linux/musixtex
   M /trunk/Master/bin/sparc-solaris/musixtex
   M /trunk/Master/bin/universal-darwin/musixtex
   M /trunk/Master/bin/win32/musixtex.exe
   M /trunk/Master/bin/x86_64-cygwin/musixtex
   M /trunk/Master/bin/x86_64-darwin/musixtex
   M /trunk/Master/bin/x86_64-linux/musixtex
   M /trunk/Master/tlpkg/tlpsrc/recipebook.tlpsrc
------------------------------------------------------------------------
r37025 | karl | 2015-04-24 00:56:57 +0200 (Fri, 24 Apr 2015) | 1 line

musixtex (22apr15), with musixtnt binaries (fixmsxpart,msxlint) now their own package

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
   D /trunk/Master/bin/alpha-linux/fixmsxpart
   D /trunk/Master/bin/alpha-linux/msxlint
   D /trunk/Master/bin/amd64-freebsd/fixmsxpart
   D /trunk/Master/bin/amd64-freebsd/msxlint
   D /trunk/Master/bin/amd64-netbsd/fixmsxpart
   D /trunk/Master/bin/amd64-netbsd/msxlint
   D /trunk/Master/bin/armel-linux/fixmsxpart
   D /trunk/Master/bin/armel-linux/msxlint
   D /trunk/Master/bin/armhf-linux/fixmsxpart
   D /trunk/Master/bin/armhf-linux/msxlint
   D /trunk/Master/bin/i386-cygwin/fixmsxpart.exe
   D /trunk/Master/bin/i386-cygwin/msxlint.exe
   D /trunk/Master/bin/i386-freebsd/fixmsxpart
   D /trunk/Master/bin/i386-freebsd/msxlint
   D /trunk/Master/bin/i386-linux/fixmsxpart
   D /trunk/Master/bin/i386-linux/msxlint
   D /trunk/Master/bin/i386-netbsd/fixmsxpart
   D /trunk/Master/bin/i386-netbsd/msxlint
   D /trunk/Master/bin/mipsel-linux/fixmsxpart
   D /trunk/Master/bin/mipsel-linux/msxlint
   D /trunk/Master/bin/powerpc-linux/fixmsxpart
   D /trunk/Master/bin/powerpc-linux/msxlint
   D /trunk/Master/bin/sparc-solaris/fixmsxpart
   D /trunk/Master/bin/sparc-solaris/msxlint
   D /trunk/Master/bin/universal-darwin/fixmsxpart
   D /trunk/Master/bin/universal-darwin/msxlint
   D /trunk/Master/bin/win32/fixmsxpart.exe
   D /trunk/Master/bin/win32/msxlint.exe
   D /trunk/Master/bin/x86_64-cygwin/fixmsxpart.exe
   D /trunk/Master/bin/x86_64-cygwin/msxlint.exe
   D /trunk/Master/bin/x86_64-darwin/fixmsxpart
   D /trunk/Master/bin/x86_64-darwin/msxlint
   D /trunk/Master/bin/x86_64-linux/fixmsxpart
   D /trunk/Master/bin/x86_64-linux/msxlint
   M /trunk/Master/texmf-dist/doc/generic/musixtex/ChangeLog-116.txt
   M /trunk/Master/texmf-dist/doc/generic/musixtex/README
   D /trunk/Master/texmf-dist/doc/generic/musixtex/examples/kinder.log
   D /trunk/Master/texmf-dist/doc/generic/musixtex/examples/kinder.pdf
   M /trunk/Master/texmf-dist/doc/generic/musixtex/musixdoc/extensions.tex
   M /trunk/Master/texmf-dist/doc/generic/musixtex/musixdoc/fonts.tex
   M /trunk/Master/texmf-dist/doc/generic/musixtex/musixdoc/frontmatter.tex
   M /trunk/Master/texmf-dist/doc/generic/musixtex/musixdoc/preparing.tex
   M /trunk/Master/texmf-dist/doc/generic/musixtex/musixdoc/summary.tex
   D /trunk/Master/texmf-dist/doc/generic/musixtex/musixdoc/texput.log
   M /trunk/Master/texmf-dist/doc/generic/musixtex/musixdoc.pdf
   D /trunk/Master/texmf-dist/doc/generic/musixtex/musixlyr/examples/nonmoriar.dvi
   D /trunk/Master/texmf-dist/doc/generic/musixtex/musixlyr/mxlyrdoc.dvi
   M /trunk/Master/texmf-dist/doc/generic/musixtex/reference/musixre1.pdf
   M /trunk/Master/texmf-dist/tex/generic/musixtex/musixtex.tex
------------------------------------------------------------------------
r37024 | karl | 2015-04-24 00:55:51 +0200 (Fri, 24 Apr 2015) | 1 line

musixtnt, split from musixtex

Changed paths:
   A /trunk/Master/texmf-dist/doc/generic/musixtnt
   A /trunk/Master/texmf-dist/doc/generic/musixtnt/README
   A /trunk/Master/texmf-dist/doc/generic/musixtnt/TransformNotes.3
   A /trunk/Master/texmf-dist/doc/generic/musixtnt/TransformNotes.pdf
   A /trunk/Master/texmf-dist/doc/generic/musixtnt/fixmsxpart.pdf
   A /trunk/Master/texmf-dist/doc/generic/musixtnt/msxlint.pdf
   A /trunk/Master/texmf-dist/doc/generic/musixtnt/musixtnt-2015-02-09.tar.gz
   A /trunk/Master/texmf-dist/tex/generic/musixtnt
   A /trunk/Master/texmf-dist/tex/generic/musixtnt/musixtnt.tex
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/collection-music.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/musixtex.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/musixtnt.tlpsrc
------------------------------------------------------------------------
r37023 | kakuto | 2015-04-24 00:31:15 +0200 (Fri, 24 Apr 2015) | 1 line

Update w32 binaries (2015, r37018).

Changed paths:
   M /trunk/Master/bin/win32/xetex.exe
------------------------------------------------------------------------
r37022 | karl | 2015-04-23 23:31:41 +0200 (Thu, 23 Apr 2015) | 1 line

rm symlink

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/recipebook/images/sample_image.jpg
------------------------------------------------------------------------
r37021 | karl | 2015-04-23 23:16:25 +0200 (Thu, 23 Apr 2015) | 1 line

memoir (23apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/memoir/README
   M /trunk/Master/texmf-dist/doc/latex/memoir/memman.pdf
   M /trunk/Master/texmf-dist/doc/latex/memoir/memman.tex
   M /trunk/Master/texmf-dist/doc/latex/memoir/memsty.sty
   M /trunk/Master/texmf-dist/source/latex/memoir/memoir.dtx
   M /trunk/Master/texmf-dist/tex/latex/memoir/memoir.cls
------------------------------------------------------------------------
r37020 | karl | 2015-04-23 23:16:11 +0200 (Thu, 23 Apr 2015) | 1 line

mcmthesis (23apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/mcmthesis/mcmthesis-demo.pdf
   M /trunk/Master/texmf-dist/doc/latex/mcmthesis/mcmthesis.pdf
   M /trunk/Master/texmf-dist/source/latex/mcmthesis/mcmthesis.dtx
   M /trunk/Master/texmf-dist/tex/latex/mcmthesis/mcmthesis.cls
------------------------------------------------------------------------
r37019 | karl | 2015-04-23 23:15:55 +0200 (Thu, 23 Apr 2015) | 1 line

cryptocode (23apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/cryptocode/README
   M /trunk/Master/texmf-dist/doc/latex/cryptocode/cryptocode.pdf
   M /trunk/Master/texmf-dist/doc/latex/cryptocode/cryptocode.tex
   M /trunk/Master/texmf-dist/tex/latex/cryptocode/cryptocode.sty
   M /trunk/Master/tlpkg/libexec/ctan2tds
------------------------------------------------------------------------
r37018 | hosny | 2015-04-23 18:15:28 +0200 (Thu, 23 Apr 2015) | 1 line

Fix the behaviour of the deprecated \XeTeXcountvariations

Changed paths:
   M /trunk/Build/source/texk/web2c/xetexdir/xetex.web
------------------------------------------------------------------------
r37017 | kakuto | 2015-04-23 15:02:08 +0200 (Thu, 23 Apr 2015) | 1 line

Update w32 binaries (2015, r37016).

Changed paths:
   M /trunk/Master/bin/win32/luajittex.dll
   M /trunk/Master/bin/win32/luatex.dll
------------------------------------------------------------------------
r37016 | kakuto | 2015-04-23 11:46:21 +0200 (Thu, 23 Apr 2015) | 1 line

luatexdir: Sync with the upstream (Copyright year 2014 ---> 2015).

Changed paths:
   M /trunk/Build/source/texk/web2c/luatexdir/lua/luainit.w
   M /trunk/Build/source/texk/web2c/luatexdir/luatex.c
------------------------------------------------------------------------
r37015 | karl | 2015-04-23 03:47:27 +0200 (Thu, 23 Apr 2015) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
   A /trunk/Build/logs/svnlog.36999.gz
------------------------------------------------------------------------
------------------------------------------------------------------------
r37014 | karl | 2015-04-23 03:18:48 +0200 (Thu, 23 Apr 2015) | 1 line

/home/texlive/karl/Master/tlpkg/bin/tl-update-auto

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r37013 | karl | 2015-04-23 03:11:29 +0200 (Thu, 23 Apr 2015) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r37012 | karl | 2015-04-23 01:14:18 +0200 (Thu, 23 Apr 2015) | 1 line

amd64-netbsd/tl15

Changed paths:
   M /trunk/Master/bin/amd64-netbsd/dvipdfmx
   M /trunk/Master/bin/amd64-netbsd/xdvipdfmx
------------------------------------------------------------------------
r37011 | preining | 2015-04-23 01:10:04 +0200 (Thu, 23 Apr 2015) | 2 lines

better action specification, try to make proper return codes


Changed paths:
   M /trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r37010 | karl | 2015-04-22 23:39:35 +0200 (Wed, 22 Apr 2015) | 1 line

recipebook (22apr15)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/recipebook
   A /trunk/Master/texmf-dist/doc/latex/recipebook/LongSample.pdf
   A /trunk/Master/texmf-dist/doc/latex/recipebook/LongSample.tex
   A /trunk/Master/texmf-dist/doc/latex/recipebook/README
   A /trunk/Master/texmf-dist/doc/latex/recipebook/ShortSample.pdf
   A /trunk/Master/texmf-dist/doc/latex/recipebook/ShortSample.tex
   A /trunk/Master/texmf-dist/doc/latex/recipebook/images
   A /trunk/Master/texmf-dist/doc/latex/recipebook/images/Curried_butternut_squash_soup.jpg
   A /trunk/Master/texmf-dist/doc/latex/recipebook/images/Curried_chicken_and_rice.jpg
   A /trunk/Master/texmf-dist/doc/latex/recipebook/images/French_dip.jpg
   A /trunk/Master/texmf-dist/doc/latex/recipebook/images/Grilled_chicken_with_capers.jpg
   A /trunk/Master/texmf-dist/doc/latex/recipebook/images/Hawaiian_burgers.jpg
   A /trunk/Master/texmf-dist/doc/latex/recipebook/images/Italian_calzones.jpg
   A /trunk/Master/texmf-dist/doc/latex/recipebook/images/Pumpkin_pie_soup.jpg
   A /trunk/Master/texmf-dist/doc/latex/recipebook/images/sample_image.jpg
   A /trunk/Master/texmf-dist/tex/latex/recipebook
   A /trunk/Master/texmf-dist/tex/latex/recipebook/RecipeBook.cls
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/recipebook.tlpsrc
------------------------------------------------------------------------
r37009 | karl | 2015-04-22 23:38:36 +0200 (Wed, 22 Apr 2015) | 1 line

beamerposter (22apr15)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/beamerposter/README
   M /trunk/Master/texmf-dist/doc/latex/beamerposter/beamerposter.pdf
   M /trunk/Master/texmf-dist/doc/latex/beamerposter/beamerposter.tex
   M /trunk/Master/texmf-dist/doc/latex/beamerposter/example.tex
   M /trunk/Master/texmf-dist/tex/latex/beamerposter/beamerposter.sty
------------------------------------------------------------------------
r37008 | karl | 2015-04-22 23:37:58 +0200 (Wed, 22 Apr 2015) | 1 line

i386-linux/tl15

Changed paths:
   M /trunk/Master/bin/i386-linux/dvipdfmx
   M /trunk/Master/bin/i386-linux/xdvipdfmx
------------------------------------------------------------------------
r37007 | karl | 2015-04-22 23:20:25 +0200 (Wed, 22 Apr 2015) | 1 line

kotex-oblivoir

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/kotex-oblivoir/ChangeLog
   M /trunk/Master/texmf-dist/doc/latex/kotex-oblivoir/README
   M /trunk/Master/texmf-dist/doc/latex/kotex-oblivoir/doc/oblivoir-simpledoc.pdf
   M /trunk/Master/texmf-dist/doc/latex/kotex-oblivoir/doc/oblivoir-simpledoc.tex
   M /trunk/Master/texmf-dist/tex/latex/kotex-oblivoir/oblivoir-xlua.cls
------------------------------------------------------------------------
r37006 | karl | 2015-04-22 23:19:53 +0200 (Wed, 22 Apr 2015) | 1 line

ltximg (22apr15)

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/ltximg/ltximg.pl
   M /trunk/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
   A /trunk/Master/texmf-dist/doc/support/ltximg/CHANGES
   M /trunk/Master/texmf-dist/doc/support/ltximg/README
   M /trunk/Master/texmf-dist/doc/support/ltximg/ltximg-doc.pdf
   M /trunk/Master/texmf-dist/doc/support/ltximg/ltximg-doc.tex
   D /trunk/Master/texmf-dist/doc/support/ltximg/test.tex
   M /trunk/Master/texmf-dist/scripts/ltximg/ltximg.pl
------------------------------------------------------------------------
r37005 | karl | 2015-04-22 19:13:29 +0200 (Wed, 22 Apr 2015) | 1 line

sync

Changed paths:
   M /trunk/Master/texmf-dist/tex/texinfo/txi-es.tex
------------------------------------------------------------------------
r37004 | kbrown | 2015-04-22 18:46:19 +0200 (Wed, 22 Apr 2015) | 1 line

Update (x)dvipdfmx on Cygwin

Changed paths:
   M /trunk/Master/bin/i386-cygwin/dvipdfmx.exe
   M /trunk/Master/bin/i386-cygwin/xdvipdfmx.exe
   M /trunk/Master/bin/x86_64-cygwin/dvipdfmx.exe
   M /trunk/Master/bin/x86_64-cygwin/xdvipdfmx.exe
------------------------------------------------------------------------
r37003 | nikola | 2015-04-22 14:27:21 +0200 (Wed, 22 Apr 2015) | 1 line

FreeBSD i386/amd64: catching up changes r36910-r36700.

Changed paths:
   M /trunk/Master/bin/amd64-freebsd/dvipdfmx
   M /trunk/Master/bin/amd64-freebsd/xdvipdfmx
   M /trunk/Master/bin/i386-freebsd/dvipdfmx
   M /trunk/Master/bin/i386-freebsd/xdvipdfmx
------------------------------------------------------------------------
r37002 | peter | 2015-04-22 13:05:57 +0200 (Wed, 22 Apr 2015) | 1 line

Update xindy modules

Changed paths:
   M /trunk/Master/texmf-dist/xindy/modules/lang/albanian/latin1.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/albanian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/belarusian/cp1251.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/belarusian/iso88595.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/belarusian/isoir111.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/belarusian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/bulgarian/cp1251.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/bulgarian/iso88595.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/bulgarian/koi8-r.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/bulgarian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/croatian/cp1250.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/croatian/latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/croatian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/czech/cp1250.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/czech/latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/czech/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/danish/cp1252.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/danish/latin9.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/danish/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/dutch/ij-as-ij-latin1.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/dutch/ij-as-ij-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/dutch/ij-as-y-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/english/cp1252.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/english/latin9.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/english/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/esperanto/latin3.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/esperanto/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/estonian/cp1252.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/estonian/latin9.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/estonian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/finnish/cp1252.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/finnish/latin9.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/finnish/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/french/cp1252.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/french/latin9.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/french/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/general/cp1252.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/general/cp850.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/general/latin9.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/general/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/georgian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/german/braille-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/german/din5007-latin1.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/german/din5007-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/german/duden-latin1.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/german/duden-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/greek/iso88597.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/greek/polytonic-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/greek/translit-latin4.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/greek/translit-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/greek/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/gypsy/northrussian-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/hausa/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/hebrew/iso88598.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/hebrew/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/hungarian/cp1250.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/hungarian/latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/hungarian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/icelandic/cp1252.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/icelandic/latin9.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/icelandic/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/italian/latin1.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/italian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/klingon/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/kurdish/bedirxan-latin5.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/kurdish/bedirxan-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/kurdish/turkish-i-latin5.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/kurdish/turkish-i-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/latin/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/latvian/latin4.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/latvian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/lithuanian/latin4.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/lithuanian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/lower-sorbian/cp1250.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/lower-sorbian/latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/lower-sorbian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/macedonian/cp1251.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/macedonian/iso88595.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/macedonian/isoir111.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/macedonian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/mongolian/cyrillic-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/norwegian/latin1.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/norwegian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/persian/variant1-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/persian/variant2-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/polish/cp1250.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/polish/latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/polish/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/portuguese/latin1.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/portuguese/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/romanian/latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/romanian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/russian/cp1251.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/russian/iso88595.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/russian/koi8-r.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/russian/translit-iso-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/russian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/serbian/cp1251.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/serbian/iso88595.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/serbian/isoir111.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/serbian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/slovak/large-cp1250.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/slovak/large-latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/slovak/large-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/slovak/small-cp1250.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/slovak/small-latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/slovak/small-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/slovenian/cp1250.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/slovenian/latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/slovenian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/spanish/modern-latin1.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/spanish/modern-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/spanish/traditional-latin1.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/spanish/traditional-utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/swedish/cp1252.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/swedish/latin9.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/swedish/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/turkish/latin3.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/turkish/latin5.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/turkish/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/ukrainian/cp1251.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/ukrainian/koi8-u.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/ukrainian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/upper-sorbian/cp1250.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/upper-sorbian/latin2.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/upper-sorbian/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/lang/vietnamese/utf8.xdy
   M /trunk/Master/texmf-dist/xindy/modules/tex/inputenc/latin.xdy
   M /trunk/Master/texmf-dist/xindy/modules/tex/inputenc/utf8.xdy
------------------------------------------------------------------------
r37001 | peter | 2015-04-22 12:58:54 +0200 (Wed, 22 Apr 2015) | 1 line

Update manpages

Changed paths:
   M /trunk/Master/texmf-dist/doc/man/man1/aleph.1
   M /trunk/Master/texmf-dist/doc/man/man1/aleph.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/amstex.1
   M /trunk/Master/texmf-dist/doc/man/man1/amstex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/bg5conv.1
   M /trunk/Master/texmf-dist/doc/man/man1/bg5conv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/bibtex.1
   M /trunk/Master/texmf-dist/doc/man/man1/bibtex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cef5conv.1
   M /trunk/Master/texmf-dist/doc/man/man1/cef5conv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cefconv.1
   M /trunk/Master/texmf-dist/doc/man/man1/cefconv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cefsconv.1
   M /trunk/Master/texmf-dist/doc/man/man1/cefsconv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cfftot1.1
   M /trunk/Master/texmf-dist/doc/man/man1/cfftot1.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ctangle.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ctie.1
   M /trunk/Master/texmf-dist/doc/man/man1/ctie.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cweave.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/cweb.1
   M /trunk/Master/texmf-dist/doc/man/man1/cweb.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvicopy.1
   M /trunk/Master/texmf-dist/doc/man/man1/dvicopy.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvigif.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj.1
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj2p.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj4.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj4l.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvilj6.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvipdfm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvipdfmx.1
   M /trunk/Master/texmf-dist/doc/man/man1/dvipdfmx.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvipng.1
   M /trunk/Master/texmf-dist/doc/man/man1/dvipng.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvisvgm.1
   M /trunk/Master/texmf-dist/doc/man/man1/dvisvgm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/dvitype.1
   M /trunk/Master/texmf-dist/doc/man/man1/dvitype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/etex.1
   M /trunk/Master/texmf-dist/doc/man/man1/etex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/extconv.1
   M /trunk/Master/texmf-dist/doc/man/man1/extconv.man1.pdf
   A /trunk/Master/texmf-dist/doc/man/man1/fixmsxpart.1
   A /trunk/Master/texmf-dist/doc/man/man1/fixmsxpart.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/fmtutil.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/gftodvi.1
   M /trunk/Master/texmf-dist/doc/man/man1/gftodvi.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/gftopk.1
   M /trunk/Master/texmf-dist/doc/man/man1/gftopk.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/gftype.1
   M /trunk/Master/texmf-dist/doc/man/man1/gftype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/hbf2gf.1
   M /trunk/Master/texmf-dist/doc/man/man1/hbf2gf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpseaccess.1
   M /trunk/Master/texmf-dist/doc/man/man1/kpseaccess.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsereadlink.1
   M /trunk/Master/texmf-dist/doc/man/man1/kpsereadlink.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsestat.1
   M /trunk/Master/texmf-dist/doc/man/man1/kpsestat.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/kpsewhich.1
   M /trunk/Master/texmf-dist/doc/man/man1/kpsewhich.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/lacheck.1
   M /trunk/Master/texmf-dist/doc/man/man1/lacheck.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/lamed.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/latex.1
   M /trunk/Master/texmf-dist/doc/man/man1/latex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/luatex.1
   M /trunk/Master/texmf-dist/doc/man/man1/luatex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mf-nowin.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mf.1
   M /trunk/Master/texmf-dist/doc/man/man1/mf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mft.1
   M /trunk/Master/texmf-dist/doc/man/man1/mft.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktexfmt.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktexlsr.1
   M /trunk/Master/texmf-dist/doc/man/man1/mktexlsr.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktexmf.1
   M /trunk/Master/texmf-dist/doc/man/man1/mktexmf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktexpk.1
   M /trunk/Master/texmf-dist/doc/man/man1/mktexpk.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mktextfm.1
   M /trunk/Master/texmf-dist/doc/man/man1/mktextfm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mmafm.1
   M /trunk/Master/texmf-dist/doc/man/man1/mmafm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/mmpfb.1
   M /trunk/Master/texmf-dist/doc/man/man1/mmpfb.man1.pdf
   A /trunk/Master/texmf-dist/doc/man/man1/msxlint.1
   A /trunk/Master/texmf-dist/doc/man/man1/msxlint.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/odvicopy.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/odvitype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/otangle.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/otfinfo.1
   M /trunk/Master/texmf-dist/doc/man/man1/otfinfo.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/otftotfm.1
   M /trunk/Master/texmf-dist/doc/man/man1/otftotfm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/patgen.1
   M /trunk/Master/texmf-dist/doc/man/man1/patgen.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdfclose.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdfetex.1
   M /trunk/Master/texmf-dist/doc/man/man1/pdfetex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdflatex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdfopen.1
   M /trunk/Master/texmf-dist/doc/man/man1/pdfopen.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pdftex.1
   M /trunk/Master/texmf-dist/doc/man/man1/pdftex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pktogf.1
   M /trunk/Master/texmf-dist/doc/man/man1/pktogf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pktype.1
   M /trunk/Master/texmf-dist/doc/man/man1/pktype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pltotf.1
   M /trunk/Master/texmf-dist/doc/man/man1/pltotf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/pooltype.1
   M /trunk/Master/texmf-dist/doc/man/man1/pooltype.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ps2pk.1
   M /trunk/Master/texmf-dist/doc/man/man1/ps2pk.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/sjisconv.1
   M /trunk/Master/texmf-dist/doc/man/man1/sjisconv.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1ascii.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1ascii.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1asm.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1asm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1binary.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1binary.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1disasm.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1disasm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1dotlessj.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1dotlessj.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1lint.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1lint.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1mac.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1mac.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1rawafm.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1rawafm.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1reencode.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1reencode.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1testpage.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1testpage.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/t1unmac.1
   M /trunk/Master/texmf-dist/doc/man/man1/t1unmac.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tangle.1
   M /trunk/Master/texmf-dist/doc/man/man1/tangle.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tex.1
   M /trunk/Master/texmf-dist/doc/man/man1/tex.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texconfig-sys.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texconfig.1
   M /trunk/Master/texmf-dist/doc/man/man1/texconfig.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texhash.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texindy.1
   M /trunk/Master/texmf-dist/doc/man/man1/texindy.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texlua.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/texluac.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tftopl.1
   M /trunk/Master/texmf-dist/doc/man/man1/tftopl.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/tie.1
   M /trunk/Master/texmf-dist/doc/man/man1/tie.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/ttftotype42.1
   M /trunk/Master/texmf-dist/doc/man/man1/ttftotype42.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/vftovp.1
   M /trunk/Master/texmf-dist/doc/man/man1/vftovp.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/vptovf.1
   M /trunk/Master/texmf-dist/doc/man/man1/vptovf.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/weave.1
   M /trunk/Master/texmf-dist/doc/man/man1/weave.man1.pdf
   M /trunk/Master/texmf-dist/doc/man/man1/xindy.1
   M /trunk/Master/texmf-dist/doc/man/man1/xindy.man1.pdf
------------------------------------------------------------------------
r37000 | karl | 2015-04-22 03:50:06 +0200 (Wed, 22 Apr 2015) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------