summaryrefslogtreecommitdiff
path: root/Build/logs/svnlog
blob: 22232a607fa040f02ad0e868acf11f0986880341 (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
------------------------------------------------------------------------
r12101 | karl | 2009-02-06 03:38:55 +0100 (Fri, 06 Feb 2009) | 1 line

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

Changed paths:
   M /trunk/Build/source/config/config.guess
   M /trunk/Build/source/config/config.sub
   M /trunk/Build/source/libs/expat/conftools/config.guess
   M /trunk/Build/source/libs/expat/conftools/config.sub
   M /trunk/Build/source/libs/freetype/config.guess
   M /trunk/Build/source/libs/freetype/config.sub
   M /trunk/Build/source/libs/freetype2/builds/unix/config.guess
   M /trunk/Build/source/libs/freetype2/builds/unix/config.sub
   M /trunk/Build/source/libs/graphite-engine/config/config.guess
   M /trunk/Build/source/libs/graphite-engine/config/config.sub
   M /trunk/Build/source/libs/icu-xetex/config.guess
   M /trunk/Build/source/libs/icu-xetex/config.sub
   M /trunk/Build/source/libs/jpeg/config.guess
   M /trunk/Build/source/libs/jpeg/config.sub
   M /trunk/Build/source/libs/ncurses/config.guess
   M /trunk/Build/source/libs/ncurses/config.sub
   M /trunk/Build/source/libs/obsdcompat/config.guess
   M /trunk/Build/source/libs/obsdcompat/config.sub
   M /trunk/Build/source/libs/teckit/config.guess
   M /trunk/Build/source/libs/teckit/config.sub
   M /trunk/Build/source/libs/zziplib/uses/config.guess
   M /trunk/Build/source/libs/zziplib/uses/config.sub
   M /trunk/Build/source/texk/cjkutils/hbf2gf/config.guess
   M /trunk/Build/source/texk/cjkutils/hbf2gf/config.sub
   M /trunk/Build/source/texk/config.guess
   M /trunk/Build/source/texk/config.sub
   M /trunk/Build/source/texk/xdvipdfmx/config.guess
   M /trunk/Build/source/texk/xdvipdfmx/config.sub
   M /trunk/Build/source/utils/lzma/config.guess
   M /trunk/Build/source/utils/lzma/config.sub
   M /trunk/Build/source/utils/t1utils/config.guess
   M /trunk/Build/source/utils/t1utils/config.sub
   M /trunk/Build/source/utils/xindy/config.guess
   M /trunk/Build/source/utils/xindy/config.sub
   M /trunk/Master/tlpkg/installer/config.guess
------------------------------------------------------------------------
r12100 | karl | 2009-02-06 03:24:17 +0100 (Fri, 06 Feb 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r12099 | karl | 2009-02-06 01:10:33 +0100 (Fri, 06 Feb 2009) | 1 line

remove now-unused (as far as we know) config.{ams,amz,cm,cmz} and companion psfonts.{amz,ams}; psfonts.{cm,cmz} were previously removed (tex-live mail from Karl Berry, 4 Feb 2009 12:33:24)

Changed paths:
   D /trunk/Master/texmf-dist/dvips/ams
   D /trunk/Master/texmf-dist/dvips/cm
   D /trunk/Master/texmf-dist/fonts/map/dvips/ams/psfonts.ams
   D /trunk/Master/texmf-dist/fonts/map/dvips/ams/psfonts.amz
------------------------------------------------------------------------
r12098 | preining | 2009-02-05 16:06:00 +0100 (Thu, 05 Feb 2009) | 2 lines

put w32_updater.cmd under GPL


Changed paths:
   M /trunk/Master/tlpkg/installer/w32_updater.cmd
------------------------------------------------------------------------
r12097 | preining | 2009-02-05 15:54:38 +0100 (Thu, 05 Feb 2009) | 6 lines

install-tl and intstall_package(s): rework the error behaviour logic: We
now return 1/0 (success/failure) in install_package(s) and give tlwarn
there if something fails. This way the warnings appear in the log window
of the GUI installers.
Then we return 0 and install-tl itself creates the profile and dies.


Changed paths:
   M /trunk/Master/install-tl
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r12096 | preining | 2009-02-05 14:28:43 +0100 (Thu, 05 Feb 2009) | 2 lines

add the new stuff from Tomek for W32 updater


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
   A /trunk/Master/tlpkg/installer/w32_updater.cmd
   M /trunk/Master/tlpkg/tlpsrc/bin-texlive.tlpsrc
------------------------------------------------------------------------
r12095 | preining | 2009-02-05 14:26:45 +0100 (Thu, 05 Feb 2009) | 2 lines

add a script that can be used to update the perltk-en.sample file


Changed paths:
   A /trunk/Master/tlpkg/bin/tl-update-perltk-en
------------------------------------------------------------------------
r12094 | preining | 2009-02-05 14:08:15 +0100 (Thu, 05 Feb 2009) | 2 lines

more fixes for switching between installers, and GUI W32 fixes


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-perltk.pl
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12093 | preining | 2009-02-05 12:57:58 +0100 (Thu, 05 Feb 2009) | 5 lines

installer stuff work:
- factor out the translations initialization to install-translations.pl
- update the perltk-en.sample and german translations for wizard 
- make wizard translatable


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-perltk.pl
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
   A /trunk/Master/tlpkg/installer/install-translations.pl
   M /trunk/Master/tlpkg/installer/lang/perltk-de
   M /trunk/Master/tlpkg/installer/lang/perltk-en.sample
------------------------------------------------------------------------
r12092 | preining | 2009-02-05 12:19:45 +0100 (Thu, 05 Feb 2009) | 2 lines

various wizardries


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
   M /trunk/Master/tlpkg/installer/lang/perltk-de
   M /trunk/Master/tlpkg/installer/lang/perltk-en.sample
------------------------------------------------------------------------
r12091 | karl | 2009-02-05 04:15:33 +0100 (Thu, 05 Feb 2009) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r12090 | karl | 2009-02-05 03:38:12 +0100 (Thu, 05 Feb 2009) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
   M /trunk/Master/texmf/doc/man/man1/tlmgr.1
   M /trunk/Master/texmf/doc/man/man1/tlmgr.pdf
------------------------------------------------------------------------
r12089 | karl | 2009-02-05 03:23:28 +0100 (Thu, 05 Feb 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r12088 | karl | 2009-02-05 02:05:17 +0100 (Thu, 05 Feb 2009) | 1 line

siunitx update (4feb09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/siunitx/siunitx.pdf
   M /trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-DE.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-SIunits.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-UK.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-USA.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-ZA.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-abbr.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-accepted.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-addn.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-astro.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-binary.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-fancynum.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-fancyunits.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-geophys.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-hep.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-hepunits.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-named.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-physical.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-prefix.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-prefixed.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-sistyle.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-synchem.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-units.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-unitsdef.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty
------------------------------------------------------------------------
r12087 | karl | 2009-02-05 02:04:42 +0100 (Thu, 05 Feb 2009) | 1 line

pgfplots update (4feb09)

Changed paths:
   A /trunk/Master/texmf-dist/doc/context/third/pgfplots/pgfplotsexample.pdf
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/ChangeLog
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/Makefile
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/README
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/figures
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/figures/pgfplotsclickable-fig1.png
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/figures/pgfplotsclickable-fig2.png
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/figures/pgfplotsclickable-fig3.png
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/figures/pgfplotsclickable-fig4.png
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfmanual-en-macros.tex
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots-macros.tex
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.bib
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.importexport.tex
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.install.tex
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.intro.tex
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.libs.tex
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.mst
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.pdf
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.preamble.tex
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.reference.tex
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.resources.tex
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplots.tex
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplotsJS.djs
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplotsexample.pdf
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplotstable.example1.out.dat
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplotstable.example1.out.html
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplotstable.example1.out.tex
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplotstable.mst
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplotstable.pdf
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/pgfplotstable.tex
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/plotdata/newexperiment1.dat
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/plotdata/newexperiment2.dat
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/plotdata/newexperiment3.dat
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/plotdata/oldexperiment1.dat
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/plotdata/oldexperiment2.dat
   A /trunk/Master/texmf-dist/doc/latex/pgfplots/plotdata/oldexperiment3.dat
   M /trunk/Master/texmf-dist/doc/latex/pgfplots/todo.txt
   M /trunk/Master/texmf-dist/doc/plain/pgfplots/pgfplotsexample.pdf
   M /trunk/Master/texmf-dist/scripts/pgfplots/matlab2pgfplots.m
   M /trunk/Master/texmf-dist/source/context/third/pgfplots/pgfplotstests.zip
   M /trunk/Master/texmf-dist/source/latex/pgfplots/pgfplotstests.zip
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable.code.tex
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_misc.code.tex
   A /trunk/Master/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryfpu.code.tex
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgflibraryplothandlers.code.tex
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_pgfmathfloat.code.tex
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/pgfplots.stackedplots.code.tex
   A /trunk/Master/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex
   A /trunk/Master/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
   A /trunk/Master/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex
   A /trunk/Master/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
   M /trunk/Master/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
   A /trunk/Master/texmf-dist/tex/latex/pgfplots/libs
   A /trunk/Master/texmf-dist/tex/latex/pgfplots/libs/tikzlibrarypgfplotsclickable.code.tex
   M /trunk/Master/texmf-dist/tex/latex/pgfplots/pgfplots.sty
------------------------------------------------------------------------
r12086 | karl | 2009-02-05 02:03:47 +0100 (Thu, 05 Feb 2009) | 1 line

todonotes update (4feb09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/todonotes/todonotes.pdf
   M /trunk/Master/texmf-dist/doc/latex/todonotes/todonotesexample.pdf
   M /trunk/Master/texmf-dist/source/latex/todonotes/todonotes.dtx
   M /trunk/Master/texmf-dist/tex/latex/todonotes/todonotes.sty
------------------------------------------------------------------------
r12085 | preining | 2009-02-05 01:56:42 +0100 (Thu, 05 Feb 2009) | 2 lines

add graphic to wizard


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
   A /trunk/Master/tlpkg/installer/texlive2008-wizard.png
------------------------------------------------------------------------
r12084 | preining | 2009-02-05 01:22:18 +0100 (Thu, 05 Feb 2009) | 2 lines

fix wording for paper in perltk GUI, too


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-perltk.pl
   M /trunk/Master/tlpkg/installer/lang/perltk-en.sample
------------------------------------------------------------------------
r12083 | preining | 2009-02-05 01:19:33 +0100 (Thu, 05 Feb 2009) | 2 lines

check on writability, and disable the Next button if not (wizard)


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12082 | preining | 2009-02-05 00:53:18 +0100 (Thu, 05 Feb 2009) | 2 lines

make wizard and normal gui switch switch able


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-perltk.pl
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12081 | karl | 2009-02-04 20:55:45 +0100 (Wed, 04 Feb 2009) | 3 lines

add tpic2pdftex, can't easily be done with ctan2tl
after all.


Changed paths:
   M /trunk/Build/source/utils/README
------------------------------------------------------------------------
r12080 | karl | 2009-02-04 20:53:12 +0100 (Wed, 04 Feb 2009) | 1 line

fill out upstream info a bit

Changed paths:
   M /trunk/Build/source/libs/README
   M /trunk/Build/source/texk/README
   D /trunk/Build/source/texk/dir
   M /trunk/Build/source/utils/README
------------------------------------------------------------------------
r12079 | preining | 2009-02-04 18:57:58 +0100 (Wed, 04 Feb 2009) | 2 lines

add missing Font.pm for installer perl


Changed paths:
   A /trunk/Master/tlpkg/installer/perllib/Tk/Font.pm
------------------------------------------------------------------------
r12078 | preining | 2009-02-04 18:47:43 +0100 (Wed, 04 Feb 2009) | 2 lines

new wizard using place and not changing the dimensions


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12077 | preining | 2009-02-04 16:21:24 +0100 (Wed, 04 Feb 2009) | 2 lines

remove the busy things, it cannot be cancelled ATM


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12076 | preining | 2009-02-04 16:15:05 +0100 (Wed, 04 Feb 2009) | 3 lines

go back to minimal wizard which only offers path/letter/go
fix its size to 640x480


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12075 | preining | 2009-02-04 15:37:26 +0100 (Wed, 04 Feb 2009) | 2 lines

make sure not to reference perltk stuff too early


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-perltk.pl
------------------------------------------------------------------------
r12074 | karl | 2009-02-04 15:27:49 +0100 (Wed, 04 Feb 2009) | 1 line

hyperref update (3feb09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/hyperref/ChangeLog
   M /trunk/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf
   M /trunk/Master/texmf-dist/doc/latex/hyperref/backref.pdf
   M /trunk/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf
   M /trunk/Master/texmf-dist/doc/latex/hyperref/nameref.pdf
   M /trunk/Master/texmf-dist/source/latex/hyperref/hyperref.dtx
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hdvipdfm.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hdvips.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hdvipson.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hdviwind.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hpdftex.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/htex4ht.cfg
   M /trunk/Master/texmf-dist/tex/latex/hyperref/htex4ht.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/htexture.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hvtex.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hvtexhtm.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hvtexmrk.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hyperref.sty
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hypertex.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/nohyperref.sty
   M /trunk/Master/texmf-dist/tex/latex/hyperref/pd1enc.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/pdfmark.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/puarenc.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/puenc.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/puvnenc.def
------------------------------------------------------------------------
r12073 | karl | 2009-02-04 15:27:21 +0100 (Wed, 04 Feb 2009) | 1 line

achemso 3.1a (3feb09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/achemso/README
   M /trunk/Master/texmf-dist/doc/latex/achemso/achemso.pdf
   M /trunk/Master/texmf-dist/doc/latex/achemso/natmove.pdf
   M /trunk/Master/texmf-dist/source/latex/achemso/achemso.dtx
   M /trunk/Master/texmf-dist/tex/latex/achemso/achemso.cls
   M /trunk/Master/texmf-dist/tex/latex/achemso/achemso.sty
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/acbcct.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/achre4.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/ancac3.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/ancham.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/bcches.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/bichaw.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/bipret.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/bomaf6.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/cgdefu.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/chreay.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/cmatex.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/crtoec.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/enfuem.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/esthag.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/iecred.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/inoraj.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jacsat.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jafcau.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jcchff.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jceaax.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jcisd8.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jctcce.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jmcmar.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jnprdf.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/joceah.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jpcafh.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jpcbfk.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jpccck.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/jprobs.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/langd5.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/mamobx.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/mpohbp.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/nalefd.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/oprdfk.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/orgnd7.cfg
   M /trunk/Master/texmf-dist/tex/latex/achemso/config/orlef7.cfg
------------------------------------------------------------------------
r12072 | karl | 2009-02-04 15:26:56 +0100 (Wed, 04 Feb 2009) | 1 line

new latex package modref (3feb09)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/modref
   A /trunk/Master/texmf-dist/doc/latex/modref/README
   A /trunk/Master/texmf-dist/doc/latex/modref/modref.pdf
   A /trunk/Master/texmf-dist/source/latex/modref
   A /trunk/Master/texmf-dist/source/latex/modref/modref.drv
   A /trunk/Master/texmf-dist/source/latex/modref/modref.dtx
   A /trunk/Master/texmf-dist/source/latex/modref/modref.ins
   A /trunk/Master/texmf-dist/tex/latex/modref
   A /trunk/Master/texmf-dist/tex/latex/modref/modref.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/modref.tlpsrc
------------------------------------------------------------------------
r12071 | karl | 2009-02-04 04:13:35 +0100 (Wed, 04 Feb 2009) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r12070 | karl | 2009-02-04 03:24:07 +0100 (Wed, 04 Feb 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r12069 | karl | 2009-02-04 01:09:54 +0100 (Wed, 04 Feb 2009) | 1 line

doc tweaks

Changed paths:
   M /trunk/Build/source/texk/kpathsea/mktex.cnf
------------------------------------------------------------------------
r12068 | karl | 2009-02-03 21:01:57 +0100 (Tue, 03 Feb 2009) | 1 line

doc fixes

Changed paths:
   M /trunk/Master/install-tl
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r12067 | karl | 2009-02-03 19:50:56 +0100 (Tue, 03 Feb 2009) | 2 lines

(do_updater): new fn, and make sha256sums.


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-tlcritical
------------------------------------------------------------------------
r12066 | karl | 2009-02-03 18:25:26 +0100 (Tue, 03 Feb 2009) | 1 line

copyright years

Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLConfig.pm
   M /trunk/Master/tlpkg/TeXLive/TLPOBJ.pm
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
   M /trunk/Master/tlpkg/TeXLive/TLWinGoo.pm
   M /trunk/Master/tlpkg/TeXLive/TeXCatalogue.pm
------------------------------------------------------------------------
r12065 | karl | 2009-02-03 18:11:50 +0100 (Tue, 03 Feb 2009) | 2 lines

(xystem): only divide by 256 if return value is > 0.


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r12064 | preining | 2009-02-03 14:09:01 +0100 (Tue, 03 Feb 2009) | 4 lines

add a fixed tlmgr (version 1 as shipped currently) with the --recreate-tlpdb
option so that in case we haven't pushed tlmgr2 to release and the problem
occurs we can fix stuff.


Changed paths:
   A /trunk/Master/tlpkg/etc/tlmgr1.pl-with-recreate-tlpdb
------------------------------------------------------------------------
r12063 | peter | 2009-02-03 14:05:33 +0100 (Tue, 03 Feb 2009) | 1 line

Removed svn:executable prop from mktex.opt

Changed paths:
   M /trunk/Build/source/texk/kpathsea/mktex.opt
------------------------------------------------------------------------
r12062 | preining | 2009-02-03 13:56:24 +0100 (Tue, 03 Feb 2009) | 3 lines

rework install logic so that we can switch over to the GUI from wizard
without all those warnings about redefined subs


Changed paths:
   M /trunk/Master/install-tl
   M /trunk/Master/tlpkg/installer/install-menu-perltk.pl
   M /trunk/Master/tlpkg/installer/install-menu-text.pl
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12061 | preining | 2009-02-03 09:34:20 +0100 (Tue, 03 Feb 2009) | 2 lines

Advanced configuration pops you into the perltk GUI.


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12060 | karl | 2009-02-03 04:19:29 +0100 (Tue, 03 Feb 2009) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r12059 | karl | 2009-02-03 03:38:17 +0100 (Tue, 03 Feb 2009) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r12058 | karl | 2009-02-03 03:26:58 +0100 (Tue, 03 Feb 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r12057 | karl | 2009-02-03 02:28:17 +0100 (Tue, 03 Feb 2009) | 1 line

context-games update (2feb09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/context/third/games/README
   A /trunk/Master/texmf-dist/doc/context/third/games/games-doc.pdf
   D /trunk/Master/texmf-dist/tex/context/third/games/games-chess-symbols.tex
   D /trunk/Master/texmf-dist/tex/context/third/games/games-chess.lua
   D /trunk/Master/texmf-dist/tex/context/third/games/games-chess.tex
   M /trunk/Master/texmf-dist/tex/context/third/games/t-games.tex
------------------------------------------------------------------------
r12056 | karl | 2009-02-03 02:27:50 +0100 (Tue, 03 Feb 2009) | 1 line

natbib 83 (2feb09)

Changed paths:
   M /trunk/Master/texmf-dist/bibtex/bst/natbib/abbrvnat.bst
   M /trunk/Master/texmf-dist/bibtex/bst/natbib/plainnat.bst
   M /trunk/Master/texmf-dist/bibtex/bst/natbib/unsrtnat.bst
   D /trunk/Master/texmf-dist/doc/latex/natbib/README.v81
   A /trunk/Master/texmf-dist/doc/latex/natbib/README.v83
   A /trunk/Master/texmf-dist/doc/latex/natbib/natbib.ltx
   M /trunk/Master/texmf-dist/doc/latex/natbib/natbib.pdf
   M /trunk/Master/texmf-dist/doc/latex/natbib/natnotes.pdf
   M /trunk/Master/texmf-dist/doc/latex/natbib/natnotes.tex
   D /trunk/Master/texmf-dist/source/latex/natbib/natbib.drv
   M /trunk/Master/texmf-dist/source/latex/natbib/natbib.dtx
   M /trunk/Master/texmf-dist/source/latex/natbib/natbib.ins
   M /trunk/Master/texmf-dist/tex/latex/natbib/natbib.sty
------------------------------------------------------------------------
r12055 | karl | 2009-02-03 02:26:19 +0100 (Tue, 03 Feb 2009) | 1 line

pst-circ 1.50 (2feb09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/generic/pst-circ/Changes
   M /trunk/Master/texmf-dist/doc/generic/pst-circ/pst-circ-doc.bib
   M /trunk/Master/texmf-dist/doc/generic/pst-circ/pst-circ-doc.pdf
   M /trunk/Master/texmf-dist/doc/generic/pst-circ/pst-circ-doc.tex
   M /trunk/Master/texmf-dist/tex/generic/pst-circ/pst-circ.tex
------------------------------------------------------------------------
r12054 | karl | 2009-02-02 21:54:29 +0100 (Mon, 02 Feb 2009) | 1 line

bibtopic .bib files are doc

Changed paths:
   D /trunk/Master/texmf-dist/bibtex/bib/bibtopic/articles.bib
   D /trunk/Master/texmf-dist/bibtex/bib/bibtopic/books.bib
   A /trunk/Master/texmf-dist/doc/latex/bibtopic/articles.bib
   A /trunk/Master/texmf-dist/doc/latex/bibtopic/books.bib
------------------------------------------------------------------------
r12053 | karl | 2009-02-02 21:53:22 +0100 (Mon, 02 Feb 2009) | 1 line

amsrefs doc files

Changed paths:
   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/cite-xa.pdf
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xb.pdf
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xh.pdf
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/cite-xs.pdf
   M /trunk/Master/texmf-dist/doc/latex/amsrefs/ifoption.pdf
   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
------------------------------------------------------------------------
r12052 | karl | 2009-02-02 20:11:58 +0100 (Mon, 02 Feb 2009) | 1 line

consistently use install-sh

Changed paths:
   D /trunk/Build/source/config/install.sh
   M /trunk/Build/source/reautoconf
   M /trunk/Build/source/texk/ChangeLog
   A /trunk/Build/source/texk/install-sh
   D /trunk/Build/source/texk/install.sh
------------------------------------------------------------------------
r12051 | preining | 2009-02-02 08:20:50 +0100 (Mon, 02 Feb 2009) | 4 lines

downgrade tlmgr warning when bin-texlive and texlive.infra is not present
to a debug. When installing from a different repository normally it is not
present, and that should be no warning


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r12050 | preining | 2009-02-02 07:18:19 +0100 (Mon, 02 Feb 2009) | 2 lines

much advanced wizard


Changed paths:
   M /trunk/Master/install-tl
   M /trunk/Master/tlpkg/installer/install-menu-perltk.pl
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12049 | karl | 2009-02-02 04:10:15 +0100 (Mon, 02 Feb 2009) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r12048 | karl | 2009-02-02 03:19:12 +0100 (Mon, 02 Feb 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r12047 | karl | 2009-02-02 01:55:02 +0100 (Mon, 02 Feb 2009) | 2 lines

make sha256sums


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-install-pkg
------------------------------------------------------------------------
r12046 | karl | 2009-02-01 22:25:24 +0100 (Sun, 01 Feb 2009) | 1 line

siunitx update (1feb09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/siunitx/siunitx.pdf
   M /trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-DE.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-SIunits.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-UK.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-USA.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-ZA.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-abbr.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-accepted.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-addn.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-astro.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-binary.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-fancynum.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-fancyunits.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-geophys.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-hep.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-hepunits.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-named.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-physical.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-prefix.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-prefixed.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-sistyle.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-synchem.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-units.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-unitsdef.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty
------------------------------------------------------------------------
r12045 | preining | 2009-02-01 17:06:42 +0100 (Sun, 01 Feb 2009) | 2 lines

do some TODO


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12044 | karl | 2009-02-01 16:36:24 +0100 (Sun, 01 Feb 2009) | 1 line

config.guess should be a runpattern, not a binpattern, to avoid duplicates

Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
   M /trunk/TODO
------------------------------------------------------------------------
r12043 | karl | 2009-02-01 16:33:09 +0100 (Sun, 01 Feb 2009) | 1 line

empty dir

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/cmll
------------------------------------------------------------------------
r12042 | karl | 2009-02-01 16:32:42 +0100 (Sun, 01 Feb 2009) | 2 lines

reenable commits


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-auto
------------------------------------------------------------------------
r12041 | karl | 2009-02-01 16:32:07 +0100 (Sun, 01 Feb 2009) | 1 line

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

Changed paths:
   M /trunk/Build/source/config/config.sub
   M /trunk/Build/source/config/install-sh
   M /trunk/Build/source/config/missing
   M /trunk/Build/source/config/mkinstalldirs
   M /trunk/Build/source/libs/expat/conftools/config.sub
   M /trunk/Build/source/libs/expat/conftools/install-sh
   M /trunk/Build/source/libs/expat/conftools/missing
   M /trunk/Build/source/libs/expat/conftools/mkinstalldirs
   M /trunk/Build/source/libs/freetype/config.sub
   M /trunk/Build/source/libs/freetype/install-sh
   M /trunk/Build/source/libs/freetype/mkinstalldirs
   M /trunk/Build/source/libs/freetype2/builds/unix/config.sub
   M /trunk/Build/source/libs/graphite-engine/config/config.sub
   M /trunk/Build/source/libs/graphite-engine/config/install-sh
   M /trunk/Build/source/libs/graphite-engine/config/missing
   M /trunk/Build/source/libs/icu-xetex/config.sub
   M /trunk/Build/source/libs/icu-xetex/install-sh
   M /trunk/Build/source/libs/icu-xetex/mkinstalldirs
   M /trunk/Build/source/libs/jpeg/config.sub
   M /trunk/Build/source/libs/jpeg/install-sh
   M /trunk/Build/source/libs/ncurses/config.sub
   M /trunk/Build/source/libs/ncurses/install-sh
   M /trunk/Build/source/libs/ncurses/mkinstalldirs
   M /trunk/Build/source/libs/obsdcompat/config.sub
   M /trunk/Build/source/libs/obsdcompat/install-sh
   M /trunk/Build/source/libs/teckit/config.sub
   M /trunk/Build/source/libs/teckit/install-sh
   M /trunk/Build/source/libs/teckit/missing
   M /trunk/Build/source/libs/teckit/mkinstalldirs
   M /trunk/Build/source/libs/zziplib/uses/config.sub
   M /trunk/Build/source/libs/zziplib/uses/install-sh
   M /trunk/Build/source/libs/zziplib/uses/missing
   M /trunk/Build/source/libs/zziplib/uses/mkinstalldirs
   M /trunk/Build/source/texk/cjkutils/hbf2gf/config.sub
   M /trunk/Build/source/texk/cjkutils/hbf2gf/install-sh
   M /trunk/Build/source/texk/cjkutils/hbf2gf/mkinstalldirs
   M /trunk/Build/source/texk/config.sub
   M /trunk/Build/source/texk/devnag/install-sh
   M /trunk/Build/source/texk/devnag/missing
   M /trunk/Build/source/texk/devnag/mkinstalldirs
   M /trunk/Build/source/texk/dvipdfmx/install-sh
   M /trunk/Build/source/texk/dvipdfmx/missing
   M /trunk/Build/source/texk/dvipdfmx/mkinstalldirs
   M /trunk/Build/source/texk/dvipng/install-sh
   M /trunk/Build/source/texk/dvipng/mkinstalldirs
   M /trunk/Build/source/texk/lcdf-typetools/install-sh
   M /trunk/Build/source/texk/lcdf-typetools/missing
   M /trunk/Build/source/texk/mkinstalldirs
   M /trunk/Build/source/texk/ttfdump/install-sh
   M /trunk/Build/source/texk/xdvipdfmx/config.sub
   M /trunk/Build/source/texk/xdvipdfmx/install-sh
   M /trunk/Build/source/texk/xdvipdfmx/missing
   M /trunk/Build/source/texk/xdvipdfmx/mkinstalldirs
   M /trunk/Build/source/utils/dialog/mkinstalldirs
   M /trunk/Build/source/utils/lzma/config.sub
   M /trunk/Build/source/utils/lzma/install-sh
   M /trunk/Build/source/utils/lzma/missing
   M /trunk/Build/source/utils/pdfopen/config/install-sh
   M /trunk/Build/source/utils/pdfopen/config/missing
   M /trunk/Build/source/utils/pdfopen/config/mkinstalldirs
   M /trunk/Build/source/utils/ps2eps/install-sh
   M /trunk/Build/source/utils/t1utils/config.sub
   M /trunk/Build/source/utils/t1utils/install-sh
   M /trunk/Build/source/utils/t1utils/missing
   M /trunk/Build/source/utils/t1utils/mkinstalldirs
   M /trunk/Build/source/utils/tpic2pdftex/install-sh
   M /trunk/Build/source/utils/vlna/missing
   M /trunk/Build/source/utils/xindy/config.sub
   M /trunk/Build/source/utils/xindy/missing
   M /trunk/Master/tlpkg/installer/config.guess
------------------------------------------------------------------------
r12040 | karl | 2009-02-01 16:28:33 +0100 (Sun, 01 Feb 2009) | 1 line

commit empty install-sh for update target; will merge with install.sh later

Changed paths:
   A /trunk/Build/source/config/install-sh
------------------------------------------------------------------------
r12039 | preining | 2009-02-01 16:28:23 +0100 (Sun, 01 Feb 2009) | 2 lines

add total needed size to path screen


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12038 | preining | 2009-02-01 16:13:19 +0100 (Sun, 01 Feb 2009) | 2 lines

allow for customization (currently only scheme question) and letter paper


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12037 | preining | 2009-02-01 15:55:16 +0100 (Sun, 01 Feb 2009) | 2 lines

wizard: use correct default path, and show web page of TL on start screen


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12036 | karl | 2009-02-01 04:16:27 +0100 (Sun, 01 Feb 2009) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r12035 | karl | 2009-02-01 03:24:32 +0100 (Sun, 01 Feb 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r12034 | karl | 2009-02-01 01:58:01 +0100 (Sun, 01 Feb 2009) | 1 line

ttf2pt1.zip version is stale, and on ctan

Changed paths:
   D /trunk/Master/support/ttf2pt1.zip
------------------------------------------------------------------------
r12033 | karl | 2009-02-01 01:42:10 +0100 (Sun, 01 Feb 2009) | 4 lines

take config.{guess,sub} from a local directory,
and also get mkinstalldirs and other such
infrastructure files.


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-auto
------------------------------------------------------------------------
r12032 | karl | 2009-02-01 00:26:49 +0100 (Sun, 01 Feb 2009) | 1 line

include auto/IO, Gregor Zimmermann 31 Jan 2009 15:42:58

Changed paths:
   A /trunk/Master/tlpkg/installer/perllib/auto/IO
   A /trunk/Master/tlpkg/installer/perllib/auto/IO/IO.bs
   A /trunk/Master/tlpkg/installer/perllib/auto/IO/IO.dll
------------------------------------------------------------------------
r12031 | karl | 2009-02-01 00:18:02 +0100 (Sun, 01 Feb 2009) | 1 line

let us include config.guess in the installed dir, so we can potentially use it

Changed paths:
   M /trunk/Master/tlpkg/installer/config.guess
   M /trunk/Master/tlpkg/tlpsrc/00texlive.installer.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
------------------------------------------------------------------------
r12030 | karl | 2009-02-01 00:15:19 +0100 (Sun, 01 Feb 2009) | 3 lines

(configguess): remove this unfinished,
unfinishable, and unused fn.


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r12029 | karl | 2009-02-01 00:13:58 +0100 (Sun, 01 Feb 2009) | 1 line

new bibtex style chicago-annote (31jan09)

Changed paths:
   A /trunk/Master/texmf-dist/bibtex/bst/chicago-annote
   A /trunk/Master/texmf-dist/bibtex/bst/chicago-annote/chicago-annote.bst
   A /trunk/Master/texmf-dist/doc/bibtex/chicago-annote
   A /trunk/Master/texmf-dist/doc/bibtex/chicago-annote/README
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
   A /trunk/Master/tlpkg/tlpsrc/chicago-annote.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/collection-bibtexextra.tlpsrc
------------------------------------------------------------------------
r12028 | karl | 2009-01-31 15:49:41 +0100 (Sat, 31 Jan 2009) | 1 line

harvard update (30jan09)

Changed paths:
   M /trunk/Master/texmf-dist/bibtex/bib/harvard/harvard.bib
   A /trunk/Master/texmf-dist/bibtex/bst/harvard/dcu.bst
   A /trunk/Master/texmf-dist/doc/latex/harvard/INSTALL
   A /trunk/Master/texmf-dist/doc/latex/harvard/README
   D /trunk/Master/texmf-dist/doc/latex/harvard/harvard.dvi
   A /trunk/Master/texmf-dist/doc/latex/harvard/harvard.pdf
   A /trunk/Master/texmf-dist/doc/latex/harvard/harvard.perl
   M /trunk/Master/texmf-dist/doc/latex/harvard/harvard.tex
   A /trunk/Master/texmf-dist/doc/latex/harvard/manifest.txt
   D /trunk/Master/texmf-dist/source/latex/harvard/INSTALL
   M /trunk/Master/texmf-dist/source/latex/harvard/Makefile
   D /trunk/Master/texmf-dist/source/latex/harvard/README
   M /trunk/Master/texmf-dist/source/latex/harvard/doc_Makefile
   D /trunk/Master/texmf-dist/source/latex/harvard/harvard.perl
   M /trunk/Master/texmf-dist/tex/latex/harvard/harvard.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
------------------------------------------------------------------------
r12027 | preining | 2009-01-31 13:09:11 +0100 (Sat, 31 Jan 2009) | 2 lines

add arrows to Back and Next


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12026 | preining | 2009-01-31 13:05:28 +0100 (Sat, 31 Jan 2009) | 2 lines

use "Back", not "Previous"


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12025 | karl | 2009-01-31 04:19:08 +0100 (Sat, 31 Jan 2009) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r12024 | karl | 2009-01-31 03:24:29 +0100 (Sat, 31 Jan 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r12023 | preining | 2009-01-31 01:52:07 +0100 (Sat, 31 Jan 2009) | 2 lines

use -gui [[=]plugin] instead of -ui


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r12022 | karl | 2009-01-31 01:46:12 +0100 (Sat, 31 Jan 2009) | 1 line

williams update (30jan09)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/williams
   A /trunk/Master/texmf-dist/doc/latex/williams/README
   M /trunk/Master/texmf-dist/tex/latex/williams/antree.sty
   M /trunk/Master/texmf-dist/tex/latex/williams/toklist.sty
------------------------------------------------------------------------
r12021 | karl | 2009-01-31 01:45:47 +0100 (Sat, 31 Jan 2009) | 1 line

pstricks 1.27 (30jan09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/generic/pstricks/Changes
   M /trunk/Master/texmf-dist/doc/generic/pstricks/Changes.dvips
   M /trunk/Master/texmf-dist/doc/generic/pstricks/Changes.generic
   M /trunk/Master/texmf-dist/doc/generic/pstricks/Changes.latex
   M /trunk/Master/texmf-dist/doc/generic/pstricks/pst-doc.cls
   A /trunk/Master/texmf-dist/doc/generic/pstricks/pst-news09.pdf
   A /trunk/Master/texmf-dist/doc/generic/pstricks/pst-news09.tex
   M /trunk/Master/texmf-dist/dvips/pstricks/pst-node.pro
   M /trunk/Master/texmf-dist/dvips/pstricks/pstricks.pro
   M /trunk/Master/texmf-dist/tex/generic/pstricks/pst-node.tex
   M /trunk/Master/texmf-dist/tex/generic/pstricks/pst-plot.tex
   M /trunk/Master/texmf-dist/tex/generic/pstricks/pstricks.tex
   M /trunk/Master/texmf-dist/tex/latex/pstricks/pst-node.sty
   M /trunk/Master/texmf-dist/tex/latex/pstricks/pstricks.sty
------------------------------------------------------------------------
r12020 | preining | 2009-01-30 20:54:55 +0100 (Fri, 30 Jan 2009) | 2 lines

make wizard more wizard like ...


Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-wizard.pl
------------------------------------------------------------------------
r12019 | karl | 2009-01-30 18:06:43 +0100 (Fri, 30 Jan 2009) | 2 lines

depend skaknew for SkakNew-Diagram font


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/context-games.tlpsrc
------------------------------------------------------------------------
r12018 | karl | 2009-01-30 18:05:46 +0100 (Fri, 30 Jan 2009) | 1 line

context-games update (29jan09)

Changed paths:
   A /trunk/Master/texmf-dist/doc/context/third/games
   A /trunk/Master/texmf-dist/doc/context/third/games/README
   A /trunk/Master/texmf-dist/tex/context/third/games/games-chess-symbols.tex
   A /trunk/Master/texmf-dist/tex/context/third/games/games-chess.lua
   A /trunk/Master/texmf-dist/tex/context/third/games/games-chess.tex
   M /trunk/Master/texmf-dist/tex/context/third/games/games-go.lua
   M /trunk/Master/texmf-dist/tex/context/third/games/games-go.tex
   M /trunk/Master/texmf-dist/tex/context/third/games/t-games.tex
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/context-games.tlpsrc
------------------------------------------------------------------------
r12017 | karl | 2009-01-30 04:18:28 +0100 (Fri, 30 Jan 2009) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r12016 | karl | 2009-01-30 03:24:30 +0100 (Fri, 30 Jan 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r12015 | karl | 2009-01-30 01:33:26 +0100 (Fri, 30 Jan 2009) | 1 line

add everything from tlperl/lib to installer/perllib except for Tk, unicore, and auto (report from Gregor Zimmermann, 29 Jan 2009 12:38:19)

Changed paths:
   A /trunk/Master/tlpkg/installer/perllib/AnyDBM_File.pm
   A /trunk/Master/tlpkg/installer/perllib/B
   A /trunk/Master/tlpkg/installer/perllib/B/Asmdata.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Assembler.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Bblock.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Bytecode.pm
   A /trunk/Master/tlpkg/installer/perllib/B/C.pm
   A /trunk/Master/tlpkg/installer/perllib/B/CC.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Concise.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Debug.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Deparse.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Disassembler.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Lint.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Showlex.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Stackobj.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Stash.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Terse.pm
   A /trunk/Master/tlpkg/installer/perllib/B/Xref.pm
   A /trunk/Master/tlpkg/installer/perllib/B/assemble
   A /trunk/Master/tlpkg/installer/perllib/B/cc_harness
   A /trunk/Master/tlpkg/installer/perllib/B/disassemble
   A /trunk/Master/tlpkg/installer/perllib/B/makeliblinks
   A /trunk/Master/tlpkg/installer/perllib/B.pm
   A /trunk/Master/tlpkg/installer/perllib/Class
   A /trunk/Master/tlpkg/installer/perllib/Class/ISA.pm
   A /trunk/Master/tlpkg/installer/perllib/Class/Struct.pm
   A /trunk/Master/tlpkg/installer/perllib/Config_heavy.pl
   A /trunk/Master/tlpkg/installer/perllib/Data
   A /trunk/Master/tlpkg/installer/perllib/Data/Dumper.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/CJKConstants.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/CN
   A /trunk/Master/tlpkg/installer/perllib/Encode/CN/HZ.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/CN.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/Changes.e2x
   A /trunk/Master/tlpkg/installer/perllib/Encode/ConfigLocal_PM.e2x
   A /trunk/Master/tlpkg/installer/perllib/Encode/EBCDIC.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/Encoder.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/Guess.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/JP
   A /trunk/Master/tlpkg/installer/perllib/Encode/JP/H2Z.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/JP/JIS7.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/JP.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/KR
   A /trunk/Master/tlpkg/installer/perllib/Encode/KR/2022_KR.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/KR.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/MIME
   A /trunk/Master/tlpkg/installer/perllib/Encode/MIME/Header
   A /trunk/Master/tlpkg/installer/perllib/Encode/MIME/Header/ISO_2022_JP.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/MIME/Header.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/Makefile_PL.e2x
   A /trunk/Master/tlpkg/installer/perllib/Encode/PerlIO.pod
   A /trunk/Master/tlpkg/installer/perllib/Encode/README.e2x
   A /trunk/Master/tlpkg/installer/perllib/Encode/Supported.pod
   A /trunk/Master/tlpkg/installer/perllib/Encode/Symbol.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/TW.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/Unicode
   A /trunk/Master/tlpkg/installer/perllib/Encode/Unicode/UTF7.pm
   A /trunk/Master/tlpkg/installer/perllib/Encode/_PM.e2x
   A /trunk/Master/tlpkg/installer/perllib/Encode/_T.e2x
   A /trunk/Master/tlpkg/installer/perllib/Encode/encode.h
   A /trunk/Master/tlpkg/installer/perllib/Errno.pm
   A /trunk/Master/tlpkg/installer/perllib/Fcntl.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Basename.pm
   A /trunk/Master/tlpkg/installer/perllib/File/CheckTree.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Compare.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Copy.pm
   A /trunk/Master/tlpkg/installer/perllib/File/DosGlob.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Find.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Glob.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Path.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Spec/Cygwin.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Spec/Epoc.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Spec/Functions.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Spec/Mac.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Spec/OS2.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Spec/VMS.pm
   A /trunk/Master/tlpkg/installer/perllib/File/Temp.pm
   A /trunk/Master/tlpkg/installer/perllib/File/stat.pm
   A /trunk/Master/tlpkg/installer/perllib/FileHandle.pm
   A /trunk/Master/tlpkg/installer/perllib/Getopt/Std.pm
   A /trunk/Master/tlpkg/installer/perllib/IO
   A /trunk/Master/tlpkg/installer/perllib/IO/Dir.pm
   A /trunk/Master/tlpkg/installer/perllib/IO/File.pm
   A /trunk/Master/tlpkg/installer/perllib/IO/Handle.pm
   A /trunk/Master/tlpkg/installer/perllib/IO/Pipe.pm
   A /trunk/Master/tlpkg/installer/perllib/IO/Poll.pm
   A /trunk/Master/tlpkg/installer/perllib/IO/Seekable.pm
   A /trunk/Master/tlpkg/installer/perllib/IO/Select.pm
   A /trunk/Master/tlpkg/installer/perllib/IO/Socket
   A /trunk/Master/tlpkg/installer/perllib/IO/Socket/INET.pm
   A /trunk/Master/tlpkg/installer/perllib/IO/Socket/UNIX.pm
   A /trunk/Master/tlpkg/installer/perllib/IO/Socket.pm
   A /trunk/Master/tlpkg/installer/perllib/IO.pm
   A /trunk/Master/tlpkg/installer/perllib/Opcode.pm
   A /trunk/Master/tlpkg/installer/perllib/POSIX.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Checker.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Find.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Functions.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Html.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/LaTeX.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Man.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/ParseUtils.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/BaseTo.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/GetOptsOO.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/ToChecker.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/ToMan.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/ToNroff.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/ToPod.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/ToRtf.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/ToText.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/ToTk.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc/ToXml.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Perldoc.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/PlainText.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Plainer.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Text
   A /trunk/Master/tlpkg/installer/perllib/Pod/Text/Color.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Text/Overstrike.pm
   A /trunk/Master/tlpkg/installer/perllib/Pod/Text/Termcap.pm
   A /trunk/Master/tlpkg/installer/perllib/Safe.pm
   A /trunk/Master/tlpkg/installer/perllib/SelectSaver.pm
   A /trunk/Master/tlpkg/installer/perllib/Term
   A /trunk/Master/tlpkg/installer/perllib/Term/ANSIColor.pm
   A /trunk/Master/tlpkg/installer/perllib/Term/Cap.pm
   A /trunk/Master/tlpkg/installer/perllib/Term/Complete.pm
   A /trunk/Master/tlpkg/installer/perllib/Term/ReadLine.pm
   A /trunk/Master/tlpkg/installer/perllib/Text/Abbrev.pm
   A /trunk/Master/tlpkg/installer/perllib/Text/Balanced.pm
   A /trunk/Master/tlpkg/installer/perllib/Text/ParseWords.pm
   A /trunk/Master/tlpkg/installer/perllib/Text/Soundex.pm
   A /trunk/Master/tlpkg/installer/perllib/Text/Wrap.pm
   A /trunk/Master/tlpkg/installer/perllib/Tie/Array.pm
   A /trunk/Master/tlpkg/installer/perllib/Tie/File.pm
   A /trunk/Master/tlpkg/installer/perllib/Tie/Handle.pm
   A /trunk/Master/tlpkg/installer/perllib/Tie/Memoize.pm
   A /trunk/Master/tlpkg/installer/perllib/Tie/RefHash.pm
   A /trunk/Master/tlpkg/installer/perllib/Tie/Scalar.pm
   A /trunk/Master/tlpkg/installer/perllib/Tie/SubstrHash.pm
   A /trunk/Master/tlpkg/installer/perllib/Time
   A /trunk/Master/tlpkg/installer/perllib/Time/HiRes.pm
   A /trunk/Master/tlpkg/installer/perllib/Time/Local.pm
   A /trunk/Master/tlpkg/installer/perllib/Time/gmtime.pm
   A /trunk/Master/tlpkg/installer/perllib/Time/localtime.pm
   A /trunk/Master/tlpkg/installer/perllib/Time/tm.pm
   A /trunk/Master/tlpkg/installer/perllib/UNIVERSAL.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/ChangeNotify.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Client.pl
   A /trunk/Master/tlpkg/installer/perllib/Win32/Clipboard.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Console.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Event.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/EventLog.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/File.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/FileSecurity.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/IPC.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Internet.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Job.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Mutex.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/NetAdmin.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/NetResource.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/ODBC.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/PerfLib.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Pipe.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Process.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Semaphore.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Server.pl
   A /trunk/Master/tlpkg/installer/perllib/Win32/Service.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Sound.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/Test.pl
   A /trunk/Master/tlpkg/installer/perllib/Win32/WinError.pm
   A /trunk/Master/tlpkg/installer/perllib/Win32/test-async.pl
   A /trunk/Master/tlpkg/installer/perllib/Win32.pm
   A /trunk/Master/tlpkg/installer/perllib/attributes.pm
   A /trunk/Master/tlpkg/installer/perllib/bytes_heavy.pl
   A /trunk/Master/tlpkg/installer/perllib/fields.pm
   A /trunk/Master/tlpkg/installer/perllib/lib.pm
   A /trunk/Master/tlpkg/installer/perllib/re.pm
------------------------------------------------------------------------
r12014 | karl | 2009-01-30 01:07:44 +0100 (Fri, 30 Jan 2009) | 1 line

new pstricks package pst-bezier (29jan09)

Changed paths:
   A /trunk/Master/texmf-dist/doc/generic/pst-bezier
   A /trunk/Master/texmf-dist/doc/generic/pst-bezier/Changes
   A /trunk/Master/texmf-dist/doc/generic/pst-bezier/README
   A /trunk/Master/texmf-dist/doc/generic/pst-bezier/pst-bezier-doc.bib
   A /trunk/Master/texmf-dist/doc/generic/pst-bezier/pst-bezier-doc.pdf
   A /trunk/Master/texmf-dist/doc/generic/pst-bezier/pst-bezier-doc.tex
   A /trunk/Master/texmf-dist/dvips/pst-bezier
   A /trunk/Master/texmf-dist/dvips/pst-bezier/pst-bezier.pro
   A /trunk/Master/texmf-dist/source/generic/pst-bezier
   A /trunk/Master/texmf-dist/source/generic/pst-bezier/Makefile
   A /trunk/Master/texmf-dist/tex/generic/pst-bezier
   A /trunk/Master/texmf-dist/tex/generic/pst-bezier/pst-bezier.tex
   A /trunk/Master/texmf-dist/tex/latex/pst-bezier
   A /trunk/Master/texmf-dist/tex/latex/pst-bezier/pst-bezier.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/collection-pstricks.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/pst-bezier.tlpsrc
------------------------------------------------------------------------
r12013 | karl | 2009-01-30 01:06:35 +0100 (Fri, 30 Jan 2009) | 1 line

siunitx update (29jan09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/siunitx/siunitx.pdf
   M /trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-DE.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-SIunits.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-UK.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-USA.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-ZA.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-abbr.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-accepted.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-addn.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-astro.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-binary.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-fancynum.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-fancyunits.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-geophys.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-hep.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-hepunits.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-named.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-physical.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-prefix.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-prefixed.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-sistyle.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-synchem.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-units.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/config/si-unitsdef.cfg
   M /trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty
------------------------------------------------------------------------
r12012 | karl | 2009-01-30 01:06:18 +0100 (Fri, 30 Jan 2009) | 1 line

menu update (29jan09)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/menu
   A /trunk/Master/texmf-dist/doc/latex/menu/menu.pdf
   A /trunk/Master/texmf-dist/doc/latex/menu/readme
   M /trunk/Master/texmf-dist/source/latex/menu/menu.dtx
   M /trunk/Master/texmf-dist/source/latex/menu/menu.ins
   M /trunk/Master/texmf-dist/tex/latex/menu/menu.sty
------------------------------------------------------------------------
r12011 | karl | 2009-01-30 01:06:03 +0100 (Fri, 30 Jan 2009) | 1 line

ifxetex update (29jan09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/generic/ifxetex/README
   M /trunk/Master/texmf-dist/doc/generic/ifxetex/ifxetex.pdf
   M /trunk/Master/texmf-dist/source/generic/ifxetex/ifxetex.ins
   M /trunk/Master/texmf-dist/source/generic/ifxetex/ifxetex.tex
   M /trunk/Master/texmf-dist/tex/generic/ifxetex/ifxetex.sty
------------------------------------------------------------------------
r12010 | karl | 2009-01-30 01:05:10 +0100 (Fri, 30 Jan 2009) | 1 line

pst-circ update (29jan09)

Changed paths:
   M /trunk/Master/texmf-dist/doc/generic/pst-circ/pst-circ-doc.pdf
   M /trunk/Master/texmf-dist/doc/generic/pst-circ/pst-circ-doc.tex
------------------------------------------------------------------------
r12009 | karl | 2009-01-30 01:04:41 +0100 (Fri, 30 Jan 2009) | 1 line

tablor 4.02c

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/tablor/tablor.html
   M /trunk/Master/texmf-dist/tex/latex/tablor/tablor-xetex.sty
   M /trunk/Master/texmf-dist/tex/latex/tablor/tablor.sty
------------------------------------------------------------------------
r12008 | karl | 2009-01-29 17:50:43 +0100 (Thu, 29 Jan 2009) | 2 lines

(runpattern): failed to update dir name.


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/context-games.tlpsrc
------------------------------------------------------------------------
r12007 | karl | 2009-01-29 04:23:23 +0100 (Thu, 29 Jan 2009) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
   A /trunk/Build/logs/svnlog.11999.gz
------------------------------------------------------------------------
------------------------------------------------------------------------
r12006 | karl | 2009-01-29 03:24:37 +0100 (Thu, 29 Jan 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r12005 | karl | 2009-01-29 01:23:38 +0100 (Thu, 29 Jan 2009) | 1 line

new context package context-games (28jan09)

Changed paths:
   A /trunk/Master/texmf-dist/tex/context/third/games
   A /trunk/Master/texmf-dist/tex/context/third/games/games-go.lua
   A /trunk/Master/texmf-dist/tex/context/third/games/games-go.tex
   A /trunk/Master/texmf-dist/tex/context/third/games/games-hex.lua
   A /trunk/Master/texmf-dist/tex/context/third/games/games-hex.tex
   A /trunk/Master/texmf-dist/tex/context/third/games/holz280.jpg
   A /trunk/Master/texmf-dist/tex/context/third/games/t-games.tex
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/collection-context.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/context-games.tlpsrc
------------------------------------------------------------------------
r12004 | karl | 2009-01-28 19:45:19 +0100 (Wed, 28 Jan 2009) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/tex/texinfo/texinfo.tex
------------------------------------------------------------------------
r12003 | karl | 2009-01-28 19:45:01 +0100 (Wed, 28 Jan 2009) | 3 lines

Build: export LANG
reautoconf: complain if given files, formatting.
tlnet-disabled-packages: try updating tex4ht now, since backups should work.

Changed paths:
   M /trunk/Build/source/Build
   M /trunk/Build/source/reautoconf
   M /trunk/Master/tlpkg/etc/tlnet-disabled-packages.txt
------------------------------------------------------------------------
r12002 | karl | 2009-01-28 18:26:13 +0100 (Wed, 28 Jan 2009) | 3 lines

(opt_version): use perl instead of sed for
extracting from release-texlive.txt, so it works on Windows.


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r12001 | karl | 2009-01-28 18:18:10 +0100 (Wed, 28 Jan 2009) | 4 lines

(platform): try to recognize
powerpc64-unknown-linux-gnu from config.guess as
our powerpc-linux.


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r12000 | karl | 2009-01-28 04:21:58 +0100 (Wed, 28 Jan 2009) | 1 line

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

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