File: changelog

package info (click to toggle)
xterm 327-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,360 kB
  • ctags: 6,057
  • sloc: ansic: 69,706; sh: 4,147; perl: 1,521; makefile: 746; xml: 40; sed: 11
file content (1651 lines) | stat: -rw-r--r-- 70,139 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
xterm (327-2) unstable; urgency=medium

  * Bump debhelper compatibility level to 10.
    - Add autoconf-dickey to Build-Depends and an override for
      dh_autoreconf to debian/rules.
  * Switch to format 3.0 (quilt).
    - Drop quilt from Build-Depends and delete debian/README.source.
  * Update copy of XTerm FAQ to revision 1.332 (dated 2016/10/23).

 -- Sven Joachim <svenjoac@gmx.de>  Sat, 17 Dec 2016 14:02:49 +0100

xterm (327-1) unstable; urgency=medium

  * New upstream release.
    - Add a check in the function which handles end-of-line wrapping
      to ensure that C1 controls are allocated one column when
      allowC1Printable is set (Closes: #738794).
    - Modify allowC1Printable to disallow codes 160-254 as being equivalent
      to codes 32-126 when parsing escape sequences (Closes: #839220).

 -- Sven Joachim <svenjoac@gmx.de>  Sun, 09 Oct 2016 11:25:56 +0200

xterm (326-1) unstable; urgency=medium

  * New upstream release.
    - Add examples of setting the icon title with/without the window
      title in the manual (Closes: #833984).
    - Amend fix for #738794 to restore a check for missing characters
      which are not combining characters.  Also fill in a corresponding
      special case for TrueType fonts (Closes: #827905, #738794).
  * Refresh Debian patches.
  * Update copy of XTerm FAQ to revision 1.329 (dated 2016/09/16).

 -- Sven Joachim <svenjoac@gmx.de>  Tue, 27 Sep 2016 20:46:07 +0200

xterm (325-1) unstable; urgency=medium

  * New upstream release.
    - Further improve fix for #545220 in xterm 248, to avoid conflict
      with combining characters (Closes: #738794).
  * Refresh Debian patches.

 -- Sven Joachim <svenjoac@gmx.de>  Wed, 08 Jun 2016 17:39:36 +0200

xterm (324-2) unstable; urgency=medium

  * Enable all hardening options.
  * Remove the menu file (see #741573).
  * Add libxinerama-dev to Build-Depends.
  * Update copy of XTerm FAQ to revision 1.317 (dated 2016/03/21).
  * Bump Standards-Version to 3.9.8.

 -- Sven Joachim <svenjoac@gmx.de>  Sun, 08 May 2016 08:32:18 +0200

xterm (324-1) unstable; urgency=medium

  * New upstream release.

 -- Sven Joachim <svenjoac@gmx.de>  Sat, 12 Mar 2016 08:35:48 +0100

xterm (323-1) unstable; urgency=medium

  * New upstream release.
  * Use https for Vcs-* fields.
  * Prefer lynx over lynx-cur in Build-Depends.
  * Bump Standards-Version to 3.9.7, no changes needed.

 -- Sven Joachim <svenjoac@gmx.de>  Thu, 10 Mar 2016 18:02:21 +0100

xterm (322-1) unstable; urgency=medium

  * New upstream release.
    - Fix regression due to incorrect fix for compiler warning when
      allocating storage for /etc/shells (Closes: #809646).
  * Update years in debian/copyright.

 -- Sven Joachim <svenjoac@gmx.de>  Sat, 02 Jan 2016 16:17:27 +0100

xterm (321-1) unstable; urgency=medium

  * New upstream release.
  * Run lynx with the -display_charset=utf-8 option when dumping the text
    version of the XTerm FAQ, making the build reproducible.
  * Update copy of XTerm FAQ to revision 1.307 (dated 2015/12/28).

 -- Sven Joachim <svenjoac@gmx.de>  Fri, 01 Jan 2016 17:27:01 +0100

xterm (320-1) unstable; urgency=medium

  * New upstream release.
    - Amend fix for bug #794201 (report forwarded from Christian Jachmann
      by Emanuel Haupt, Closes: #797008).

 -- Sven Joachim <svenjoac@gmx.de>  Sat, 29 Aug 2015 13:47:23 +0200

xterm (319-1) unstable; urgency=low

  * New upstream release.
    - Correct combination of -ls and -e options for utempter configuration
      (Closes: #794201).
  * Update copy of XTerm FAQ to revision 1.305 (dated 2015/05/01).

 -- Sven Joachim <svenjoac@gmx.de>  Sat, 22 Aug 2015 09:10:05 +0200

xterm (318-2) unstable; urgency=low

  * Upload to unstable.

 -- Sven Joachim <svenjoac@gmx.de>  Sun, 26 Apr 2015 15:32:00 +0200

xterm (318-1) experimental; urgency=low

  * New upstream release.

 -- Sven Joachim <svenjoac@gmx.de>  Wed, 15 Apr 2015 17:33:16 +0200

xterm (317-1) experimental; urgency=low

  * New upstream release.
    - Adapt example for exec-formatted from Lukáš Zapletal's webpage
      to manual (Closes: #780008).
    - Add a short usage section to the xterm manual, including notes
      on setting the window title (Closes: #742477).

 -- Sven Joachim <svenjoac@gmx.de>  Tue, 31 Mar 2015 17:50:42 +0200

xterm (316-1) experimental; urgency=low

  * New upstream release.
    - Add configure option --enable-initial-erase to set ptyInitialErase
      consistently with manpage, as well as adding a table in manpage to
      clarify the relationship between the resources related to the
      backarrow key (Closes: #775952).
  * Refresh Debian patches.
  * Update years in debian/copyright.
  * Update copy of XTerm FAQ to revision 1.293 (dated 2015/02/16).

 -- Sven Joachim <svenjoac@gmx.de>  Sun, 08 Mar 2015 19:17:29 +0100

xterm (314-1) experimental; urgency=low

  * New upstream release.
  * Update copy of XTerm FAQ to revision 1.289 (dated 2014/12/19).

 -- Sven Joachim <svenjoac@gmx.de>  Tue, 30 Dec 2014 18:25:43 +0100

xterm (313-1) experimental; urgency=low

  * New upstream release.
  * Refresh Debian patches.
  * Bump Standards-Version to 3.9.6, no changes needed.

 -- Sven Joachim <svenjoac@gmx.de>  Thu, 04 Dec 2014 18:51:09 +0100

xterm (312-2) unstable; urgency=medium

  * Cherry-pick a patch from xterm 314: change passedPty[] to an
    allocated string to ensure it is long enough for the -S option
    value (Closes: #779397).

 -- Sven Joachim <svenjoac@gmx.de>  Sun, 01 Mar 2015 11:45:01 +0100

xterm (312-1) unstable; urgency=medium

  * New upstream release.
    - Undo change to do_select_regex() in xterm 311 (Closes: #762978).

 -- Sven Joachim <svenjoac@gmx.de>  Mon, 29 Sep 2014 17:16:25 +0200

xterm (311-1) unstable; urgency=low

  * New upstream release.
    - Mention xclip in manpage as an alternative workaround for copying
      clipboard data, noting that selectToClipboard is the recommended
      approach (Closes: #639094).
    - Correct initialization for regular-expression feature of
      exec-selectable and insert-selectable actions.
      Modify logic for exec-formatted and insert-formatted actions to
      ensure that the formatting occurs just after the selection is
      received (Closes: #758633).
    - Account for state of reverse-video in special case of cursor coloring
      (Closes: #759734).
    - Enable the "Escape Sequence" menu entry when an OSC 50 is received.
      Also disable it if the escape sequence specifies no font
      (Closes: #760208).
    - Improve fix for the fontsel menu entry from xterm 304: because the
      recovery used the "current font", it would fail if one first selected
      a valid font, then an invalid font (Closes: #760207).

 -- Sven Joachim <svenjoac@gmx.de>  Mon, 22 Sep 2014 17:55:43 +0200

xterm (310-1) unstable; urgency=low

  * New upstream release.

 -- Sven Joachim <svenjoac@gmx.de>  Sat, 30 Aug 2014 11:26:09 +0200

xterm (308-1) unstable; urgency=medium

  * New upstream release.
    - Correct font used for clipping double-width bitmap fonts from
      xterm 307 changes to work around mis-scaled fonts (Closes: #752047).

 -- Sven Joachim <svenjoac@gmx.de>  Sat, 21 Jun 2014 09:44:01 +0200

xterm (307-1) unstable; urgency=medium

  * New upstream release.
    - Amend fix for Freedesktop bug #15979 (Closes: #750733).
    - Amend resets for keyboard-type, pointer-mode and title-modes
      from xterm 305 changes to account for resource settings
      (Closes: #751351).

 -- Sven Joachim <svenjoac@gmx.de>  Wed, 18 Jun 2014 19:49:57 +0200

xterm (306-1) unstable; urgency=medium

  [ Julien Cristau ]
  * New upstream release.
  * Remove Cyril from Uploaders.

  [ Sven Joachim ]
  * New upstream release.
  * Update copy of XTerm FAQ to revision 1.282 (dated 2014/05/25).

 -- Sven Joachim <svenjoac@gmx.de>  Thu, 05 Jun 2014 17:50:00 +0200

xterm (304-1) unstable; urgency=low

  * New upstream release.

 -- Sven Joachim <svenjoac@gmx.de>  Wed, 07 May 2014 16:50:50 +0200

xterm (303-1) unstable; urgency=low

  * New upstream release.
    - Fix a regression in xterm 302 relating to interaction of SHELL
      and XTERM_SHELL variables (Closes: #740919).

 -- Sven Joachim <svenjoac@gmx.de>  Fri, 07 Mar 2014 18:23:50 +0100

xterm (302-1) unstable; urgency=low

  * New upstream release.
  * Update copy of XTerm FAQ to revision 1.278 (dated 2014/02/24)
    (Closes: #737692).
  * Check GPG signature of upstream tarballs in the watch file.

 -- Sven Joachim <svenjoac@gmx.de>  Tue, 04 Mar 2014 19:55:16 +0100

xterm (301-1) unstable; urgency=low

  * New upstream release.
    - Improve manpage description of scrollbar translations versus
      the vt100 translations (Closes: #723573).
  * Build-depend on autotools-dev to update config.{guess,sub}.
  * Bump Standards-Version to 3.9.5, no changes needed.

 -- Sven Joachim <svenjoac@gmx.de>  Wed, 22 Jan 2014 18:22:12 +0100

xterm (300-1) unstable; urgency=low

  * New upstream release.
    - Avoid infinite recursion and stack overflow in libxcursor
      (Closes: #731269).

 -- Sven Joachim <svenjoac@gmx.de>  Wed, 04 Dec 2013 18:05:01 +0100

xterm (299-1) unstable; urgency=low

  * New upstream release.
  * Add libxcursor-dev to Build-Depends (Closes: #466704).

 -- Sven Joachim <svenjoac@gmx.de>  Mon, 02 Dec 2013 18:58:17 +0100

xterm (298-1) unstable; urgency=low

  * New upstream release.
    - Change default for assumeAllChars resource (Closes: #725682).
    - Amend change from xterm 297 for ASCII-equivalents to ensure that
      missing characters which happen to be double-width are padded to
      the expected number of columns. Also, correct the choice between
      normal/wide Xft fonts used when checking for missing characters
      (Closes: #728949).
    - work around Xcursor library to make pointerColor resource work as
      documented (Closes: #466704).
  * Update copy of XTerm FAQ to revision 1.259 (dated 2013/11/25).
  * Add a debian/rules target to download that FAQ from
    http://invisible-island.net.

 -- Sven Joachim <svenjoac@gmx.de>  Sun, 01 Dec 2013 09:18:00 +0100

xterm (297-1) unstable; urgency=low

  * New upstream release.
  * Enable sixel graphics (Closes: #716660).

 -- Sven Joachim <svenjoac@gmx.de>  Sun, 15 Sep 2013 15:52:21 +0200

xterm (295-1) unstable; urgency=low

  * New upstream release.
    - Amend fix from xterm 292 by removing now-unneeded chunk which
      introduced problem in selection (Closes: #714527).
  * Update debian/copyright.
  * Switch Vcs-* fields to anonscm.debian.org.
  * Update copy of XTerm FAQ to revision 1.243 (dated 2013/07/05).

 -- Sven Joachim <svenjoac@gmx.de>  Sun, 07 Jul 2013 17:30:07 +0200

xterm (293-1) unstable; urgency=low

  * New upstream release.
    - Improve description of initialFont, set-vt-font and set-tex-text
      in manpage (Closes: #707899).
  * Update copyright year in debian/copyright.

 -- Sven Joachim <svenjoac@gmx.de>  Wed, 29 May 2013 17:19:26 +0200

xterm (292-1) unstable; urgency=low

  * New upstream release.
  * Refresh 904_fontops.diff.
  * Update copy of XTerm FAQ to revision 1.229 (dated 2013/05/18).
  * Bump debhelper compatibility level to 9.
  * Use dh_install's --fail-missing option.
  * Convert debian/rules to dh and drop xsfbs.
  * Bump Standards-Version to 3.9.4, no changes needed.
  * Add myself to Uploaders.

 -- Sven Joachim <svenjoac@gmx.de>  Sun, 26 May 2013 11:22:26 +0200

xterm (290-1) experimental; urgency=low

  * New upstream release
  * Drop 100_manpage_whatis.diff, no longer necessary.
  * Drop explicit --with-desktop-category, no longer necessary.
  * Update copy of XTerm FAQ to revision 1.221 (dated 2013/01/26).

 -- Julien Cristau <jcristau@debian.org>  Sat, 23 Feb 2013 16:09:09 +0100

xterm (287-1) experimental; urgency=low

  * New upstream release (closes: #694375)
    - add alternateScroll resource and corresponding control sequences which
      modify the scroll-forw and scroll-back actions: when the alternate
      screen is displayed, wheel mouse up/down will send cursor keys (closes:
      #683942)
    - improve rendering for the case when a Unicode character is absent in the
      bold font but present in the normal font by temporarily falling back to
      the normal font (closes: #359006, #408666)
    - check for misconfigured printerCommand resource on the first use, warn
      and disable it if it does not specify an executable command (closes:
      #691642)
  * Drop upstream patches.
  * Refresh remaining patches.
  * Explicitly set --with-desktop-category to avoid desktop-file-install
    failure.
  * Enable backarrowKeyIsErase in configure instead of 900_debian_xterm.diff.
  * Install png/svg icons.
  * Change xterm.man's NAME section to keep whatis(1) happy.

 -- Julien Cristau <jcristau@debian.org>  Tue, 27 Nov 2012 22:27:28 +0100

xterm (278-4) unstable; urgency=low

  * Update copy of XTerm FAQ to revision 1.199 (dated 2012/11/11).

 -- Julien Cristau <jcristau@debian.org>  Tue, 27 Nov 2012 20:17:49 +0100

xterm (278-3) unstable; urgency=low

  [ Timo Aaltonen ]
  * control: Mark the package as Multi-Arch: foreign.

  [ Julien Cristau ]
  * Apply a few patches recommended by upstream in #694375 (thanks!)
    - amend patch from 278-2 to catch more cases
    - amend fix for Debian #650291 in patch #277 changes to account for
      different data returned by vnc4server (closes: #670638)
    - correct macro definition used for testing modes used in ANSI/DEC
      request-mode controls introduced in patch #262
    - add a null-pointer check in OkPasswd macro to fix a problem in resize
      with Fedora 17 and a serial console (report/patch by Daniel Drake).

 -- Julien Cristau <jcristau@debian.org>  Tue, 27 Nov 2012 19:57:47 +0100

xterm (278-2) unstable; urgency=low

  * Fix crash in Tektronix mode (Closes: #685458).

 -- Cyril Brulebois <kibi@debian.org>  Mon, 27 Aug 2012 02:14:38 +0200

xterm (278-1) unstable; urgency=low

  * New upstream release
    - move call to grantpt before asking utempter to add a record, to work
      with kFreeBSD which does not update the terminal's ownership until this
      point (closes: #652907)
    - document limitation of XIM interface in manpage (see #230787)
    - add four new actions for making the selection or data directly copied
      from the screen: exec-formatted, exec-selectable, insert-formatted,
      insert-selectable (closes: #637001)
    - add eightBitMeta resource to control the features which modify or
      interpret the eighth bit of a key when the meta modifier key is pressed
      (prompted by #326200)
    - improve discussion of eightBitInput in the manpage (prompted by #326200)
    - add a workaround for XAllocColor(), which does not actually allocate "a
      read-only colormap entry corresponding to the closest RGB value
      supported by the hardware", but rather a rough approximation (closes:
      #650291)
  * Update copy of XTerm FAQ to revision 1.180 (dated 2012/02/06).

 -- Julien Cristau <jcristau@debian.org>  Mon, 09 Apr 2012 21:45:01 +0200

xterm (276-2) unstable; urgency=low

  * Team upload.

  [ Julien Cristau ]
  * Pass -DFOO in CPPFLAGS, not CFLAGS.
  * Update copyright year in debian/copyright.
  * Bump Standards-Version to 3.9.2, no changes needed.
  * Remove David Nusinow from Uploaders.
  * Enable hardened build flags through dpkg-buildflags (closes: #653488).
    Based on patch by Moritz Muehlenhoff, thanks!

  [ Sven Joachim ]
  * Update 900_debian_xterm.diff:
    - Disable rmm and smm features in xterm-new rather than xterm, so
      that they do not become enabled in e.g. xterm-256color.

 -- Julien Cristau <jcristau@debian.org>  Sat, 31 Dec 2011 19:00:02 +0100

xterm (276-1) unstable; urgency=low

  [ Timo Aaltonen ]
  * Install .desktop files again. (Closes: #486317, LP: #129041)

  [ Julien Cristau ]
  * New upstream release
    + document limitation of Gtk in connection with xterm's "-into" option, in
      the manpage (LP: #806969)
    + fix regression in command-line parsing introduced in patch #271 changes
      for Debian #629358 (closes: #637910)
  * Don't use dh_testroot in clean.
  * Update 900_debian_xterm.diff to only edit the new xterm+kbs fragment in
    both terminfo and termcap instead of adding an xterm-debian variant to
    change the backspace key behaviour.
  * Update copy of XTerm FAQ to revision 1.168 (dated 2011/09/12).

  [ Sven Joachim ]
  * Update 900_debian_xterm.diff:
    - Add xterm-debian terminfo entry as an alias for xterm.
    - Disable rmm and smm features in xterm terminfo entry to match the
      behavior in ncurses-base (see #574396).

 -- Julien Cristau <jcristau@debian.org>  Sat, 15 Oct 2011 19:38:42 +0200

xterm (271-1) unstable; urgency=low

  * New upstream release
    - amend change for Debian #110226 so that "-h" or "-v" options cause an
      exit, rather than simply printing to stdout while the window is
      displayed (closes: #629358)
    - handle special-case of KeyPress translated to popup-menu action
      (LP: #756273)

 -- Julien Cristau <jcristau@debian.org>  Sat, 23 Jul 2011 13:55:37 +0200

xterm (270-1) unstable; urgency=low

  * New upstream release:
    - Add printModeOnXError and printFileOnXError resources, which allow
      the user to specify that xterm will write the contents of its screen
      to a file if it is exiting due to an X error (Closes: #280457).
    - Fix translations vs. fullscreen initializations to handle a corner
      case (Closes: #612978).

 -- Cyril Brulebois <kibi@debian.org>  Fri, 03 Jun 2011 00:05:53 +0200

xterm (269-1) unstable; urgency=low

  * New upstream release:
    - Make the fullscreen feature configurable (Closes: #612978).

 -- Cyril Brulebois <kibi@debian.org>  Sat, 05 Mar 2011 17:05:05 +0100

xterm (268-1) unstable; urgency=low

  [ Sven Joachim ]
  * Prefer lynx-cur over lynx in Build-Depends.
  * Update xsfbs.
  * Drop useless debian/xterm.dirs.
  * Stop recommending the transitional xutils package.
  * Mention ncurses-base in README.Debian (Closes: #373139).
  * Do not manually gzip the text version of the FAQ, dh_compress can take
    care of that.

  [ Julien Cristau ]
  * Update copy of XTerm FAQ to revision 1.167 (dated 2010/11/25)
  * New upstream release (267)
    + add copy-selection action (request by Timo Juhani Lindfors,
      closes: #588785
  * New upstream release (268)
    + fix an inconsistency of the "Enable Reverse Video" checkbox in the VT
      Options menu.  This also removes a special case added in patch #217
      which limited the effect of the reverseVideo resource (closes: #603808)

 -- Julien Cristau <jcristau@debian.org>  Thu, 10 Feb 2011 18:48:37 +0100

xterm (266-1) unstable; urgency=low

  * New upstream release (Closes: #601103, yay for patience…):
    + Fix a regression in fontname logic from patch #263, thanks to
      Vincent Lefevre (Closes: #600707).
  * Fix watch file: use PASV mode.

 -- Cyril Brulebois <kibi@debian.org>  Wed, 27 Oct 2010 14:23:02 +0200

xterm (264-1) unstable; urgency=low

  * New upstream release:
    + Fix active-icon in specific cases (Closes: #591265).
    + Fix pointer visibility issues (Closes: #594856).
    + Fix segmentation fault with -fb and other options (Closes: #600129).
  * Add myself to Uploaders.

 -- Cyril Brulebois <kibi@debian.org>  Thu, 14 Oct 2010 23:53:57 +0200

xterm (261-1) unstable; urgency=low

  * New upstream release
    + fix regression in renderFont logic, from patch #260 changes
      (closes: #587428)

 -- Julien Cristau <jcristau@debian.org>  Mon, 28 Jun 2010 21:53:28 +0100

xterm (260-1) unstable; urgency=low

  * New upstream release
    + extend renderFont resource to allow deferred switch to TrueType fonts
      without affecting existing resource settings (closes: #585620)
    + change configure script default for --enable-broken-st (i.e., the
      brokenStringTerm feature) to normally enable it.  If the corresponding
      resource is enabled, this feature eliminates an apparent freeze of xterm
      when sending mis-encoded data to the screen (closes: #584801)
    + undo a change to limit-check in ScrnRefresh in patch #257, which broke
      fastScroll feature (closes: #584841)

 -- Julien Cristau <jcristau@debian.org>  Fri, 25 Jun 2010 19:58:38 +0100

xterm (259-1) unstable; urgency=low

  * README.Debian: drop obsolete content, including a link to the old Debian X
    FAQ (closes: #581647).  Thanks, Bob Proulx!
  * Add a NEWS entry about the changed default value for pointerMode (closes:
    #581653).  Request and wording from Bob Proulx, thanks!
  * Refresh 902_windowops.diff and 904_fontops.diff.
  * New upstream release
    + change default for allowScrollLock resource to false, noting that the
      supposedly unused key has been useful for various rebindings
      (closes: #580946)
  * Update copy of XTerm FAQ to revision 1.138 (dated 2010/05/15).
  * Bump copyright year in debian/copyright.

 -- Julien Cristau <jcristau@debian.org>  Sun, 06 Jun 2010 14:39:27 +0200

xterm (258-1) unstable; urgency=low

  * terminfo: derive xterm{16,256,88}-color from xterm-debian (patch by Sven
    Joachim), closes: #547443.
  * New upstream release
    + modify AllocateTermColor() to separate initialization from control
      sequences, fixing problem from patch #254 changes where enabling
      allowSendEvents resource prevents setting cursor color on command-line
      (closes: #572928)

 -- Julien Cristau <jcristau@debian.org>  Sat, 08 May 2010 13:48:12 +0200

xterm (256-1) unstable; urgency=low

  * New upstream release.
  * Delete patch 901_xterm_manpage.diff, the utmp/wtmp paths are now set in
    the manpage at build/install time thanks to upstream changes.
  * Refresh patches 902 and 904.
  * Add build dependency on xorg-docs-core to fix the reference to X(7) in
    xterm(1).
  * Also document the libxkbfile-dev and libutempter-dev build-deps.

 -- Julien Cristau <jcristau@debian.org>  Sun, 14 Mar 2010 20:15:13 +0100

xterm (255-1) unstable; urgency=low

  * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
    good reason.  Thanks, Colin Watson!
  * Add build-dep on libxkbfile-dev for XkbBell(3).
  * Remove myself from Uploaders
  * New upstream release
    + correct logic used to switch to alternate screen using FIFO-lines
      configuration (closes: #565772)
    + improve manpage by checking for actual locations of utmp/wtmp files
      (closes: #562640)
  * Refresh patches 900_debian_xterm.diff, 901_xterm_manpage.diff,
    902_windowops.diff, 904_fontops.diff.
  * Bump Standards-Version to 3.8.4.

 -- Julien Cristau <jcristau@debian.org>  Wed, 03 Mar 2010 14:38:17 +0100

xterm (253-1) unstable; urgency=low

  * New upstream release
    + parenthesize expression in MoreRows macro, fixing a limit check added in
      patch #251 (closes: #560039)
  * Update debian/copyright.
  * Add dependency on ${misc:Depends} (lintian).
  * Refresh patches 900_debian_xterm.diff and 901_xterm_manpage.diff.

 -- Julien Cristau <jcristau@debian.org>  Tue, 29 Dec 2009 12:31:52 +0000

xterm (251-1) unstable; urgency=low

  * New upstream release.
  * Update copy of XTerm FAQ to revision 1.107 (dated 2009/11/11).
  * Upstream introduced a new 'disallowedWindowOps' resource to fine-tune
    which operations are affected by the 'allowWindowOps' setting.  After
    discussion with the security team, change the default for the new resource
    to include all operations.

 -- Julien Cristau <jcristau@debian.org>  Sat, 28 Nov 2009 14:46:51 +0100

xterm (250-1) unstable; urgency=low

  * New upstream release
    + add check and error-message for fonts that have no printable values in
      the ISO-8859-1 range (closes: #542434)
    + limit minimum cell-width for packed font to maximum-advance
      reported by Xft.  Some fonts are wider than that, even in the Latin-1
      range (closes: #550497)
    + correct off-by-one in okPosition fix from patch #249 limit-checks which
      prevented double-click selection on the bottom line of the screen
      (closes: #550368)
    + document in xterm manpage the limited availability of resources color16
      to color255 as noted in patch #188 (LP: #438850)

 -- Julien Cristau <jcristau@debian.org>  Tue, 13 Oct 2009 20:20:08 +0200

xterm (249-1) unstable; urgency=low

  * New upstream release.
    + add limit-checks for result of visual_width() function, needed from
      patch #242 and exposed by #244 changes (closes: #548321).
  * Upstream changed the default of AllowWindowOps to false, remove patch
    903_windowops.diff.
  * Use the upstream default for pointerMode; drop patch
    902_pointermode_never.diff.

 -- Julien Cristau <jcristau@debian.org>  Sun, 04 Oct 2009 15:40:16 +0200

xterm (248-1) unstable; urgency=low

  * New upstream release
    + correct logic used to improve performance of missing-glyph check, which
      did not handle line-drawing characters (closes: #545220)

 -- Julien Cristau <jcristau@debian.org>  Wed, 16 Sep 2009 15:53:07 +0200

xterm (247-1) unstable; urgency=low

  * New upstream release.
  * Bump Standards-Version to 3.8.3.
  * Remove David Martínez Moreno from Uploaders as he hasn't been active on
    this package lately.
  * Kill remaining subversion $Id$ tags from debian packaging files.
  * Use libutempter, remove setgid bit from the xterm binary (closes: #537867).

 -- Julien Cristau <jcristau@debian.org>  Fri, 04 Sep 2009 16:24:35 +0200

xterm (246-1) unstable; urgency=low

  * New upstream release
    + interaction between allowSendEvents and the various allowXXXOps
      resources clarified in manpage (closes: #531597)
    + remove obsolete logic for saving/restoring wrapping flags, which did not
      work on 64-bit platform.  Wrapping flags (stored in the line-index) are
      now copied with line-data (closes: #541160)
    + modify comments in app-defaults files to avoid problem with C
      preprocessor used by xrdb (closes: #541603)
    + restore special case in makeColorPair needed for colorBDMode resource
      (closes: #541089)
    + correct SetLineFlags() macro, broken in patch #244 when recoding to
      avoid gcc-specific bitfields (closes: #541236)
  * The issues with the fifo-lines code should now be fixed, so enable it
    again.

 -- Julien Cristau <jcristau@debian.org>  Sun, 23 Aug 2009 00:35:21 +0200

xterm (244-2) unstable; urgency=low

  * Configure with --disable-fifo-lines to work around a crash in the new
    saved-lines handling code (closes: #541236, #541160, #541132, #541109).
    Thanks to Thomas Dickey for the workaround.

 -- Julien Cristau <jcristau@debian.org>  Wed, 12 Aug 2009 22:25:16 +0200

xterm (244-1) unstable; urgency=low

  * New upstream release
    + remove a limit-check in ptydata.c, allowing Unicode values past 64k to
      be displayed using TrueType fonts (closes: #458432)
    + demote recent (xterm 242) change to Debian #252873 fix to experimental,
      ifdef'd out as EXP_BOGUS_FG (closes: #522141)
    + work around groff mapping of ASCII quotes using macros (requested by
      Reuben Thomas based on Colin Watson advice (closes: #378700)
  * Switch debian/rules to xsfbs instead of copying half of (an outdated
    version of) it (closes: #538594).  Incidentally, this provides
    README.source, and allows us to bump Standards-Version to 3.8.2.
  * Remove preinst dealing with upgrades from pre-etch versions.
  * Remove from postinst some code to fix pre-etch non-released versions.
  * Refresh/update patches.
  * Bump debian/compat to 5, as compatibility level 4 has been deprecated.
  * Remove obsolete debian/README.

 -- Julien Cristau <jcristau@debian.org>  Mon, 10 Aug 2009 16:30:29 +0200

xterm (243-1) unstable; urgency=low

  * New upstream release (closes: #526334)
    + fixes bell regression (closes: #520405)
  * Refresh patch stack.
  * Defaults for allow-{tcap,window,font}ops are now set from debian/rules
    instead of the relevant patches, which now only touch the manpage.
  * Update copy of XTerm FAQ to revision 1.105 (dated 2009/01/11).

 -- Julien Cristau <jcristau@debian.org>  Mon, 25 May 2009 19:58:19 +0200

xterm (242-1) unstable; urgency=low

  * New upstream release.

 -- Julien Cristau <jcristau@debian.org>  Wed, 18 Mar 2009 15:37:18 +0100

xterm (241-1) unstable; urgency=low

  * New upstream release.
  * Drop patch 905_tcapops.diff, allowTcapOps now defaults to false upstream.
  * Refresh patches 901_xterm_manpage.diff, 902_pointermode_never.diff,
    903_windowops.diff, 904_fontops.diff.

 -- Julien Cristau <jcristau@debian.org>  Sun, 01 Feb 2009 00:15:50 +0100

xterm (239-1) unstable; urgency=low

  * New upstream release.
    + correct a cast in input.c, which broke translation of numeric keypad
      codes to pageup, pagedown, etc., on 64-bit platform (closes: #511138).
  * debian/copyright: Update Thomas Dickey's copyright notices

 -- Julien Cristau <jcristau@debian.org>  Sat, 10 Jan 2009 19:22:31 +0100

xterm (238-2) unstable; urgency=low

  * Also default allowTcapOps to false, as suggested by Florian Weimer.

 -- Julien Cristau <jcristau@debian.org>  Sun, 04 Jan 2009 14:57:43 +0100

xterm (238-1) unstable; urgency=low

  * New upstream release.
    + respond to incorrectly formatted DECRQSS with a cancel
      (closes: #510030).  Reference: CVE-2008-2383.
  * Default the allowWindowOps and allowFontOps resources to false, to prevent
    potential security issues.  Thanks to Paul Szabo.

 -- Julien Cristau <jcristau@debian.org>  Sat, 03 Jan 2009 17:35:46 +0100

xterm (237-1) unstable; urgency=low

  * debian/rules: don't fail in patch if the patches are already applied; also
    create the patch stamp in the same way as the other stamp files
    (closes: #498327).  Thanks, Petr Salinger!
  * New upstream release.

 -- Julien Cristau <jcristau@debian.org>  Mon, 15 Sep 2008 16:01:37 +0200

xterm (236-1) unstable; urgency=low

  [ Brice Goglin ]
  * Update patches to not use -p0, closes: #485360.

  [ Julien Cristau ]
  * New upstream release.
    + fixes for vt100-style character sets in UTF-8 mode (LP: #230919)
  * Handle parallel=n in DEB_BUILD_OPTIONS.
  * Don't call dh_makeshlibs.
  * Configure with --enable-dabbrev (closes: #454202).
  * Update copyright date to 2008 in debian/copyright for Thomas E. Dickey's
    contributions.

 -- Julien Cristau <jcristau@debian.org>  Tue, 09 Sep 2008 01:21:27 +0100

xterm (235-1) unstable; urgency=low

  * New upstream release.
    + adjust saved-cursor position if the window is resized while displaying
      the alternate screen (closes: #383384)
    + correct initialization of bold- and wide-, wide-bold fonts which may be
      set via the utf8Fonts subresource (closes: #347790)
  * Refresh patches 901_xterm_manpage.diff and 902_pointermode_never.diff.

 -- Julien Cristau <jcristau@debian.org>  Mon, 21 Apr 2008 02:48:05 +0200

xterm (234-1) unstable; urgency=low

  * New upstream release.
    + fix a case where an incorrect font was freed during initialization
      (closes: #471332)
    + improve resize computation for situations where the negotiation fails,
      by invoking the xterm widget's core-class resize method
      (closes: #365602)
  * Change doc-base section from `XShells' to `Terminal Emulators'; thanks,
    lintian!

 -- Julien Cristau <jcristau@debian.org>  Wed, 19 Mar 2008 15:08:03 +0100

xterm (232-1) unstable; urgency=low

  * New upstream release.
    + corrected logic in a font-cache used for reverse-video
      (closes: #404079)
    + allow building with configure options --disable-ansi-color and
      --disable-leaks (closes: #459817)
    + allow building with configure options --enable-wide-chars and
      --disable-c1-print (closes: #459816)
    + add pointerMode resource to control whether and when the pointer cursor
      is hidden as the user types; also fix it so it's really hidden instead
      of showing a black dot (closes: #460545)
    + add limit-checks to tabs.c, increase maximum column for setting
      tab-stops from 320 to 1024 (closes: #462621)
  * Set pointerMode to "never" by default, to restore pre-230 behaviour.
    Document that change in xterm.man (new patch 902_pointermode_never.diff).
  * Look for luit in /usr/bin, not /usr/X11R6/bin.
  * Refresh patches.
  * debian/control: luit is in x11-utils now, update Recommends and
    Description.
  * Add Vcs-* and Homepage fields in debian/control.  Thanks, Joey Hess!
    (closes: #464947)

 -- Julien Cristau <jcristau@debian.org>  Tue, 19 Feb 2008 21:20:08 +0100

xterm (231-1) unstable; urgency=low

  * New upstream release
    + undo change to getXtermCell() from patch #230 using PACK_PAIR macro
      (closes: #459041, analysis by Caetano Jimenez Carezzato).

 -- Julien Cristau <jcristau@debian.org>  Sun, 06 Jan 2008 10:13:28 +0100

xterm (230-1) unstable; urgency=low

  * New upstream release.
    + do not treat Unicode BIDI control characters as combining characters
      (closes: #457634)
    + correct width-calculation used for adjusting proportional fonts, to work
      with wide-characters (closes: #441354)
    + make missing double-width glyphs display as double-width
      (closes: #456236)
    + fix an ifdef in logic for selecting regular expressions while in a
      narrow-character locale (closes: #449227)
  * koi8rxterm, its manpage and app-defaults file, and the uxterm manpage are
    now upstream, so remove our versions.
  * Bump Standards-Version to 3.7.3 (no changes).
  * Update copy of XTerm FAQ to revision 1.99 (dated 2007-11-29).

 -- Julien Cristau <jcristau@debian.org>  Thu, 03 Jan 2008 12:07:38 +0100

xterm (229-1) unstable; urgency=low

  * Fix typo in uxterm(1) (LP: #128136).
  * New upstream release
    + undo an incorrect fix for a memory leak in patch #209
      (closes: #435858).
  * Stop installing the .desktop files and adapt xterm.menu to the new menu
    structure.
  * Use a separate build dir.
  * Build with -Wall.

 -- Julien Cristau <jcristau@debian.org>  Mon, 13 Aug 2007 16:10:01 +0200

xterm (228-1) unstable; urgency=low

  [ Julien Cristau ]
  * New upstream release
    + fix missing assignment for UTF-8 parsing in widget initialization
      (closes: #403360).
    + correct index expression used to set line-wrapping flag, making
      selection from scrollback work consistently (closes: #430121).
  * Refresh 901_xterm_manpage.diff.

  [ Brice Goglin ]
  * Fix debian/rules to not be confused by ~/.quiltrc or QUILT_PATCHES,
    closes: #369920.

 -- Julien Cristau <jcristau@debian.org>  Mon, 23 Jul 2007 03:43:32 +0200

xterm (226-1) unstable; urgency=low

  [ Branden Robinson ]
  * Remove debian/NEWS; the events it attested to (like the "upcoming 7.0
    modularization" are no longer news, and are in the past.

  [ Julien Cristau ]
  * Configure with --with-tty-group=tty, to prevent security problems in case
    of buggy build environment (closes: #349142).
  * New upstream release.
    + fix  an  infinite  loop  when  showing  a  2-column character in a
      1-column screen (closes: #426863).
    + add  XF86Paste  and  SunPaste  to the default translations
      (closes: #422521, patch by Bernhard R Link).
    + improve  permissions  logic  when  closing pseudo-terminal
      (closes: #12261, patch by Nathanael Nerode, analysis by Richard
      Braakman).
    + add  a check in case someone tries to call the popup-menu() action
      on a menu which is not initialized (closes: #426364).
    + fix error-checking on internal font switching for "Selection" menu
      entry (closes: #421523).
    + amend select/paste change from patch #225 by limiting it to
      non-UTF-8/non-KOI8-R encoding (closes: #420974).
    + add  workaround  for  groff  ".URL" codes which are not present in
      some commonly-used bitmap fonts (closes: #418324).
  * Update reference to xlibs-data in xterm's description, refer to xbitmaps
    instead.
  * Build-depend on desktop-file-utils to install the new desktop files for
    xterm and uxterm, and change debian/rules and debian/xterm.install to
    install these files and the icons.

 -- Julien Cristau <jcristau@debian.org>  Mon, 18 Jun 2007 14:02:22 +0100

xterm (225-1) unstable; urgency=low

  * New upstream release.
    + add initialFont resource to xterm widget, like tek-widget
      (closes: #299669).
    + amend change to boldMode from patch #223 for Debian #347790 which made
      xterm no longer match the documented behavior (closes: #412599).
  * Update and complete debian/copyright.

 -- Julien Cristau <jcristau@debian.org>  Sun, 25 Mar 2007 19:18:41 +0200

xterm (224-1) unstable; urgency=low

  * New upstream release.
    + fix build for GNU/KFreeBSD (closes: #404111).
    + undo a comparison in handle_translated_exposure which did not work
      due  to  X server optimization. That caused the inner border to be
      repainted  with  unexpected  colors when handling a repaint, e.g.,
      after  switching to/from another workspace (closes: #401726).
    + allow  -cr option to override cursor color when -ah option is used
      (closes: #406502).
    + add  a  note  in  xterm's  manpage explaining that the -bw (or -w)
      option  is  only  used  by  the  window manager, if at all
      (closes: #405043).
  * Refresh patch 901_xterm_manpage.diff.
  * Change my email address in debian/control.

 -- Julien Cristau <jcristau@debian.org>  Mon, 12 Feb 2007 00:14:06 +0100

xterm (223-2) unstable; urgency=low

  * No longer disable allowWindowOps in XTerm.ad, as commands are now
    sanitized by xterm (closes: #402917).

 -- Julien Cristau <julien.cristau@ens-lyon.org>  Thu, 14 Dec 2006 17:29:30 +0100

xterm (223-1) unstable; urgency=low

  [ Julien Cristau ]
  * New upstream release. Includes the following fixes for bugs reported in
    the Debian BTS:
    + add the Xaw scrollbar translations resource to the xterm manpage, add an
      example showing how to change the mouse button assignments
      (closes: #382225).
    + amend cell-width computation for FreeType from patch #217, which did not
      work for VT100 line-drawing characters (closes: #399638).
    + revert an optimisation in SGR_Foreground() and SGR_Background from patch
      #209 (closes: #347722).
    + fixes to make the internalBorder area not change color due to
      reverseVideo and/or related exposure events.  The latter was a very old
      bug exposed in patch #196 (closes: #397624).
   * The fix for #347790 is now included upstream.

 -- David Nusinow <dnusinow@debian.org>  Mon,  4 Dec 2006 19:27:21 -0500

xterm (222-3) unstable; urgency=low

  [ Julien Cristau ]
  * Split xterm.doc-base in xterm.doc-base.faq and xterm.doc-base.ctlseqs, to
    make the package installable again, thanks to Ryan Murray
    (closes: #400375).

 -- David Nusinow <dnusinow@debian.org>  Sat, 25 Nov 2006 18:37:22 -0500

xterm (222-2) unstable; urgency=low

  [ Julien Cristau ]
  * Install all manpages with "1" as extension instead of "1x"
    (closes: #346377).
  * Use the x-terminal-emulator.1.gz slave alternative, instead of
    x-terminal-emulator.1x.gz.  We also need to clean up the mess this wrong
    path caused, and make sure that the x-terminal-emulator.1.gz link in
    /usr/share/man/man1/ is still there.  If it disappeared, we add it in
    postinst.  Thanks to Vincent Lefevre and Joey Hess (closes: #349462).
  * Also add the changelog entry for xterm 208-3.1, so that the BTS doesn't
    consider bugs reported against that version as "from other Branch".
    The changes from this NMU have been obsoleted by 210-2.
  * Add patch 903 by Tim Pope <debian-bug@rebelongto.us> to not ignore the
    boldmode setting.  Thanks to Joey Hess <joeyh@debian.org> for reporting
    this issue and to Thomas Dickey for his comments (closes: #347790).

  [ Branden Robinson ]
  * Ship "Xterm Control Sequences" document again, in both GNU Roff and plain
    text formats, and register the latter with doc-base.  (The former is
    easily viewable in a terminal with "groff -Tutf8 ctlseqs.ms | more", so it
    seems useful.)  (Closes: #301173)
  * Update copy of XTerm FAQ to revision 1.90 (dated 2005-11-02).
  * Resync koi8rxterm script with recent upstream changes to uxterm, upon
    which it is based.

 -- David Nusinow <dnusinow@debian.org>  Sat, 25 Nov 2006 12:25:29 -0500

xterm (222-1) unstable; urgency=low

  * New upstream release
    + Refresh patches.
  * Acknowledge NMU (thanks, Christoph!).
  * Update KOI8RXTerm app-defaults, thanks to Thomas Dickey (closes: #384925).
  * Configure with --enable-luit, again thanks to Thomas (closes: #381591).
  * Add an empty binary-indep target in debian/rules, thanks to Aurélien Jarno
    (closes: #395764).
  * Add myself to Uploaders.
  * Bump Standards-Version to 3.7.2.
  * Use "make distclean" instead of "make clean" so that configure-generated
    files are deleted.

 -- Julien Cristau <julien.cristau@ens-lyon.org>  Sun,  5 Nov 2006 14:49:08 +0100

xterm (210-3.1) unstable; urgency=high

  * Non-maintainer upload.
  * Apply patch by Samuel Thibault to disable allowWindowOps in XTerm.ad
    (Closes: #384593).

 -- Christoph Berg <myon@debian.org>  Fri, 15 Sep 2006 16:18:06 +0200

xterm (210-3) unstable; urgency=low

  * Depend on xbitmaps rather than xlibs-data.

 -- David Nusinow <dnusinow@debian.org>  Thu, 13 Apr 2006 00:20:50 -0400

xterm (210-2) unstable; urgency=low

  * Remove useless provides and conflicts with old xutils. Thanks James Troup.

 -- David Nusinow <dnusinow@debian.org>  Thu, 16 Mar 2006 20:05:08 -0500

xterm (210-1) unstable; urgency=low

  * New upstream release (the following are fixes immediately relevant to
    Debian. More are in the upstream changelog)
    + allow cursor to have the same color as foreground (text), since it is
      rendered as reverse (closes: #350664)
    + add TIOCSCTTY ioctl() ifdef'd for __GNU__ to set the controlling
      terminal (closes: #348457)
    + typo in manpage (closes: #351425)
    + revert the XTerm.ad change from patch #208 (closes: #348384)
    + add check to ensure that double-clicking to extend selection will not
      extend it into the scrollback area. This still allows users to scroll
      back and select text (closes: #347415)
   * Remove the 01_stolen_from_HEAD patch, as it is now obsolete
   * Switch build dependency from libxaw8-dev to libxaw7-dev
   * debian/rules clean target now calls make clean instead of distclean
   * Use dh_install's --list-missing option
   * Merge duplicate Provides fields

 -- David Nusinow <dnusinow@debian.org>  Mon, 13 Mar 2006 22:12:41 -0500

xterm (208-3.1) unstable; urgency=low

  * Emergency NMU to fix queue/accepted breakage: s/Provides/Replaces/

 -- Adam Conrad <adconrad@0c3.net>  Thu, 19 Jan 2006 04:41:26 +1100

xterm (208-3) unstable; urgency=low

  * Install everything in /usr/bin, /etc/X11/app-defaults, and
    /usr/share/man/man1. This gives us back the resize program.
    (closes: #345477, #348615, #347553)
  * Add conflicts and replaces to xutils < 6.9.0.dfsg.1

 -- David Nusinow <dnusinow@debian.org>  Tue, 17 Jan 2006 21:24:01 -0500

xterm (208-2) unstable; urgency=low

  * Added 000_stolen_from_HEAD.diff, with last minute changes from Thomas
    Dickey:
    - fix typo in configure script option --disable-narrowproto.
    - Amend CF_X_FREETYPE changes for pkg-config check to ensure that Xft is
      known to that tool.
    - Add an ifdef to allow ./configure --disable-active-icon to work, broken
      by new code for testing memory leaks in #208.
  * Added --disable-imake and --enable-narrowproto to configure line in order
    to deal with toolbar problems due to the absence of NARROWPROTO definition
    (closes: 346398).

 -- David Martínez Moreno <ender@debian.org>  Mon,  9 Jan 2006 08:21:41 +0100

xterm (208-1) unstable; urgency=low

  * New upstream release (patchlevel #208). Main changes follow:
    - Implement logic in termcap query to process multiple parameters as
      documented in ctlseqs.ms
    - Fix buffer size used for termcap query, which was not long enough for
      the terminfo "colors" name.
    - Add menu entry (alt-esc) and corresponding action (alt-sends-esc) to
      toggle the eightBitInput resource setting.
    - Modify computation of rows/columns on resize to avoid extending beyond
      the given limits, e.g., if resizing in response to a "maximize" in
      Gnome or KDE which do not use the window manager hints for this case
      (closes: #289123).
    - Improve error-reporting when chown/chmod of the pseudo-terminal fails.
    - Several changes in the control sequences.
    - Improvements in the configure script.
    - Eliminate a retry for a better-matching bold font, to work around
      recent font server changes.
    - Specify weight for wide font which may be derived from normal
      fontname.
    - Cache the derived wide- and widebolt- fontnames.
    - Modify resource files to make the font-resources a little more specific,
      e.g., changing "*VT100*" to "*VT100.", to make the distinction between
      VT100.font and VT100.utf8Fonts.font sharper, in case a packager modifies
      one of those.
    - Expanded comments in UXTerm.ad regarding the font resources (closes:
      #319179).
    - Add --enable-narrowproto configure option to accommodate Xorg "modular"
      build.
    - Add scrollBarBorder resource.
    - Fix a file-descriptor leak when calling openpty().
    - A hard reset also resets the 132/80 mode.
    - Restore window manager hints after XtMakeResizeRequest() calls.
    - Scroll-down is allowed to be sent while mouse tracking is enabled.
    - Correct size-comparison in HandleInterpret() broken in changes from
      patch #201 to allocate input buffer (closes: #334317).
    - Upstream merged Debian patches 001 and 002 for typos in xterm.
    - Added setuid options.
    - add charClass resource to XTerm.ad and UXTerm.ad which simplifies
      selecting URLs
    - make -iconic option work with toolbar configuration
    - fix memory reallocation for the "UTF-8" menu entry when xterm is started
      using the +u8 option
  * Debian patches 900 and 901 resynced.
  * Clean up xterm.dirs a bit
  * Explicitly call --with-app-defaults (set to /etc/X11/app-defaults) during
    configure

 -- David Nusinow <dnusinow@debian.org>  Fri,  6 Jan 2006 00:23:38 -0500

xterm (204-0pre1) experimental; urgency=low

  * The xterm package has been splitted from the upstream X.Org tree, in
    advance of the upcoming modularization in X.Org 7.0.
  * First release to experimental, in order to test if the transition has been
    successful.
  * Credit is given to X Strike Force for their good work over these years,
    keeping a bunch of old entries from current X.Org changelog.
  * Most of the corresponding code has been imported from the X.Org packages.
    Obviously, debian/rules has been revamped and simplified.
  * New upstream release (patchlevel #204).
    - The mere existence of independent packages for xterm eases the
      identification (i.e. xterm's version). Thus it closes: #324352. Also
      added a patch to version.h in the meanwhile to override the "X.Org
      6.8.2" string in the configure script.
    - Work around quirk in shell which allowed user to "run" uxterm script
      when there was no UTF-8 locale installed by entering "sh -x uxterm".
      Also popup an xmessage to show the problem for users who run this via a
      GUI (closes: #318513).
    - Disallow changes to fonts, toolbar and scrollbar when the vt100 window
      is iconified, to simplify management of the active icon.
    - Fixes to make -geom option work properly with the toolbar configuration
      (Gentoo Bugzilla #90717, #91967).
    - Minor improvements to scrollbar layout.
    - Improve initialization due to utf8 resource by loading the utf8Fonts
      resource in the case where locale resource is false. Also in this case,
      do not disable switching UTF-8 mode on/off.
    - Minor optimization of TrueType font-loading. Load italic font only
      when needed.
    - Correct variable used to store temporary result from lookup of bold
      font, when initializing the wide-bold-font data and no immediate match
      is found by asking for a bold variant of the wide-font. The result was
      to use overstriking rather than the actual bold font (this is the fix
      for #318162, patch by Eugene Konev).
    - Modify initialization of allowSendEvents and allowWindowOps to prevent
      modification with the editres protocol.
    - Add support for interpreting the underline attribute as an italic font
      in Xft mode (patch by Chuck Blake).
    - Improve initialization of toolbar.
    - Fix logic in find_utmp, which did not reset result in getutid(),
      causing an infinite loop in some conditions.
    - Set the _NET_WM_PID property.
    - Change default values for minBufSize and maxBufSize to 4096 and 32768
      respectively so that the initial read request will match the value from
      before changes to use sched_yield().
    - Make paste of UTF-8 faster for Western character sets by checking range
      of incoming data.
    - Added experimental option to allow applications to get or set the
      selection data.
    - Fix an off-by-one error parsing -S/nn option (closes: #311438, thanks to
      Peter Chubb).
    - Fix an initialization bug from patch #201 that broke logging.
    - Amend change to command-line processing in patch #201 to avoid conflict
      with -e option (closes: #318280).
  * debian/control: Removed Conflicts with xbase << 3.3.3.2whatever, and
    suidmanager << 0.50. They are not even in Sarge.
  * The patch structure is basicly the same as in X.Org. The corresponding
    patches from X.Org patch tree have been extracted. Added a change in the
    .TH field of the manpage in order to shut up lintian.
  * Added --enable-256-color to configure (closes: #305540).
  * Moved away things from /usr/X11R6/ to /usr, now that we are free of
    imake's shackles. As a bonus, it removes several lintian warnings. Renamed
    things in debian/xterm.{postinst,prerm}.
  * Added an override file for lintian warning about setgid in xterm.
  * The postinst script is now fixed, and it points to correct manpages
    (closes: #315195).

 -- David Martínez Moreno <ender@debian.org>  Mon,  3 Oct 2005 12:04:44 +0200

xorg-x11 (6.8.2.dfsg.1-4) unstable; urgency=low

  Changes by David Nusinow:

     - Remove README.DGA from xserver-xorg.docs.m68k, mips, mipsel, and arm to
       fix FTBFS.
     - Resolve MANIFEST.mips to fix FTBFS
     - Add missing docs to xserver-xorg.docs.mipsel
     - Incorporate patch from HEAD to include more radeon PCI ID's. Thanks,
       Harald Welte. Closes: #318948.
     - Make the build not fail on MANIFEST check. If there are discrepancies,
       I'd rather have a mostly complete X package than a failure on some
       arches. The failure diff will still be spit out, allowing us to fix the
       problems.

  Changes by Eugene Konev:

     - Update 030_libvgahw_gcc4_volatile_fix.diff to include a complete fix.
       Closes: #318218.

  Changes by David Martínez Moreno

     - Fix xlibmesa-dri.bug.script to attach correct log files

 -- David Nusinow <dnusinow@debian.org>  Mon, 18 Jul 2005 09:34:07 -0400

xorg-x11 (6.8.2.dfsg.1-3) unstable; urgency=low

  Changes by David Nusinow:

     - Change reference to xlibglu1-xorg-dbg to libglu1-xorg-dbg in
       debian/rules (thanks Steve Langasek)
     - Update MANIFEST.in, and missing items to be installed for alpha, arm,
       and m68k
     - Fix incorrect C++ ABI transition. libglu1-xorg is implemented in C++
       but only exports a C ABI, so transitioning it is unnecessary. The
       package now provides both libglu1 and libglu1c2. Thanks to Marcelo
       Magallon and Steve Langasek.
     - Refer to correct config file in xserver-xorg.bug.script (thanks David
       Martínez Moreno)
     - Add 030_libvgahw_gcc4_volatile_fix.diff to work around libvgahw.a gcc4
       breakages. Thanks David Martínez Moreno and Paul Hampson.
       Closes: #318218, #318231, #318271, #318405, #318430
     - dexconf fix for 3 button mouse emulation. Thanks David Martínez Moreno;
       Closes: #318092
     - Turn on SELinux support in xdm. Thanks Manoj Srivastava; Closes: #317024
       - Add libselinux1-dev to Build-Depends
     - Update Danish debconf translations. Thanks to Claus Hindsgaul;
       Closes: #318227
     - Update Czech debconf translations. Thanks to Miroslav Kure;
       Closes: #318323
     - Update Portuguese (Brazilian) debconf translations. Thanks to Andre
       Luis Lopes; Closes: #318635
     - Update German debconf translations. Thanks to Alwin Meschede;
       Closes: #318721

   * Changes by Daniel Stone:
     - Fix S/390 build by bringing MANIFEST and *.install.s390 files up to
       date.
     - Let Xdmx build on S/390 as well.  Move xdmx.install.* files to
       xdmx.install, since they were identical for each architecture.
     - Bring MANIFEST.mips{,el}.in up to date.
     - Bring xserver-xorg.install.{alpha,mips{,el}} up to date.
     - Fix mysterious breakage in the SPARC build by fixing its MANIFEST good
       and proper.
     - Drop libstdc++6-dev dependency entirely, since build-essential will
       bring that in.  Also drop libc6-dev dependency. Closes: #318353

  Changes by Eugene Konev:

     - Add patch 002a_xterm_no_overstrike_bold_fonts.diff to fix xterm bold
       fonts ugliness; Closes: #318162

 -- David Nusinow <dnusinow@debian.org>  Tue, 12 Jul 2005 16:52:39 -0400

xorg-x11 (6.8.2.dfsg.1-2) unstable; urgency=low

  Changes by David Nusinow:

     - Change x-window-system to depend on xprint
       - Change 009 patch to refer to xprint instead of xprt-xprintorg

     - Run debian/rules update-po to update translation templates

     - Drop versioned dependency on libstdc++

     - Update debian/NEWS with a few things

     - Update xlibs-static-dev package description with libXprint* libs (thanks
       Nathanael Nerode)

     - Add 104_sparc_no_mv8_flag.diff to fix a build problem on sparc (thanks
       Julien Cristau)

  Changes by Daniel Stone:

     - Fix FTBFS by only forcing BuildXprintLib building when we're not
       BuildingServersOnly (i.e. only in the normal build, not in -dbg).
     - Change NOT_BUILDING_XFREE86_X_SERVER to _XORG_ in vars.s390 (fixes FTBFS
       also).
     - Add 000_stolen_from_drm.diff from Ubuntu, with annotations, which fixes
       FTBFS when using linux-libc-headers.

 -- David Nusinow <dnusinow@debian.org>  Mon, 11 Jul 2005 20:47:31 -0400

xorg-x11 (6.8.2.dfsg.1-1) unstable; urgency=low

  Changes by David Nusinow:

    - Add missing comma to Build-Depends in debian/control. Thanks to Eugene
      Konev for catching this!

    - Change x-common to x11-common in order to reflect that this package
      provides symlinks named x11

   - Add -f to update-rc.d call in xfree86-common.postinst.in to get rid of
      error during configure stage. Thanks to Norbert Tretowski for providing
      the fix.

   - Disable acceleration on C&T 69000 by default but allow it to be overrided
     by config file. Thanks to Dan Christensen and Nathanael Nerode;
     Closes: #315315

   - Remove svn comments from debian/local xpm pixmaps to unbreak xdm. Thanks
     to Eugene Konev.

   - Disable xprt. Thanks to Eugene Konev!
     - Change x-window-system to depend on xprt-xprintorg (thanks to Drew
       Parsons); Closes: #300974

   - Change debian/po/POTFILES.in to use x11-common templates, not
     xorg-common.templates. Thanks to Eugene Konev

   - Pull the following from Ubuntu Breezy patches to allow gcc4 builds
     - 024d_radeon_fix_gcc4_build.diff (to which I incorporated a one-line fix
       from the 024a_radeon_benh_fixes.diff patch)
     - 991_ubuntu_gcc_flags.diff

    - Package name changes for the C++ ABI transition: (Thanks to Eugene Konev,
      Steve Langasek, and Daniel Stone)
      - xlibmesa-glu renamed to libglu1-xorg; Provides: changed to
        libglu1c2, libglu1c2 added to the Conflicts: and Replaces:
      - libglu1-xorg shlibs changed to libglu1-xorg | libglu1c2
      - xlibmesa-glu-dbg renamed to libglu1-xorg-dbg; xlibmesa-glu-dbg
        added to Conflicts: and Replaces:
      - xlibmesa-glu-dev renamed to libglu1-xorg-dev; depend on
        libglu1-xorg instead of xlibmesa-glu, of course, and add
        xlibmesa-glu-dev to the Conflicts/Replaces/Provides
      - Update x-window-system-core to depend on libglu1-xorg instead of
        xlibmesa-glu
      - Update x-window-system-dev to depend on libglu1-xorg-{dev,dbg}
        instead of xlibmesa-glu-{dev,dbg}
      - Drop the xlibmesa3, xlibmesa3-dbg, and xlibmesa-dev transition
        packages; these existed for the woody->sarge transition, and they
        can't possibly provide a proper transition for anything that
        relies on the C++ ABI, so better to get rid of them altogether
      - Rename all xlibmesa-glu package files accordingly

    - Remove libglu1-xorg-dev's dependency on "libstdc++5-3.3-dev |
      libstdc++-dev": this doesn't actually ensure that the correct C++
      headers are installed, and it's no longer the correct libstdc++
      version anyway.

    - Add patch 915_disable_i915_debugging.diff, to disable non-x86 debug
      statements for this chip. Thanks to Aaron M. Ucko

    - Patch Audit
      - 0000_backport_from_upstream.diff updated
        - Thomas Winischhofer's post-6.8.2 fixes to MiscPassMessage();
          Closes: #285807
      - 000_backport_from_author_xterm.diff ported (Nathanael Nerode)
        - Closes: #297430, #296592, #298551
      - 002_xdm_fixes.diff updated (Eugene Konev)
      - 003b_xfs_fixes.diff ported (Eugene Konev, Nathanael Nerode)
      - 005_rgb.txt_in_etc_X11.diff updated (Nathanael Nerode)
      - 008_fix_xgetpw_macro.diff updated (Eugene Konev)
      - 011_SECURITY_makedepend_safer.diff (Nathanael Nerode)
      - 011a_recognize_glibc_2.3.2_locale_names.diff (Nathanael Nerode)
      - 013a_xkb_symbols_euro_support.diff added (Eugene Konev)
      - 019_iso8859-15_Compose_fix.diff updated (Eugene Konev)
      - 043_ati_r128_update_chip_identification.diff added (Nathanael Nerode)
      - 047_mga_manpage_updates.diff updated
      - 055_lnx_evdev_keyboard.diff updated
      - 067_fix_X11_and_xdm_build_problems.diff ported (Eugene Konev)
      - 089_xkb_fix_symbols_pc_lt.diff got ID tags back
      - 093_xkb_fix_macintosh_problems.diff got macintosh equal key fix ported
      - 099e_xorgconf_manpage_overhaul.diff ported
      - 099h_mesa_tdfx_load_right_glide_library.diff patched to use
          libglide_h3/5 as used in unstable packages.
      - 099q_tdfx_improve_mode_rejection_diagnostics.diff added
      - 099q_xkb_tr_fix_eacute.diff removed
      - 099r_xlsfonts_do_not_spew_usage_on_connection_error.diff added
      - 099s_selinux_support.diff ported
      - 099s_xkb_tr_fix_eacute.diff added
      - 099t_xkb_remove_hidden_attributes.diff ported
      - 099u_mkdirhier_rewrite.diff ported (Eugene Konev, Nathanael Nerode)
      - 099v_fontserver_fix_SEGV.diff ported
      - 099x_xdm_support_logfile_rotation.diff ported
      - 250_m68k_build_scanpci.diff updated
      - 304_arm_Xlib.h_kludge_around_ARM_ABI_brain_damage.diff ported
      - 910_debian_Xserver_RTFF.diff updated
      - 913_debian_remove_code_ref_to_object_code_files.diff ported
        - patch to xc/programs/Xserver/hw/xfree86/drivers/rendition/vboard.c
          re-added to comply with post-sarge SC

 -- David Nusinow <dnusinow@debian.org>  Fri, 24 Jun 2005 10:24:48 -0400

xorg-x11 (6.8.2.dfsg.1-0pre1v1) experimental; urgency=low

  Changes by David Nusinow:

    - Updated packaging to be based off Ubuntu hoary packaging
      - Merge changelog from Ubuntu hoary package to this changelog
      - Change instances of "Ubuntu" to "Debian" in control file
      - Add Daniel Stone to list of Debian package authors in copyright for
        his work on this package. Update branding in general in this file.
      - Update shell-lib.sh to merge changes from current xfree tree
      - Change twm manpage to be set to twm.1x rather than twm.1, as in the
        xfree packaging
      - Re-brand XFree86 to X.Org in README
      - Re-add usr/X11R6/lib/X11/fonts/encodings/large/jisx0208.1983-0.enc.gz
        to xfonts-base.install
      - Merge xfree tree xfree86-common.init in to xorg-common.init
        - Comment out lsb stuff for now, since Debian can't guarantee it.
          Replace logging with echo's like in xfree script.
      - Re-add Branden's copyright to xfs.init
      - Merge changes from xfree tree in to xserver-common.config.in
      - Merge changes from xfree tree to scripts directory:
        - manifest-install-reconcile
        - validate-posix-sh
      - Merge changes from xfree86 tree to local directory:
        - dexconf
        - dexconf.1
        - FAQ.xhtml
          - Fix a freedesktop.org reference to X.Org
        - xterm.faq.html
        - xvfb-run
        - xdm/Xstartup
        - Xsession.d/30xorg-common_xresources
        - xdm.init
        - xdm.logrotate
        - xdm.README.Debian

    - Re-add jisx0208.1983-0.enc.gz to MANIFEST.all's list of font encodings
      until I know more about why it was removed.

    - Re-add the following to MANIFEST.[arch] and xdm.install
      - etc/X11/xdm/Xreset

    - Re-enable various modules for xlibmesa-dri-dbg.install
      - i810 and tdfx for amd64 . Apparently these were supposed to be
        re-enabled according to the changelog
      - i830 and ffb for i386
      - ffb, i810, and i830 for ia64
    - Re-enable various modules for xlibmesa-dri.install
      - i810 for amd64
      - ffb and i830 for i386
      - ffb, i810, and i830 for ia64

    - Handle xlibs-static package split
      - Add libxvmc-dev.install.hurd-i386 file which removes
        usr/X11R6/lib/libI810XvMC.a. Removing
        xlibs-static-dev.install.hurd-386.
      - Add libxxf86vm-dev.install.s390 file which removes manpages. Removing
        xlibs-static-dev.install.s390.
      - Removing xlibs-static-pic-install.[hurd-i386,netbsd-i386,s390] as the
        files which they specifically removed in the past don't appear to be
        shipped any more.

    - Merge and edit control file to refer to XSF

    - Fixes in local
      - Spelling fix in dexconf.1
      - Spelling fix and merge updates in to FAQ.xhtml
      - Merge update to lxterm, uxterm.1, xdm.options.5, XF86Config.7,
        xfs.options.5, Xsession.5, Xsession.options.5, Xwrapper.config.5
      - Re-added Xreset script in local/xdm

    - Branding edit and merges to debian/rules

    - Patch Audit
      - Edited 0000_backport_from_upstream.diff
        - Removed redundant patches that are also in 000_stolen_from_HEAD.diff
      - Edited 000_stolen_from_HEAD.diff
        - Re-diffed Xpm's create.c fix to get it to apply properly
      - Edited 002_xdm_fixes.diff, 003_linux.cf_and_xfree86.cf.diff, and
        068_fix_InstallAppDefFiles_screwage.diff to allow them to apply
        properly with no fuzz

  * Update FAQ to refer to X.Org instead of freedesktop.org where appropriate.
    (Closes: #309811)

  * Change xorg-common to x-common

  * Update lsb-base version requirement to 3.0-1

  Changes by Branden Robinson:

  * Initial release, based upon upstream CVS tag XORG-6_8_2.  See
    debian/copyright for details of material removed due to overlap with
    existing Debian packaging or license terms that fail to satisfy the DFSG.

  * Explain build-dependencies and build-conflicts in debian/control comments.

  * Update build-dependencies relative to xfree86 4.3.0.dfsg.1-12:
    + List upstream build dependencies on commands first, followed by
      upstream build depenencies on library headers, and then Debian packaging
      infrastructure dependencies.
    + Remove no-longer needed build dependencies on libfontconfig1-dev (header
      files not used), libpaperg (superseded by libpaper1, and depended upon
      by tetex-bin nowadays), linux-kernel-headers (depended on by
      build-essential package libc6-dev), bzip2 and dbs (new organization of
      source package will not require these).

  * Backport fixes from upstream CVS trunk:
    + Shut up (tons of) Imake warnings on Debian systems by testing for
      variable being defined before testing its value.  (Presumably the
      fallback definition of NothingOutsideProjectRoot in Imake.tmpl was
      intended to prevent this, but it apparently is not in effect yet
      when linux.cf is parsed.)
    + Fix CAN-2005-0605: scan.c in the Xpm library may allow attackers to
      execute arbitrary code via a negative bitmap_unit value that leads
      to a buffer overflow. (see Debian #298939)

  * Update debian/copyright to correctly document source package name, origin
    of .orig.tar.gz file, and credit David Nusinow as a package author.
    Restore removal of credits to Stephen Early, Mark Eichin, and ISHIKAWA
    Mutsumi as package authors.  Alter Debian "fallback" copyright notice to
    credit copyright from changes in 1996 to Stephen Early, in 1997 to Mark
    Eichin, and for the years since to Branden Robinson.  In the U.S., a
    written instrument is required to transfer copyright, and to the best of
    my knowledge, none of Stephen, Mark, or myself ever signed such an
    instrument.  Remove anti-publicity clause from Debian fallback copyright
    notice as it's not part of the original MIT/X11 license from the 1980s and
    has no force under U.S. copyright law (asserting copyright in something,
    even Free Software, doesn't waive a person's publicity rights anyway).
    Remove duplicate Debian copyright notice for Software in the Public
    Interest, Inc.  Merge change from Debian xfree86 SVN to stop identifying
    the Compugraphic and Adobe fonts from the Xprint server as non-DFSG-free;
    the files have been removed from the upstream archive for another reason,
    namely the existence of the xprint package.

  * Place Ubuntu package changelog entries in changelog.Ubuntu (as they do not
    actually reflect package release history as a Debian user would see it).
    Ship this changelog in /usr/share/doc/xorg-common.

  * Add debian/scripts/missing-keyword-sniffer, which identifies plain text
    files in the source package that are missing Subversion Id keywords or the
    corresponding property.

  * Rework source package to consist of an unpacked source tree, instead of
    shipping a .tar.gz inside the .orig.tar.gz.
    + Add debian/scripts/up-scripts (called automatically by dbs's "setup"
      target), which copies the source tree into build-tree using hardlinks.
    + Update debian/setperms to ensure that up-scripts is executable.
    + Update debian/vars to stop defining SOURCE_DIR variable.
    + Put debian/scripts in PATH and export it from debian/rules, so that dbs
      can find up-scripts.
    + Update target dependencies in debian/rules from "$(patched)" to "setup",
      so that we can be sure up-scripts is run.

  * Make .orig.tar.gz preparation less opaque.
    + Add prune-upstream-tree and make-orig-tar-gz phony targets to
      debian/rules.  (Note that these are not intended for ordinary package
      builds, and have to be manually invoked.)
    + Remove outdated and now-obsolete file debian/scripts/prune-non-free.
    + Add $(SOURCE_NAME) and $(UPSTREAM_VERSION) variables to debian/rules.

  * Update paths to files containg sourceless firmware in debian/copyright.

  * Grab patches from upstream CVS HEAD:
    - Add radeon(4x) manpage updates documenting VGAAccess, ReverseDDC, and
      LVDSProbePLL options.  (Benjamin Herrenschmidt)
      <URL: https://bugs.freedesktop.org/show_bug.cgi?id=2064 >.
    - Add VGAAccess option to r128 driver, based on Benjamin Herrenscmidts's
      radeon patch.  r128 should now work on PowerPCs without "UseFBDev".  To
      use this on PowerPC, make sure you set "UseFBDev" to "false".
      (Alex Deucher)
      <URL: https://bugs.freedesktop.org/show_bug.cgi?id=2089 >.

  * Document DFSG-non-freeness of PolyglotMan ("rman") in debian/copyright.

  * Update patch #058 to give Xcomposite, Xdamage, Xevie, and Xfixes their own
    copies of the config-subst script, instead of hard-coding a within-tree
    path to the copy in the Xcursor library.  (I don't know what the point of
    directing these Imakefiles over to Xcursor's copy was -- there were
    already four identical copies of config-subst in X.Org 6.8.2 anyway, so
    this decision didn't help matters much. :) ) Update the Imakefiles to look
    for config-subst in the current working directory instead of ../Xcursor.
    Convert local includes to system includes in the GLU library and X server
    so that the RENDER protocol headers can actually be found.  Define
    RenderDefines if either BuildRender or HaveRenderLibrary is true, not just
    BuildRender.  Only specify render.h and renderproto.h as targets and
    install renderproto.h as part of the SDK if we're building the extension
    and *don't* have the extension library in the build environment.  Update
    MANIFEST.*.in files to reflect the fact that render.h and renderproto.h
    are no longer installed.

  * Stop removing the debian/local/xlibmesa-drm-source directory in
    debian/rules's clean target, as nothing creates it, and nothing has since
    xfree86 4.3.0-0pre1v3.

  * Add build-dependency on render-dev (>> 1:0.9), since several files
    directly #include render.h and renderproto.h.  Version dependency since
    symbols new to renderext 0.9 are used.  Document dependency in detail in
    debian/control comments.

  * Update patch #908 to stop attempting to install the sourceless microcode
    files associated with the rendition driver, which are not part of the
    source package (see debian/copyright).  Correct
    debian/MANIFEST.{alpha,amd64,hurd-i386,i386,ia64,sparc}.in to reflect the
    absence of these files.  (Other architectures do not build the rendition
    driver.)  Thanks to Jesus Climent for spotting this problem.

 -- David Nusinow <dnusinow@debian.org>  Wed, 22 Jun 2005 11:24:38 -0400