summaryrefslogtreecommitdiff
path: root/Build/logs/svnlog
blob: 60fcc186f79e60f7f3bbddf4c08da62a5d8fa694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
------------------------------------------------------------------------
r11161 | karl | 2008-11-03 03:24:04 +0100 (Mon, 03 Nov 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11160 | mojca | 2008-11-03 01:36:18 +0100 (Mon, 03 Nov 2008) | 1 line

some files were documentation, not runfiles

Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/hyphen-greek.tlpsrc
------------------------------------------------------------------------
r11159 | karl | 2008-11-03 00:42:25 +0100 (Mon, 03 Nov 2008) | 1 line

conv_to_win_path renamed (and not needed); let texlive-en be updated in tlnet (Nikos Platis, 02 Nov 2008 01:11:33)

Changed paths:
   M /trunk/Master/texmf-doc/source/texlive/texlive-common/w32client/install-w32client
   M /trunk/Master/tlpkg/bin/tl-update-containers
------------------------------------------------------------------------
r11158 | siepo | 2008-11-02 22:30:49 +0100 (Sun, 02 Nov 2008) | 2 lines

Win32: path cleaned up in install-tl.bat, with embedded Perl code


Changed paths:
   M /trunk/Master/install-tl
   M /trunk/Master/install-tl.bat
------------------------------------------------------------------------
r11157 | karl | 2008-11-02 20:29:17 +0100 (Sun, 02 Nov 2008) | 3 lines

sigh, ignore everything after the first non-number
in svnversion output.


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-makeself-from-tlnet
------------------------------------------------------------------------
r11156 | karl | 2008-11-02 20:24:41 +0100 (Sun, 02 Nov 2008) | 1 line

attempt to make our makeself and its subscript more portable, and put rev number in script name; make generic name a symlink as with .exe

Changed paths:
   M /trunk/Master/tlpkg/bin/tl-makeself-from-tlnet
   M /trunk/Master/tlpkg/bin/tl-update-tlcritical
------------------------------------------------------------------------
r11155 | karl | 2008-11-02 18:57:05 +0100 (Sun, 02 Nov 2008) | 1 line

small update to psfonts.map doc

Changed paths:
   M /trunk/Build/source/texk/dvipsk/ChangeLog
   M /trunk/Build/source/texk/dvipsk/dvips.texi
------------------------------------------------------------------------
r11154 | siepo | 2008-11-02 12:55:48 +0100 (Sun, 02 Nov 2008) | 3 lines

Win32: added environment-related debug output.
Also doesn't try to import program_exists


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r11153 | karl | 2008-11-02 03:39:48 +0100 (Sun, 02 Nov 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11152 | karl | 2008-11-02 03:23:42 +0100 (Sun, 02 Nov 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11151 | karl | 2008-11-01 18:15:20 +0100 (Sat, 01 Nov 2008) | 5 lines

tlmgr.pl: check for perldoc being present, instead of just for windows.
TLUtils.pm (program_exists): delete, it is not used anywhere that I can
see and the documentation was wrong.
(which): reformat.


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r11150 | karl | 2008-11-01 17:56:26 +0100 (Sat, 01 Nov 2008) | 2 lines

(mkdirhier): reformatting.


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r11149 | siepo | 2008-11-01 11:52:32 +0100 (Sat, 01 Nov 2008) | 2 lines

Prepend <root>/bin/win32 to path; also use setlocal


Changed paths:
   M /trunk/Master/install-tl.bat
------------------------------------------------------------------------
r11148 | karl | 2008-11-01 03:53:56 +0100 (Sat, 01 Nov 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11147 | karl | 2008-11-01 03:37:04 +0100 (Sat, 01 Nov 2008) | 1 line

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

Changed paths:
   M /trunk/Master/texmf/doc/man/man1/tlmgr.1
   M /trunk/Master/texmf/doc/man/man1/tlmgr.pdf
------------------------------------------------------------------------
r11146 | karl | 2008-11-01 03:23:47 +0100 (Sat, 01 Nov 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11145 | karl | 2008-11-01 01:55:21 +0100 (Sat, 01 Nov 2008) | 1 line

doc fixes

Changed paths:
   M /trunk/Master/install-tl
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r11144 | karl | 2008-11-01 01:35:42 +0100 (Sat, 01 Nov 2008) | 1 line

notes2bib update (31oct08)

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/notes2bib/README
   M /trunk/Master/texmf-dist/doc/latex/notes2bib/notes2bib.pdf
   M /trunk/Master/texmf-dist/doc/latex/notes2bib/xnotes2bib.pdf
   M /trunk/Master/texmf-dist/source/latex/notes2bib/notes2bib.dtx
   M /trunk/Master/texmf-dist/source/latex/notes2bib/xnotes2bib.dtx
   M /trunk/Master/texmf-dist/tex/latex/notes2bib/notes2bib.sty
   M /trunk/Master/texmf-dist/tex/latex/notes2bib/xnotes2bib.sty
------------------------------------------------------------------------
r11143 | karl | 2008-11-01 01:33:23 +0100 (Sat, 01 Nov 2008) | 1 line

spotcolor*.tex should be in the runtime; report from Enrico Gregorio, 30 Oct 2008 22:14:32

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/spotcolor/spotcolor.sty
   D /trunk/Master/texmf-dist/doc/latex/spotcolor/spotcolorhks.tex
   D /trunk/Master/texmf-dist/doc/latex/spotcolor/spotcolorpantone.tex
   A /trunk/Master/texmf-dist/tex/latex/spotcolor
   A /trunk/Master/texmf-dist/tex/latex/spotcolor/spotcolor.sty
   A /trunk/Master/texmf-dist/tex/latex/spotcolor/spotcolorhks.tex
   A /trunk/Master/texmf-dist/tex/latex/spotcolor/spotcolorpantone.tex
   M /trunk/Master/tlpkg/bin/ctan2tds
------------------------------------------------------------------------
r11142 | karl | 2008-10-31 21:49:53 +0100 (Fri, 31 Oct 2008) | 2 lines

some basic doc about the autopatterns.


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/00texlive.autopatterns.tlpsrc
------------------------------------------------------------------------
r11141 | karl | 2008-10-31 21:44:33 +0100 (Fri, 31 Oct 2008) | 2 lines

backup doc review


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11140 | karl | 2008-10-31 19:42:03 +0100 (Fri, 31 Oct 2008) | 1 line

universa non-update to make bye inner for current modes.mf; report from Scott Pakin, 30 Oct 2008 11:48:17

Changed paths:
   A /trunk/Master/texmf-dist/doc/fonts/universa/README.uni
   A /trunk/Master/texmf-dist/doc/fonts/universa/unidoc.sty
   M /trunk/Master/texmf-dist/fonts/source/public/universa/unibase.mf
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbc10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbc12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbc17.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbc8.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbc9.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbo10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbo12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbo17.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbo8.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbo9.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbr10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbr12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbr17.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbr8.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbr9.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbst10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbst12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbst17.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbst8.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulbst9.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmc10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmc12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmc17.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmc8.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmc9.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmo10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmo12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmo17.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmo8.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmo9.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmr10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmr12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmr17.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmr8.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmr9.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmst10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmst12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmst17.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmst8.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/universa/fulmst9.tfm
   D /trunk/Master/texmf-dist/source/fonts/universa/README.uni
   M /trunk/Master/texmf-dist/source/fonts/universa/uni.dtx
   D /trunk/Master/texmf-dist/source/fonts/universa/unidoc.sty
   M /trunk/Master/tlpkg/bin/ctan2tds
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
------------------------------------------------------------------------
r11139 | karl | 2008-10-31 03:59:06 +0100 (Fri, 31 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11138 | karl | 2008-10-31 03:41:00 +0100 (Fri, 31 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
   M /trunk/Master/texmf-dist/doc/fontname/ChangeLog
   M /trunk/Master/texmf-dist/doc/fontname/fontname.html
   M /trunk/Master/texmf-dist/doc/fontname/fontname.pdf
   M /trunk/Master/texmf-dist/doc/fontname/fontname.texi
------------------------------------------------------------------------
r11137 | karl | 2008-10-31 03:29:22 +0100 (Fri, 31 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11136 | karl | 2008-10-31 02:08:23 +0100 (Fri, 31 Oct 2008) | 1 line

make Unix tlmgr disaster recovery archive, too

Changed paths:
   M /trunk/Master/tlpkg/bin/tl-makeself-from-tlnet
   M /trunk/Master/tlpkg/bin/tl-update-tlcritical
------------------------------------------------------------------------
r11135 | karl | 2008-10-31 01:49:40 +0100 (Fri, 31 Oct 2008) | 1 line

feyn mf sources under fonts/source, not doc/fonts; report from Scott Pakin, 28 Oct 2008 18:26:16

Changed paths:
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyn10.mf
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyn11.mf
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyn12.mf
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyn18.mf
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyn24.mf
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyntext10.mf
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyntext11.mf
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyntext12.mf
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyntext18.mf
   D /trunk/Master/texmf-dist/doc/fonts/feyn/feyntext24.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyn10.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyn11.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyn12.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyn18.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyn24.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyntext10.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyntext11.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyntext12.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyntext18.mf
   A /trunk/Master/texmf-dist/fonts/source/public/feyn/feyntext24.mf
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyn10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyn11.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyn12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyn18.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyn24.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyntext10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyntext11.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyntext12.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyntext18.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/feyn/feyntext24.tfm
   M /trunk/Master/tlpkg/bin/ctan2tds
------------------------------------------------------------------------
r11134 | karl | 2008-10-31 00:56:37 +0100 (Fri, 31 Oct 2008) | 1 line

context-letter update (30oct08)

Changed paths:
   M /trunk/Master/texmf-dist/tex/context/third/letter/base/t-letter.tex
   M /trunk/Master/texmf-dist/tex/context/third/letter/extension/addrentry.nle
   M /trunk/Master/texmf-dist/tex/context/third/letter/extension/corres.nle
   M /trunk/Master/texmf-dist/tex/context/third/letter/extension/label.nle
   M /trunk/Master/texmf-dist/tex/context/third/letter/extension/optimize.nle
   M /trunk/Master/texmf-dist/tex/context/third/letter/extension/pragma.nle
   M /trunk/Master/texmf-dist/tex/context/third/letter/interface/default.nli
   M /trunk/Master/texmf-dist/tex/context/third/letter/interface/knuth.nli
   M /trunk/Master/texmf-dist/tex/context/third/letter/interface/pragma.nli
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/blockstyle.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/default.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/dina.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/dinb.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/dutch.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/english.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/french.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/fullblock.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/hanging.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/knuth.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/memo.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/modified.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/pragma.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/semiblock.nls
   M /trunk/Master/texmf-dist/tex/context/third/letter/style/simplified.nls
   A /trunk/Master/texmf-dist/tex/context/third/letter/style/user.ori
------------------------------------------------------------------------
r11133 | karl | 2008-10-31 00:56:14 +0100 (Fri, 31 Oct 2008) | 1 line

dlfltxb update (30oct08)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/dlfltxb/README
   M /trunk/Master/texmf-dist/doc/latex/dlfltxb/dlfltxbcodetips.pdf
   M /trunk/Master/texmf-dist/doc/latex/dlfltxb/dlfltxbcodetips.tex
   D /trunk/Master/texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup-sample.cfg
   M /trunk/Master/texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.pdf
   M /trunk/Master/texmf-dist/doc/latex/dlfltxb/dlfltxbmarkup.pdf
   M /trunk/Master/texmf-dist/doc/latex/dlfltxb/dlfltxbmisc.pdf
   M /trunk/Master/texmf-dist/doc/latex/dlfltxb/dlfltxbtocconfig.pdf
   M /trunk/Master/texmf-dist/tex/latex/dlfltxb/dlfltxbcodetips.sty
   M /trunk/Master/texmf-dist/tex/latex/dlfltxb/dlfltxbmarkup.sty
   A /trunk/Master/texmf-dist/tex/latex/dlfltxb/dlfltxbmarkupbookkeys.sty
------------------------------------------------------------------------
r11132 | karl | 2008-10-31 00:55:47 +0100 (Fri, 31 Oct 2008) | 1 line

mathmode update (30oct08)

Changed paths:
   M /trunk/Master/texmf-doc/doc/english/mathmode/Changes
   M /trunk/Master/texmf-doc/doc/english/mathmode/Mathmode.ltx
   M /trunk/Master/texmf-doc/doc/english/mathmode/Mathmode.pdf
   M /trunk/Master/texmf-doc/doc/english/mathmode/Mathmode.tex
------------------------------------------------------------------------
r11131 | karl | 2008-10-31 00:55:15 +0100 (Fri, 31 Oct 2008) | 1 line

syllogism update (29oct08)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/syllogism/Examples.pdf
   A /trunk/Master/texmf-dist/doc/latex/syllogism/Examples.tex
   M /trunk/Master/texmf-dist/doc/latex/syllogism/README
   M /trunk/Master/texmf-dist/doc/latex/syllogism/syllogism.pdf
   M /trunk/Master/texmf-dist/doc/latex/syllogism/syllogism.tex
   M /trunk/Master/texmf-dist/tex/latex/syllogism/syllogism.sty
------------------------------------------------------------------------
r11130 | karl | 2008-10-31 00:54:39 +0100 (Fri, 31 Oct 2008) | 1 line

siunitx 1.1d (29oct08)

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-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
------------------------------------------------------------------------
r11129 | karl | 2008-10-31 00:53:32 +0100 (Fri, 31 Oct 2008) | 7 lines

TeXLive/TLPSRC.pm (autopatterns): new global.
(find_default_patterns): new fn for getting default patterns.
(make_tlpobj): call it; third arg now dir in which to find autopatterns.
TeXLive/TLUtils.pm (debug_hash): new fn.
bin/tlpsrc2tlpdb: move new defalt pattern logic to TLPSRC.pm, change call.
bin/place: change call.


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLPSRC.pm
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
   M /trunk/Master/tlpkg/bin/place
   M /trunk/Master/tlpkg/bin/tlpsrc2tlpdb
------------------------------------------------------------------------
r11128 | karl | 2008-10-30 22:38:44 +0100 (Thu, 30 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/bibtex/bib/beebe/texbook2.bib
   M /trunk/Master/texmf-dist/bibtex/bib/beebe/texbook3.bib
   M /trunk/Master/texmf-dist/tex/texinfo/texinfo.tex
------------------------------------------------------------------------
r11127 | preining | 2008-10-30 10:59:13 +0100 (Thu, 30 Oct 2008) | 2 lines

there is no "my" in bash, I wanted "mv"


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-makeself-from-tlnet
------------------------------------------------------------------------
r11126 | preining | 2008-10-30 10:55:45 +0100 (Thu, 30 Oct 2008) | 3 lines

remove tl-update-makeself, it is anyway bad,
only install lzma(dec) and wget binaries for those archs we need


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-makeself-from-tlnet
   D /trunk/Master/tlpkg/bin/tl-update-makeself
------------------------------------------------------------------------
r11125 | preining | 2008-10-30 10:34:40 +0100 (Thu, 30 Oct 2008) | 2 lines

do not include w32 arch in unix updater


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-makeself
------------------------------------------------------------------------
r11124 | preining | 2008-10-30 10:33:52 +0100 (Thu, 30 Oct 2008) | 2 lines

create a self extracting updater from a tlnet distribution


Changed paths:
   A /trunk/Master/tlpkg/bin/tl-makeself-from-tlnet
------------------------------------------------------------------------
r11123 | preining | 2008-10-30 07:13:54 +0100 (Thu, 30 Oct 2008) | 2 lines

remove applied patches, we have svn diff


Changed paths:
   D /trunk/Master/tlpkg/archive/applied.auto-backup-feature.patch
   D /trunk/Master/tlpkg/archive/applied.include-schemes.patch
   D /trunk/Master/tlpkg/archive/applied.use-autopatterns-from-dedicated-tlpsrc-files.patch
------------------------------------------------------------------------
r11122 | karl | 2008-10-30 03:56:49 +0100 (Thu, 30 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11121 | karl | 2008-10-30 03:40:09 +0100 (Thu, 30 Oct 2008) | 1 line

autoupdate via tlmgr generate fmtutil

Changed paths:
   M /trunk/Master/texmf/web2c/fmtutil.cnf
------------------------------------------------------------------------
r11120 | karl | 2008-10-30 03:39:52 +0100 (Thu, 30 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r11119 | karl | 2008-10-30 03:26:29 +0100 (Thu, 30 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11118 | siepo | 2008-10-30 00:08:24 +0100 (Thu, 30 Oct 2008) | 3 lines

install-tl/w32: more paranoid path for post-install; doesn't help though
when there alreaady is a MikTeX.


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r11117 | siepo | 2008-10-29 23:52:53 +0100 (Wed, 29 Oct 2008) | 3 lines

TLWinGoo: for shortcuts, use short names of desktop and
start/programs directory names


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLWinGoo.pm
------------------------------------------------------------------------
r11116 | preining | 2008-10-29 23:29:36 +0100 (Wed, 29 Oct 2008) | 3 lines

make tlrepo-from-minimals.pl at least try to work by copying the
00texlive.autopatterns.tlpsrc


Changed paths:
   M /trunk/Master/tlpkg/etc/tlrepo-from-minimals.pl
------------------------------------------------------------------------
r11115 | preining | 2008-10-29 23:28:07 +0100 (Wed, 29 Oct 2008) | 2 lines

move applied patches to the archive dir


Changed paths:
   A /trunk/Master/tlpkg/archive/applied.auto-backup-feature.patch (from /trunk/Master/tlpkg/etc/applied.auto-backup-feature.patch:11111)
   A /trunk/Master/tlpkg/archive/applied.include-schemes.patch (from /trunk/Master/tlpkg/etc/applied.include-schemes.patch:11114)
   A /trunk/Master/tlpkg/archive/applied.use-autopatterns-from-dedicated-tlpsrc-files.patch (from /trunk/Master/tlpkg/etc/applied.use-autopatterns-from-dedicated-tlpsrc-files.patch:11111)
   D /trunk/Master/tlpkg/etc/applied.include-schemes.patch
------------------------------------------------------------------------
r11114 | preining | 2008-10-29 23:25:51 +0100 (Wed, 29 Oct 2008) | 2 lines

apply the include-schemes patch to install-tl, and rename the patch


Changed paths:
   M /trunk/Master/install-tl
   A /trunk/Master/tlpkg/etc/applied.include-schemes.patch (from /trunk/Master/tlpkg/etc/dev.include-schemes.patch:11111)
   D /trunk/Master/tlpkg/etc/dev.include-schemes.patch
------------------------------------------------------------------------
r11113 | karl | 2008-10-29 22:55:40 +0100 (Wed, 29 Oct 2008) | 1 line

archive rejected patches, delete applied patches, pass -v in update-tlcritical

Changed paths:
   A /trunk/Master/tlpkg/archive/rej.generalize-revisions.patch (from /trunk/Master/tlpkg/etc/rej.generalize-revisions.patch:11111)
   A /trunk/Master/tlpkg/archive/rej.installed-avail-archs.patch (from /trunk/Master/tlpkg/etc/rej.installed-avail-archs.patch:11111)
   A /trunk/Master/tlpkg/archive/rej.tlmgrgui-include-revisions-in-update-list.patch (from /trunk/Master/tlpkg/etc/rej.tlmgrgui-include-revisions-in-update-list.patch:11111)
   M /trunk/Master/tlpkg/bin/tl-update-tlcritical
   D /trunk/Master/tlpkg/etc/applied.auto-backup-feature.patch
   D /trunk/Master/tlpkg/etc/applied.use-autopatterns-from-dedicated-tlpsrc-files.patch
   D /trunk/Master/tlpkg/etc/rej.generalize-revisions.patch
   D /trunk/Master/tlpkg/etc/rej.installed-avail-archs.patch
   D /trunk/Master/tlpkg/etc/rej.tlmgrgui-include-revisions-in-update-list.patch
------------------------------------------------------------------------
r11112 | preining | 2008-10-29 22:27:29 +0100 (Wed, 29 Oct 2008) | 3 lines

move the Perl-Tk check before loading the database, and wait 3sec before
continuing in Text mode if there are problems.


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r11111 | karl | 2008-10-29 18:28:10 +0100 (Wed, 29 Oct 2008) | 1 line

clarify use of * prefix

Changed paths:
   M /trunk/Build/source/texk/tetex/fmtutil
   M /trunk/Master/texmf/fmtutil/fmtutil-hdr.cnf
------------------------------------------------------------------------
r11110 | karl | 2008-10-29 18:00:39 +0100 (Wed, 29 Oct 2008) | 1 line

new pstricks package vaucanson-g (27oct08)

Changed paths:
   A /trunk/Master/texmf-dist/doc/generic/vaucanson-g
   A /trunk/Master/texmf-dist/doc/generic/vaucanson-g/CHANGES
   A /trunk/Master/texmf-dist/doc/generic/vaucanson-g/README
   A /trunk/Master/texmf-dist/doc/generic/vaucanson-g/VCManual-src
   A /trunk/Master/texmf-dist/doc/generic/vaucanson-g/VCManual-src/TwoStates.tex
   A /trunk/Master/texmf-dist/doc/generic/vaucanson-g/VCManual-src/VCManual.tex
   A /trunk/Master/texmf-dist/doc/generic/vaucanson-g/VCManual.pdf
   A /trunk/Master/texmf-dist/tex/generic/vaucanson-g
   A /trunk/Master/texmf-dist/tex/generic/vaucanson-g/VCColor-names.def
   A /trunk/Master/texmf-dist/tex/generic/vaucanson-g/VCPref-beamer.tex
   A /trunk/Master/texmf-dist/tex/generic/vaucanson-g/VCPref-default.tex
   A /trunk/Master/texmf-dist/tex/generic/vaucanson-g/VCPref-mystyle.tex
   A /trunk/Master/texmf-dist/tex/generic/vaucanson-g/VCPref-slides.tex
   A /trunk/Master/texmf-dist/tex/generic/vaucanson-g/Vaucanson-G.tex
   A /trunk/Master/texmf-dist/tex/generic/vaucanson-g/vaucanson-g.sty
   A /trunk/Master/texmf-dist/tex/generic/vaucanson-g/vaucanson.sty
   M /trunk/Master/tlpkg/bin/ctan2tds
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/tlpsrc/collection-pstricks.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/vaucanson-g.tlpsrc
------------------------------------------------------------------------
r11109 | karl | 2008-10-29 17:50:13 +0100 (Wed, 29 Oct 2008) | 1 line

rm eqnarray, nonfree, author not responding

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/eqnarray
   D /trunk/Master/texmf-dist/source/latex/eqnarray
   D /trunk/Master/texmf-dist/tex/latex/eqnarray
   M /trunk/Master/tlpkg/bin/ctan2tds
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/tlpsrc/collection-mathextra.tlpsrc
   D /trunk/Master/tlpkg/tlpsrc/eqnarray.tlpsrc
------------------------------------------------------------------------
r11108 | karl | 2008-10-29 17:41:06 +0100 (Wed, 29 Oct 2008) | 1 line

keep wrapper in sync

Changed paths:
   M /trunk/Build/source/texk/texlive/tl-w32-wrapper.texlua
------------------------------------------------------------------------
r11107 | preining | 2008-10-29 11:57:31 +0100 (Wed, 29 Oct 2008) | 2 lines

add the new archive dir to 00texlive.core so that tlmgr checks do succeed


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/00texlive.core.tlpsrc
------------------------------------------------------------------------
r11106 | karl | 2008-10-29 04:01:35 +0100 (Wed, 29 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11105 | karl | 2008-10-29 03:39:40 +0100 (Wed, 29 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Master/texmf/doc/man/man1/tlmgr.1
   M /trunk/Master/texmf/doc/man/man1/tlmgr.pdf
------------------------------------------------------------------------
r11104 | karl | 2008-10-29 03:28:12 +0100 (Wed, 29 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11103 | preining | 2008-10-29 02:10:26 +0100 (Wed, 29 Oct 2008) | 2 lines

rename the auto-backup patch from dev.... to applied...


Changed paths:
   A /trunk/Master/tlpkg/etc/applied.auto-backup-feature.patch (from /trunk/Master/tlpkg/etc/dev.auto-backup-feature.patch:11088)
   D /trunk/Master/tlpkg/etc/dev.auto-backup-feature.patch
------------------------------------------------------------------------
r11102 | preining | 2008-10-29 02:09:49 +0100 (Wed, 29 Oct 2008) | 2 lines

commit the auto backup feature


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
   M /trunk/Master/tlpkg/TeXLive/TLPDB.pm
------------------------------------------------------------------------
r11101 | preining | 2008-10-29 01:26:54 +0100 (Wed, 29 Oct 2008) | 2 lines

rename patch autopatterns patch to applied...


Changed paths:
   A /trunk/Master/tlpkg/etc/applied.use-autopatterns-from-dedicated-tlpsrc-files.patch (from /trunk/Master/tlpkg/etc/ready.use-autopatterns-from-dedicated-tlpsrc-files.patch:11087)
   D /trunk/Master/tlpkg/etc/ready.use-autopatterns-from-dedicated-tlpsrc-files.patch
------------------------------------------------------------------------
r11100 | preining | 2008-10-29 01:24:42 +0100 (Wed, 29 Oct 2008) | 2 lines

factor out auto patterns to a separate tlpsrc file


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLPSRC.pm
   M /trunk/Master/tlpkg/bin/tlpsrc2tlpdb
   A /trunk/Master/tlpkg/tlpsrc/00texlive.autopatterns.tlpsrc
------------------------------------------------------------------------
r11099 | preining | 2008-10-29 01:15:13 +0100 (Wed, 29 Oct 2008) | 2 lines

include also w32 file in unix updater


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-makeself
------------------------------------------------------------------------
r11098 | preining | 2008-10-29 01:01:36 +0100 (Wed, 29 Oct 2008) | 2 lines

update the tl-update-makeself


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-makeself
------------------------------------------------------------------------
r11097 | preining | 2008-10-29 00:51:15 +0100 (Wed, 29 Oct 2008) | 2 lines

add archive to the README


Changed paths:
   M /trunk/Master/tlpkg/README
------------------------------------------------------------------------
r11096 | preining | 2008-10-29 00:50:25 +0100 (Wed, 29 Oct 2008) | 2 lines

move some scripts to tlpkg/archive


Changed paths:
   A /trunk/Master/tlpkg/archive/create-tlsrc-from-tpm.pl (from /trunk/Master/tlpkg/etc/create-tlsrc-from-tpm.pl:11087)
   A /trunk/Master/tlpkg/archive/create_tlp_simple.pl (from /trunk/Master/tlpkg/etc/create_tlp_simple.pl:11087)
   A /trunk/Master/tlpkg/archive/read-tpm-dump-tpl.pl (from /trunk/Master/tlpkg/etc/read-tpm-dump-tpl.pl:11087)
   A /trunk/Master/tlpkg/archive/tlpdb2container (from /trunk/Master/tlpkg/bin/tlpdb2container:11087)
   A /trunk/Master/tlpkg/archive/tlpdb2list (from /trunk/Master/tlpkg/bin/tlpdb2list:11087)
   A /trunk/Master/tlpkg/archive/tlpsrc2container (from /trunk/Master/tlpkg/bin/tlpsrc2container:11087)
   A /trunk/Master/tlpkg/archive/tlpsrc2tlpobj (from /trunk/Master/tlpkg/bin/tlpsrc2tlpobj:11087)
   D /trunk/Master/tlpkg/bin/tlpdb2container
   D /trunk/Master/tlpkg/bin/tlpdb2list
   D /trunk/Master/tlpkg/bin/tlpsrc2container
   D /trunk/Master/tlpkg/bin/tlpsrc2tlpobj
   D /trunk/Master/tlpkg/etc/create-tlsrc-from-tpm.pl
   D /trunk/Master/tlpkg/etc/create_tlp_simple.pl
   D /trunk/Master/tlpkg/etc/read-tpm-dump-tpl.pl
------------------------------------------------------------------------
r11095 | preining | 2008-10-29 00:47:37 +0100 (Wed, 29 Oct 2008) | 2 lines

add an archive dir


Changed paths:
   A /trunk/Master/tlpkg/archive
   M /trunk/Master/tlpkg/bin/tl-update-makeself
------------------------------------------------------------------------
r11094 | preining | 2008-10-29 00:33:12 +0100 (Wed, 29 Oct 2008) | 2 lines

add the tl-update-makeself script


Changed paths:
   A /trunk/Master/tlpkg/bin/tl-update-makeself
------------------------------------------------------------------------
r11093 | karl | 2008-10-28 22:54:30 +0100 (Tue, 28 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/bibtex/bib/beebe/texbook3.bib
   M /trunk/Master/texmf-dist/tex/texinfo/texinfo.tex
------------------------------------------------------------------------
r11092 | staw | 2008-10-28 22:22:30 +0100 (Tue, 28 Oct 2008) | 1 line

dice.eps and pdf moved to tex/latex/dice

Changed paths:
   A /trunk/Master/texmf-dist/tex/latex/epsdice/dice.eps
   A /trunk/Master/texmf-dist/tex/latex/epsdice/dice.pdf
------------------------------------------------------------------------
r11091 | staw | 2008-10-28 17:52:08 +0100 (Tue, 28 Oct 2008) | 1 line

dvipdfmx.dll and xvipdfmx.exe corrected from Akira

Changed paths:
   M /trunk/Master/bin/win32/dvipdfmx.dll
   M /trunk/Master/bin/win32/xdvipdfmx.exe
------------------------------------------------------------------------
r11090 | preining | 2008-10-28 17:06:36 +0100 (Tue, 28 Oct 2008) | 2 lines

more specifics from Werner


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r11089 | preining | 2008-10-28 16:37:49 +0100 (Tue, 28 Oct 2008) | 2 lines

add two TODO items from Werner to the installer


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r11088 | preining | 2008-10-28 16:09:34 +0100 (Tue, 28 Oct 2008) | 2 lines

update auto-backup feature to add --clean support


Changed paths:
   M /trunk/Master/tlpkg/etc/dev.auto-backup-feature.patch
------------------------------------------------------------------------
r11087 | karl | 2008-10-28 04:03:39 +0100 (Tue, 28 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11086 | karl | 2008-10-28 03:41:38 +0100 (Tue, 28 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r11085 | karl | 2008-10-28 03:24:05 +0100 (Tue, 28 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11084 | preining | 2008-10-28 01:59:36 +0100 (Tue, 28 Oct 2008) | 2 lines

update the autopatterns patch to use only one file


Changed paths:
   M /trunk/Master/tlpkg/etc/ready.use-autopatterns-from-dedicated-tlpsrc-files.patch
------------------------------------------------------------------------
r11083 | karl | 2008-10-28 01:23:03 +0100 (Tue, 28 Oct 2008) | 1 line

new latex package arsclassica (27oct08)

Changed paths:
   A /trunk/Master/texmf-dist/bibtex/bst/arsclassica
   A /trunk/Master/texmf-dist/bibtex/bst/arsclassica/classic.bst
   A /trunk/Master/texmf-dist/doc/latex/arsclassica
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/ArsClassica.pdf
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/ArsClassica.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Bibliografia.bib
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Capitoli
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Capitoli/Basi.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Capitoli/Codice.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/Uccelli.jpg
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/esempio_1.jpg
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/esempio_2.jpg
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/esempio_3.jpg
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/Immagini/esempio_4.jpg
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Bibliografia.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/DietroAlTitolo.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Frontespizio.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/IndiceAnalitico.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Indici.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Ringraziamenti.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/MaterialeInizialeFinale/Sommario+Abstract.tex
   A /trunk/Master/texmf-dist/doc/latex/arsclassica/README
   A /trunk/Master/texmf-dist/makeindex/arsclassica
   A /trunk/Master/texmf-dist/makeindex/arsclassica/classic.ist
   A /trunk/Master/texmf-dist/tex/latex/arsclassica
   A /trunk/Master/texmf-dist/tex/latex/arsclassica/adhoc.sty
   A /trunk/Master/texmf-dist/tex/latex/arsclassica/arsclassica.sty
   M /trunk/Master/tlpkg/bin/ctan2tds
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   A /trunk/Master/tlpkg/tlpsrc/arsclassica.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc
------------------------------------------------------------------------
r11082 | karl | 2008-10-28 01:18:36 +0100 (Tue, 28 Oct 2008) | 1 line

new math symbol font shuffle (27oct08)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/shuffle
   A /trunk/Master/texmf-dist/doc/latex/shuffle/README
   A /trunk/Master/texmf-dist/doc/latex/shuffle/shuffle.pdf
   A /trunk/Master/texmf-dist/fonts/source/public/shuffle
   A /trunk/Master/texmf-dist/fonts/source/public/shuffle/shuffle.mf
   A /trunk/Master/texmf-dist/fonts/source/public/shuffle/shuffle10.mf
   A /trunk/Master/texmf-dist/fonts/source/public/shuffle/shuffle7.mf
   A /trunk/Master/texmf-dist/fonts/tfm/public/shuffle
   A /trunk/Master/texmf-dist/fonts/tfm/public/shuffle/shuffle10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/shuffle/shuffle7.tfm
   A /trunk/Master/texmf-dist/source/latex/shuffle
   A /trunk/Master/texmf-dist/source/latex/shuffle/shuffle.dtx
   A /trunk/Master/texmf-dist/source/latex/shuffle/shuffle.ins
   A /trunk/Master/texmf-dist/tex/latex/shuffle
   A /trunk/Master/texmf-dist/tex/latex/shuffle/Ushuffle.fd
   A /trunk/Master/texmf-dist/tex/latex/shuffle/shuffle.sty
   M /trunk/Master/tlpkg/bin/ctan2tds
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/tlpsrc/collection-mathextra.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/shuffle.tlpsrc
   M /trunk/TODO
------------------------------------------------------------------------
r11081 | preining | 2008-10-28 00:34:50 +0100 (Tue, 28 Oct 2008) | 6 lines

remove several patches, prefix are now
	dev.XXXX	in development
	ready.XXXX	ready for inclusion
	2009.XXXX	patches to be included for 2009
	rej.XXXX	rejected patches


Changed paths:
   A /trunk/Master/tlpkg/etc/2009.rework-AddFormat-lines.patch (from /trunk/Master/tlpkg/etc/rework-AddFormat-lines.patch:11079)
   D /trunk/Master/tlpkg/etc/auto-backup-feature.patch
   A /trunk/Master/tlpkg/etc/dev.auto-backup-feature.patch (from /trunk/Master/tlpkg/etc/auto-backup-feature.patch:11080)
   A /trunk/Master/tlpkg/etc/dev.include-schemes.patch (from /trunk/Master/tlpkg/etc/include-schemes.diff:11079)
   A /trunk/Master/tlpkg/etc/dev.multi-source-support.patch (from /trunk/Master/tlpkg/etc/multi-source-support.diff:11079)
   A /trunk/Master/tlpkg/etc/dev.tempfile-for-tlpdb.patch (from /trunk/Master/tlpkg/etc/tempfile-for-tlpdb.diff:11079)
   A /trunk/Master/tlpkg/etc/dev.texconf.tlu.diff-for-using-tlpdb.tlu.patch (from /trunk/Master/tlpkg/etc/texconf.tlu.diff-for-using-tlpdb.tlu.patch:11079)
   A /trunk/Master/tlpkg/etc/dev.tlmgr-use-saved-remote-tlpdb.patch (from /trunk/Master/tlpkg/etc/tlmgr-use-saved-remote-tlpdb.patch:11079)
   D /trunk/Master/tlpkg/etc/generalize-revisions.diff
   D /trunk/Master/tlpkg/etc/include-schemes.diff
   D /trunk/Master/tlpkg/etc/installed_avail_archs.diff
   D /trunk/Master/tlpkg/etc/multi-source-support.diff
   A /trunk/Master/tlpkg/etc/ready.use-autopatterns-from-dedicated-tlpsrc-files.patch (from /trunk/Master/tlpkg/etc/use-autopatterns-from-dedicated-tlpsrc-files.patch:11079)
   A /trunk/Master/tlpkg/etc/rej.generalize-revisions.patch (from /trunk/Master/tlpkg/etc/generalize-revisions.diff:11079)
   A /trunk/Master/tlpkg/etc/rej.installed-avail-archs.patch (from /trunk/Master/tlpkg/etc/installed_avail_archs.diff:11079)
   A /trunk/Master/tlpkg/etc/rej.tlmgrgui-include-revisions-in-update-list.patch (from /trunk/Master/tlpkg/etc/tlmgrgui-include-revisions-in-update-list.diff:11079)
   D /trunk/Master/tlpkg/etc/rework-AddFormat-lines.patch
   D /trunk/Master/tlpkg/etc/tempfile-for-tlpdb.diff
   D /trunk/Master/tlpkg/etc/texconf.tlu.diff-for-using-tlpdb.tlu.patch
   D /trunk/Master/tlpkg/etc/tlmgr-use-saved-remote-tlpdb.patch
   D /trunk/Master/tlpkg/etc/tlmgrgui-include-revisions-in-update-list.diff
   D /trunk/Master/tlpkg/etc/use-autopatterns-from-dedicated-tlpsrc-files.patch
------------------------------------------------------------------------
r11080 | preining | 2008-10-28 00:06:47 +0100 (Tue, 28 Oct 2008) | 2 lines

update the auto-backup-feature for current tlmgr.pl


Changed paths:
   M /trunk/Master/tlpkg/etc/auto-backup-feature.patch
------------------------------------------------------------------------
r11079 | staw | 2008-10-27 23:11:15 +0100 (Mon, 27 Oct 2008) | 1 line

pause added to tlmgr.pl

Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11078 | karl | 2008-10-27 19:31:21 +0100 (Mon, 27 Oct 2008) | 4 lines

(handle_ret_hash): move code to a new function,
and return error count; exit 1 on failure.
Suggestion from cfrees, 16 Oct 2008 02:15:05.


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11077 | preining | 2008-10-27 14:20:00 +0100 (Mon, 27 Oct 2008) | 2 lines

Try to remove the last updater step stuff, including the .bat file itself


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
   M /trunk/Master/tlpkg/TeXLive/TLWinGoo.pm
------------------------------------------------------------------------
r11076 | preining | 2008-10-27 11:21:07 +0100 (Mon, 27 Oct 2008) | 3 lines

rename many win32 to w32, and try to remove the updater.bat after execution.
Missing: try to remove the desktop shortcut


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11075 | karl | 2008-10-27 01:36:49 +0100 (Mon, 27 Oct 2008) | 1 line

antiqua and grotesq are not part of base35, cfrees 26 Oct 2008 21:46:03

Changed paths:
   D /trunk/Master/texmf-dist/doc/fonts/antiqua/README.base35
   A /trunk/Master/texmf-dist/doc/fonts/antiqua/readme.antiqua
   D /trunk/Master/texmf-dist/doc/fonts/grotesq/README.base35
   A /trunk/Master/texmf-dist/doc/fonts/grotesq/readme.grotesq
------------------------------------------------------------------------
r11074 | karl | 2008-10-27 01:29:37 +0100 (Mon, 27 Oct 2008) | 1 line

casyl 2 (26oct08)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.pdf
   M /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.tex
   M /trunk/Master/texmf-dist/fonts/source/public/casyl/casyll10.mf
   M /trunk/Master/texmf-dist/fonts/tfm/public/casyl/casyll10.tfm
   M /trunk/Master/texmf-dist/tex/latex/casyl/casyltex.sty
------------------------------------------------------------------------
r11073 | karl | 2008-10-27 01:17:33 +0100 (Mon, 27 Oct 2008) | 1 line

adjust printed output too, Aaron Chen 25 Oct 2008 16:40:59

Changed paths:
   M /trunk/Build/source/texk/tetex/ChangeLog
   M /trunk/Build/source/texk/tetex/updmap.pl
   M /trunk/Master/texmf/scripts/tetex/updmap.pl
------------------------------------------------------------------------
r11072 | preining | 2008-10-26 23:25:58 +0100 (Sun, 26 Oct 2008) | 2 lines

add two patches, see separate email and header of the patches


Changed paths:
   A /trunk/Master/tlpkg/etc/auto-backup-feature.patch
   A /trunk/Master/tlpkg/etc/use-autopatterns-from-dedicated-tlpsrc-files.patch
------------------------------------------------------------------------
r11071 | preining | 2008-10-26 23:11:37 +0100 (Sun, 26 Oct 2008) | 3 lines

fix the !!! something is missing, testing links with -e is not a good 
idea, we need -l || -f


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLPOBJ.pm
------------------------------------------------------------------------
r11070 | reinhardk | 2008-10-26 21:44:28 +0100 (Sun, 26 Oct 2008) | 2 lines

getnonfreefonts: support brace expansion in TEXMFHOME and TEXMFLOCAL.


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/getnonfreefonts.pl
------------------------------------------------------------------------
r11069 | karl | 2008-10-26 17:17:46 +0100 (Sun, 26 Oct 2008) | 1 line

skak license update (17oct08)

Changed paths:
   M /trunk/Master/texmf-dist/tex/latex/skak/lambda.sty
   M /trunk/Master/tlpkg/bin/ctan2tds
------------------------------------------------------------------------
r11068 | karl | 2008-10-26 17:15:15 +0100 (Sun, 26 Oct 2008) | 1 line

install latex fragments (20oct08)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/fragments
   A /trunk/Master/texmf-dist/doc/latex/fragments/README
   A /trunk/Master/texmf-dist/tex/latex/fragments
   A /trunk/Master/texmf-dist/tex/latex/fragments/checklab.tex
   A /trunk/Master/texmf-dist/tex/latex/fragments/overrightarrow.sty
   A /trunk/Master/texmf-dist/tex/latex/fragments/removefr.tex
   A /trunk/Master/texmf-dist/tex/latex/fragments/subscript.sty
   M /trunk/Master/tlpkg/bin/ctan2tds
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/fragments.tlpsrc
------------------------------------------------------------------------
r11067 | karl | 2008-10-26 17:12:29 +0100 (Sun, 26 Oct 2008) | 1 line

pstricks update (20oct08)

Changed paths:
   M /trunk/Master/texmf-dist/doc/generic/pstricks/Changes.latex
   A /trunk/Master/texmf-dist/tex/generic/pstricks/pstricks97.tex
   M /trunk/Master/texmf-dist/tex/latex/pstricks/pstricks.sty
------------------------------------------------------------------------
r11066 | karl | 2008-10-26 16:48:01 +0100 (Sun, 26 Oct 2008) | 1 line

casyl update (25oct08)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/casyl/README
   D /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.dvi
   A /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.pdf
   M /trunk/Master/texmf-dist/doc/latex/casyl/casyldoc.tex
   M /trunk/Master/texmf-dist/fonts/source/public/casyl/casyll10.mf
   M /trunk/Master/texmf-dist/fonts/tfm/public/casyl/casyll10.tfm
   M /trunk/Master/texmf-dist/tex/latex/casyl/casyltex.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
------------------------------------------------------------------------
r11065 | karl | 2008-10-26 16:44:52 +0100 (Sun, 26 Oct 2008) | 1 line

xskak 1.2 (20oct08)

Changed paths:
   M /trunk/Master/texmf-dist/source/latex/xskak/xskak-src.dtx
   M /trunk/Master/texmf-dist/tex/latex/xskak/xskak-keys.sty
   M /trunk/Master/texmf-dist/tex/latex/xskak/xskak-nagdef.sty
   M /trunk/Master/texmf-dist/tex/latex/xskak/xskak.sty
------------------------------------------------------------------------
r11064 | karl | 2008-10-26 16:43:01 +0100 (Sun, 26 Oct 2008) | 1 line

new latex package syllogism (22oct08)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/syllogism
   A /trunk/Master/texmf-dist/doc/latex/syllogism/README
   A /trunk/Master/texmf-dist/doc/latex/syllogism/syllogism.pdf
   A /trunk/Master/texmf-dist/doc/latex/syllogism/syllogism.tex
   A /trunk/Master/texmf-dist/tex/latex/syllogism
   A /trunk/Master/texmf-dist/tex/latex/syllogism/syllogism.sty
   M /trunk/Master/tlpkg/tlpsrc/collection-mathextra.tlpsrc
   A /trunk/Master/tlpkg/tlpsrc/syllogism.tlpsrc
------------------------------------------------------------------------
r11063 | karl | 2008-10-26 16:41:49 +0100 (Sun, 26 Oct 2008) | 1 line

siunitx 1.1c (22oct08)

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-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
------------------------------------------------------------------------
r11062 | karl | 2008-10-26 16:41:28 +0100 (Sun, 26 Oct 2008) | 1 line

tablor 4.0.2 (22oct08)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.0
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.1
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.10
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.12
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.13
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.14
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.15
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.16
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.17
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.18
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.19
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.2
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.20
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.21
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.22
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.23
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.24
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.26
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.27
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.28
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.29
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.3
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.30
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.31
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.32
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.33
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.34
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.36
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.37
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.38
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.39
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.4
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.40
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.41
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.42
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.43
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.44
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.45
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.46
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.5
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.6
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.7
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.8
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.9
   M /trunk/Master/texmf-dist/doc/latex/tablor/Figures/tablor.Tab.mp
   M /trunk/Master/texmf-dist/doc/latex/tablor/README
   M /trunk/Master/texmf-dist/doc/latex/tablor/README-fr.txt
   M /trunk/Master/texmf-dist/doc/latex/tablor/tablor.html
   M /trunk/Master/texmf-dist/doc/latex/tablor/tablor.pdf
   M /trunk/Master/texmf-dist/doc/latex/tablor/tablor.tex
   A /trunk/Master/texmf-dist/tex/latex/tablor/tablor-xetex.sty
   M /trunk/Master/texmf-dist/tex/latex/tablor/tablor.sty
------------------------------------------------------------------------
r11061 | karl | 2008-10-26 16:40:51 +0100 (Sun, 26 Oct 2008) | 1 line

notes2bib 1.6 (22oct08)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/notes2bib/notes2bib.pdf
   M /trunk/Master/texmf-dist/doc/latex/notes2bib/xnotes2bib.pdf
   M /trunk/Master/texmf-dist/source/latex/notes2bib/notes2bib.dtx
   M /trunk/Master/texmf-dist/source/latex/notes2bib/xnotes2bib.dtx
   M /trunk/Master/texmf-dist/tex/latex/notes2bib/notes2bib.sty
   M /trunk/Master/texmf-dist/tex/latex/notes2bib/xnotes2bib.sty
------------------------------------------------------------------------
r11060 | karl | 2008-10-26 16:40:26 +0100 (Sun, 26 Oct 2008) | 1 line

todonotes update (23oct08)

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/doc/latex/todonotes/todonotesexample.tex
   M /trunk/Master/texmf-dist/source/latex/todonotes/todonotes.dtx
   M /trunk/Master/texmf-dist/tex/latex/todonotes/todonotes.sty
------------------------------------------------------------------------
r11059 | karl | 2008-10-26 02:51:10 +0200 (Sun, 26 Oct 2008) | 2 lines

exit 0 on success


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-containers
------------------------------------------------------------------------
r11058 | karl | 2008-10-26 02:35:33 +0200 (Sun, 26 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11057 | preining | 2008-10-26 01:52:29 +0200 (Sun, 26 Oct 2008) | 2 lines

fix warning if a dangling symlink should be packed


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLPOBJ.pm
------------------------------------------------------------------------
r11056 | karl | 2008-10-25 22:31:32 +0200 (Sat, 25 Oct 2008) | 2 lines

also update the updater executable.


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-tlcritical
------------------------------------------------------------------------
r11055 | karl | 2008-10-25 22:28:07 +0200 (Sat, 25 Oct 2008) | 4 lines

attempt to implement Norbert's advice to account
for the texlive.infra / bin-texlive changes, by
checking if there is any texlive.infra.win32 package.


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-nsis
------------------------------------------------------------------------
r11054 | karl | 2008-10-25 22:20:05 +0200 (Sat, 25 Oct 2008) | 1 line

add tlpkg/doc to 00texlive.core to avoid consistency complaints, doc fixes, small script to update tlcritical

Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
   A /trunk/Master/tlpkg/bin/tl-update-tlcritical
   M /trunk/Master/tlpkg/tlpsrc/00texlive.core.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
------------------------------------------------------------------------
r11053 | karl | 2008-10-25 22:13:12 +0200 (Sat, 25 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11052 | karl | 2008-10-25 22:05:04 +0200 (Sat, 25 Oct 2008) | 3 lines

(docpattern): reduce to just tlpkg/README, in
hopes that the tlpkg/doc error messages will go away.


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
------------------------------------------------------------------------
r11051 | karl | 2008-10-25 19:27:45 +0200 (Sat, 25 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11050 | karl | 2008-10-25 19:23:25 +0200 (Sat, 25 Oct 2008) | 2 lines

oops, man files are back in bin-texlive too.


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
------------------------------------------------------------------------
r11049 | karl | 2008-10-25 19:17:30 +0200 (Sat, 25 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11048 | karl | 2008-10-25 19:04:44 +0200 (Sat, 25 Oct 2008) | 1 line

restore tlmgr to bin-texlive, and make bin-texlive critical again, in hopes that updates from an iso installation will work again

Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-containers
   M /trunk/Master/tlpkg/tlpsrc/bin-texlive.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/texlive.infra.tlpsrc
------------------------------------------------------------------------
r11047 | karl | 2008-10-25 15:21:45 +0200 (Sat, 25 Oct 2008) | 7 lines

TLUtils.pm (conv_to_win_path): rename to conv_to_w32_path, since Windows
is not a win.
(setup_programs): painfully strip off quotes added by conv_to_w32_path
for the sake of the file test.
TLPostActions.pm: change calls.
TLMedia.pm: no need to import conv_to_win_path, it isn't used.


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLMedia.pm
   M /trunk/Master/tlpkg/TeXLive/TLPostActions.pm
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r11046 | karl | 2008-10-25 03:54:58 +0200 (Sat, 25 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11045 | karl | 2008-10-25 03:24:38 +0200 (Sat, 25 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11044 | karl | 2008-10-25 01:54:52 +0200 (Sat, 25 Oct 2008) | 2 lines

put rev numbers in local-newer-than-media message


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11043 | karl | 2008-10-24 20:37:09 +0200 (Fri, 24 Oct 2008) | 1 line

report source and target directories, not install-tl location

Changed paths:
   M /trunk/Master/install-tl
   M /trunk/Master/tlpkg/bin/tl-update-tlnet
------------------------------------------------------------------------
r11042 | karl | 2008-10-24 03:54:50 +0200 (Fri, 24 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11041 | karl | 2008-10-24 03:24:41 +0200 (Fri, 24 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11040 | karl | 2008-10-24 01:40:08 +0200 (Fri, 24 Oct 2008) | 1 line

quote PATH arg to protect against spaces

Changed paths:
   M /trunk/Build/source/texk/tetex/ChangeLog
   M /trunk/Build/source/texk/tetex/Makefile.in
------------------------------------------------------------------------
r11039 | karl | 2008-10-23 20:56:51 +0200 (Thu, 23 Oct 2008) | 4 lines

(-scheme): new command line option to conveniently
change the default installation scheme.  Some
wording changes.


Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r11038 | karl | 2008-10-23 15:42:13 +0200 (Thu, 23 Oct 2008) | 6 lines

(action_update): if pkg foo is new, also consider
foo.ARCH to be new, similar to what we did for
removals a little while back.

Also give an info msg when --dry-run is given, throughout.


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11037 | karl | 2008-10-23 15:22:21 +0200 (Thu, 23 Oct 2008) | 3 lines

(action_update): announce if dry run; silently
accept -n as a synonym for --dry-run.


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11036 | karl | 2008-10-23 15:15:47 +0200 (Thu, 23 Oct 2008) | 2 lines

(action_show): show revision number if installed.


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11035 | karl | 2008-10-23 03:56:12 +0200 (Thu, 23 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11034 | karl | 2008-10-23 03:37:35 +0200 (Thu, 23 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Master/texmf/doc/man/man1/tlmgr.1
   M /trunk/Master/texmf/doc/man/man1/tlmgr.pdf
------------------------------------------------------------------------
r11033 | karl | 2008-10-23 03:26:25 +0200 (Thu, 23 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11032 | preining | 2008-10-23 01:50:23 +0200 (Thu, 23 Oct 2008) | 2 lines

remove even more kpsewhich traces


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11031 | karl | 2008-10-23 01:48:29 +0200 (Thu, 23 Oct 2008) | 4 lines

(@getopt_configure_subopts): new list of strings
for each action to pass to
Getopt::Long::Configure; include permute.


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11030 | preining | 2008-10-23 01:48:27 +0200 (Thu, 23 Oct 2008) | 2 lines

remove more traces of kpsewhich


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r11029 | karl | 2008-10-23 01:34:39 +0200 (Thu, 23 Oct 2008) | 15 lines

TLMedia.pm: message capitalizations.

TLUtils.pm (kpsewhich): remove this function,
since '...' fails on Windows.  From Ruben Prins,
22 Oct 2008 23:53:37.

tlmgr.pl: change the two calls to kpsewhich() to
use direct `kpsewhich -var-value=...` invocations,
as is done everywhere else.  (Also use "re" in
logging reinstalls, and msg changes.)

Maybe someday we will write a kpse_var_value
function to be used everywhere and checks its
argument so the single quotes can be safely omitted.


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
   M /trunk/Master/tlpkg/TeXLive/TLMedia.pm
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r11028 | karl | 2008-10-22 23:58:39 +0200 (Wed, 22 Oct 2008) | 2 lines

updmap-local.cfg, not .cnf


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11027 | karl | 2008-10-22 23:26:26 +0200 (Wed, 22 Oct 2008) | 1 line

do not force all non-true values to false, for the sake of LW35; from Aaron Chen, 17 Oct 2008 01:22:24

Changed paths:
   M /trunk/Build/source/texk/tetex/ChangeLog
   M /trunk/Build/source/texk/tetex/updmap.pl
   M /trunk/Master/texmf/scripts/tetex/updmap.pl
------------------------------------------------------------------------
r11026 | karl | 2008-10-22 23:21:17 +0200 (Wed, 22 Oct 2008) | 2 lines

(texmf/xindy): should be runpattern not docpattern.


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/xindy.tlpsrc
------------------------------------------------------------------------
r11025 | karl | 2008-10-22 22:39:28 +0200 (Wed, 22 Oct 2008) | 2 lines

wording


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11024 | karl | 2008-10-22 03:54:22 +0200 (Wed, 22 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11023 | karl | 2008-10-22 03:38:13 +0200 (Wed, 22 Oct 2008) | 1 line

autoupdate via tlmgr generate language.def

Changed paths:
   M /trunk/Master/texmf/tex/generic/config/language.def
------------------------------------------------------------------------
r11022 | karl | 2008-10-22 03:24:15 +0200 (Wed, 22 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11021 | karl | 2008-10-22 01:53:44 +0200 (Wed, 22 Oct 2008) | 2 lines

(righthyphenmin): set to 3, per frenchb.ldf.


Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/hyphen-french.tlpsrc
------------------------------------------------------------------------
r11020 | karl | 2008-10-22 01:52:05 +0200 (Wed, 22 Oct 2008) | 1 line

.

Changed paths:
   M /trunk/Master/texmf-dist/tex/texinfo/txi-fr.tex
------------------------------------------------------------------------
r11019 | karl | 2008-10-21 03:56:47 +0200 (Tue, 21 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11018 | karl | 2008-10-21 03:24:46 +0200 (Tue, 21 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11017 | reinhardk | 2008-10-20 23:19:51 +0200 (Mon, 20 Oct 2008) | 3 lines

getnonfreefonts.pl: latest version added to linked_scripts.
texlua wrappers: fixed PATH (wget needed by getnonfreefonts).


Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/getnonfreefonts.pl
   M /trunk/Master/bin/win32/tl-w32-texdoc-wrapper.texlua
   M /trunk/Master/bin/win32/tl-w32-wrapper.texlua
------------------------------------------------------------------------
r11016 | karl | 2008-10-20 03:59:17 +0200 (Mon, 20 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r11015 | karl | 2008-10-20 03:24:35 +0200 (Mon, 20 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11014 | reinhardk | 2008-10-19 16:53:23 +0200 (Sun, 19 Oct 2008) | 2 lines

latexmk.bat: Use the wrapper in order to find Perl.


Changed paths:
   M /trunk/Master/bin/win32/latexmk.bat
------------------------------------------------------------------------
r11013 | reinhardk | 2008-10-19 16:34:28 +0200 (Sun, 19 Oct 2008) | 2 lines

getnonfreefonts.pl: --http added, Windows related bug fixed.


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/getnonfreefonts.pl
------------------------------------------------------------------------
r11012 | reinhardk | 2008-10-19 13:36:55 +0200 (Sun, 19 Oct 2008) | 2 lines

texlua-wrappers: fixed bug in PATH settings for Perl.


Changed paths:
   M /trunk/Master/bin/win32/tl-w32-texdoc-wrapper.texlua
   M /trunk/Master/bin/win32/tl-w32-wrapper.texlua
------------------------------------------------------------------------
r11011 | karl | 2008-10-19 03:57:17 +0200 (Sun, 19 Oct 2008) | 1 line

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

Changed paths:
   M /trunk/Build/logs/svnlog
   A /trunk/Build/logs/svnlog.10998.gz
------------------------------------------------------------------------
------------------------------------------------------------------------
r11010 | karl | 2008-10-19 03:25:30 +0200 (Sun, 19 Oct 2008) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r11009 | preining | 2008-10-18 17:35:26 +0200 (Sat, 18 Oct 2008) | 2 lines

start work on supporting local copies of remote database


Changed paths:
   A /trunk/Master/tlpkg/etc/tlmgr-use-saved-remote-tlpdb.patch
------------------------------------------------------------------------
r11008 | preining | 2008-10-18 17:05:32 +0200 (Sat, 18 Oct 2008) | 2 lines

add a todo idea


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11007 | preining | 2008-10-18 16:50:46 +0200 (Sat, 18 Oct 2008) | 2 lines

add a todo found on the guit meeting


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11006 | preining | 2008-10-18 13:39:05 +0200 (Sat, 18 Oct 2008) | 2 lines

fix two stupid bugs in texlive.tlpdb.lzma downloading


Changed paths:
   M /trunk/Master/tlpkg/TeXLive/TLPDB.pm
------------------------------------------------------------------------
r11005 | preining | 2008-10-18 11:05:27 +0200 (Sat, 18 Oct 2008) | 2 lines

fix for tlmgr to auto-reinstalled packages that got auto-removed


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11004 | preining | 2008-10-18 10:43:06 +0200 (Sat, 18 Oct 2008) | 2 lines

remove old talk.tex


Changed paths:
   D /trunk/Master/tlpkg/doc/guit08/talk.tex
------------------------------------------------------------------------
r11003 | preining | 2008-10-18 10:38:08 +0200 (Sat, 18 Oct 2008) | 2 lines

do not warn on packages that have been auto-removed


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11002 | preining | 2008-10-18 10:01:04 +0200 (Sat, 18 Oct 2008) | 2 lines

only remove a container if it is present


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-containers
------------------------------------------------------------------------
r11001 | preining | 2008-10-18 09:54:09 +0200 (Sat, 18 Oct 2008) | 2 lines

fix a next that should be a return when running tlmgr --dry-run on w32


Changed paths:
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
------------------------------------------------------------------------
r11000 | preining | 2008-10-18 09:53:42 +0200 (Sat, 18 Oct 2008) | 3 lines

tl-update-containers: .source and .doc are not real packages, only the
containers should be removed


Changed paths:
   M /trunk/Master/tlpkg/bin/tl-update-containers
------------------------------------------------------------------------
r10999 | karl | 2008-10-18 04:01:27 +0200 (Sat, 18 Oct 2008) | 1 line

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

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