File: changelog

package info (click to toggle)
texlive-extra 2024.20250309-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,368,476 kB
  • sloc: perl: 401,582; xml: 41,345; python: 38,753; cs: 25,850; sh: 18,555; makefile: 17,174; ansic: 13,023; java: 12,811; javascript: 9,898; lisp: 1,876; csh: 1,347; ruby: 618; awk: 183; tcl: 142; pascal: 138; cpp: 124; sed: 92; haskell: 5
file content (1747 lines) | stat: -rw-r--r-- 62,376 bytes parent folder | download
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
texlive-extra (2024.20250309-2) unstable; urgency=medium

  * Fix the Breaks / Replaces statement texlive-extra-utils <->
    texlive-binaries (Closes: #1100530).

 -- Hilmar Preuße <hille42@debian.org>  Fri, 14 Mar 2025 22:58:58 +0100

texlive-extra (2024.20250309-1) unstable; urgency=medium

  * New upstream snapshot, refresh / disable patches.
    - disable the patch for #1089003, it does not apply any more.

 -- Hilmar Preuße <hille42@debian.org>  Thu, 13 Mar 2025 23:13:53 +0100

texlive-extra (2024.20250114-1) unstable; urgency=medium

  * New upstream snapshot.
  * Patches for manual pages from Bjarni Ingi Gislason <bjarniig@simnet.is>
    - arara.1 (Closes: #1088732)
    - bundledoc.1 (Closes: #1089003)

 -- Hilmar Preuße <hille42@debian.org>  Wed, 15 Jan 2025 11:38:14 +0100

texlive-extra (2024.20241115-1) unstable; urgency=medium

  * New upstream snapshot, refresh / disable patches.
    - Create soft link to /u/s/texlive/texmf-dist/s/minted/latexminted.py
      (Closes: #1086757)

 -- Hilmar Preuße <hille42@debian.org>  Sat, 16 Nov 2024 22:33:58 +0100

texlive-extra (2024.20241102-1) unstable; urgency=medium

  * New upstream snapshot, refresh / disable patches.
    - Patch: fix shebang line in chklref (Closes: #1085685)

 -- Hilmar Preuße <hille42@debian.org>  Mon, 04 Nov 2024 14:40:33 +0100

texlive-extra (2024.20240829-1) unstable; urgency=medium

  * New upstream snapshot.

 -- Hilmar Preuße <hille42@debian.org>  Fri, 30 Aug 2024 10:53:22 +0200

texlive-extra (2024.20240706-2) unstable; urgency=medium

  * texlive-latex-extra needs a more recent LaTeX2e kernel / array (?)
    -> add Breaks statements. This should fix piuparts tests and
    autopkgtest of *sphinx* packages.

 -- Hilmar Preuße <hille42@debian.org>  Sat, 13 Jul 2024 14:49:53 +0200

texlive-extra (2024.20240706-1) unstable; urgency=medium

  * New upstream snapshot.

 -- Hilmar Preuße <hille42@debian.org>  Thu, 11 Jul 2024 23:32:12 +0200

texlive-extra (2024.20240401-2) unstable; urgency=medium

  * Upload to unstable.

 -- Hilmar Preusse <hille42@web.de>  Sun, 26 May 2024 16:10:29 +0200

texlive-extra (2024.20240401-1) experimental; urgency=medium

  * New upstream snapshot.
    - Patch /usr/bin/de-macro, it uses python3 now (Closes: #1065876).

 -- Hilmar Preusse <hille42@web.de>  Sun, 21 Apr 2024 23:34:09 +0200

texlive-extra (2023.20240207-1) unstable; urgency=high

  * New upstream snapshot.

 -- Hilmar Preusse <hille42@web.de>  Wed, 14 Feb 2024 14:08:36 +0000

texlive-extra (2023.20231207-3) unstable; urgency=high

  * texlive-formats-extra needs a up to date texlive-base,
    as some files moved to that package (Closes: #1058452).

 -- Hilmar Preusse <hille42@web.de>  Wed, 13 Dec 2023 23:01:00 +0000

texlive-extra (2023.20231207-2) unstable; urgency=high

  * Stop installing manual page, which is in liblatex-tounicode-perl.
    (Closes: #1058462).
  * Declare Dep on liblatex-tounicode-perl & libbibtex-parser-perl
    instead, the files in TL will be killed in next upload.

 -- Hilmar Preusse <hille42@web.de>  Wed, 13 Dec 2023 12:04:49 +0000

texlive-extra (2023.20231207-1) unstable; urgency=high

  * New upstream snapshot.
    * Contains fix for a5toa4 (Closes: #1051542).
    * Add more links from /usr/share/texlive/texmf-dist/scripts/
      to /usr/bin in texlive-extra-utils (Closes: #1055846).

 -- Hilmar Preusse <hille42@web.de>  Sat, 09 Dec 2023 23:42:06 +0000

texlive-extra (2023.20231007-2) unstable; urgency=high

  * Fix version for Breaks/Replaces (Closes: #1053960).

 -- Hilmar Preusse <hille42@web.de>  Sat, 14 Oct 2023 22:18:04 +0000

texlive-extra (2023.20231007-1) unstable; urgency=medium

  * New upstream snapshot.
    - Contains new version of NewTX (Closes: #1051497).
    - abstract.bst is back in texlive-bibtex-extra (Closes: #992269)
  * Font moves (Closes: #1035857).
    - Reinclude Junicode into texlive-f-extra; remove Dep on
      fonts-junicode. This package does not ship the expected ttf
      files any more.
    - Reinclude Alegreya into texlive-f-extra; remove Dep on
      fonts-alegreya-sans. This package is RC-buggy and does not
      migrate to testing.
  * Blacklist parts of the pax lib, rather link these files from the
    appropriate Debian packages and delete the links later. This makes
    the build repeatable (Closes: #1045828)
  * Remove *jar and *class files generated during pax build.
    (Closes: #1049700).

 -- Hilmar Preusse <hille42@web.de>  Sun, 08 Oct 2023 20:46:15 +0000

texlive-extra (2023.20230613-2) unstable; urgency=medium

  * Upload to unstable.
    - Contains fixed version of soul (Closes: #1049912).

 -- Hilmar Preusse <hille42@web.de>  Sun, 27 Aug 2023 23:39:08 +0200

texlive-extra (2023.20230613-1) experimental; urgency=medium

  * New upstream snapshot, disable upstreamed patches.
    - texlive-latex-extra contains package tangocolors (Closes: #899413).
  * Version 3.04 of pdfjam fixes option "--keepinfo" (Closes: #1035420).
  * Contains biblatex compatible to biber 2.19.
  * texlive-extra-utils now depends on libyaml-tiny-perl and
    libfile-homedir-perl (Closes: #1031559).

 -- Hilmar Preusse <hille42@web.de>  Wed, 19 Jul 2023 12:20:14 +0200

texlive-extra (2022.20230122-4) unstable; urgency=medium

  * Apply patch for pstricks.tex to fix dvi color handling
    (Closes: #1035313).

 -- Hilmar Preusse <hille42@web.de>  Tue, 02 May 2023 12:56:07 +0200

texlive-extra (2022.20230122-3) unstable; urgency=medium

  * Apply patch for ooffice.4ht to fix conversion LaTeX ->
    OOffice documents (Closes: #1033008).

 -- Hilmar Preusse <hille42@web.de>  Fri, 24 Mar 2023 09:56:36 +0100

texlive-extra (2022.20230122-2) unstable; urgency=medium

  [ Jelmer Vernooij ]
  * Include package in Vcs-Git/Vcs-Browser header.

  * Do not provide EBGaramond12-Italic.otf & EBGaramond12-Regular.otf
    any more via fonts-ebgaramond; leads to wrong typesetting results.
    (Closes: #1023391)

 -- Hilmar Preusse <hille42@web.de>  Wed, 15 Feb 2023 13:55:21 +0100

texlive-extra (2022.20230122-1) unstable; urgency=medium

  * New upstream snapshot.
  * Unblacklist a few packages, which were ported to Python3:
    + de-macro
    + lilyglyphs
    + pygmentex

 -- Hilmar Preusse <hille42@web.de>  Tue, 24 Jan 2023 23:31:48 +0100

texlive-extra (2022.20221123-2) unstable; urgency=medium

  * Bump "Breaks" version of latexml: it is incompatible to latest
    version of glossaries.

 -- Hilmar Preusse <hille42@web.de>  Tue, 13 Dec 2022 08:37:36 +0100

texlive-extra (2022.20221123-1) unstable; urgency=medium

  * New upstream snapshot.

 -- Hilmar Preusse <hille42@web.de>  Sun, 27 Nov 2022 23:35:05 +0100

texlive-extra (2022.20220923-3) unstable; urgency=medium

  * Add "Breaks: latexml (<= 0.8.6-4)" to texlive-latex-extra to
    make sure the incompatible latexml is removed (see #1021658).

 -- Hilmar Preusse <hille42@web.de>  Thu, 27 Oct 2022 13:51:42 +0200

texlive-extra (2022.20220923-2) unstable; urgency=medium

  * Remove Dep on fonts-alegreya-sans, which does not migrate to
    testing (see #944499).

 -- Hilmar Preusse <hille42@web.de>  Tue, 11 Oct 2022 23:24:20 +0200

texlive-extra (2022.20220923-1) unstable; urgency=medium

  * New upstream snapshot, refresh patches.
  * Replace some fonts in texlive-fonts-extra by references to
    font packages and soft links in texlive-fonts-extra-links.links.
  * texlive-fonts-extra now recommends cm-super (instead of suggest).

 -- Hilmar Preusse <hille42@web.de>  Mon, 10 Oct 2022 00:15:28 +0200

texlive-extra (2022.20220722-2) unstable; urgency=high

  * Add missing "Breaks" statement for old biber.

 -- Hilmar Preusse <hille42@web.de>  Tue, 26 Jul 2022 10:24:44 +0200

texlive-extra (2022.20220722-1) unstable; urgency=medium

  * New upstream snapshot, refresh patches.
  * Remove obsolete maintscripts.
  * Contains new version of tex4ht to fix build failures, when using
    htlatex (Closes: #1015085).

 -- Hilmar Preusse <hille42@web.de>  Mon, 25 Jul 2022 16:02:52 +0200

texlive-extra (2022.20220605-1) unstable; urgency=low

  * New upstream snapshot.

 -- Hilmar Preusse <hille42@web.de>  Mon, 20 Jun 2022 09:26:02 +0200

texlive-extra (2022.20220405-3) unstable; urgency=low

  * Upload to unstable.
  * texlive-latex-extra recommends libspreadsheet-parseexcel-perl
    (Closes: #987778)
  * texlive-latex-extra suggests texlive-science (Closes: #990494)
  * Some Lintian cleanup.

 -- Hilmar Preusse <hille42@web.de>  Wed, 01 Jun 2022 09:03:56 +0200

texlive-extra (2022.20220405-2) experimental; urgency=medium

  * Kill manual pages, which are also in texlive-binaries.
  * Some files moved from texlive-xetex to texlive-lang-cjk.

 -- Hilmar Preusse <hille42@web.de>  Sat, 07 May 2022 23:38:56 +0200

texlive-extra (2022.20220405-1) experimental; urgency=medium

  * New upstream snapshot for TL 2022.

 -- Hilmar Preusse <hille42@web.de>  Wed, 04 May 2022 23:42:30 +0200

texlive-extra (2021.20220204-1) unstable; urgency=medium

  * New upstream snapshot.
  * Contains biblatex compatible to biber 2.17 (See: #1004671).

 -- Hilmar Preusse <hille42@web.de>  Fri, 04 Feb 2022 23:04:29 +0100

texlive-extra (2021.20211217-1) unstable; urgency=high

  * New upstream snapshot.
    Update copy of log4j2 in arara.jar to version 2.16.0 (Closes: #1001785).

 -- Hilmar Preusse <hille42@web.de>  Sat, 18 Dec 2021 08:32:49 +0100

texlive-extra (2021.20211127-1) unstable; urgency=medium

  * New upstream snapshot.

 -- Hilmar Preusse <hille42@web.de>  Sat, 27 Nov 2021 22:27:48 +0100

texlive-extra (2021.20210921-1) unstable; urgency=medium

  * Include upstream patch for pdxup support for gs versions (Closes: #976080)
  * TeX Live 2021

 -- Norbert Preining <norbert@preining.info>  Tue, 21 Sep 2021 11:32:40 +0900

texlive-extra (2020.20210202-3) unstable; urgency=medium

  * Correct location of GentiumPlusCompact TTF files. It is
    /usr/share/fonts/truetype/gentiumplus-compact. ;-(

 -- Hilmar Preusse <hille42@web.de>  Fri, 19 Mar 2021 17:14:05 +0100

texlive-extra (2020.20210202-2) unstable; urgency=medium

  * Some packages install their OTF fonts now in /u/s/fonts/opentype:
    fix broken symlinks (Closes: #985437).

 -- Hilmar Preusse <hille42@web.de>  Thu, 18 Mar 2021 23:20:06 +0100

texlive-extra (2020.20210202-1) unstable; urgency=medium

  * New upstream checkout.

 -- Norbert Preining <norbert@preining.info>  Tue, 02 Feb 2021 13:04:20 +0900

texlive-extra (2020.20210113-1) unstable; urgency=medium

  * New upstream checkout.
    Contains new latex-base, latex-base-dev, l3packages, l3experimental.

 -- Hilmar Preusse <hille42@web.de>  Wed, 13 Jan 2021 22:27:31 +0100

texlive-extra (2020.20210106-1) unstable; urgency=medium

  * New upstream checkout.
  * Disable patch fix-jadetex-new-latex.
  * Conflict with biber << 1.25 due to new biblatex.

 -- Hilmar Preusse <hille42@web.de>  Thu, 07 Jan 2021 16:23:40 +0100

texlive-extra (2020.20201129-2) unstable; urgency=medium

  * jadetex: fix compatibility with new LaTeX kernel (Closes: #977646)

 -- Norbert Preining <norbert@preining.info>  Fri, 18 Dec 2020 11:49:50 +0900

texlive-extra (2020.20201129-1) unstable; urgency=medium

  * New upstream checkout.
  * Replace SELFAUTOPARENT by TEXMFROOT in some scripts.
    (Closes: #973732)

 -- Hilmar Preusse <hille42@web.de>  Mon, 30 Nov 2020 00:21:14 +0100

texlive-extra (2020.20200925-1) unstable; urgency=medium

  * New upstream checkout
    - patch for texmf-dist/scripts/pst2pdf/pst2pdf.pl removed.
    - contains updated package ebproof (Closes: #970775).

 -- Hilmar Preusse <hille42@web.de>  Sat, 26 Sep 2020 22:41:12 +0200

texlive-extra (2020.20200804-3) unstable; urgency=medium

  * Really fix font move to tl-fonts-extra-links (Closes: #968047)

 -- Norbert Preining <norbert@preining.info>  Wed, 12 Aug 2020 09:52:50 +0900

texlive-extra (2020.20200804-2) unstable; urgency=medium

  * Fix some replace/breaks due to font move to -links (Closes: #968047)

 -- Norbert Preining <norbert@preining.info>  Sun, 09 Aug 2020 21:18:11 +0900

texlive-extra (2020.20200804-1) unstable; urgency=medium

  * Fix disappearing .manpages files, thus install a5toa4 manpage
    (Closes: #964767)
  * New upstream checkout
  * More font replacements

 -- Norbert Preining <norbert@preining.info>  Tue, 04 Aug 2020 14:51:22 +0900

texlive-extra (2020.20200629-1) unstable; urgency=medium

  * New upstream checkout
  * Bump standards version to 4.5.0 (no changes necessary)
  * Switch to dh 13

 -- Norbert Preining <norbert@preining.info>  Mon, 29 Jun 2020 10:59:11 +0900

texlive-extra (2020.20200522-1) unstable; urgency=medium

  [ Hilmar Preusse ]
  * Change Maintainer field to "Debian TeX Task Force".

  [ Norbert Preining ]
  * New upstream checkout.

 -- Norbert Preining <norbert@preining.info>  Fri, 22 May 2020 21:38:10 +0900

texlive-extra (2020.20200417-1) unstable; urgency=medium

  * New upstream checkout.

 -- Norbert Preining <norbert@preining.info>  Fri, 17 Apr 2020 10:34:06 +0900

texlive-extra (2020.20200329-2) unstable; urgency=medium

  * TeX Live 2020

 -- Norbert Preining <norbert@preining.info>  Sat, 11 Apr 2020 08:46:45 +0900

texlive-extra (2020.20200329-1) experimental; urgency=medium

  * TL 2020 (planned DVD release)

 -- Norbert Preining <norbert@preining.info>  Sun, 29 Mar 2020 13:50:42 +0900

texlive-extra (2020.20200313-1) experimental; urgency=medium

  * start working on 2020
  * fix extra 0 in version number (Closes: #953146)

 -- Norbert Preining <norbert@preining.info>  Fri, 13 Mar 2020 11:00:56 +0900

texlive-extra (2019.202000302-1) unstable; urgency=medium

  * stackengine (tl-latex-extra) needs listofitems (tl-plain-generic)
    (Closes: #921297)
  * update pax build patch (Closes: #951671)
  * add default-jre-headless to suggests for extra-utils (Closes: #952537)
  * add breaks/replaces against buster's version of sdaps which installs
    files into /u/s/texlive (Closes: #952714)

 -- Norbert Preining <norbert@preining.info>  Mon, 02 Mar 2020 04:55:35 +0900

texlive-extra (2019.202000218-1) unstable; urgency=medium

  * New upstream checkout
  * Build pax.jar from source, thanks to Bastien ROUCARIES (Closes: #951398)

 -- Norbert Preining <norbert@preining.info>  Tue, 18 Feb 2020 10:49:49 +0900

texlive-extra (2019.202000210-1) unstable; urgency=medium

  * New upstream checkout
  * Conflict with old biber due to new biblatex
  * Make lualatex-dev point to luatex instead of the (upstream) luahbtex
    since we don't ship luahbtex (Closes: #946567)
  * Drop Python2 packages and relations (Closes: #938656)

 -- Norbert Preining <norbert@preining.info>  Mon, 10 Feb 2020 10:17:42 +0900

texlive-extra (2019.20191208-1) unstable; urgency=medium

  * New upstream checkout:
    - dummy grffile.sty accepts options (Closes: #944733)

 -- Norbert Preining <norbert@preining.info>  Sun, 08 Dec 2019 11:25:13 +0900

texlive-extra (2019.20191112-1) unstable; urgency=medium

  * New upstream checkout

 -- Norbert Preining <norbert@preining.info>  Tue, 12 Nov 2019 13:31:30 +0900

texlive-extra (2019.20191030-1) unstable; urgency=medium

  * New upstream checkout

 -- Norbert Preining <norbert@preining.info>  Wed, 30 Oct 2019 11:36:24 +0900

texlive-extra (2019.20190930-3) unstable; urgency=medium

  * add missing replaces for BerenisADFProSC reinclusion (Closes: #941837)

 -- Norbert Preining <norbert@preining.info>  Wed, 09 Oct 2019 07:52:43 +0900

texlive-extra (2019.20190930-2) unstable; urgency=medium

  * latex-dev has moved, add necessary replace (Closes: #941441, #941445)

 -- Norbert Preining <norbert@preining.info>  Tue, 01 Oct 2019 09:17:11 +0900

texlive-extra (2019.20190930-1) unstable; urgency=medium

  * New upstream checkout
    - new pythontex (Closes: #941372)

 -- Norbert Preining <norbert@preining.info>  Mon, 30 Sep 2019 09:59:50 +0900

texlive-extra (2019.20190830-1) unstable; urgency=medium

  * New upstream checkout: fix for broken eslint font (Closes: #935968)

 -- Norbert Preining <norbert@preining.info>  Fri, 30 Aug 2019 10:33:01 +0900

texlive-extra (2019.20190824-1) unstable; urgency=medium

  [ Hilmar Preuße ]
  * texlive-fonts-extra recommends texlive-fonts-recommended.
    (Closes: #390190)

  [ Norbert Preining ]
  * New upstream checkout

 -- Norbert Preining <norbert@preining.info>  Sat, 24 Aug 2019 15:16:52 +0900

texlive-extra (2019.20190710-1) unstable; urgency=medium

  [ Norbert Preining ]
  * New upstream checkout
  * ifplatform moved to texlive-base (Closes: #673273)

  [ Hilmar Preuße ]
  * tex4ht needs sometimes JRE. Add suggests to texlive-plain-generic.
    (Closes: #931367).
  * tex4ht needs very often a LaTeX executable. texlive-plain-generic
    now recommends texlive-latex-base. (Closes: #767871).
  * texlive-font-utils now suggests lcdf-typetools (Closes: #641354)

 -- Norbert Preining <norbert@preining.info>  Wed, 10 Jul 2019 10:11:32 +0900

texlive-extra (2019.20190605-1) experimental; urgency=medium

  * New upstream checkout
    - remove non-free files

 -- Norbert Preining <norbert@preining.info>  Wed, 05 Jun 2019 12:18:14 +0900

texlive-extra (2019.20190508-1) experimental; urgency=medium

  * New upstream checkout
  * fix more file moves

 -- Norbert Preining <norbert@preining.info>  Wed, 08 May 2019 15:32:48 +0900

texlive-extra (2019.20190507-1) experimental; urgency=medium

  * New upstream checkout
  * fix EBGaramond-Initials replacement (Closes: #928552)
  * fix various other file moves

 -- Norbert Preining <norbert@preining.info>  Tue, 07 May 2019 14:41:03 +0900

texlive-extra (2019.20190506-1) experimental; urgency=medium

  * first post TL 2019 checkout
  * cherry pick from buster branch: more tabu fixes (Closes: #920459)

 -- Norbert Preining <norbert@preining.info>  Mon, 06 May 2019 09:29:26 +0900

texlive-extra (2019.20190409-1) experimental; urgency=medium

  [ Hilmar Preuße ]
  * add python-sympy to recommends of texlive-science (Closes: #907046).

  [ Norbert Preining ]
  * TeX Live 2019 checkout

 -- Norbert Preining <norbert@preining.info>  Tue, 09 Apr 2019 10:34:24 +0900

texlive-extra (2019.20190311-1) experimental; urgency=medium

  * first 2019 pre-release

 -- Norbert Preining <norbert@preining.info>  Mon, 11 Mar 2019 17:38:52 +0900

texlive-extra (2018.20190227-1) unstable; urgency=medium

  * new upstream checkout: final TL2018 image
  * clean up the mess due to delayed acceptance
  * fix roboto font links (Closes: #922013)
  * recommend liblog-log4perl-perl for latexindent (Closes: #922305)
  * blacklist docindex.sty, non-functional (Closes: #921653)
  * Patch tabu to fix multiple FTBFS in other packages (Closes: #920459)
    (Thanks Thorsten Glaser)

 -- Norbert Preining <norbert@preining.info>  Wed, 27 Feb 2019 09:09:08 +0900

texlive-extra (2018.20190131-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <norbert@preining.info>  Thu, 31 Jan 2019 12:55:18 +0900

texlive-extra (2018.20190126-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <norbert@preining.info>  Sat, 26 Jan 2019 07:06:33 +0900

texlive-extra (2018.20190122-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <norbert@preining.info>  Tue, 22 Jan 2019 11:27:44 +0900

texlive-extra (2018.20181214-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Fri, 14 Dec 2018 13:58:18 +0900

texlive-extra (2018.20181116-1) unstable; urgency=medium

  * add necessary replace/breaks for extraction of fonts to tl-f-e-links
    (Closes: #913410)
  * new upstream checkout
    - fixes a2ping man page (Closes: #912417)

 -- Norbert Preining <preining@debian.org>  Fri, 16 Nov 2018 14:46:36 +0900

texlive-extra (2018.20181106-1) unstable; urgency=medium

  * new upstream checkout
  * font reuse updates

 -- Norbert Preining <preining@debian.org>  Tue, 06 Nov 2018 11:45:11 +0900

texlive-extra (2018.20180926-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Wed, 26 Sep 2018 19:56:45 +0900

texlive-extra (2018.20180824-1) unstable; urgency=medium

  * new upstream checkout
  * fix incorrect a2ping header mangling (Closes: #906123)
  * remove upstream included patch for invoice.sty
  * change Perl shebangs

 -- Norbert Preining <preining@debian.org>  Fri, 24 Aug 2018 11:11:32 +0900

texlive-extra (2018.20180725-1) unstable; urgency=medium

  * new upstream checkout
  * fix for mixture of modules from tlcritical
  * update font links for Gentium (Closes: #904510)

 -- Norbert Preining <preining@debian.org>  Wed, 25 Jul 2018 14:39:29 +0900

texlive-extra (2018.20180724-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Tue, 24 Jul 2018 10:10:28 +0900

texlive-extra (2018.20180505-1) unstable; urgency=medium

  * New upstream checkout

 -- Norbert Preining <preining@debian.org>  Sat, 05 May 2018 15:52:42 +0900

texlive-extra (2018.20180416-1) unstable; urgency=medium

  * TeX Live 2018 release for Debian

 -- Norbert Preining <preining@debian.org>  Mon, 16 Apr 2018 13:06:19 +0900

texlive-extra (2018.20180404-1) experimental; urgency=medium

  * new TL 2018 pretest checkout

 -- Norbert Preining <preining@debian.org>  Wed, 04 Apr 2018 10:57:13 +0900

texlive-extra (2018.20180313-1) experimental; urgency=medium

  * TL 2018 pretest packages

 -- Norbert Preining <preining@debian.org>  Tue, 13 Mar 2018 10:24:09 +0900

texlive-extra (2017.20180305-2) unstable; urgency=medium

  * (again) fix replace version for texlive-fonts-extra-links (Closes: #891512)
    (Thanks Andreas Beckmann)

 -- Norbert Preining <preining@debian.org>  Tue, 06 Mar 2018 14:18:00 +0900

texlive-extra (2017.20180305-1) unstable; urgency=medium

  * new upstream checkout: final 2017 release
  * fix replace version for texlive-fonts-extra-links (Closes: #891512)

 -- Norbert Preining <preining@debian.org>  Mon, 05 Mar 2018 09:46:43 +0900

texlive-extra (2017.20180225-1) unstable; urgency=medium

  * new upstream checkout
    - fixes empty autopict.sty (Closes: #887424)
  * add call to dh_strip_nondeterminism in d/rules (Closes: #886988)
  * replace included Noto-Mono with Debian package

 -- Norbert Preining <preining@debian.org>  Sun, 25 Feb 2018 11:54:27 +0900

texlive-extra (2017.20180110-1) unstable; urgency=medium

  * new upstream checkout
  * font rework
    - texlive-fonts-extra only recommends various font-* packages
    - links in the texmf tree are shipped in new texlive-fonts-extra-links
      package
    - texlive-fonts-extra recommends texlive-fonts-extra-links
    - texlive-full depends on texlive-fonts-extra-links
    This way it is possible to suppress installation of all the font-* packages
    by not installing recommends, and not installing texlive-full.
    (Closes: #688845)
  * demote -doc packages to being suggested (Closes: #877771, #812905)
  * bump standards version, no changes necessary

 -- Norbert Preining <preining@debian.org>  Wed, 10 Jan 2018 11:42:12 +0900

texlive-extra (2017.20180103-2) unstable; urgency=medium

  * rename wordcount to latex-wordcount (name already grabbed by emboss)
    (Closes: #886374)
  * don't ship Lato and OpenSans fonts, rely on Debian packages instead
    (Closes: #753839)

 -- Norbert Preining <preining@debian.org>  Fri, 05 Jan 2018 12:30:50 +0900

texlive-extra (2017.20180103-1) unstable; urgency=medium

  * new upstream checkout
    - include wordcount script (Closes: #885341)

 -- Norbert Preining <preining@debian.org>  Wed, 03 Jan 2018 19:46:08 +0900

texlive-extra (2017.20171128-1) unstable; urgency=medium

  * new upstream checkout
    - fix misplaced file in revtex4 (Closes: #881128)
  * add missing replace (Closes: #880901)

 -- Norbert Preining <preining@debian.org>  Tue, 28 Nov 2017 08:51:25 +0900

texlive-extra (2017.20171031-1) unstable; urgency=medium

  * new upstream checkout
    - fixes pstricks not loadable in plain tex (Closes: #877682)
  * downgrade relation to icc-profiles to suggests as it is non-free
    (Closes: #880379)

 -- Norbert Preining <preining@debian.org>  Tue, 31 Oct 2017 10:41:00 +0900

texlive-extra (2017.20171004-1) unstable; urgency=medium

  * new upstream checkout
  * provide link to sRGB_IEC61966-2-1_black_scaled.icc and recommend
    icc-profiles so that in case it is installed, color management in
    pdfx works (Closes: #877167)

 -- Norbert Preining <preining@debian.org>  Wed, 04 Oct 2017 13:20:47 +0900

texlive-extra (2017.20170926-1) unstable; urgency=medium

  * new upstream checkout
  * fix lt3graph and pkgloader for newer expl3 (Closes: #876323, #876325)
    thanks Caraffini Diego for the patches

 -- Norbert Preining <preining@debian.org>  Tue, 26 Sep 2017 11:07:56 +0900

texlive-extra (2017.20170818-1) unstable; urgency=medium

  * new upstream checkout
  * conflict against old texlive-math-extra packages that should not
    be installed (Closes: #872013)

 -- Norbert Preining <preining@debian.org>  Fri, 18 Aug 2017 11:46:12 +0900

texlive-extra (2017.20170809-1) unstable; urgency=medium

  * include tex4ht jar building from texlive-binaries to allow
    for bootstrapping of texlive-binaries

 -- Norbert Preining <preining@debian.org>  Wed, 09 Aug 2017 14:33:53 +0900

texlive-extra (2017.20170808-1) unstable; urgency=medium

  [ Gregor Herrmann ]
  * Fix "Unescaped left brace in regex is deprecated" in latex2man
    (Closes: #871159)

  [ Norbert Preining ]
  * new upstream checkout
  * jadetex/xmltex is in formats-extra, adjust dependencies (Closes: #870827)

 -- Norbert Preining <preining@debian.org>  Tue, 08 Aug 2017 10:42:51 +0900

texlive-extra (2017.20170801-1) unstable; urgency=medium

  * new upstream checkout: The Long Dark release
    - fixes media9 errors

 -- Norbert Preining <preining@debian.org>  Tue, 01 Aug 2017 16:07:37 +0900

texlive-extra (2017.20170724-1) unstable; urgency=medium

  * new upstream checkout
  * tl-extra-utils depends on libunicode-linebreak-perl (Closes: #868012)
  * tl-science depends on tl-lang-greek for lgrenc.def (Closes: #778917)
  * update patches
  * switch from ttf-adf-* to fonts-adf-* (Closes: #868939)

 -- Norbert Preining <preining@debian.org>  Mon, 24 Jul 2017 08:02:09 +0900

texlive-extra (2017.20170629-1) unstable; urgency=medium

  * new upstream checkout
  * fix wrong direction of file move directive (Closes: #866108)
  * bump standards version, no changes necessary

 -- Norbert Preining <preining@debian.org>  Thu, 29 Jun 2017 11:31:09 +0900

texlive-extra (2017.20170627-1) unstable; urgency=medium

  * new upstream checkout
  * more missing deps for tl-formats-extra (no bug, BTS doesn't want to clone)

 -- Norbert Preining <preining@debian.org>  Tue, 27 Jun 2017 10:20:03 +0900

texlive-extra (2017.20170623-1) unstable; urgency=medium

  * new upstream checkout
  * leipzig moved from tl-humanities to tl-latex-extra (Closes: #865207)

 -- Norbert Preining <preining@debian.org>  Fri, 23 Jun 2017 23:00:30 +0900

texlive-extra (2017.20170619-2) unstable; urgency=medium

  * merge forgotten changes in experimental:
    - add missing dep on tl-fonts-recommended (Closes: #864744)

 -- Norbert Preining <preining@debian.org>  Mon, 19 Jun 2017 22:39:56 +0900

texlive-extra (2017.20170619-1) unstable; urgency=medium

  * new checkout and upload to unstable

 -- Norbert Preining <preining@debian.org>  Mon, 19 Jun 2017 17:07:09 +0900

texlive-extra (2017.20170613-1) experimental; urgency=medium

  * first post 2017 checkout with all the updates since the freeze

 -- Norbert Preining <preining@debian.org>  Tue, 13 Jun 2017 09:59:50 +0900

texlive-extra (2017.20170525-1) experimental; urgency=medium

  * TL 2017

 -- Norbert Preining <preining@debian.org>  Sat, 27 May 2017 11:03:49 +0900

texlive-extra (2016.20170123-5) unstable; urgency=medium

  * fix Latin1 encoding in algorithm2e (Closes: #857478)

 -- Norbert Preining <preining@debian.org>  Tue, 14 Mar 2017 00:12:31 +0900

texlive-extra (2016.20170123-4) unstable; urgency=medium

  * g-brief2.cls: correct the wrong patch for bug #840700
    (Closes: #840700, #855437)

 -- Norbert Preining <preining@debian.org>  Mon, 20 Feb 2017 13:37:33 +0900

texlive-extra (2016.20170123-3) unstable; urgency=medium

  * fix location of contracard.sty (Closes: #854800)
  * backport fix for infinite loop in glossaries-extra (Closes: #854931)

 -- Norbert Preining <preining@debian.org>  Sun, 12 Feb 2017 15:51:00 +0900

texlive-extra (2016.20170123-2) unstable; urgency=medium

  * fix wrong replace/break statements
  * tighten inter-package dependencies

 -- Norbert Preining <preining@debian.org>  Thu, 02 Feb 2017 22:14:49 +0900

texlive-extra (2016.20170123-1) unstable; urgency=medium

  * new upstream checkout
    - filehook needed by unicode-math moved to tl-latex-recommended

 -- Norbert Preining <preining@debian.org>  Mon, 23 Jan 2017 10:44:05 +0900

texlive-extra (2016.20170118-2) unstable; urgency=medium

  * conflict with old biber (Closes: #851966)

 -- Norbert Preining <preining@debian.org>  Sun, 22 Jan 2017 22:35:05 +0900

texlive-extra (2016.20170118-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Wed, 18 Jan 2017 08:56:28 +0900

texlive-extra (2016.20161130-1) unstable; urgency=medium

  * new upstream checkout
  * fix tl-htmlxml's dependency on texlive-binaries (Closes: #843859)

 -- Norbert Preining <preining@debian.org>  Wed, 30 Nov 2016 13:18:12 +0900

texlive-extra (2016.20161103-1) unstable; urgency=medium

  * break against old dblatex (Closes: #840229)
  * fix g-brief2 for multiple instances (Closes: #840700)
    (thanks to Julius Seemayer)
  * include a5toa4 man page (Closes: #841310) (thanks to James Clarke)
  * tl-latex-extra recs tl-generic-extra for datetime2 -> tracklong
    (Closes: #838755)
  * tl-math-extra is merged into tl-science (actually upstream calls
    it collection-mathscience)

 -- Norbert Preining <preining@debian.org>  Thu, 03 Nov 2016 11:51:11 +0900

texlive-extra (2016.20161008-1) unstable; urgency=medium

  * new upstream release
    - fix for newtxsf breakage (Closes: #835401)
  * add breaks for package moving via unreleased tl-unicodetex
  * tl-htmlxml conflicts with tex4ht-common (Closes: #834936)
  * move various tex4ht scripts from tl-binaries to tl-htmlxml
    (Closes: #835803)
    --> add symlinks in /usr/bin (Closes: #495768)
  * breaks against old version of biber

 -- Norbert Preining <preining@debian.org>  Sat, 08 Oct 2016 11:07:37 +0900

texlive-extra (2016.20160819-1) unstable; urgency=medium

  * new upstream checkout
  * ship to unstable, make texlive-htmlxml installable again (Closes: #834616)

 -- Norbert Preining <preining@debian.org>  Fri, 19 Aug 2016 12:17:06 +0900

texlive-extra (2016.20160814-1) experimental; urgency=medium

  * tl-bibtex-extra conflicts with biblatex, biblatex-dw (Closes: #833967)
  * reintroduce tex4ht in texlive-htmlxml
    This gives fixed support for scrreport in tex4ht (Closes: #775190)
  * conflict with logreq (Closes: #833990)

 -- Norbert Preining <preining@debian.org>  Sun, 14 Aug 2016 22:19:35 +0900

texlive-extra (2016.20160805-1) unstable; urgency=medium

  * new upstream checkout (Closes: #829330, #830564)

 -- Norbert Preining <preining@debian.org>  Sat, 06 Aug 2016 09:17:08 +0900

texlive-extra (2016.20160623-1) unstable; urgency=medium

  * new upstream checkout - first after the release of TL2016
  * tl-bibtex-extra: break against older biber versions (Closes: #825163)
  * break and provide against gregorio(tex) (Closes: #825743)
  * disable epstopdf patch - not applicable anymore

 -- Norbert Preining <preining@debian.org>  Thu, 23 Jun 2016 11:15:35 +0900

texlive-extra (2016.20160520-1) unstable; urgency=medium

  * new upstream checkout - TL 2016 (first trial)
  * fix replace (mweights moved latex-extra -> fonts-extra) (Closes: #824137)

 -- Norbert Preining <preining@debian.org>  Fri, 20 May 2016 10:04:59 +0900

texlive-extra (2016.20160512-1) unstable; urgency=medium

  * add missing conflicts against xmltex/jadetex (Closes: #820736)
  * remove sympytexpackage files that are either licenses cc-by-sa-nc
    or do not have accompanying sources (Closes: #824068, #824069)
  * adjust sympytex python path (Closes: #824071)
  * bump standards version, no changes necessary

 -- Norbert Preining <preining@debian.org>  Thu, 12 May 2016 10:30:06 +0900

texlive-extra (2016.20160417-1) experimental; urgency=medium

  * new upstream checkout of tlpretest
    - fix missing Euro sign in Inconsolata (Closes: #811384)
      (thanks to Thorsten Glaser for tracking it down)
  * tl-htmlxml recommends openjade (Closes: #803527)

 -- Norbert Preining <preining@debian.org>  Sun, 17 Apr 2016 14:29:35 +0900

texlive-extra (2015.20160320-1) unstable; urgency=medium

  * new upstream checkout
  * texlive-bibtex-extra: break on old biber for biblatex 3.3
  * bump standards version, no changes necessary

 -- Norbert Preining <preining@debian.org>  Sun, 20 Mar 2016 13:37:48 +0900

texlive-extra (2015.20160223-2) unstable; urgency=medium

  * re-add dropped dependency when incorporating jadetex (Closes: #816584)

 -- Norbert Preining <preining@debian.org>  Thu, 10 Mar 2016 16:19:25 +0900

texlive-extra (2015.20160223-1) unstable; urgency=medium

  * new upstream checkout
  * ensure proper upgrade from intermediate sid releases
    (replaces for texlive-math-extra vs texlive-latex-extra)
  * reinclusion of musixtex, pmx, m-tx in texlive-music
  * reintroduction of texlive-htmlxml which carries passivetex,
    jadetex, xmltex (tex4ht remains separate for now)

 -- Norbert Preining <preining@debian.org>  Tue, 23 Feb 2016 12:33:45 +0900

texlive-extra (2015.20160215-1) unstable; urgency=medium

  * new upstream checkout
  * tl-math-extra depends on tl-luatex (unicode-math -> ucharcat)
    (Closes: #811508)
  * fix perl-noisiness in texdef (Closes: #812154)
  * fix algorithm2e.sty superfluous brace (Closes: #814317)

 -- Norbert Preining <preining@debian.org>  Mon, 15 Feb 2016 20:04:27 +0900

texlive-extra (2015.20160117-1) unstable; urgency=medium

  * new upstream checkout
  * fix some font links (Gentium, Roboto) (Closes: #809202)

 -- Norbert Preining <preining@debian.org>  Sun, 17 Jan 2016 16:48:00 +0900

texlive-extra (2015.20151225-2) unstable; urgency=medium

  * simplewick moved from latex-extra to science (Closes: #809039)

 -- Norbert Preining <preining@debian.org>  Sun, 27 Dec 2015 09:45:00 +0900

texlive-extra (2015.20151225-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Sat, 26 Dec 2015 10:42:50 +0900

texlive-extra (2015.20151116-1) unstable; urgency=medium

  * new upstream checkout
  * switch back to upstream droid fonts (Closes: #804690)

 -- Norbert Preining <preining@debian.org>  Mon, 16 Nov 2015 13:22:22 +0900

texlive-extra (2015.20151016-1) unstable; urgency=medium

  * new upstream checkout
  * set all packages to M-A: foreign

 -- Norbert Preining <preining@debian.org>  Fri, 16 Oct 2015 09:42:20 +0900

texlive-extra (2015.20150917-1) unstable; urgency=medium

  * new upstream checkout
  * remove pswrite device from epstopdf (Closes: #797537)

 -- Norbert Preining <preining@debian.org>  Thu, 17 Sep 2015 12:56:33 +0900

texlive-extra (2015.20150823-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Sun, 23 Aug 2015 14:07:13 +0900

texlive-extra (2015.20150810-1) unstable; urgency=medium

  * new upstream checkout
  * reinclude reflectgraphics document, lenna image has been exchanged
    upstream

 -- Norbert Preining <preining@debian.org>  Mon, 10 Aug 2015 10:53:56 +0900

texlive-extra (2015.20150703-2) unstable; urgency=medium

  * fix fithesis move/overwrite bug (Closes: #791349)

 -- Norbert Preining <preining@debian.org>  Sat, 04 Jul 2015 10:03:04 +0900

texlive-extra (2015.20150703-1) unstable; urgency=medium

  * new upstream checkout - The LENNA release - We love you!
  * fix replaces for texlive-pictures-doc (piano) (Closes: #790051)
  * remove several instances of lenna images, and the documentation
    for reflectgraphics, as it is contained therein (upstream already
    asked for changes).

 -- Norbert Preining <preining@debian.org>  Fri, 03 Jul 2015 09:38:49 +0900

texlive-extra (2015.20150625-1) unstable; urgency=medium

  * new upstream checkout
  * take over etoolbox (Closes: #789537)

 -- Norbert Preining <preining@debian.org>  Thu, 25 Jun 2015 13:36:54 +0900

texlive-extra (2015.20150524-1) experimental; urgency=medium

  * new upstream checkout
  * texlive-latex-extra suggests libspreadsheet-parseexcel-perl for
    exceltex (Closes: #770368)
  * temporarily remove sRGB_IEC61966-2-1_black_scaled.icc due to
    a bogus bug in lintian, and auto-reject on ftp-masters based
    on this bogus bug. Happy life.

 -- Norbert Preining <preining@debian.org>  Fri, 12 Jun 2015 10:28:14 +0900

texlive-extra (2014.20141024-1) unstable; urgency=medium

  * new upstream checkout
  * tl-fonts-extra recommends tl-latex-extra (lato.sty > slantsc.sty)
    (Closes: #765399)
  * tl-extra-utils recommends libyaml-tiny-perl and libfile-homedir-perl
    (for latexindent) (LP: #1378255) (Closes: #765660)
  * tl-latex-extra recommends tl-fonts-recommended (moderncv defaults to
    marvosym symbols) (Closes: #766377)

 -- Norbert Preining <preining@debian.org>  Fri, 24 Oct 2014 11:01:46 +0900

texlive-extra (2014.20140927-1) unstable; urgency=medium

  * finally fix description format, sorry (Closes: #758908)
  * fix various font file links (Closes: #758989)

 -- Norbert Preining <preining@debian.org>  Sat, 27 Sep 2014 20:51:04 +0900

texlive-extra (2014.20140821-1) unstable; urgency=medium

  * new upstream checkout: fix misplacement of leipzig.tex (Closes: #757752)
  * fix package descriptions' format (Closes: #756626)

 -- Norbert Preining <preining@debian.org>  Thu, 21 Aug 2014 15:04:58 +0900

texlive-extra (2014.20140717-1) unstable; urgency=medium

  * new upstream checkout
  * tl-publishers rec. tl-l-extra (abntex2 -> enumitem) (Closes: #752848)

 -- Norbert Preining <preining@debian.org>  Thu, 17 Jul 2014 00:40:33 +0900

texlive-extra (2014.20140626-1) unstable; urgency=medium

  * new upstream checkout
  * updated STIX font links to include stix-word fonts (Closes: #751202)
  * reformat descriptions to that TeX Live package names/descriptions
    are always a separate paragraph to help translators (Closes: #493778)

 -- Norbert Preining <preining@debian.org>  Wed, 25 Jun 2014 16:02:41 +0900

texlive-extra (2014.20140528-2) unstable; urgency=medium

  * t-formats-extra depends on t-xetex (lollipop) (Closes: #749759)

 -- Norbert Preining <preining@debian.org>  Sat, 31 May 2014 23:48:12 +0900

texlive-extra (2014.20140528-1) unstable; urgency=medium

  * upload to unstable

 -- Norbert Preining <preining@debian.org>  Wed, 28 May 2014 17:52:27 +0900

texlive-extra (2014.20140522-1) experimental; urgency=medium

  * bump (build-)depends on tex-common >= 5

 -- Norbert Preining <preining@debian.org>  Thu, 22 May 2014 11:22:03 +0900

texlive-extra (2014.20140513-1) experimental; urgency=medium

  * TeX Live 2014

 -- Norbert Preining <preining@debian.org>  Mon, 12 May 2014 15:45:32 +0900

texlive-extra (2013.20140408-1) unstable; urgency=medium

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Tue, 08 Apr 2014 10:51:43 +0900

texlive-extra (2013.20140314-1) unstable; urgency=medium

  * fix invoice.sty loading fp wrongly (Closes: #740291)

 -- Norbert Preining <preining@debian.org>  Fri, 14 Mar 2014 13:01:26 +0900

texlive-extra (2013.20140215-2) unstable; urgency=medium

  * fix missing replace for texlive-publisher (Closes: #739473)

 -- Norbert Preining <preining@debian.org>  Wed, 19 Feb 2014 11:52:49 +0900

texlive-extra (2013.20140215-1) unstable; urgency=medium

  * new upstream checkout
  * butcher flashmovie and media9 packages by removing some swf flash
    files without included source (although available) (Closes: #736802)
  * change {ttf,otf}-freefont to fonts-freefont-{ttf,otf} (Closes: #738251)
  * install (de)pythontex3 scripts (Closes: #737376)

 -- Norbert Preining <preining@debian.org>  Sat, 15 Feb 2014 11:25:34 +0900

texlive-extra (2013.20140123-1) unstable; urgency=medium

  * new upstream checkout
  * break against incompatible version of biber (Closes: #734416)

 -- Norbert Preining <preining@debian.org>  Thu, 23 Jan 2014 13:12:46 +0900

texlive-extra (2013.20131219-1) unstable; urgency=medium

  * new upstream checkout
  * bump standards version, no changes necessary

 -- Norbert Preining <preining@debian.org>  Thu, 19 Dec 2013 13:45:18 +0900

texlive-extra (2013.20131112-1) unstable; urgency=low

  * new upstream checkout
  * texlive-latex-extra suggests python-pygments (Closes: #728895)

 -- Norbert Preining <preining@debian.org>  Tue, 12 Nov 2013 15:49:02 +0900

texlive-extra (2013.20131010-1) unstable; urgency=low

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Thu, 10 Oct 2013 12:35:51 +0900

texlive-extra (2013.20130918-1) unstable; urgency=low

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Wed, 18 Sep 2013 12:41:16 +0900

texlive-extra (2013.20130905-1) unstable; urgency=low

  * new upstream checkout
    - fix siunitx typo (Closes: #719871)
  * add a latexdef -> texdef link (Closes: #719427)
  * texlive-pictures suggests texlive-latex-extra (Closes: #705951, #683567)
  * texlive-pcitures suggest libtcltk-ruby (Closes: #600375)
  * bump standards version to 3.9.4, no changes necessary
  * fonts-font-awesome instead of shipping the font

 -- Norbert Preining <preining@debian.org>  Thu, 05 Sep 2013 11:46:54 +0900

texlive-extra (2013.20130722-1) unstable; urgency=low

  * new upstream checkout
  * texlive-publishers depends on texlive-latex-recommended (Closes: #710420)
  * texlive-science depends on texlive-latex-recommended (Closes: #711168)
  * fix texcount for \verb+...+ (Closes: #711491)
  * respect TMPDIR env var in pdfjam (Closes: #714188) (thanks Ivan Shmakov)
  * texlive-pstricks needs pgf, depend on it (Closes: #713791)

 -- Norbert Preining <preining@debian.org>  Mon, 22 Jul 2013 12:04:16 +0900

texlive-extra (2013.20130530-1) unstable; urgency=low

  * new upstream checkout, corresponding to TL2013 DVD release

 -- Norbert Preining <preining@debian.org>  Thu, 30 May 2013 11:47:02 +0900

texlive-extra (2013.20130523-1) unstable; urgency=low

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Thu, 23 May 2013 12:36:41 +0900

texlive-extra (2013.20130520-1) unstable; urgency=low

  * new upstream checkout
  * depend on fonts-dejavu-* instead of ttf-dejavu-* (Closes: #708059)

 -- Norbert Preining <preining@debian.org>  Mon, 20 May 2013 13:11:24 +0900

texlive-extra (2012.20130315-1) experimental; urgency=low

  * texlive-extra-utils now depends on texlive-latex-base to make pdfjam
    and friends work out of the box (LP: #1085666)
  * fix predictable temp file names in latex2man (Closes: #668779)
    (patch by Tatsuya Kinoshita)

 -- Norbert Preining <preining@debian.org>  Fri, 15 Mar 2013 13:28:27 +0900

texlive-extra (2012.20130111-1) experimental; urgency=low

  * new upstream checkout

 -- Norbert Preining <preining@debian.org>  Fri, 11 Jan 2013 08:25:34 +0900

texlive-extra (2012.20121205-1) experimental; urgency=low

  * new upstream checkout
    - fixes cwebbase.tex wrong location and cweb.cls error (Closes: #689634)
  * rework doc file handling, doc files are now placed in their
    proper place in the TDS hierarchy
  * ship repstopdf

 -- Norbert Preining <preining@debian.org>  Thu, 06 Dec 2012 01:14:20 +0900

texlive-extra (2012.20121125-1) experimental; urgency=low

  * new upstream checkout
  * incorporate some patches from texlive-bin to scripts that are now
    shipped in texlive-extra

 -- Norbert Preining <preining@debian.org>  Sun, 25 Nov 2012 12:08:35 +0900

texlive-extra (2012.20121123-1) experimental; urgency=low

  * new upstream checkout
  * fix ulqda using Digest::SHA1 which is not available (LP: #1045516)
  * pack texlive-latex-extra-doc with extreme compression (Closes: #675537)
  * texlive-extra-utils recommends texlive-latex-base and
    texlive-latex-recommended (for pdfjam support) (Closes: #691690)

 -- Norbert Preining <preining@debian.org>  Fri, 23 Nov 2012 12:35:09 +0900

texlive-extra (2012.20120611-2) unstable; urgency=low

  * fix broken mf2pt1 info file that triggered broken info/dir file
    under certain circumstances (Closes: #683201)

 -- Norbert Preining <preining@debian.org>  Mon, 30 Jul 2012 11:08:33 +0900

texlive-extra (2012.20120611-1) unstable; urgency=low

  * new upstream checkout (TL2012 release)

 -- Norbert Preining <preining@debian.org>  Mon, 11 Jun 2012 12:01:55 +0900

texlive-extra (2012.20120529-1) unstable; urgency=low

  * new upstream checkout
  * add transitional dummy texlive-latex3 package to upgrade to
    texlive-latex-recommended (Closes: #673797)
  * don't ship STIX fonts, but link from fonts-stix and depend on it

 -- Norbert Preining <preining@debian.org>  Tue, 29 May 2012 19:19:02 +0900

texlive-extra (2012.20120516-1) unstable; urgency=low

  * new upstream snapshot based on TL2012 tlpretest
  * switch to xz compression for orig and deb (Closes: #672428)

 -- Norbert Preining <preining@debian.org>  Wed, 16 May 2012 08:22:07 +0900

texlive-extra (2011.20120509-1) unstable; urgency=low

  * new upstream snapshot (Closes: #670336)
  * texpower take over
    . ship the TL packages texpower and tpslifonts (formerly blacklisted)
    . provide a dummy transitional package texpower
    . add the necessary conflicts and depends
  * fix wrong link in README.source (Closes: #671920)
  * pdfjam take over (actually done already earlier)
    . ship the TL package pdfjam
    . provide a dummy transitional package pdfjam
    . add the necessary conflicts and depends

 -- Norbert Preining <preining@debian.org>  Wed, 25 Apr 2012 12:01:15 +0900

texlive-extra (2011.20120424-1) unstable; urgency=low

  * new upstream snapshot
    - includes updates ucs package (Closes: #635382)
  * break against scalable-cyrfonts-tex as it ships fonts with the same
    names as in texlive-fonts-extra
  * adjust links and blacklist for new libertine fonts location in TL

 -- Norbert Preining <preining@debian.org>  Tue, 24 Apr 2012 08:38:29 +0900

texlive-extra (2011.20120322-1) unstable; urgency=low

  * replace otf/ttf fonts with links to the files in the
    respective Debian package, depend on that package
  * upload to unstable

  [ Hilmar Preuße ]

  List of fixed bugs in new TeX Live
  * new version of pst-dbicons (Closes: #619615)
  * flashcards does not fail with "Package geometry Error"
    (Closes: #501520)
  * epstopdf --nogs writes to standard output (Closes: #568167)
  * custom-bib made bibtex fail in specific cases (Closes: #580053)
  * endless loop in font2afm when converting OTF files (Closes: #641460)
  * revtex4-1 does handle multiple affiliations (Closes: #591927)
  * footbib again compatible with LaTeX (Closes: #605960)
  * ecv no longer clashes with ifpdf (Closes: #629448)
  * new version of exam.cls (Closes: #639375)
  * new version of Antykwa Półtawskiego font (Closes: #602437)
  * new version of American Chemical Society (Closes: #632934)
  * todo don't complain about bad space factor (Closes: #470141)
  * Workaround added to pdfcrop for buggy ghostscript that
    print the BoundingBox data twice (Closes: #600684)
  * new version of classicthesis and arsclassica in texlive-publishers
    (Closes: #585401)
  * new version of exercise.sty in texlive-latex-extra (Closes: #605738)

 -- Norbert Preining <preining@debian.org>  Fri, 23 Mar 2012 08:37:39 +0900

texlive-extra (2011.20120314-1) experimental; urgency=low

  * new upstream with proper blacklist handling

 -- Norbert Preining <preining@debian.org>  Wed, 14 Mar 2012 16:52:17 +0900

texlive-extra (2011.20120226-1) experimental; urgency=low

  * new upstream, too many changes

 -- Norbert Preining <preining@debian.org>  Tue, 06 Mar 2012 21:33:19 +0900

texlive-extra (2009-10) unstable; urgency=low

  * add the forgotten epoch for musixtex dependency (Closes: #587746)

 -- Norbert Preining <preining@debian.org>  Thu, 01 Jul 2010 19:23:57 +0900

texlive-extra (2009-9) unstable; urgency=low

  * make texlive-music *not* depend on musixlyr and musixtex-slurps
    anymore, but tighten dep on new musixtex package that provides this
    functionality (Closes: #587718)

 -- Norbert Preining <preining@debian.org>  Thu, 01 Jul 2010 13:48:35 +0900

texlive-extra (2009-8) unstable; urgency=low

  [ Norbert Preining ]
  * install man page for pdfcrop (Closes: #574796)
  * update epstopdf to latest version (--output fixes) (Closes: #573540)
  * include revtex4 backward compatibility (Closes: #561836)

  [ أحمد المحمودي (Ahmed El-Mahmoudy) ]
  * Added fix-bashism patch to fix bashism in listings-ext.sh
    (Closes: #581138)

  [ Hilmar Preuße ]
  * [extra] add ghostscript to the list of recommends of
    texlive-font-utils (Closes: #584329)

 -- Norbert Preining <preining@debian.org>  Sat, 19 Jun 2010 16:14:25 +0900

texlive-extra (2009-7) unstable; urgency=high

  * install man pages for pkfix and ps4pdf (Closes: #563301)
  * texlive-latex-extra replaces texlive-base-bin (<< 2008) (Closes: #564709)

 -- Norbert Preining <preining@debian.org>  Mon, 11 Jan 2010 23:49:16 +0900

texlive-extra (2009-6) unstable; urgency=low

  * install several man pages (Closes: #562498)
  * update epstopdf to current version (where --filter works)
    (Closes: #562497)
  * remove various outdated "updates" taken over from 2007 but already
    present or newer in TL2009

 -- Norbert Preining <preining@debian.org>  Fri, 25 Dec 2009 11:38:44 +0900

texlive-extra (2009-5) unstable; urgency=low

  * texlive-extra-utils: add symlinks for listings-ext, findhyph,
    texdiff, rpdfcrop
  * texlive-formats-extra depends texlive-latex-base since it needs
    bplain.tex (Closes: #561882)
  * more replaces (why haven't they be found by now???)
    texlive-latex-extra replaces texlive-extra-utils (for vpe.pl)
    texlive-plain-extra replaces texlive-lang-vietnamese (for MIKmathf.tex)

 -- Norbert Preining <preining@debian.org>  Tue, 22 Dec 2009 03:26:51 +0900

texlive-extra (2009-4) unstable; urgency=low

  * first upload to unstable

 -- Norbert Preining <preining@debian.org>  Wed, 09 Dec 2009 23:04:02 +0900

texlive-extra (2009-3) experimental; urgency=low

  * blacklist latexmk, it is packaged separately (Closes: #557855)

 -- Norbert Preining <preining@debian.org>  Sun, 29 Nov 2009 23:58:37 +0900

texlive-extra (2009-2) experimental; urgency=low

  * blacklist purifyeps, it is packaged separately (Closes: #557018)

 -- Norbert Preining <preining@debian.org>  Thu, 19 Nov 2009 16:13:13 +0900

texlive-extra (2009-1) experimental; urgency=low

  [ Frank Küster ]
  * New upstream version (pre-release, but not far from) with lots of
    internal changes, hence the upload to experimental. This upstream
    version fixes the following bugs:

      [texlive-latex-extra]
    - closes: #491054, chicago.sty missing
    - closes: #523756, nag: essential .cfg files missing
    - closes: #445562, paralist: documentation missing
    - closes: #445617, ragged2e: documentation missing
    - closes: #471205, lastpage: documentation missing
    - package updates or new packages included: frankenstein bundle
      (closes: #482148), achemso (closes: #536323), titlesec (closes:
      #509590), moderncv (closes: #529259), breakurl (closes: #532333),
      csquotes (closes: #538855), todonotes (closes: #528917), exceltex
      (closes: #351763)

      [texlive-bibtex-extra]
    - closes: #405807, Please install apacite language support in usable
      location
    - package updates or new packages included: custom-bib (closes:
      #505238), multibib (closes: #546785)

      [texlive-science]
    - closes: #517827, typo in description of pseudocode package
    - closes: #546767, consider including siunitx

      [texlive-publishers]
    - package updates or new packages included: IEEEtran stuff (closes:
      #501796, #471351), economic (closes: #532425), elsevier's elsarticle
      (closes: #545857), revtex (closes: #156812)

      [mixed binary packages]
    - texlive-pstricks, compatibility with powerdot (closes: #412739)
    - texlive-math-extra, nested paired delimiters using mathtools do not
      work (closes: #503690)
    - texlive-latex3, please upgrade latex3 styles (closes: #529659)
    - texlive-games, Please package skak 1.4 with texlive-games (closes:
      #451427)

  * Add lots of versioned Replaces for files moved between binary packages
    from upstream versions 2007 to 2009.

 -- Norbert Preining <preining@debian.org>  Thu, 12 Nov 2009 20:51:49 +0900

texlive-extra (2007.dfsg.3-2) unstable; urgency=low

  * fix location of proba doc files (Closes: #490282)
  * fix g-brief redefinition of \Telefon (closes: #423919)
  * fix g-brief empty unterschrift bug (closes: #154266, #407968)

 -- Norbert Preining <preining@debian.org>  Tue, 22 Jul 2008 11:47:07 +0200

texlive-extra (2007.dfsg.3-1) unstable; urgency=medium

  * Let texlive-pstricks recommend texlive-extra-utils and ps2eps since
    the included pdftricks packages needs them (Closes: #473791).
  * Add the proba package to texlive-math-extra as it has been done by
    upstream. This is a consequence of blacklisting proba.sty in
    texlive-latex-base since it didn't contain a license statement. See also
    bug #483282.
  * bump standards version to 3.8.0:
    - rename README.Debian-source to README.source an explain how to change
      something using quilt by refering to the quilt README.source
    - add homepage field to control
    - add a patch target to debian/rules
  * add dversionmangle to debian/watch file to ignore the .dfsg.NN suffix
  * add texlive-pstricks recommends texlive-extra-utils for pdfcrop
    (recommends because pdf is getting more and more over)
    (Closes Ubuntu Bug 145407) [np]
  * blacklist oesch which cannot be modified, needs new .orig.tar
    (Closes: #489689) (urgency medium for RC bug)
  * remove alternative dependency texlive-latex-extra -> tetex-extra

 -- Norbert Preining <preining@debian.org>  Wed, 09 Jul 2008 16:52:10 +0200

texlive-extra (2007.dfsg.2-1) unstable; urgency=low

  * blacklist tpm/camel as it is nosell, thus we need a new .orig.tar.gz
    (Closes: #479832)
  * add a license statement from Robert Gilles about the bbm fonts to
    Licenses file (Closes: #479097)
  * add a license statement from Michael Nüsken about the
    computational-complexity packages to the Licenses file (Closes: #477152)

 -- Norbert Preining <preining@debian.org>  Fri, 09 May 2008 08:57:48 +0200

texlive-extra (2007.dfsg.1-2) unstable; urgency=low

  * Update location of upstream iso.zip file in uscan watch file (closes:
    #449634), thanks to Raphael Geissert <atomo64@gmail.com> [fk]
  * include simplecv to make lyx happy (Closes: #449983) [np]
  * update via.cls from CTAN to fix misbehaviour (Closes: #429150)
  * fix skak.sty for usage with skaknew's uskak.fd (the only one present)
    (Closes: #439709)
  * bump standards version to 3.7.3, no changes needed
  * add pbox.pdf to texlive-latex-extra-doc (Closes: #464219)
  * let -formats-extra replace -latex-base (<= 2007-10) to make
    smooth upgrades in Ubuntu (gutsy->hardy) possible (Closes Ubuntu
    bug 188910) [np]
  * add the LPPL to debian/copyright
  * update everypage from CTAN to fix serious error (Closes: #477794)

 -- Norbert Preining <preining@debian.org>  Fri, 25 Apr 2008 23:39:03 +0200

texlive-extra (2007.dfsg.1-1) unstable; urgency=low

  * add stricter dependencies to all packages: if in the final shipout
    dep on a texlive package there is no version given, the value of
    latest-version (from tpm2deb.cfg) of the source package is taken.
  * move bigfoot from tl-humanities to tl-latex-extra (upstream move, too)
    Add a tl-latex-extra replaces tl-humanities and a tl-latex-extra
    recommends tl-humanities (Closes: #420394)
  * fix an occurrence of the @ in pubform.bib (Closes: #430438)
  * implement doc splitting, so that we can build separate -doc packages
    for every collection we want to [np]
    splitting is done for: latex-extra, pstricks, publishers, humanities,
    science, fonts-extra
    (Closes: #420574, #442052)
  * blacklist tableaux.tpm, no license statement can be obtained
    (new .orig.tar necessary) (Closes: #429813)

 -- Norbert Preining <preining@debian.org>  Mon, 22 Oct 2007 07:35:32 +0200

texlive-extra (2007-3) unstable; urgency=low

  * Fix the friday 13 bugs: A bad coincidence combined a serious bug in
    debhelper (#419060) produces buggy maintainer scripts in most
    texlive packages. The debhelper bug is fixed, this
    closes: #419006, #419106, #419107
  * add texlive-math-extra replaces tetex-bin << 2007 (Closes: #419053)

 -- Norbert Preining <preining@debian.org>  Sat, 14 Apr 2007 09:50:54 +0200

texlive-extra (2007-2) unstable; urgency=low

  * first upload of TeX Live 2007 to unstable
  * move astro.tex and astro.sty from the doc directories to the TeX input
    directories (Closes: #418376)
  * do not compress documentation pdf files

 -- Norbert Preining <preining@debian.org>  Tue, 10 Apr 2007 18:15:39 +0200

texlive-extra (2007-1) experimental; urgency=low

  * new upstream version
    - adds missing Uulsy.fd file (Closes: #406556)
  * remove wrong endfloat.dvi.gz.uu link (Closes: #407419)
  * remove eulervm from diff.gz, it has been updated upstream
  * remove dstroke.map from diff.gz, it has been included upstream

 -- Norbert Preining <preining@debian.org>  Wed, 21 Mar 2007 17:03:39 +0100

texlive-extra (2005.dfsg.3-1) unstable; urgency=low

  * blacklist siam.tpm and build new upstream, as the siam macros are not
    DFSG free (no selling clause) (Closes: #406426)

 -- Norbert Preining <preining@debian.org>  Fri, 12 Jan 2007 19:08:37 +0100

texlive-extra (2005.dfsg.2-4) unstable; urgency=low

  * downgrade the relation from fonts-extra to cm-super from depends to
    suggests. Default would be recommends, but a suggests is enough.
    (Closes: #399064)
  * add the missing dstroke.map, and add the addMap action to the config
    file (Closes: #400780)
  * activate ugq.map (Closes: #374351)
  * remap infix-RPN.tex and .sty from the doc hieracy to texmf-texlive
    (Closes: #402987) (closes Ubuntu bug #69690)

 -- Norbert Preining <preining@debian.org>  Thu, 28 Dec 2006 15:04:35 +0100

texlive-extra (2005.dfsg.2-3) unstable; urgency=low

  * fix a stupid error in the is_blacklist logic, which blacklisted
    packages which aren't blacklisted at all. So include again
    antt and iwona (Closes: #397324)
  * fix inclusion of packages descriptions when they are actually
    blacklisted (thanks Frank) (Closes: #397589)

 -- Norbert Preining <preining@debian.org>  Wed,  8 Nov 2006 16:44:04 +0100

texlive-extra (2005.dfsg.2-2) unstable; urgency=low

  * remove the invalid conflict tl-latex-extra <-> latex-beamer, as this
    was part of tl-latex-recommended, and is now factored out.
    (Closes: #382870, #389467)

 -- Norbert Preining <preining@debian.org>  Wed, 18 Oct 2006 13:01:44 +0200

texlive-extra (2005.dfsg.2-1) unstable; urgency=medium

  * blacklist latex/misc209/bar.sty as it is not distributable, thus
    we also generate a new orig.tar.gz
  * report bugs together with tex-common, and report status of the
    tetex packages. Fix some small things in bug.scripts.
  * change the uploader field to my debian.org email address
  * drop unnecessary conflicts
    - tl-latex-extra vs lhs2tex
    - tl-games vs tex-skak, tex-chess
  * add a recommend tl-latex-extra -> tl-generic-extra (Closes: #390896)
  * urgency set to medium to get these fixes to testing

 -- Norbert Preining <preining@debian.org>  Mon,  9 Oct 2006 11:19:27 +0200

texlive-extra (2005.dfsg.1-1) unstable; urgency=low

  * texlive-extra-utils recommends perl-tk for texdoctk (Closes: #368659)
  * move fpl and mathpazu to texlive-fonts-recommended (see texlive-base)
  * include eulervm 4.0 instead of 3.0a, this version contains a manifest
    file and fixes some bugs (Closes: #361941)
  * add lintian override for wrong-name-for-upstream-changelog triggered
    by CHANGES.packaging
  * change maintainer to debian-tex-maint@l.d.o

 -- Norbert Preining <preining@logic.at>  Fri,  4 Aug 2006 11:25:31 +0200

texlive-extra (2005-2) unstable; urgency=low

  * first upload to unstable, sponsored by
    Frank Küster <frank@debian.org>
  * texdoc support
    - let tetex texdoc find documentation of texlive (Closes: #364776)
    - include tetex texdoc patches (following of symlinks, security
      fixes) (Closes: #356390)
  * texlive-lang-polish conflicts with octave-forge as both provide
    /usr/bin/mex, this is preliminary, a better solution must be
    sought (Closes: #364059)
  * change shell for the reportbug script to bash (Closes: #356391)
  * fix installation of thumbpdf and pdfcrop (Closes: #352092)
  * improve various descriptions (Closes: #354964)
  * call the update-* programs in all postinst scripts, so that the
    config files do not contain left-overs (Closes: #355266)
  * fix creation of formats which in turn depend on the latex format
    (Closes: #351707)
  * remap the ibycus4.map TeX/MF input file from the fonts/map location
    to the fonts/source location (Closes: #354652)
  * depend on the updated lmodern package, thus making the fonts
    available for X (Closes: #351727)
  * lots of internal changes, important ones being:
    - texlive packages now do not include files which have been
      packaged for Debian already (eg cm-super, lmodern, musixtex)
    - most packages can be used together with teTeX
    - fix several upstream bugs
    - generate license information for each file from the
      TeX Catalogue (ongoing work)
    for detailed changes see CHANGES.packaging in texlive-common

 -- Norbert Preining <preining@logic.at>  Thu, 11 May 2006 00:12:10 +0200

texlive-extra (2005-1) experimental; urgency=low

  * First upload to experimental (Closes: #312897)

 -- Norbert Preining <preining@logic.at>  Thu, 12 Jan 2006 17:30:22 +0100

# vim:set fileencoding=utf-8: #
# Local Variables:
# coding: utf-8
# mode: debian-changelog
# End: