summaryrefslogtreecommitdiff
path: root/Build/logs/svnlog
blob: 8fdcf0dbb646f6375c5ba2cff58378db856beece (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
------------------------------------------------------------------------
r29055 | karl | 2013-02-08 04:30:33 +0100 (Fri, 08 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r29054 | karl | 2013-02-08 03:15:17 +0100 (Fri, 08 Feb 2013) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r29053 | karl | 2013-02-08 01:38:37 +0100 (Fri, 08 Feb 2013) | 1 line

lua2dox 0.2 (7feb13)

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/Makefile.am
   M /trunk/Build/source/texk/texlive/linked_scripts/Makefile.in
   A /trunk/Build/source/texk/texlive/linked_scripts/lua2dox/lua2dox_filter
   M /trunk/Master/bin/alpha-linux/lua2dox_filter
   D /trunk/Master/bin/alpha-linux/lua2dox_lua
   M /trunk/Master/bin/amd64-freebsd/lua2dox_filter
   D /trunk/Master/bin/amd64-freebsd/lua2dox_lua
   M /trunk/Master/bin/amd64-kfreebsd/lua2dox_filter
   D /trunk/Master/bin/amd64-kfreebsd/lua2dox_lua
   M /trunk/Master/bin/armel-linux/lua2dox_filter
   D /trunk/Master/bin/armel-linux/lua2dox_lua
   M /trunk/Master/bin/i386-cygwin/lua2dox_filter
   D /trunk/Master/bin/i386-cygwin/lua2dox_lua
   M /trunk/Master/bin/i386-freebsd/lua2dox_filter
   D /trunk/Master/bin/i386-freebsd/lua2dox_lua
   M /trunk/Master/bin/i386-kfreebsd/lua2dox_filter
   D /trunk/Master/bin/i386-kfreebsd/lua2dox_lua
   M /trunk/Master/bin/i386-linux/lua2dox_filter
   D /trunk/Master/bin/i386-linux/lua2dox_lua
   M /trunk/Master/bin/i386-solaris/lua2dox_filter
   D /trunk/Master/bin/i386-solaris/lua2dox_lua
   M /trunk/Master/bin/mipsel-linux/lua2dox_filter
   D /trunk/Master/bin/mipsel-linux/lua2dox_lua
   M /trunk/Master/bin/powerpc-aix/lua2dox_filter
   D /trunk/Master/bin/powerpc-aix/lua2dox_lua
   M /trunk/Master/bin/powerpc-linux/lua2dox_filter
   D /trunk/Master/bin/powerpc-linux/lua2dox_lua
   M /trunk/Master/bin/sparc-solaris/lua2dox_filter
   D /trunk/Master/bin/sparc-solaris/lua2dox_lua
   M /trunk/Master/bin/universal-darwin/lua2dox_filter
   D /trunk/Master/bin/universal-darwin/lua2dox_lua
   A /trunk/Master/bin/win32/lua2dox_filter.bat
   M /trunk/Master/bin/x86_64-darwin/lua2dox_filter
   D /trunk/Master/bin/x86_64-darwin/lua2dox_lua
   M /trunk/Master/bin/x86_64-linux/lua2dox_filter
   D /trunk/Master/bin/x86_64-linux/lua2dox_lua
   M /trunk/Master/bin/x86_64-solaris/lua2dox_filter
   D /trunk/Master/bin/x86_64-solaris/lua2dox_lua
   A /trunk/Master/texmf-dist/doc/support/lua2dox/ChangeLog
   M /trunk/Master/texmf-dist/doc/support/lua2dox/Doxyfile
   D /trunk/Master/texmf-dist/doc/support/lua2dox/INSTALL
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/annotated.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/bc_s.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/bdwn.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTApp-members.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTApp.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTCore__Clock-members.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTCore__Clock.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTCore__Commandline-members.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTCore__Commandline.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTCore__IO.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTLua2DoX__filter-members.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTLua2DoX__filter.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTStream__Read-members.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTStream__Read.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTStream__Write-members.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classTStream__Write.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/classes.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/closed.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/doxygen.css
   M /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/doxygen.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/dynsections.js
   M /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/files.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2blank.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2cl.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2doc.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2folderclosed.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2folderopen.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2lastnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2link.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2mlastnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2mnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2mo.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2node.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2ns.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2plastnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2pnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2splitbar.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/ftv2vertline.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/functions.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/functions_func.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/globals.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/globals_func.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/index.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/jquery.js
   D /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/lua2dox_8lua-source.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/lua2dox_8lua.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/lua2dox_8lua_source.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/nav_f.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/nav_g.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/nav_h.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/open.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/sync_off.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/sync_on.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/tab_a.png
   D /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/tab_b.gif
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/tab_b.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/tab_h.png
   D /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/tab_l.gif
   D /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/tab_r.gif
   A /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/tab_s.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/docs/html/tabs.css
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/Doxyfile
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/class.lua
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/animals_8lua-source.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/animals_8lua.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/animals_8lua_source.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/annotated.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/bc_s.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/bdwn.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classAnimal-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classAnimal.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classAnimal.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classBird-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classBird.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classBird.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classCat-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classCat.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classCat.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classDog-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classDog.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classDog.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classMammal-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classMammal.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classMammal.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classPigeon-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classPigeon.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classPigeon.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classRedKite-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classRedKite.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classRedKite.png
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/class_8lua-source.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/class_8lua.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/class_8lua_source.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classes.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/closed.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/doxygen.css
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/doxygen.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/dynsections.js
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/files.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2blank.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2cl.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2doc.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2folderclosed.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2folderopen.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2lastnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2link.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2mlastnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2mnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2mo.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2node.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2ns.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2plastnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2pnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2splitbar.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2vertline.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/functions.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/functions_func.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/globals.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/globals_func.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/hierarchy.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/index.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/jquery.js
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/main_8lua-source.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/main_8lua.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/main_8lua_source.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/nav_f.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/nav_g.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/nav_h.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/open.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/sync_off.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/sync_on.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_a.png
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_b.gif
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_b.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_h.png
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_l.gif
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_r.gif
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_s.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tabs.css
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/Doxyfile
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/animals_8php-source.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/animals_8php.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/animals_8php_source.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/annotated.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/bc_s.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/bdwn.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classAnimal-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classAnimal.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classAnimal.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classBird-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classBird.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classBird.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classCat-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classCat.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classCat.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classDog-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classDog.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classDog.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classMammal-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classMammal.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classMammal.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classPigeon-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classPigeon.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classPigeon.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classRedKite-members.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classRedKite.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classRedKite.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/classes.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/closed.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/doxygen.css
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/doxygen.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/dynsections.js
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/files.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2blank.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2cl.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2doc.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2folderclosed.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2folderopen.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2lastnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2link.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2mlastnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2mnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2mo.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2node.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2ns.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2plastnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2pnode.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2splitbar.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2vertline.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/functions.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/functions_func.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/globals.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/globals_func.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/globals_vars.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/hierarchy.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/index.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/jquery.js
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/main_8php-source.html
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/main_8php.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/main_8php_source.html
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/nav_f.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/nav_g.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/nav_h.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/open.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/sync_off.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/sync_on.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_a.png
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_b.gif
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_b.png
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_h.png
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_l.gif
   D /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_r.gif
   A /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_s.png
   M /trunk/Master/texmf-dist/doc/support/lua2dox/examples/php/docs/html/tabs.css
   A /trunk/Master/texmf-dist/doc/support/lua2dox/install.bat
   M /trunk/Master/texmf-dist/doc/support/lua2dox/install.sh
   M /trunk/Master/texmf-dist/doc/support/lua2dox/lua2dox-refm.pdf
   M /trunk/Master/texmf-dist/doc/support/lua2dox/lua2dox-refm.tex
   M /trunk/Master/texmf-dist/scripts/lua2dox/lua2dox.lua
   A /trunk/Master/texmf-dist/scripts/lua2dox/lua2dox_filter
   D /trunk/Master/texmf-dist/scripts/lua2dox/lua2dox_lua
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/lua2dox.tlpsrc
------------------------------------------------------------------------
r29052 | karl | 2013-02-08 00:30:49 +0100 (Fri, 08 Feb 2013) | 1 line

arara (7feb13)

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/arara/arara.sh
   M /trunk/Master/texmf-dist/doc/support/arara/arara-usermanual.pdf
   M /trunk/Master/texmf-dist/doc/support/arara/arara-usermanual.tex
   M /trunk/Master/texmf-dist/scripts/arara/arara.jar
   M /trunk/Master/texmf-dist/scripts/arara/arara.sh
   M /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraMethods.java
   M /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/DirectiveExtractor.java
   M /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/TaskDeployer.java
   D /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages.properties
   D /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_de.properties
   D /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_es.properties
   D /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_fr.properties
   D /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_it.properties
   D /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_pt_BR.properties
   D /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_ru.properties
   D /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_tr.properties
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/dummy
------------------------------------------------------------------------
r29051 | karl | 2013-02-07 23:51:16 +0100 (Thu, 07 Feb 2013) | 1 line

fontools (7feb13)

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/fontools/autoinst
   M /trunk/Master/texmf/doc/man/man1/afm2afm.man1.pdf
   M /trunk/Master/texmf/doc/man/man1/autoinst.1
   M /trunk/Master/texmf/doc/man/man1/autoinst.man1.pdf
   M /trunk/Master/texmf/doc/man/man1/ot2kpx.man1.pdf
   M /trunk/Master/texmf-dist/doc/support/fontools/README
   M /trunk/Master/texmf-dist/scripts/fontools/autoinst
------------------------------------------------------------------------
r29050 | siepo | 2013-02-07 22:36:03 +0100 (Thu, 07 Feb 2013) | 1 line

Epspdf updated to 0.6

Changed paths:
   M /trunk/Master/bin/alpha-linux/epspdf
   M /trunk/Master/bin/amd64-freebsd/epspdf
   M /trunk/Master/bin/amd64-kfreebsd/epspdf
   M /trunk/Master/bin/armel-linux/epspdf
   M /trunk/Master/bin/i386-cygwin/epspdf
   M /trunk/Master/bin/i386-freebsd/epspdf
   M /trunk/Master/bin/i386-kfreebsd/epspdf
   M /trunk/Master/bin/i386-linux/epspdf
   M /trunk/Master/bin/i386-solaris/epspdf
   M /trunk/Master/bin/mipsel-linux/epspdf
   M /trunk/Master/bin/powerpc-aix/epspdf
   M /trunk/Master/bin/powerpc-linux/epspdf
   M /trunk/Master/bin/sparc-solaris/epspdf
   M /trunk/Master/bin/universal-darwin/epspdf
   M /trunk/Master/bin/x86_64-darwin/epspdf
   M /trunk/Master/bin/x86_64-linux/epspdf
   M /trunk/Master/bin/x86_64-solaris/epspdf
   M /trunk/Master/texmf/doc/info/epspdf.info
   M /trunk/Master/texmf-dist/doc/support/epspdf/Changelog
   M /trunk/Master/texmf-dist/doc/support/epspdf/README
   M /trunk/Master/texmf-dist/doc/support/epspdf/epspdf.install
   M /trunk/Master/texmf-dist/doc/support/epspdf/epspdf.pdf
   M /trunk/Master/texmf-dist/doc/support/epspdf/epspdf.texi
   A /trunk/Master/texmf-dist/doc/support/epspdf/images/cnv_linux.png
   D /trunk/Master/texmf-dist/doc/support/epspdf/images/cnv_osx.png
   M /trunk/Master/texmf-dist/doc/support/epspdf/images/config_lnx.png
   D /trunk/Master/texmf-dist/doc/support/epspdf/images/main_w32.png
   A /trunk/Master/texmf-dist/doc/support/epspdf/images/main_w8.png
   D /trunk/Master/texmf-dist/doc/support/epspdf/images/ps_settings.png
   M /trunk/Master/texmf-dist/doc/support/epspdf/index.html
   M /trunk/Master/texmf-dist/scripts/epspdf/epspdf.help
   D /trunk/Master/texmf-dist/scripts/epspdf/epspdf.icns
   M /trunk/Master/texmf-dist/scripts/epspdf/epspdf.ico
   D /trunk/Master/texmf-dist/scripts/epspdf/epspdf.rb
   A /trunk/Master/texmf-dist/scripts/epspdf/epspdf.tlu
   D /trunk/Master/texmf-dist/scripts/epspdf/epspdfrc.rb
   M /trunk/Master/texmf-dist/scripts/epspdf/epspdftk.tcl
   D /trunk/Master/texmf-dist/scripts/epspdf/makegray.pro
------------------------------------------------------------------------
r29049 | karl | 2013-02-07 04:47:34 +0100 (Thu, 07 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r29048 | karl | 2013-02-07 04:31:07 +0100 (Thu, 07 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r29047 | karl | 2013-02-07 03:15:03 +0100 (Thu, 07 Feb 2013) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r29046 | karl | 2013-02-07 00:59:52 +0100 (Thu, 07 Feb 2013) | 1 line

tableof (6feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/tableof/README
------------------------------------------------------------------------
r29045 | karl | 2013-02-07 00:59:38 +0100 (Thu, 07 Feb 2013) | 1 line

tex-gyre-math (6feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Pagella-Math.txt
   M /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/MANIFEST-TeX-Gyre-Termes-Math.txt
   M /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/README-TeX-Gyre-Pagella-Math.txt
   M /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/README-TeX-Gyre-Termes-Math.txt
   M /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/math-test-context.tex
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_pagella_math.tex
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-context-texgyre_termes_math.tex
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-context-tg_pagella_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-context-tg_pagella_math.tex
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-context-tg_termes_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-context-tg_termes_math.tex
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_pagella_math.tex
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-texgyre_termes_math.tex
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-tg_pagella_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-tg_pagella_math.tex
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-tg_termes_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-lualatex-tg_termes_math.tex
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.docx
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_pagella_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.docx
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-word-texgyre_termes_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-word-tg_pagella_math.docx
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-word-tg_pagella_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-word-tg_termes_math.docx
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-word-tg_termes_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_pagella_math.tex
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-texgyre_termes_math.tex
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-tg_pagella_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-tg_pagella_math.tex
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-tg_termes_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/tex-gyre-math/test-xelatex-tg_termes_math.tex
   A /trunk/Master/texmf-dist/fonts/opentype/public/tex-gyre-math/texgyrepagella-math.otf
   D /trunk/Master/texmf-dist/fonts/opentype/public/tex-gyre-math/texgyrepagellamath-regular.otf
   A /trunk/Master/texmf-dist/fonts/opentype/public/tex-gyre-math/texgyretermes-math.otf
   D /trunk/Master/texmf-dist/fonts/opentype/public/tex-gyre-math/texgyretermesmath-regular.otf
------------------------------------------------------------------------
r29044 | karl | 2013-02-07 00:59:19 +0100 (Thu, 07 Feb 2013) | 1 line

lm-math (6feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/fonts/lm-math/MANIFEST-Latin-Modern-Math.txt
   M /trunk/Master/texmf-dist/doc/fonts/lm-math/README-Latin-Modern-Math.txt
   M /trunk/Master/texmf-dist/doc/fonts/lm-math/math-test-context.tex
   M /trunk/Master/texmf-dist/doc/fonts/lm-math/math-test.tex
   A /trunk/Master/texmf-dist/doc/fonts/lm-math/test-context-latinmodern_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/lm-math/test-context-latinmodern_math.tex
   D /trunk/Master/texmf-dist/doc/fonts/lm-math/test-context-lmodern_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/lm-math/test-context-lmodern_math.tex
   A /trunk/Master/texmf-dist/doc/fonts/lm-math/test-lualatex-latinmodern_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/lm-math/test-lualatex-latinmodern_math.tex
   D /trunk/Master/texmf-dist/doc/fonts/lm-math/test-lualatex-lmodern_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/lm-math/test-lualatex-lmodern_math.tex
   A /trunk/Master/texmf-dist/doc/fonts/lm-math/test-word-latinmodern_math.docx
   A /trunk/Master/texmf-dist/doc/fonts/lm-math/test-word-latinmodern_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/lm-math/test-word-lmodern_math.docx
   D /trunk/Master/texmf-dist/doc/fonts/lm-math/test-word-lmodern_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/lm-math/test-xelatex-latinmodern_math.pdf
   A /trunk/Master/texmf-dist/doc/fonts/lm-math/test-xelatex-latinmodern_math.tex
   D /trunk/Master/texmf-dist/doc/fonts/lm-math/test-xelatex-lmodern_math.pdf
   D /trunk/Master/texmf-dist/doc/fonts/lm-math/test-xelatex-lmodern_math.tex
   A /trunk/Master/texmf-dist/fonts/opentype/public/lm-math/latinmodern-math.otf
   D /trunk/Master/texmf-dist/fonts/opentype/public/lm-math/latinmodernmath-regular.otf
------------------------------------------------------------------------
r29043 | karl | 2013-02-06 22:45:53 +0100 (Wed, 06 Feb 2013) | 1 line

exec

Changed paths:
   M /trunk/Master/texmf-dist/scripts/arara/arara.sh
------------------------------------------------------------------------
r29042 | peter | 2013-02-06 09:41:01 +0100 (Wed, 06 Feb 2013) | 1 line

update linked_scripts list

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/scripts.lst
------------------------------------------------------------------------
r29041 | karl | 2013-02-06 04:52:27 +0100 (Wed, 06 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r29040 | karl | 2013-02-06 04:35:18 +0100 (Wed, 06 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Build/source/build-aux/config.guess
   M /trunk/Build/source/build-aux/config.sub
   M /trunk/Build/source/extra/xz/build-aux/config.guess
   M /trunk/Build/source/extra/xz/build-aux/config.sub
   M /trunk/Build/source/libs/cairo/cairo-1.12.8/build/config.guess
   M /trunk/Build/source/libs/cairo/cairo-1.12.8/build/config.sub
   M /trunk/Build/source/libs/freetype/freetype-1.5/config.guess
   M /trunk/Build/source/libs/freetype/freetype-1.5/config.sub
   M /trunk/Build/source/libs/freetype2/freetype-2.4.11/builds/unix/config.guess
   M /trunk/Build/source/libs/freetype2/freetype-2.4.11/builds/unix/config.sub
   M /trunk/Build/source/libs/icu/icu-50.1/config.guess
   M /trunk/Build/source/libs/icu/icu-50.1/config.sub
   M /trunk/Build/source/utils/asymptote/config.guess
   M /trunk/Build/source/utils/asymptote/config.sub
   M /trunk/Master/doc.html
   M /trunk/Master/tlpkg/installer/config.guess
------------------------------------------------------------------------
r29039 | karl | 2013-02-06 03:15:11 +0100 (Wed, 06 Feb 2013) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r29038 | karl | 2013-02-06 00:41:29 +0100 (Wed, 06 Feb 2013) | 1 line

abntex2 (5feb13)

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.bib
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-artigo.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-artigo.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-include-comandos.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-projeto-pesquisa.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-projeto-pesquisa.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-references.bib
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-relatorio-tecnico.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-relatorio-tecnico.tex
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-trabalho-academico.pdf
   M /trunk/Master/texmf-dist/doc/latex/abntex2/abntex2-modelo-trabalho-academico.tex
   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/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
------------------------------------------------------------------------
r29037 | karl | 2013-02-06 00:41:08 +0100 (Wed, 06 Feb 2013) | 1 line

minifp (5feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/generic/minifp/README
   M /trunk/Master/texmf-dist/doc/generic/minifp/minifp.pdf
   M /trunk/Master/texmf-dist/doc/generic/minifp/test1.tex
   M /trunk/Master/texmf-dist/source/generic/minifp/minifp.dtx
   M /trunk/Master/texmf-dist/tex/generic/minifp/mfpextra.tex
   M /trunk/Master/texmf-dist/tex/generic/minifp/minifp.sty
------------------------------------------------------------------------
r29036 | karl | 2013-02-06 00:00:15 +0100 (Wed, 06 Feb 2013) | 1 line

arara (6feb13)

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/Makefile.am
   M /trunk/Build/source/texk/texlive/linked_scripts/Makefile.in
   A /trunk/Build/source/texk/texlive/linked_scripts/arara
   A /trunk/Build/source/texk/texlive/linked_scripts/arara/arara.sh
   A /trunk/Master/bin/alpha-linux/arara
   A /trunk/Master/bin/amd64-freebsd/arara
   A /trunk/Master/bin/amd64-kfreebsd/arara
   A /trunk/Master/bin/armel-linux/arara
   A /trunk/Master/bin/i386-cygwin/arara
   A /trunk/Master/bin/i386-freebsd/arara
   A /trunk/Master/bin/i386-kfreebsd/arara
   A /trunk/Master/bin/i386-linux/arara
   A /trunk/Master/bin/i386-solaris/arara
   A /trunk/Master/bin/mipsel-linux/arara
   A /trunk/Master/bin/powerpc-aix/arara
   A /trunk/Master/bin/powerpc-linux/arara
   A /trunk/Master/bin/sparc-solaris/arara
   A /trunk/Master/bin/universal-darwin/arara
   A /trunk/Master/bin/x86_64-darwin/arara
   A /trunk/Master/bin/x86_64-linux/arara
   A /trunk/Master/bin/x86_64-solaris/arara
   A /trunk/Master/texmf-dist/doc/support/arara
   A /trunk/Master/texmf-dist/doc/support/arara/README
   A /trunk/Master/texmf-dist/doc/support/arara/arara-usermanual.pdf
   A /trunk/Master/texmf-dist/doc/support/arara/arara-usermanual.tex
   A /trunk/Master/texmf-dist/doc/support/arara/arara.sty
   A /trunk/Master/texmf-dist/doc/support/arara/figures
   A /trunk/Master/texmf-dist/doc/support/arara/figures/arara.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/inlage
   A /trunk/Master/texmf-dist/doc/support/arara/figures/inlage/inlage-addcommand.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/inlage/inlage-addcompiler.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/inlage/inlage-araramenu.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/inlage/inlage-editcommands.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/inlage/inlage-listarara.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/inlage/inlage-newprofile.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/inlage/inlage-settings.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/install-finish.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/install-langsel.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/install-license.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/install-packs.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/install-path.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/install-pathwarning.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/install-progress.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/install-welcome.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/uninstall-finish.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/installer/uninstall-welcome.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texniccenter
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texniccenter/texniccenter-config.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texniccenter/texniccenter-newprofile.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texniccenter/texniccenter-profiles.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texshop
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texshop/texshop-arara.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texworks
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texworks/texworks-add.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texworks/texworks-arara.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texworks/texworks-prefs.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/texworks/texworks-profile.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/winedt
   A /trunk/Master/texmf-dist/doc/support/arara/figures/winedt/winedt-ararabutton.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/winedt/winedt-menu.png
   A /trunk/Master/texmf-dist/doc/support/arara/figures/winedt/winedt-optionsinterface.png
   A /trunk/Master/texmf-dist/doc/support/arara/references.bib
   A /trunk/Master/texmf-dist/scripts/arara
   A /trunk/Master/texmf-dist/scripts/arara/arara.jar
   A /trunk/Master/texmf-dist/scripts/arara/arara.sh
   A /trunk/Master/texmf-dist/scripts/arara/rules
   A /trunk/Master/texmf-dist/scripts/arara/rules/biber.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/bibtex.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/clean.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/dvips.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/frontespizio.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/latex.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/lmkclean.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/lualatex.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/lualatexmk.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/luatex.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/make.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/makeglossaries.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/makeindex.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/nomencl.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/pdflatex.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/pdflatexmk.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/pdftex.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/ps2pdf.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/sketch.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/songidx.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/tex.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/xelatex.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/xelatexmk.yaml
   A /trunk/Master/texmf-dist/scripts/arara/rules/xetex.yaml
   A /trunk/Master/texmf-dist/source/support/arara
   A /trunk/Master/texmf-dist/source/support/arara/pom.xml
   A /trunk/Master/texmf-dist/source/support/arara/src
   A /trunk/Master/texmf-dist/source/support/arara/src/main
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/Arara.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/exception
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/exception/AraraException.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/model
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraCommand.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraConfiguration.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraDirective.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraFilePattern.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraLanguage.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraRuleArgument.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraRuleConfig.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/model/AraraTask.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraConstants.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraLocalization.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraLogging.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraMethods.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraResolver.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/AraraUtils.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/CommandLineAnalyzer.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/CommandTrigger.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/ConfigurationLoader.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/DirectiveExtractor.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/DirectiveParser.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/LanguageController.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/TaskDeployer.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/java/com/github/arara/utils/TeeOutputStream.java
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/conf
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/conf/logback.xml
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages.properties
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_de.properties
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_es.properties
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_fr.properties
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_it.properties
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_pt_BR.properties
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_ru.properties
   A /trunk/Master/texmf-dist/source/support/arara/src/main/resources/com/github/arara/localization/Messages_tr.properties
   A /trunk/Master/texmf-dist/source/support/arara/src/test
   A /trunk/Master/texmf-dist/source/support/arara/src/test/java
   A /trunk/Master/texmf-dist/source/support/arara/src/test/java/com
   A /trunk/Master/texmf-dist/source/support/arara/src/test/java/com/github
   A /trunk/Master/texmf-dist/source/support/arara/src/test/java/com/github/arara
   A /trunk/Master/texmf-dist/source/support/arara/src/test/java/com/github/arara/AraraTest.java
   M /trunk/Master/tlpkg/libexec/ctan2tds
   A /trunk/Master/tlpkg/tlpsrc/arara.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc
------------------------------------------------------------------------
r29035 | karl | 2013-02-05 23:11:03 +0100 (Tue, 05 Feb 2013) | 1 line

empty dir

Changed paths:
   D /trunk/Master/texmf-dist/fonts/truetype/hoekwater
------------------------------------------------------------------------
r29034 | karl | 2013-02-05 04:48:06 +0100 (Tue, 05 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r29033 | karl | 2013-02-05 04:31:31 +0100 (Tue, 05 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r29032 | karl | 2013-02-05 03:15:18 +0100 (Tue, 05 Feb 2013) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r29031 | karl | 2013-02-05 00:17:07 +0100 (Tue, 05 Feb 2013) | 1 line

new script dtxgen (4feb13)

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/Makefile.am
   M /trunk/Build/source/texk/texlive/linked_scripts/Makefile.in
   A /trunk/Build/source/texk/texlive/linked_scripts/dtxgen
   A /trunk/Build/source/texk/texlive/linked_scripts/dtxgen/dtxgen
   A /trunk/Master/bin/alpha-linux/dtxgen
   A /trunk/Master/bin/amd64-freebsd/dtxgen
   A /trunk/Master/bin/amd64-kfreebsd/dtxgen
   A /trunk/Master/bin/armel-linux/dtxgen
   A /trunk/Master/bin/i386-cygwin/dtxgen
   A /trunk/Master/bin/i386-freebsd/dtxgen
   A /trunk/Master/bin/i386-kfreebsd/dtxgen
   A /trunk/Master/bin/i386-linux/dtxgen
   A /trunk/Master/bin/i386-solaris/dtxgen
   A /trunk/Master/bin/mipsel-linux/dtxgen
   A /trunk/Master/bin/powerpc-aix/dtxgen
   A /trunk/Master/bin/powerpc-linux/dtxgen
   A /trunk/Master/bin/sparc-solaris/dtxgen
   A /trunk/Master/bin/universal-darwin/dtxgen
   D /trunk/Master/bin/win32/ltxfileinfo.exe
   A /trunk/Master/bin/x86_64-darwin/dtxgen
   A /trunk/Master/bin/x86_64-linux/dtxgen
   A /trunk/Master/bin/x86_64-solaris/dtxgen
   A /trunk/Master/texmf-dist/doc/support/dtxgen
   A /trunk/Master/texmf-dist/doc/support/dtxgen/README
   A /trunk/Master/texmf-dist/doc/support/dtxgen/dtxgen.pdf
   A /trunk/Master/texmf-dist/scripts/dtxgen
   A /trunk/Master/texmf-dist/scripts/dtxgen/dtxgen
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/dtxgen.tlpsrc
------------------------------------------------------------------------
r29030 | karl | 2013-02-05 00:11:21 +0100 (Tue, 05 Feb 2013) | 1 line

ltxfileinfo (4feb13)

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/ltxfileinfo/ltxfileinfo
   M /trunk/Master/texmf-dist/doc/support/ltxfileinfo/README
   M /trunk/Master/texmf-dist/doc/support/ltxfileinfo/ltxfileinfo.pdf
   M /trunk/Master/texmf-dist/scripts/ltxfileinfo/ltxfileinfo
------------------------------------------------------------------------
r29029 | karl | 2013-02-05 00:10:48 +0100 (Tue, 05 Feb 2013) | 1 line

ulthese (4feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-cotutelle.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-extension-UQO.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-extension-UdeS.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-mesure.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-multifacultaire.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-maitrise-extension-UQAC.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-maitrise-mesure.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-maitrise.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/ulthese.pdf
   M /trunk/Master/texmf-dist/source/latex/ulthese/ulthese.dtx
   M /trunk/Master/texmf-dist/tex/latex/ulthese/ulthese.cls
------------------------------------------------------------------------
r29028 | karl | 2013-02-05 00:10:24 +0100 (Tue, 05 Feb 2013) | 1 line

pst-optexp (4feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/pst-optexp/Changes
   M /trunk/Master/texmf-dist/doc/latex/pst-optexp/pst-optexp-DE.pdf
   M /trunk/Master/texmf-dist/doc/latex/pst-optexp/pst-optexp-quickref.pdf
   M /trunk/Master/texmf-dist/doc/latex/pst-optexp/pst-optexp.pdf
   M /trunk/Master/texmf-dist/dvips/pst-optexp/pst-optexp.pro
   M /trunk/Master/texmf-dist/source/latex/pst-optexp/pst-optexp.dtx
   M /trunk/Master/texmf-dist/source/latex/pst-optexp/pst-optexp.ins
   M /trunk/Master/texmf-dist/tex/latex/pst-optexp/pst-optexp.sty
------------------------------------------------------------------------
r29027 | karl | 2013-02-05 00:09:58 +0100 (Tue, 05 Feb 2013) | 1 line

nrc (4feb13)

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/nrc/00-2012-authors.txt
   A /trunk/Master/texmf-dist/doc/latex/nrc/00-2013-feb-authors.txt
   M /trunk/Master/texmf-dist/source/latex/nrc/nrc.dtx
   M /trunk/Master/texmf-dist/tex/latex/nrc/nrc1.cls
   M /trunk/Master/texmf-dist/tex/latex/nrc/nrc1.sty
   M /trunk/Master/texmf-dist/tex/latex/nrc/nrc2.cls
   M /trunk/Master/texmf-dist/tex/latex/nrc/nrc2.sty
------------------------------------------------------------------------
r29026 | karl | 2013-02-05 00:09:35 +0100 (Tue, 05 Feb 2013) | 1 line

caption (4feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/caption/CHANGELOG
   M /trunk/Master/texmf-dist/doc/latex/caption/README
   A /trunk/Master/texmf-dist/doc/latex/caption/SUMMARY
   M /trunk/Master/texmf-dist/doc/latex/caption/bicaption.pdf
   M /trunk/Master/texmf-dist/doc/latex/caption/caption-deu.pdf
   M /trunk/Master/texmf-dist/doc/latex/caption/caption-eng.pdf
   M /trunk/Master/texmf-dist/doc/latex/caption/caption-rus.pdf
   D /trunk/Master/texmf-dist/doc/latex/caption/caption.pdf
   D /trunk/Master/texmf-dist/doc/latex/caption/caption2.pdf
   D /trunk/Master/texmf-dist/doc/latex/caption/caption3.pdf
   M /trunk/Master/texmf-dist/doc/latex/caption/ltcaption.pdf
   M /trunk/Master/texmf-dist/doc/latex/caption/newfloat.pdf
   M /trunk/Master/texmf-dist/doc/latex/caption/subcaption.pdf
   M /trunk/Master/texmf-dist/source/latex/caption/bicaption.dtx
   M /trunk/Master/texmf-dist/source/latex/caption/caption-deu.tex
   M /trunk/Master/texmf-dist/source/latex/caption/caption-eng.tex
   M /trunk/Master/texmf-dist/source/latex/caption/caption-rus.tex
   M /trunk/Master/texmf-dist/source/latex/caption/caption.dtx
   M /trunk/Master/texmf-dist/source/latex/caption/caption.ins
   M /trunk/Master/texmf-dist/source/latex/caption/caption2.dtx
   M /trunk/Master/texmf-dist/source/latex/caption/caption3.dtx
   M /trunk/Master/texmf-dist/source/latex/caption/ltcaption.dtx
   M /trunk/Master/texmf-dist/source/latex/caption/newfloat.dtx
   M /trunk/Master/texmf-dist/source/latex/caption/subcaption.dtx
   M /trunk/Master/texmf-dist/tex/latex/caption/bicaption.sty
   M /trunk/Master/texmf-dist/tex/latex/caption/caption.sty
   M /trunk/Master/texmf-dist/tex/latex/caption/caption2.sty
   M /trunk/Master/texmf-dist/tex/latex/caption/caption3.sty
   M /trunk/Master/texmf-dist/tex/latex/caption/ltcaption.sty
   M /trunk/Master/texmf-dist/tex/latex/caption/newfloat.sty
   M /trunk/Master/texmf-dist/tex/latex/caption/subcaption.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
------------------------------------------------------------------------
r29025 | karl | 2013-02-05 00:00:30 +0100 (Tue, 05 Feb 2013) | 1 line

rm lmextra, old ttf for SciTE per Taco

Changed paths:
   D /trunk/Master/texmf-dist/fonts/truetype/hoekwater/lmextra
   M /trunk/Master/tlpkg/tlpsrc/collection-context.tlpsrc
   D /trunk/Master/tlpkg/tlpsrc/lmextra.tlpsrc
------------------------------------------------------------------------
r29024 | peter | 2013-02-04 09:31:30 +0100 (Mon, 04 Feb 2013) | 1 line

update linked_scripts list

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/scripts.lst
------------------------------------------------------------------------
r29023 | karl | 2013-02-04 04:50:57 +0100 (Mon, 04 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r29022 | karl | 2013-02-04 04:34:29 +0100 (Mon, 04 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r29021 | karl | 2013-02-04 03:15:23 +0100 (Mon, 04 Feb 2013) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r29020 | karl | 2013-02-04 00:19:06 +0100 (Mon, 04 Feb 2013) | 1 line

styles for doc in doc/

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/concepts/dry.sty
   A /trunk/Master/texmf-dist/doc/latex/concepts/packagedoc.cls
   A /trunk/Master/texmf-dist/doc/latex/concepts/with.sty
   D /trunk/Master/texmf-dist/tex/latex/concepts/dry.sty
   D /trunk/Master/texmf-dist/tex/latex/concepts/packagedoc.cls
   D /trunk/Master/texmf-dist/tex/latex/concepts/with.sty
   M /trunk/Master/tlpkg/libexec/ctan2tds
------------------------------------------------------------------------
r29019 | karl | 2013-02-04 00:17:51 +0100 (Mon, 04 Feb 2013) | 1 line

underoverlap (3feb13)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/underoverlap
   A /trunk/Master/texmf-dist/doc/latex/underoverlap/README
   A /trunk/Master/texmf-dist/doc/latex/underoverlap/dry.sty
   A /trunk/Master/texmf-dist/doc/latex/underoverlap/packagedoc.cls
   A /trunk/Master/texmf-dist/doc/latex/underoverlap/underoverlap.pdf
   A /trunk/Master/texmf-dist/doc/latex/underoverlap/underoverlap.tex
   A /trunk/Master/texmf-dist/doc/latex/underoverlap/with.sty
   A /trunk/Master/texmf-dist/tex/latex/underoverlap
   A /trunk/Master/texmf-dist/tex/latex/underoverlap/underoverlap.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/underoverlap.tlpsrc
------------------------------------------------------------------------
r29018 | karl | 2013-02-03 23:52:46 +0100 (Sun, 03 Feb 2013) | 1 line

classics (3feb13)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/classics
   A /trunk/Master/texmf-dist/doc/latex/classics/README
   A /trunk/Master/texmf-dist/doc/latex/classics/classics.pdf
   A /trunk/Master/texmf-dist/doc/latex/classics/classics.tex
   A /trunk/Master/texmf-dist/tex/latex/classics
   A /trunk/Master/texmf-dist/tex/latex/classics/classics.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   A /trunk/Master/tlpkg/tlpsrc/classics.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
------------------------------------------------------------------------
r29017 | karl | 2013-02-03 23:52:17 +0100 (Sun, 03 Feb 2013) | 1 line

siunitx (3feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/siunitx/siunitx.pdf
   M /trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/siunitx-abbreviations.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/siunitx-binary.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/siunitx-version-1.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty
------------------------------------------------------------------------
r29016 | kakuto | 2013-02-03 15:35:37 +0100 (Sun, 03 Feb 2013) | 1 line

(W32) change to match the simplified win32_popen.

Changed paths:
   M /trunk/Build/source/texk/web2c/xetexdir/ChangeLog
   M /trunk/Build/source/texk/web2c/xetexdir/XeTeX_ext.c
------------------------------------------------------------------------
r29015 | karl | 2013-02-03 04:50:29 +0100 (Sun, 03 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r29014 | karl | 2013-02-03 04:33:24 +0100 (Sun, 03 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Build/source/build-aux/texinfo.tex
   M /trunk/Master/tlpkg/installer/ctan-mirrors.pl
------------------------------------------------------------------------
r29013 | karl | 2013-02-03 03:15:22 +0100 (Sun, 03 Feb 2013) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r29012 | karl | 2013-02-02 23:45:57 +0100 (Sat, 02 Feb 2013) | 1 line

currfile (2feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/currfile/currfile.pdf
   M /trunk/Master/texmf-dist/source/latex/currfile/currfile.dtx
   M /trunk/Master/texmf-dist/tex/latex/currfile/currfile-abspath.sty
   M /trunk/Master/texmf-dist/tex/latex/currfile/currfile.sty
------------------------------------------------------------------------
r29011 | karl | 2013-02-02 23:45:32 +0100 (Sat, 02 Feb 2013) | 1 line

etoc 1.07 (2feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/etoc/README
   M /trunk/Master/texmf-dist/doc/latex/etoc/etoc.pdf
   M /trunk/Master/texmf-dist/source/latex/etoc/etoc.dtx
   M /trunk/Master/texmf-dist/source/latex/etoc/etoc.ins
   M /trunk/Master/texmf-dist/tex/latex/etoc/etoc.sty
------------------------------------------------------------------------
r29010 | karl | 2013-02-02 04:53:20 +0100 (Sat, 02 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
   A /trunk/Build/logs/svnlog.29000.gz
------------------------------------------------------------------------
------------------------------------------------------------------------
r29009 | karl | 2013-02-02 04:36:00 +0100 (Sat, 02 Feb 2013) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r29008 | karl | 2013-02-02 03:15:35 +0100 (Sat, 02 Feb 2013) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r29007 | karl | 2013-02-02 00:59:33 +0100 (Sat, 02 Feb 2013) | 1 line

amsrefs 2.12 (29jan13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/amsrdoc.pdf
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/amsrefs.faq
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/amsrefs.pdf
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/amsxport.pdf
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/changes.pdf
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xa.pdf
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xa.tex
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xb.pdf
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xb.tex
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xh.pdf
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xh.tex
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xs.pdf
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xs.tex
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/gktest.ltb
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/ifoption.pdf
   D /trunk/Master/texmf-dist/doc/latex/amsrefs/jr.bib
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/mathscinet.pdf
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/pcatcode.pdf
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/rkeyval.pdf
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/textcmds.pdf
   D /trunk/Master/texmf-dist/source/latex/amsrefs/00readme.txt
   M /trunk/Master/texmf-dist/source/latex/amsrefs/README
   M /trunk/Master/texmf-dist/source/latex/amsrefs/amsrdoc.tex
   M /trunk/Master/texmf-dist/source/latex/amsrefs/amsrefs.dtx
   A /trunk/Master/texmf-dist/source/latex/amsrefs/amsrefs.faq
   M /trunk/Master/texmf-dist/source/latex/amsrefs/amsrefs.ins
   A /trunk/Master/texmf-dist/source/latex/amsrefs/cite-xa.tex
   A /trunk/Master/texmf-dist/source/latex/amsrefs/cite-xb.tex
   A /trunk/Master/texmf-dist/source/latex/amsrefs/cite-xh.tex
   A /trunk/Master/texmf-dist/source/latex/amsrefs/cite-xs.tex
   A /trunk/Master/texmf-dist/source/latex/amsrefs/gktest.ltb
   M /trunk/Master/texmf-dist/source/latex/amsrefs/install.txt
   A /trunk/Master/texmf-dist/source/latex/amsrefs/jr.bib
   M /trunk/Master/texmf-dist/source/latex/amsrefs/manifest.txt
   M /trunk/Master/texmf-dist/source/latex/amsrefs/textcmds.dtx
   M /trunk/Master/texmf-dist/tex/latex/amsrefs/amsbst.sty
   M /trunk/Master/texmf-dist/tex/latex/amsrefs/amsrefs.sty
   M /trunk/Master/texmf-dist/tex/latex/amsrefs/textcmds.sty
------------------------------------------------------------------------
r29006 | karl | 2013-02-02 00:58:28 +0100 (Sat, 02 Feb 2013) | 1 line

amsfonts 3.04 (29jan13)

Changed paths:
   D /trunk/Master/texmf-dist/doc/fonts/amsfonts/00README
   A /trunk/Master/texmf-dist/doc/fonts/amsfonts/README
   M /trunk/Master/texmf-dist/doc/fonts/amsfonts/amsfonts.pdf
   M /trunk/Master/texmf-dist/doc/fonts/amsfonts/amssymb.pdf
   M /trunk/Master/texmf-dist/source/latex/amsfonts/amsfonts.dtx
   M /trunk/Master/texmf-dist/source/latex/amsfonts/amsfonts.ins
   M /trunk/Master/texmf-dist/source/latex/amsfonts/amssymb.dtx
   M /trunk/Master/texmf-dist/source/latex/amsfonts/manifest.txt
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/amsfonts.sty
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/amssymb.sty
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/cmmib57.sty
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/eucal.sty
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/eufrak.sty
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/euscript.sty
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/ueuex.fd
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/ueuf.fd
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/ueur.fd
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/ueus.fd
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/umsa.fd
   M /trunk/Master/texmf-dist/tex/latex/amsfonts/umsb.fd
   M /trunk/Master/tlpkg/bin/tlpkginfo
------------------------------------------------------------------------
r29005 | karl | 2013-02-02 00:42:25 +0100 (Sat, 02 Feb 2013) | 1 line

ltxfileinfo shell script (1feb13)

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/Makefile.am
   M /trunk/Build/source/texk/texlive/linked_scripts/Makefile.in
   A /trunk/Build/source/texk/texlive/linked_scripts/ltxfileinfo
   A /trunk/Build/source/texk/texlive/linked_scripts/ltxfileinfo/ltxfileinfo
   M /trunk/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
   A /trunk/Master/bin/alpha-linux/ltxfileinfo
   A /trunk/Master/bin/amd64-freebsd/ltxfileinfo
   A /trunk/Master/bin/amd64-kfreebsd/ltxfileinfo
   A /trunk/Master/bin/armel-linux/ltxfileinfo
   A /trunk/Master/bin/i386-cygwin/ltxfileinfo
   A /trunk/Master/bin/i386-freebsd/ltxfileinfo
   A /trunk/Master/bin/i386-kfreebsd/ltxfileinfo
   A /trunk/Master/bin/i386-linux/ltxfileinfo
   A /trunk/Master/bin/i386-solaris/ltxfileinfo
   A /trunk/Master/bin/mipsel-linux/ltxfileinfo
   A /trunk/Master/bin/powerpc-aix/ltxfileinfo
   A /trunk/Master/bin/powerpc-linux/ltxfileinfo
   A /trunk/Master/bin/sparc-solaris/ltxfileinfo
   A /trunk/Master/bin/universal-darwin/ltxfileinfo
   A /trunk/Master/bin/win32/ltxfileinfo.exe
   A /trunk/Master/bin/x86_64-darwin/ltxfileinfo
   A /trunk/Master/bin/x86_64-linux/ltxfileinfo
   A /trunk/Master/bin/x86_64-solaris/ltxfileinfo
   A /trunk/Master/texmf-dist/doc/support/ltxfileinfo
   A /trunk/Master/texmf-dist/doc/support/ltxfileinfo/README
   A /trunk/Master/texmf-dist/doc/support/ltxfileinfo/ltxfileinfo.pdf
   A /trunk/Master/texmf-dist/scripts/ltxfileinfo
   A /trunk/Master/texmf-dist/scripts/ltxfileinfo/ltxfileinfo
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/collection-binextra.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/ltxfileinfo.tlpsrc
------------------------------------------------------------------------
r29004 | karl | 2013-02-02 00:36:56 +0100 (Sat, 02 Feb 2013) | 1 line

ulthese (1feb13)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-cotutelle.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-extension-UQO.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-extension-UdeS.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-mesure.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat-multifacultaire.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-doctorat.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-maitrise-extension-UQAC.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-maitrise-mesure.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/gabarit-maitrise.tex
   M /trunk/Master/texmf-dist/doc/latex/ulthese/ulthese.pdf
   M /trunk/Master/texmf-dist/source/latex/ulthese/ulthese.dtx
   M /trunk/Master/texmf-dist/tex/latex/ulthese/ulthese.cls
------------------------------------------------------------------------
r29003 | karl | 2013-02-02 00:36:39 +0100 (Sat, 02 Feb 2013) | 1 line

tugboat 2013/01/31

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/tugboat/README
   M /trunk/Master/texmf-dist/doc/latex/tugboat/ltubguid.ltx
   M /trunk/Master/texmf-dist/doc/latex/tugboat/ltubguid.pdf
   M /trunk/Master/texmf-dist/doc/latex/tugboat/tugboat.pdf
   M /trunk/Master/texmf-dist/source/latex/tugboat/tugboat.dtx
   M /trunk/Master/texmf-dist/source/latex/tugboat/tugboat.ins
   M /trunk/Master/texmf-dist/tex/latex/tugboat/ltugboat.cls
   M /trunk/Master/texmf-dist/tex/latex/tugboat/ltugboat.sty
   M /trunk/Master/texmf-dist/tex/latex/tugboat/ltugcomn.sty
   M /trunk/Master/texmf-dist/tex/latex/tugboat/ltugproc.cls
   M /trunk/Master/texmf-dist/tex/latex/tugboat/ltugproc.sty
------------------------------------------------------------------------
r29002 | peter | 2013-02-01 14:07:58 +0100 (Fri, 01 Feb 2013) | 1 line

ttfdump: Avoid segfault for invalid OS/2 PANOSE data

Changed paths:
   M /trunk/Build/source/texk/ttfdump/ChangeLog
   M /trunk/Build/source/texk/ttfdump/Makefile.am
   M /trunk/Build/source/texk/ttfdump/Makefile.in
   M /trunk/Build/source/texk/ttfdump/libttf/os2.c
   A /trunk/Build/source/texk/ttfdump/tests/bad.otf
   A /trunk/Build/source/texk/ttfdump/tests/ttfdump.bad
   M /trunk/Build/source/texk/ttfdump/tests/ttfdump.test
------------------------------------------------------------------------
r29001 | karl | 2013-02-01 04:48:18 +0100 (Fri, 01 Feb 2013) | 1 line

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

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