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
|
------------------------------------------------------------------------
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
------------------------------------------------------------------------
|