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
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
|
xorg-server (2:1.10.2-2) UNRELEASED; urgency=low
* Bump libgl1-mesa-dri versioned Recommends to 7.10.2-4, to lower the
odds of having a server built against multiarched mesa, installed
along a pre-multiarch mesa. The Breaks in mesa packages take care of
the other way round already.
-- Cyril Brulebois <kibi@debian.org> Thu, 16 Jun 2011 03:39:16 +0200
xorg-server (2:1.10.2-1) unstable; urgency=low
* New upstream release.
* Add 20-workaround-36986.diff to avoid test failures on *i386.
* On GNU/kFreeBSD, enable HAL support for the main build, but disable it
for the udeb build, thanks to Robert Millan (Closes: #596586).
-- Cyril Brulebois <kibi@debian.org> Mon, 30 May 2011 11:37:37 +0200
xorg-server (2:1.10.1.901-1) experimental; urgency=low
* New upstream release (1.10.2 rc1):
- Comes with some Xi fixes.
- Comes with many GLX fixes.
-- Cyril Brulebois <kibi@debian.org> Sat, 07 May 2011 13:27:28 +0200
xorg-server (2:1.10.1-2) unstable; urgency=low
* Build xserver-xorg-core-udeb on hurd-i386. Thanks, Samuel Thibault!
* Upload to unstable.
-- Julien Cristau <jcristau@debian.org> Thu, 28 Apr 2011 13:28:58 +0200
xorg-server (2:1.10.1-1) experimental; urgency=low
* New upstream release.
-- Cyril Brulebois <kibi@debian.org> Tue, 19 Apr 2011 03:08:08 +0200
xorg-server (2:1.10.0.902-1) experimental; urgency=low
* New upstream release (1.10.1 rc2).
-- Cyril Brulebois <kibi@debian.org> Sat, 09 Apr 2011 04:18:28 +0200
xorg-server (2:1.10.0.901-1) experimental; urgency=low
* New upstream release (1.10.1 rc1).
* Relax build-dep and dep on x11proto-randr-dev since the XRandR 1.4
bits were finally reverted upstream.
* Remove patch: 16-construct-paths-in-doxygen.conf.diff (merged
upstream).
* Pass --enable-xcsecurity to the main build to restore the XC-SECURITY
extension, thanks to Stefan Fritsch's report (Closes: #599657).
-- Cyril Brulebois <kibi@debian.org> Wed, 30 Mar 2011 02:22:56 +0200
xorg-server (2:1.9.99.903-1) experimental; urgency=low
* New upstream release candidate (1.10 rc3).
* Remove patch: 17-fix-ftbfs-on-sparc.diff (merged upstream).
* Remove patch: 20-update-gpu-pitch.diff (merged upstream).
* Refresh patch: 07-xfree86-fix-build-with-xv-disabled.diff
* Replace patch fixing out-of-tree-build:
- 16-oot-build.diff (dirty local hack).
+ 16-construct-paths-in-doxygen.conf.diff (from upstream,
without the gitignore hunk to get patching working).
* Bump video ABI version, and serverminver accordingly.
-- Cyril Brulebois <kibi@debian.org> Fri, 25 Feb 2011 15:22:39 +0100
xorg-server (2:1.9.99.902-3) experimental; urgency=low
* Merge from master up to 93a7399370.
* New patch: 17-fix-ftbfs-on-sparc.diff; let's try it for real before
asking for its being merged upstream.
* Refresh all patches.
-- Cyril Brulebois <kibi@debian.org> Wed, 23 Feb 2011 13:36:13 +0100
xorg-server (2:1.9.99.902-2) experimental; urgency=low
* Bump dependency on x11proto-randr-dev, needed since xorg-server.pc
pulls a newer randrproto version.
* Merge from debian-unstable (picking packaging updates from 2:1.9.4-3).
* Mention some basic checks to perform when updating to a new upstream
release, in README.source: ABI bumps and SDK_REQUIRED_MODULES updates.
* Accordingly:
- Bump the x11proto-xext-dev dependency.
- Don't bump the x11proto-kb-dev dependency (even etch had a
sufficient version).
-- Cyril Brulebois <kibi@debian.org> Sun, 20 Feb 2011 07:02:20 +0100
xorg-server (2:1.9.99.902-1) experimental; urgency=low
[ Christopher James Halse Rogers ]
* New upstream release (1.10 rc1)
* Drop 16-xaa-fbcomposite-fix-negative-size.diff, the mod macro that this
patch fixes is no longer used.
* debian/control:
- Bump x11proto-randr-dev and x11proto-xext-dev build-deps to 1.3.99 and
7.1.99 for new XRandR and XSync extension protocols.
[ Julien Cristau ]
* Bump serverminver and ABI versions.
[ Cyril Brulebois ]
* New upstream release (1.10 rc2).
* bug script: Report libGL-related diversions.
* Bump serverminver again, since ABI_XINPUT_VERSION was bumped from 12.0
to 12.2.
* Update debian/copyright from upstream COPYING.
* Add patch to work around out-of-tree issues: 16-oot-build.diff
-- Cyril Brulebois <kibi@debian.org> Sat, 19 Feb 2011 15:29:54 +0100
xorg-server (2:1.9.4-3) unstable; urgency=low
* Maintainer script clean-up:
- xserver-xorg-core.preinst.in: Remove, 1.5 is long gone.
- xserver-xorg-core.postinst.in: Remove, 1.5 is long gone, and 1.7.4
was between lenny and squeeze.
- xserver-xorg-core.postrm.in: Rename as xserver-xorg-core.postrm,
handling upgrades from 1.5 is no longer needed, only keep the logs
removal and the #DEBHELPER# placeholder.
* Move remaining xsfbs bits to debian/rules:
- Create/clean stampdir/.
- Use quilt.make, $(QUILT_STAMPFN), unpatch.
- Define SOURCE_NAME and SOURCE_VERSION.
* Remove debian/xsfbs accordingly.
* Remove reference to xsfbs in README.source accordingly.
* Add patch: 20-update-gpu-pitch.diff (from upstream bug 33929), fixing
issues with the radeon driver (Closes: #613957).
-- Cyril Brulebois <kibi@debian.org> Sun, 20 Feb 2011 05:35:50 +0100
xorg-server (2:1.9.4-2) unstable; urgency=low
* Put an end to the dependency hell! Now that we have proper
dependencies between drivers and the server, remove xserver-xorg from
xserver-xorg-core's Depends (Closes: #362313). In a nutshell, one may
want to choose between installing:
- xserver-xorg-core: the server itself, with no strings attached.
- xserver-xorg: pulls the server and drivers, contains the X wrapper
and some documentation.
- xorg: pulls xserver-xorg as well as various X11 clients and fonts.
* bug script: Report KMS configuration files and their contents.
* bug script: Keep only one lspci call (with proper filtering), which
makes PCI IDs come back.
* bug script: Report libGL-related diversions.
* Stop providing xorg-input-abi-11.0 and xorg-video-abi-8.0 now that
drivers have reached unstable.
* Merge server-1.9-branch up to 0a4b0de9af.
-- Cyril Brulebois <kibi@debian.org> Wed, 16 Feb 2011 23:17:07 +0100
xorg-server (2:1.9.4-1) unstable; urgency=low
* The “squeeze is released, target sid!” upload.
* New upstream release.
* Unfuzzy all patches.
* Get rid of long obsolete NEWS file.
* Replace “--remaining-packages” with “-Nfoo -Nbar” in the “dh_strip -s”
call, to avoid non-stripped binaries if the build is resumed.
* Use “dh_prep” instead of deprecated “dh_clean -k”.
* Bump debhelper build-dep accordingly.
* Introduce dh_xsf_substvars, to be used in driver packages to set
appropriate substitution variables for Depends and Provides, before
calling dh_gencontrol. Ship it in xserver-xorg-dev.
* Also ship a debhelper sequence: xsf.pm, to insert dh_xsf_substvars
before dh_gencontrol. Usage: “dh $@ --with xsf” when using dh.
* Get rid of inputabiver and videoabiver files, they've been deprecated
for a while, and drivers should all have switched by now.
* rules: Only read the first line of debian/serverminver to set the
serverminver variable, used to prepare xinputdep and videodrvdep
files.
* rules: Keep only the major ABI version from pkg-config's output to
build xorg-{input,video}-abi-$ABI. To handle minor ABI versions, we
have the serverminver mechanism.
* To avoid having to binNMU all drivers to update their Depends from
xorg-*-abi-$MAJOR-$MINOR to xorg-*-abi-$MAJOR, add xorg-video-abi-8.0
and xorg-input-abi-11.0 to the server's Provides temporarily (until
the next ABI bump).
* Add ${videoabi}, ${inputabi} to the udeb's Provides. There's no reason
for udebs to have loose dependencies.
* Accordingly, copy server's substvars as udeb's substvars once the
videoabi/inputabi variables are computed.
* Add an abibumpcheck target which checks for xinput and videodrv ABI
updates, based on the versions stored in debian/serverminver; make
clean depend on it to make sure such an update is noticed at the very
beginning of the build.
* Add current versions to debian/serverminver accordingly.
* Remove “xserver” from Provides, it's deprecated.
* Use architecture wildcards for build-deps.
* Make xserver-xfbdev linux-any; add armhf and powerpcspe to the udeb
(Closes: #585697, #605764).
* Cherry-pick, thanks to Samuel Thibault (Closes: #590715):
- xserver: enable TLS even if AIGLX is not enabled
* Update Uploaders list. Thanks, David & Steve & Brice!
* Bump Standards-Version to 3.9.1 (no changes needed).
-- Cyril Brulebois <kibi@debian.org> Sat, 05 Feb 2011 10:40:55 +0100
xorg-server (2:1.9.3.902-1) experimental; urgency=low
* New upstream release (1.9.4 rc2).
* Improve bug script:
- Stop reporting about roster and checksum for config file and server
symlink, they are no longer used.
- Replace printf with echo everywhere, it's slightly more readable and
all lines are newline-terminated anyway.
- Also use a “pecho” (pretty echo) function to underline some strings,
making the output slightly more readable.
- Fix listing xorg.conf.d's contents. Previously, that was only done
if xorg.conf existed.
- Check for local libraries by running ldd on the server.
- Check for obsolete libraries in the same way (/usr/X11R6/lib might
still exist in some cases, and be referenced in /etc/ld.so.conf, so
using ldd is sufficient to find out, see #546836 for an example).
-- Cyril Brulebois <kibi@debian.org> Mon, 31 Jan 2011 14:00:41 +0100
xorg-server (2:1.9.3.901-1) experimental; urgency=low
* New upstream release (1.9.4 rc1).
-- Cyril Brulebois <kibi@debian.org> Sun, 09 Jan 2011 03:10:13 +0100
xorg-server (2:1.9.2.902-1) experimental; urgency=low
* New upstream release (1.9.3 rc2).
* Drop 06_dont_trap_access_to_timer_and_keyboard.diff, merged upstream.
-- Cyril Brulebois <kibi@debian.org> Sun, 05 Dec 2010 02:16:14 +0100
xorg-server (2:1.9.2-1) experimental; urgency=low
* New upstream release.
-- Cyril Brulebois <kibi@debian.org> Wed, 10 Nov 2010 00:10:19 +0100
xorg-server (2:1.9.0.902-1) experimental; urgency=low
* New upstream release (1.9.1 rc2).
* Drop 20-Revert-for-bug-30267.diff, merged upstream.
-- Cyril Brulebois <kibi@debian.org> Sat, 16 Oct 2010 15:24:48 +0200
xorg-server (2:1.9.0.901-1) experimental; urgency=low
[ Christopher James Halse Rogers ]
* New upstream release (1.9.0):
- Fixes crash in DamageUnregister on session close (LP: #343694)
- Fixes crash with extremely large windows exposed by xpdf (Closes: #320627)
* Drop 17-fix-DRI2-segfault-when-clientGone.diff: fixed upstream in more
generality.
[ Cyril Brulebois ]
* New upstream release (1.9.1 rc1).
* Add patch: 20-Revert-for-bug-30267.diff, to fix FTBFS due to test
failures, see https://bugs.freedesktop.org/show_bug.cgi?id=30267 for
reference.
* Bump xutils-dev build-dep for new macros.
* Remove --disable-multibuffer from configure flags, that extension is
gone for real now.
-- Cyril Brulebois <kibi@debian.org> Tue, 12 Oct 2010 22:13:20 +0200
xorg-server (2:1.8.99.905-1) experimental; urgency=low
* Drop recommends on xbase-clients.
* Add xauth to xserver-common recommends.
* Bump Standards-Version to 3.9.0.
* Don't install serverminver, drivers shouldn't use this anymore.
* New upstream release candidate.
-- Julien Cristau <jcristau@debian.org> Sat, 17 Jul 2010 11:13:32 +0100
xorg-server (2:1.8.99.904-1) experimental; urgency=low
[ Julien Cristau ]
* Install the upstream changelog in xserver-common, instead of duplicating
its 1MB in all other packages.
* Stop repacking the tarball: the non-modifiable README.DRI was removed
upstream.
* Bump build-deps on x11proto-core-dev, x11proto-dri2-dev, libxfont-dev.
* Bump xserver-xorg-dev dependency on x11proto-core-dev and
x11proto-dri2-dev, add dependency on x11proto-xinerama-dev.
* Bump serverminver, videoabiver, inputabiver.
[ Christopher James Halse Rogers ]
* New upstream RC
- A number of DRI2 fixes.
- Fix for hanging OpenGL clients with multiple heads.
* 17-fix-DRI2-segfault-when-clientGone.diff:
- Pick up fix from https://bugs.freedesktop.org/show_bug.cgi?id=27497 to
fix server crash in DRI2SwapEvent handling (LP: #595182).
-- Julien Cristau <jcristau@debian.org> Fri, 09 Jul 2010 12:45:09 +0100
xorg-server (2:1.8.1.901-1) experimental; urgency=low
[ Julien Cristau ]
* New upstream release
* Merge changes from 2:1.7.7-2.
[ Christopher James Halse Rogers ]
* 16-xaa-fbcomposite-fix-negative-size.diff:
- mi hunk merged upstream. Update to keep just the fbpict.c hunk.
-- Julien Cristau <jcristau@debian.org> Mon, 07 Jun 2010 23:22:48 +0200
xorg-server (2:1.8.1-1) experimental; urgency=low
* New upstream release
- 02_Add-libgcrypt-and-libnettle-as-options-for-sha1.diff: partly merged
upstream, rest renamed to 02_Add-libnettle-as-option-for-sha1.diff and
ported to new version
- 05_only_call_gamma_set_if_nonnull.diff: merged upstream
- 07-xfree86-fix-build-with-xv-disabled.diff: rediffed
- 08-config-xorg-conf-d.diff: merged upstream
- 09-inputclass-sans-abi9.diff: likewise
- 10-config-libudev-backend.diff: likewise
- 11-xfree86-fix-video-fallback.diff: likewise
- 12-xfree86-dont-complain-about-missing-coredevices.diff: likewise
- 13-unbreak-input-abi.diff: obsolete
- 14-tone-down-nidr-errors.diff: merged upstream
- 15-nouveau.diff: rediffed
- 17-xfree86-saner-conf-search-paths.diff: merged upstream
- 18-Add-10-evdev.conf.diff: likewise
* Bump xutils-dev build-dep for new macros.
* Add build-dep on xfonts-utils for fontutil.pc.
* Bump build-deps on mesa, glproto and dri2proto.
* Drop obsolete configure options --disable-xsdl and
--disable-null-root-cursor.
* --enable-werror has been replaced by --enable-strict-compilation, adjust
rules.
* xdmx-tools.install: xdmx was renamed to dmxinfo.
* Bump debian/serverminver and ABI versions.
-- Julien Cristau <jcristau@debian.org> Wed, 12 May 2010 18:01:39 +0200
xorg-server (2:1.7.7-2) unstable; urgency=low
* autoconfig: load the nouveau driver for nvidia hw. Stolen from F13.
* Try to catch non-event devices when running udevadm info in the bug
script.
* Pull from upstream server-1.7-nominations branch
- dix: make DeviceEvent coordinates signed for Xinerama (closes: #581763)
- xfree86: dga needs to use the master keyboard state (closes: #576393)
- Fix null pointer dereference in xf86_reload_cursors (closes: #507916)
-- Julien Cristau <jcristau@debian.org> Thu, 03 Jun 2010 17:00:18 +0200
xorg-server (2:1.7.7-1) unstable; urgency=low
[ Timo Aaltonen ]
* Update patch 17; Add missing __datadir__ to cpprules.in.
[ Cyril Brulebois ]
* Add listing files under /etc/X11/xorg.conf.d in bug script.
* Fix typo in 10-mouse.conf: s/Mouse/Pointer/ (Closes: #579130).
[ Julien Cristau ]
* Drop the GLX 1.4 patches to fix server crashes with DRI2 (closes:
#567677).
* Change driver ABI Conflicts to Breaks. Drop old Conflicts/Replaces on
pre-modular xserver packages.
* Unset PRERELEASE to avoid the prerelease warning in the log.
* New upstream release:
- fixes Xvfb crash with XI2 (closes: #575905)
- EXA: Check sys_ptr isn't NULL before passing it to the UploadToScreen
hook (closes: #576656)
* 19-exa-handle-pixmap-create-destroy-in-lower-layers.diff is now upstream,
remove it.
* Drop mention of input_id from debian/copyright since we stopped shipping
it a while back.
-- Julien Cristau <jcristau@debian.org> Tue, 04 May 2010 15:17:59 +0200
xorg-server (2:1.7.6.901-3) unstable; urgency=low
[ Julien Cristau ]
* On !linux, install mouse and kbd catchall snippets in the xorg.conf.d
directory. Fixes FTBFS on those archs.
[ Cyril Brulebois ]
* Cherry-pick “exa: handle pixmap create/destroy in lower layers” which
fixes server crashes when pixmaps are created in the course of
software fallbacks (Closes: #576816). Many thanks to Arthur Marsh for
the tests!
-- Cyril Brulebois <kibi@debian.org> Mon, 19 Apr 2010 15:26:15 +0200
xorg-server (2:1.7.6.901-2) unstable; urgency=low
* Fix dependency generation: Replace PKG_CONFIG_DIR with PKG_CONFIG_PATH
(/usr/share/xserver-xorg/{videodrv,xinput}dep may lack a version
otherwise).
-- Cyril Brulebois <kibi@debian.org> Sat, 17 Apr 2010 18:38:17 +0200
xorg-server (2:1.7.6.901-1) unstable; urgency=low
* New upstream release candidate.
- Fix crash when all glyphs of a given depth are freed, but not all
glyphsets (closes: #568533)
[ Cyril Brulebois ]
* Steal patch 112_xaa-fbcomposite-fix-negative-size.patch from ubuntu,
and rename it 16-xaa-fbcomposite-fix-negative-size.diff as it's now
applied in Debian as well. It fixes arithmetic bugs in mod(); thanks to
Bryce Harrington.
* Merge 'xsfbs/debian-unstable' to fix target dependencies, which fixes
useless rebuilds.
* Add support for “noudeb” in DEB_BUILD_OPTIONS to disable building the
udeb flavour (even on architectures where udebs are supposed to be
built) to speed up debug builds. When this is used, the udeb is still
built, but rather empty…
* Modify bug script to include kernel version (from /proc/version) since
the uname in Xorg.*.log might not give enough details (like the Debian
revision).
[ Julien Cristau ]
* Remove from debian/rules an obsolete reference to
/usr/share/debhelper/dh_make/debianm/rules.
* Make xserver-xorg-core provide ABI-versioned virtual packages for drivers
to depend on. This is a first step in making our ABI handling saner (see
#573371).
* xvfb-run: don't rely on /tmp/X$i-lock to bump $SERVERNUM in auto-servernum
mode (closes: #577195). Thanks, Jozef Kutej!
* Bump serverminver for new handling of input config.
* Add Breaks on input drivers installing files in /usr/lib/X11/xorg.conf.d
since we're changing the path.
* Stop looking for x11_driver property in udev, since we're migrating the
drivers over to xorg.conf.d anyway.
* Install 10-evdev.conf in /usr/share/X11/xorg.conf.d (from upstream, patch
18-Add-10-evdev.conf.diff).
[ Timo Aaltonen ]
* Add 17-xfree86-saner-conf-search-paths.diff. Allows using another
xorg.conf.d directory for local changes.
-- Cyril Brulebois <kibi@debian.org> Sat, 17 Apr 2010 16:55:39 +0200
xorg-server (2:1.7.6-2) unstable; urgency=low
[ Timo Aaltonen ]
* Add 08-config-xorg-conf-d.diff, 09-inputclass-sans-abi9.diff,
10-config-libudev-backend.diff. Backport xorg.conf.d, inputclass
and libudev support from xserver 1.8. Replaces the patches we had
before. This allows us to migrate from a temporary udev based
input device configuration straight to the long term solution
introduced in 1.8.
* Add 11-xfree86-fix-video-fallback.diff from SUSE. Allows the video
fallback method to work when there's an xorg.conf around.
* Add 12-xfree86-dont-complain-about-missing-coredevices.diff.
No reason to complain about these, unless AEI is off.
* Add 13-unbreak-input-abi.diff. Keep the old NewInputDeviceRequest(),
rename the new as NIDR18() and call it from NIDR(). This way we
don't break the input ABI.
* Add 14-tone-down-nidr-errors.diff. Use X_INFO instead of X_ERROR.
[ Julien Cristau ]
* 15-keep-udev-x11-driver.diff: keep looking for the x11_driver udev
property as a transitional measure. This should allow the new server to
work while drivers aren't transitioned to xorg.conf.d yet.
-- Timo Aaltonen <tjaalton@ubuntu.com> Tue, 30 Mar 2010 21:32:52 +0300
xorg-server (2:1.7.6-1) unstable; urgency=low
[ Brice Goglin ]
* Add 06_dont_trap_access_to_timer_and_keyboard.diff,
thanks Samuel Thibault.
[ Timo Aaltonen ]
* New upstream release, closes: #574354.
[ Julien Cristau ]
* Don't build xserver-xorg-core-udeb on sparc. The linker fails because
relocations have to be truncated when building statically against
libnettle.
-- Cyril Brulebois <kibi@debian.org> Tue, 23 Mar 2010 16:59:08 +0100
xorg-server (2:1.7.5.902-1) unstable; urgency=low
[ Julien Cristau ]
* config/udev: fix adding unnamed devices.
* Build two flavours, one for the main package and one for the udeb.
* Add patch to fix Xorg build with XV disabled.
[ Timo Aaltonen ]
* Add 16-config-dont-filter-input-subsys.diff so for instance serial
wacom devices are initialized by the udev backend (LP: #522318,
closes: #568236).
[ Brice Goglin ]
* New upstream release.
+ Allow for missing or disabled compat_output, closes: #572268, #554450.
+ Reenable RECORD extension, closes: #570680.
+ dix: try to ring the bell even if the current device doesn't have one,
closes: #564200.
* Refresh patches.
* Fix typo in xvfb-run.1, thanks Joey Hess, closes: #527490.
* Add 06_dont_trap_access_to_timer_and_keyboard.diff,
thanks Samuel Thibault.
[ Cyril Brulebois ]
* Add udeb needed for the graphical installer: xserver-xorg-core-udeb.
* Version/Bump some B-D to make sure xserver-xorg-core-udeb gets its
dependencies on the (recently-added) udebs rather than on the
libraries:
- libpciaccess-dev
- libudev-dev
- libxau-dev
- libxfont-dev
* Replace 02_Add-libgcrypt-as-an-option-for-sha1.diff with
02_Add-libgcrypt-and-libnettle-as-options-for-sha1.diff so that it's
also possible to link against libnettle. Link (unconditionally)
statically against libnettle.a to avoid an extra udeb for a few bytes.
* Add nettle-dev to Build-Depends; and pass --with-sha1=libnettle for
the udeb build (and --with-sha1=libgcrypt for the main build).
* Add myself to Uploaders.
* Tweak builderstring to use the name of the person responsible for the
upload instead of an host-specific one (Closes: #574017).
-- Cyril Brulebois <kibi@debian.org> Mon, 15 Mar 2010 22:19:01 +0100
xorg-server (2:1.7.5-1) unstable; urgency=low
[ Julien Cristau ]
* Remove myself from Uploaders
[ Brice Goglin ]
* New upstream release.
+ Restore lastDeviceEventTime update in dixSaveScreens,
closes: #563816.
+ Don't double-swap the RandR PropertyNotify event,
closes: #569036.
+ Xi: reset the sli pointers after copying device classes,
closes: #566147.
* Bump Standards-Version to 3.8.4.
-- Brice Goglin <bgoglin@debian.org> Tue, 16 Feb 2010 08:00:27 +0100
xorg-server (2:1.7.4-2) unstable; urgency=low
[ Julien Cristau ]
* Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
good reason. Thanks, Colin Watson!
[ Brice Goglin ]
* Add 05_only_call_gamma_set_if_nonnull.diff to unbreak the nv driver,
closes: #564203.
-- Brice Goglin <bgoglin@debian.org> Wed, 20 Jan 2010 23:51:26 +0100
xorg-server (2:1.7.4-1) unstable; urgency=low
[ Timo Aaltonen ]
* New upstream release.
[ Julien Cristau ]
* Don't call config_init() until after InitInput() has initialized the event
queue, so that devices don't get enabled too early (closes: #564256,
#564324).
-- Julien Cristau <jcristau@debian.org> Tue, 12 Jan 2010 10:49:22 +0000
xorg-server (2:1.7.3.902-1) unstable; urgency=low
[ Timo Aaltonen ]
* Run udevadm trigger on postinst, and depend on udev [linux-any].
[ Julien Cristau ]
* Add xserver-common dependency on x11-xkb-utils for xkbcomp.
* Remove our copy of input_id, add Depends on new enough udev instead.
* New upstream release.
* Make xserver-common recommend xfonts-base, some clients don't work without
those.
* Upload to unstable.
-- Julien Cristau <jcristau@debian.org> Wed, 06 Jan 2010 17:44:59 +0000
xorg-server (2:1.7.3.901-1) experimental; urgency=low
[ Julien Cristau ]
* Enable GLX 1.4 on DRI2 and swrast (from upstream, via F12).
* xserver-xorg-dev: add Depends on x11proto-kb-dev and libxkbfile-dev for
xkbsrv.h (closes: #559676). Thanks, Ron!
* Update input_id to the version in udev 149.
* Update xserver-xorg-core bug script to run udevadm info instead of lshal.
[ Brice Goglin ]
* New upstream release.
+ Refresh patches.
-- Brice Goglin <bgoglin@debian.org> Sat, 12 Dec 2009 17:46:45 +0100
xorg-server (2:1.7.2-2) experimental; urgency=low
[ Julien Cristau ]
* debian/rules: upstream build system got fixed, no need to remove
configure-generated files.
* Steal input_id helper from udev, install it in /lib/xorg. Thanks, Martin
Pitt!
[ Brice Goglin ]
* Cherry pick upstream commit to fix the ABI.
-- Brice Goglin <bgoglin@debian.org> Mon, 30 Nov 2009 20:10:27 +0100
xorg-server (2:1.7.2-1) experimental; urgency=low
* New upstream release
+ Xorg sets umask to 022 (closes: #555308)
* Delete 09_debian_xserver_rtff.diff. Was disabled since 1.3.99, and is not
necessary since the fall back to builtin fonts was added.
* Change the server's dependency on xserver-common to >= ${source:Version},
to allow installation of different versions of the various servers.
* Add build-dep on libglib2.0-dev, xkb-data and x11-xkb-utils for unit
tests, and run the tests unless nocheck is in DEB_BUILD_OPTIONS.
* Cherry-pick upstream commit to turn ModeDebug on during server startup,
replacing our Turn-on-ModeDebug-by-default.patch.
* Number our patches to make it easier to keep track of things. Requested
by the Ubuntu folks.
* xvfb-run: retry a few times if Xvfb can't be started when using
--auto-servernum, to make concurrent invocations work (closes: #521075).
Thanks, Kees Cook!
* Use libudev instead of libhal for input hotplug on linux.
* Add udev rule to get keymap from /etc/default/keyboard.
-- Julien Cristau <jcristau@debian.org> Sat, 28 Nov 2009 16:48:43 +0100
xorg-server (2:1.7.0-1) experimental; urgency=low
* Add missing Conflicts on xserver-xorg-video-5 and xserver-xorg-input-4.
* Add xkb-data to xserver-common's Depends. XKB is mandatory in 1.7.
* Make all servers depend on xserver-common (= ${source:Version}).
* New upstream release
+ fixes Xvfb crashes (closes: #529927)
+ fixes DGA init crash (closes: #548716)
-- Julien Cristau <jcristau@debian.org> Sun, 04 Oct 2009 15:57:01 +0200
xorg-server (2:1.6.99.903-1) experimental; urgency=low
* New upstream snapshot.
+ doesn't fill log file with errors when acpid isn't running
(closes: #487904, #500583)
+ adds autoconfig for geode variants (closes: #544988)
+ fixes idle time computation (closes: #542064)
+ Xnest uses the host's mouse acceleration and speed (closes: #325181)
+ Xephyr now has a manpage (closes: #427121)
+ Xdmx works again (closes: #541254)
* Update build deps
* Update patch stack:
- 20_hurd-i386.diff applied upstream
- fedora-bad-fbdev-thats-mine.patch applied upstream
- fedora-pci-primary.diff superseded upstream
- fedora-vboxvideo.diff applied upstream
- kfreebsd-ftbfs.diff applied upstream
- Add-libgcrypt-as-an-option-for-sha1.diff refreshed
- Turn-on-ModeDebug-by-default.patch refreshed
* Cleanup some libtool cruft in debian/rules clean.
* Bump serverminver, videoabiver and inputabiver.
* Bump debhelper compat level to 5:
- handle dh_strip behaviour change
- fix xserver-xorg-core.install
* Bump Standards-Version to 3.8.3.
-- Julien Cristau <jcristau@debian.org> Tue, 29 Sep 2009 17:51:05 +0200
xorg-server (2:1.6.4-1) unstable; urgency=low
* New upstream release.
* Update 20_hurd-i386.diff, thanks Samuel Thibault, closes: #548606.
* Drop render-return-the-supported-version.patch, applied upstream.
-- Brice Goglin <bgoglin@debian.org> Mon, 28 Sep 2009 07:23:07 +0200
xorg-server (2:1.6.3.901-1) unstable; urgency=low
[ Julien Cristau ]
* Add patch stolen from Fedora to add the vboxvideo driver to the
autodetection routine (closes: #540884).
* Add built-ins to the default font path so that non-Xorg servers can use
them (closes: #542707). Thanks, Josselin Mouette!
* Add avr32 to the libselinux-dev/libaudit-dev build-deps (closes: #543540).
Thanks, Bradley Smith!
* Add patch to return the actually supported version in RenderQueryVersion
rather than whatever renderproto version the server built against.
* New upstream release.
+ idle counter computation fixes (closes: #542064)
* Cherry-pick three more patches nominated on
http://www.x.org/wiki/Server16Branch:
- Don't reset the lastDeviceEventTime when doing DPMS actions
- dri2: Don't crash if pPriv is NULL
- EXA: Only take special code path for 1x1 fill for pixmaps
[ David Nusinow ]
* Update xsfbs to 5693792171d885769e58dcccc053c08b11acd12a
-- Julien Cristau <jcristau@debian.org> Mon, 14 Sep 2009 15:33:46 +0200
xorg-server (2:1.6.3-1) unstable; urgency=low
* New upstream release.
-- Brice Goglin <bgoglin@debian.org> Sat, 01 Aug 2009 08:55:40 +0200
xorg-server (2:1.6.2.901-1) unstable; urgency=low
* New upstream release candidate.
* Bump mesa Build-Depends to >= 7.5 to fix DRI2 madness again,
closes: #538637.
-- Brice Goglin <bgoglin@debian.org> Mon, 27 Jul 2009 00:17:42 +0200
xorg-server (2:1.6.2-1) unstable; urgency=low
[ Brice Goglin ]
* New upstream release.
+ Fixes dri2 madness introduced in previous upload
(closes: #534522, #536019, #534766, #534771, #534890).
+ Fixes xkb bogus length in write keyboard desc, closes: #529625.
+ Fixes SWCursor being multiply rendered, closes: #526260.
+ Drop Change-default-for-ExaOptimizeMigration-to-false.diff,
applied upstream.
+ Pull upstream server-1.6-branch up to commit 606f6dba.
* Bump serverminver to 2:1.6.2 for the dri2 upstream changes in the
previous upload.
[ Julien Cristau ]
* Bump xserver-xorg-dev's dependency on dri2proto to >= 2.1 for the same
reason.
* Don't set PCI_TXT_IDS_DIR, we don't use that anymore.
* xserver-xorg-core.bug.script: add a newline between X log and lshal
output.
-- Brice Goglin <bgoglin@debian.org> Mon, 13 Jul 2009 23:35:13 +0200
xorg-server (2:1.6.1.901-3) unstable; urgency=low
[ Julien Cristau ]
* xvfb-run: don't pass the magic cookie to xauth on the command line
(CVE-2009-1573; closes: #526678). Thanks, Loïc Minier!
* xvfb-run: use mktemp to create the temporary directory.
* Change default for ExaOptimizeMigration to false. This option still
causes visual corruption in some cases. Thanks, Michel Dänzer!
* Only include hal info for keyboards, mice, touchpads and tablets in the
bug script.
* In the bug script, grep dmesg for agp in addition to drm.
* Add patch stolen from Fedora to disable the fbdev driver when it's loaded
together with a PCI or SBUS driver, instead of calling FatalError (closes:
#508476).
* Add patch stolen from Fedora to try and detect the primary PCI device by
mapping the legacy VGA bios and comparing the vendor and device ids.
Previously if there was more than one VGA device and the config didn't
specify BusIDs, the server would just fail to start, so this hack should
improve things.
* Update configure options:
+ use --enable-xvfb instead of --enable-vfb
+ drop --disable-builtin-fonts, --enable-xtrap, --disable-kdrive-vesa,
--disable-lbx, --disable-xprint, --disable-xorgconfig, --disable-xorgcfg
which don't exist anymore
+ use --disable-config-hal and --disable-dri on hurd-i386
+ reorder options to match configure.ac, and use explicit
--enable/--disable instead of using the defaults / autodetection
* Don't recommend xfonts-base. libXfont provides builtin versions of the
fixed and cursor fonts, which are the only required ones. Keep xfonts-*
packages in Suggests for xserver-xorg-core.
* Bump Standards-Version to 3.8.2 now that we have README.source.
* Drop Build-Conflicts on xlibs-static-dev; it's only in oldstable at this
point.
* Pull from upstream server-1.6-branch as of June 23rd (commit dbac41b).
* Bump build-dep on dri2proto to 2.1 for new protocol.
* Bump build-dep on libselinux1-dev to 2.0.80 for avc_netlink_acquire_fd.
[ David Nusinow ]
* Add README.source
-- Julien Cristau <jcristau@debian.org> Tue, 23 Jun 2009 19:52:10 +0200
xorg-server (2:1.6.1.901-2) unstable; urgency=low
* Merge from upstream server-1.6-branch (commit a9f85dce).
* Fix FTBFS on kfreebsd (closes: #525475). Thanks, Petr Salinger!
-- Julien Cristau <jcristau@debian.org> Thu, 14 May 2009 17:37:40 +0200
xorg-server (2:1.6.1.901-1) experimental; urgency=low
* New upstream development release
+ fixes crash in CheckMotion with xinerama (closes: #524853)
+ Refresh 20_hurd-i386.diff
[ Brice Goglin ]
* Add 20_hurd-i386.diff to fix FTBFS on hurd-i386,
thanks Samuel Thibault! (closes: #523970)
[ David Nusinow ]
* Have the reportbug script append lshal and drm info.
The drm info comes from grepping dmesg output.
[ Julien Cristau ]
* Properly initialize libgcrypt in the libgcrypt patch (closes: #524822).
Thanks, Sven Joachim!
-- David Nusinow <dnusinow@debian.org> Mon, 11 May 2009 21:50:37 -0400
xorg-server (2:1.6.1-1) unstable; urgency=low
[ Julien Cristau ]
* Disable dri2 on hurd-i386. Thanks, Samuel Thibault!
[ Brice Goglin ]
* New upstream release.
-- Brice Goglin <bgoglin@debian.org> Wed, 15 Apr 2009 13:30:51 +0200
xorg-server (2:1.6.0-1) unstable; urgency=low
[ David Nusinow ]
* Add 0001-xorg.conf-5-refer-to-mousedrv-4-.-Debian-394058.patch to
refer to correct (semi-obsolete) mouse driver manpage.
closes: #394058
[ Julien Cristau ]
* New upstream release.
* 0001-mi-force-the-paired-kbd-device-before-CopyKeyClass.patch: remove,
included upstream.
* Turn on ModeDebug by default.
* Use libgcrypt for SHA1 instead of OpenSSL's libcrypto.
* Build the xselinux extension on Linux architectures.
* Remove build-dependencies on x11proto-evie-dev, x11proto-trap-dev,
x11proto-xf86misc-dev; the corresponding extensions are removed.
* Remove build-dependencies on x11proto-print-dev, libfreetype6-dev and
xfonts-utils since we don't build Xprt anymore.
* Fix lintian warnings about xserver-xorg-core.NEWS formatting.
* Move -dbg package to new section debug, add ${misc:Depends} where missing.
* Remove unused 06_use_proc_instead_of_sysfs_for_pci_domains.diff, obsoleted
by pci-rework.
* Merge changelog entries 2:1.4.2-9 to 2:1.4.2-11.
* Upload to unstable.
-- Julien Cristau <jcristau@debian.org> Thu, 09 Apr 2009 00:36:40 +0100
xorg-server (2:1.5.99.902-1) experimental; urgency=low
* New upstream release candidate.
* xserver-xorg-core.install: there are no more font modules.
* 0001-mi-force-the-paired-kbd-device-before-CopyKeyClass.patch: new patch,
fixes a crash with some multimedia keyboards (closes: #513384).
-- Julien Cristau <jcristau@debian.org> Sat, 31 Jan 2009 19:32:31 +0100
xorg-server (2:1.5.99.901-2) experimental; urgency=low
[ Julien Cristau ]
* Bump libdrm-dev build-dep to help out sbuild.
[ Timo Aaltonen ]
* debian/rules: Disable builtin fonts (LP: #308649, closes: #512706)
-- Julien Cristau <jcristau@debian.org> Fri, 23 Jan 2009 21:16:14 +0100
xorg-server (2:1.5.99.901-1) experimental; urgency=low
* New upstream release candidate.
+ adds autodetection of sbus devices (closes: #483942).
Thanks, Bernhard R. Link!
+ RandR version 1.3 adds panning (closes: #509699).
+ fixes a crash with XAA and fb24_32ReformatTile (closes: #443480).
+ correctly sets RAW mode on the console when xorg.conf is absent
(closes: #505746).
[ Timo Aaltonen ]
* debian/control:
- Add x11proto-dri2-dev to build-depends.
- Bump the x11proto-randr-dev build-dep version to 1.2.99.3.
- Bump the libpixman-1-dev build-dep version to 0.13.2.
- Bump the xtrans-dev build-dep version to 1.2.2.
- Bump the x11proto-xext-dev build-dep version to 7.0.3.
- Bump the x11proto-input-dev build-dep version to 1.5.
- Bump the libgl1-mesa-dev and mesa-common-dev build-dep to
7.2+git20081209.a0d5c3cf.
- Bump the x11proto-core build-dep to 7.0.13.
- Add a build-dep on libxinerama-dev.
- Conflict xserver-xorg-video-4, xserver-xorg-input-2.1.
* debian/rules:
- Enable dri2 again.
* debian/patches:
02_Disable-DRI-in-Xephyr.patch
03_glx-init-infinite-loop.diff
- Dropped, implemented upstream.
13_debian_add_xkbpath_env_variable.diff
- Disabled for now, needs to be reimplemented or dropped.
* debian/{input,video}abiver: Bump the input (4) and videoabiver (5).
* debian/serverminver: Bump to 2:1.5.99.901.
[ Julien Cristau ]
* Ditch the GLX Public License and the CID Font Code Public License from
debian/copyright. The CID code has been removed a while ago, and all code
under the GLXPL has been relicensed to the SGI Free Software License B 2.0.
This finally closes: #211765.
[ Yves-Alexis Perez ]
* debian/control: update deps for xserver-xorg-dev:
- libpixman-1-dev (>= 0.13.2-1)
- x11proto-core-dev (>= 7.0.14)
- x11proto-input-dev (>= 1.5.0)
- x11proto-xext-dev (>= 7.0.4)
- x11proto-randr-dev (>= 1.2.99.3)
- add x11proto-dri2-dev
-- Julien Cristau <jcristau@debian.org> Wed, 21 Jan 2009 20:59:34 +0100
xorg-server (2:1.5.3-1) experimental; urgency=low
[ Loic Minier ]
* Shut up rmdir error when trying to remove dirs; this might confuse
debconf.
[ Julien Cristau ]
* New upstream release.
* Fix infinite loop on server reset when swrast_dri.so is missing. Only
push swrast on the glx provider stack on first generation, so we don't
turn the stack into a circular list (closes: #500287).
* Enable the record extension (closes: #504303).
* Merge changes from 2:1.4.2-8.
-- Julien Cristau <jcristau@debian.org> Tue, 11 Nov 2008 23:17:14 +0100
xorg-server (2:1.5.2-1) experimental; urgency=low
* New upstream bugfix release.
* debian/rules: define PCI_TXT_IDS_DIR to unbreak the pci id matching using
plain text files provided by drivers.
* Don't pass --with-serverconfig-path to configure, we only used to override
it for Xprint.
* Re-introduce the xserver-common package, containing
/usr/lib/xorg/protocol.txt and the Xserver(1) manpage for now.
* debian/rules: Use filter instead of findstring for noopt in
DEB_BUILD_OPTIONS.
* Remove obsolete conffile /etc/X11/xserver/SecurityPolicy on upgrades.
* Merge changes from 2:1.4.2-7.
-- Julien Cristau <jcristau@debian.org> Sat, 11 Oct 2008 20:20:28 +0200
xorg-server (2:1.5.1-1) experimental; urgency=low
* New upstream bugfix release.
* 02_Disable-DRI-in-Xephyr.patch: don't use DRI in Xephyr, as it doesn't
work correctly.
* Merge changelog from 2:1.4.2-6 (all changes are upstream now).
-- Julien Cristau <jcristau@debian.org> Wed, 24 Sep 2008 17:49:18 +0200
xorg-server (2:1.5.0-1) experimental; urgency=low
* New upstream release.
* Kill patch 50_Make-RandRQueryVersion-return-1.1-for-swapped-client.patch,
1.2 requests are properly swapped now.
* Bump videoabiver to 4 to match ABI_VIDEODRV_VERSION. Yes, that means
rebuilding video drivers; sorry about that.
-- Julien Cristau <jcristau@debian.org> Thu, 04 Sep 2008 02:05:47 +0200
xorg-server (2:1.4.99.906-2) experimental; urgency=low
* Pull from server-1.5-branch as of Aug 27th
+ input devices from xorg.conf aren't ignored if there is no ServerLayout
option (closes: #492140)
* Bump build-dep on inputproto to >= 1.4.4 for DeviceControlChanged.
* Merge in changes from 2:1.4.2-3 to 2:1.4.2-5.
-- Julien Cristau <jcristau@debian.org> Thu, 28 Aug 2008 00:33:02 +0200
xorg-server (2:1.4.99.906-1) experimental; urgency=low
* debian/rules: drop useless handling of nostrip in DEB_BUILD_OPTIONS (this
is taken care of by dh_strip); make the rules files and xsfbs.mk
parallel-safe, and enable parallel=n using example code from Debian
Policy.
* debian/rules: put the source package name and version in builderstring
instead of osvendor, add builder email as well; don't explicitly set
osname, configure sets it to $(uname -srm) by default.
* New upstream release candidate.
- fixes 64-bit Xephyr (closes: #491569)
- work around the DIX losing physical monitor dimensions for randr 1.1
drivers, in particular nvidia (closes: #488987)
- make sure RANDR reports refresh as 0 if pixel clock is 0 (closes:
#490258)
- doesn't try to load dri2 when it's not built (closes: #491651)
* Switch to running autoreconf at build time, and build-depend on automake,
libtool and xutils-dev.
* Reformat the SGI Free Software License B, to shut up over 1000 lintian
warnings.
-- Julien Cristau <jcristau@debian.org> Sun, 27 Jul 2008 18:30:45 +0200
xorg-server (2:1.4.99.905-1) experimental; urgency=low
[ Julien Cristau ]
* New upstream release candidate
- fixes FTBFS on alpha (closes: #472205); won't work, though, because
of #485528
- fixes FTBFS on GNU/kFreeBSD (closes: #482550)
* 001_ubuntu_add_extra_modelines_from_xorg.patch: remove, replace with
001_fedora_extramodes.patch stolen from fedora 9 cvs, rev 1.8.
* xvfb: recommend xauth instead of xbase-clients.
* xserver-xfbdev: recommend xfonts-base.
* debian/rules: drop our special handling for stripping modules, which I
think dates back to the days of the custom module loader.
* debian/rules: drop some remaining xprintisms.
* bump serverminver to 2:1.4.99.905.
* Stop build-depending on mesa-swx11-source (mesa 7.1 will build the
software driver itself), and don't pass --with-mesa-source to configure.
* Build with --enable-glx-tls, we build mesa with TLS support (otherwise
swrast_dri.so might fail to load due to unresolved symbols).
* Make the servers recommend libgl1-mesa-dri (>= 7.1~rc1). Without this
package, the GLX extension fails to initialise (and takes the server down)
due to missing swrast_dri.so.
[ Timo Aaltonen ]
* Re-enable dri & glx.
* Add a build-dep on mesa-common-dev (>= 7.1~rc1) and bump the desired
version of libgl1-mesa-dev respectively.
* Bump the libdrm-dev build-dep version to 2.3.1.
-- Julien Cristau <jcristau@debian.org> Sun, 13 Jul 2008 23:33:05 +0200
xorg-server (2:1.4.99.902-1) experimental; urgency=low
* Add postrm script for xserver-xorg-core, to remove
/var/log/Xorg.*.log{,.old} on purge (closes: #343384).
* Use dh_* -s instead of -a in binary-arch, to fix FTBFS on s390 (which
doesn't build xserver-xfbdev).
* New upstream release candidate.
+ refresh 13_debian_add_xkbpath_env_variable.diff
+ doesn't crash when there is no pci device (closes: #472823)
+ includes a quirk for LPL monitors with broken EDID (closes: #473260)
+ XKB is now enabled in Xnest (closes: #164379)
* Stop building Xprt, and drop related patches; it will be provided as a
separate package.
-- Julien Cristau <jcristau@debian.org> Fri, 23 May 2008 00:58:45 +0200
xorg-server (2:1.4.99.901-2) experimental; urgency=low
* xserver-xorg-dev needs to depend on libpciaccess-dev.
* Pull from upstream server-1.5-branch as of March 21st (commit 98249dfa).
+ fixes build on ia64 (closes: #471663)
* Add missing conflicts on xserver-xorg-input-2.
-- Julien Cristau <jcristau@debian.org> Fri, 21 Mar 2008 22:40:36 +0100
xorg-server (2:1.4.99.901-1) experimental; urgency=low
[ Julien Cristau ]
* New upstream release candidate
* Update patches:
+ 001_ubuntu_add_extra_modelines_from_xorg.patch: remove useless
whitespace changes
+ 02_libvgahw_gcc4_volatile_fix.diff: delete, the gcc bug this was working
around is fixed for a long time
+ 03_auto_load_driver.diff, 04_auto_load_driver_no_conf.diff,
05_kill_type1.diff, 07_autoconfig_screen_with_device_section.diff,
08_better_dpms_logging.diff, 10_dont_look_in_home_for_config.diff,
11_dont_crash_on_bad_dri_mode.diff, 14_default_screen_section.diff,
21_glx_align_fixes.patch, 40_default_dpi_96.patch,
41_vbe_filter_less.diff,
42_dont_break_grab_and_focus_for_window_when_redirecting.diff,
43_allow_override_BIOS_EDID_preferred_mode.diff,
44_preferredmode_infinite_loop.diff,
45_only_XF86_APM_CAPABILITY_CHANGED_for_video_change_acpi_events.diff,
46_reduce_wakeups_from_smart_scheduler.patch,
47_fbdevhw_magic_numbers.diff, 51_xkb-and-loathing.diff,
93_xprint_fonts_fix: remove, applied upstream
+ 06_use_proc_instead_of_sysfs_for_pci_domains.diff: disable for now,
shouldn't be needed with pciaccess
+ 13_debian_add_xkbpath_env_variable.diff: refresh
+ 94_xprint_XSERVER_LIBS: disable, should be fixed upstream
* Disable glx, dri and dri2 for now.
* Re-enable dmx, build the xdmx and xdmx-tools packages.
* Add build-deps on libpciaccess-dev and libssl-dev for Xorg, bump build-dep
on libpixman-1-dev to >= 0.9.5.
* Add build-dep on libxv-dev for Xephyr.
* Drop XS- prefix from Vcs-* debian/control fields.
* Bump videoabiver to 2.9, inputabiver to 2.1, serverminver to 2:1.4.99.901.
* Drop obsolete --with-rgb-path configure option.
* /etc/X11/xserver/SecurityPolicy is gone, don't install it.
* Don't build-dep on "foo (>= bar-1)", to fix lintian warnings.
[ Drew Parsons ]
* Remove 94_xprint_XSERVER_LIBS (not needed in xserver 1.5).
[ Brice Goglin ]
* Build the Xfbdev server for real now, in new package xserver-xfbdev,
closes: #439764.
-- Julien Cristau <jcristau@debian.org> Fri, 14 Mar 2008 13:46:48 +0100
xorg-server (2:1.4.2-11) unstable; urgency=low
* Bump x11proto-input-dev build-dep to >= 1.5.0 to fix keyboard layout
breakage with new libxi built against the same. Closes: #515976
-- David Nusinow <dnusinow@debian.org> Thu, 19 Feb 2009 21:52:24 -0500
xorg-server (2:1.4.2-10) unstable; urgency=medium
* Cherry-pick from upstream: GLcore: make googleearth not crash the server
on sw-rendering (closes: #495483).
-- Julien Cristau <jcristau@debian.org> Fri, 09 Jan 2009 02:26:06 +0100
xorg-server (2:1.4.2-9) unstable; urgency=low
* Cherry-pick patches from upstream to make xf86ScaleAxis() work correctly.
* Steal patch from Fedora: more sanity checks to stop vmmouse from
segfaulting the server (closes: #503459).
-- Julien Cristau <jcristau@debian.org> Thu, 13 Nov 2008 23:32:47 +0100
xorg-server (2:1.4.2-8) unstable; urgency=low
* Add patch from Petr Salinger to fix PCI domain support on kfreebsd
(closes: #499501).
* xfree86: xf86SetDepthBpp needs to respect the driver's depth24flags.
Instead of forcing a 32bpp framebuffer, we pick a value that the driver
actually supports (closes: #504819, #486925); cherry-picked from upstream
git.
-- Julien Cristau <jcristau@debian.org> Tue, 11 Nov 2008 20:46:52 +0100
xorg-server (2:1.4.2-7) unstable; urgency=low
* Update debian/copyright to the SGI Free Software License B, version 2.0.
It now mirrors the free X11 license used by X.Org.
http://www.sgi.com/company_info/newsroom/press_releases/2008/september/opengl.html
* Not closing bug#211765 for now, because GL/glx/glxext.c and
hw/dmx/glxProxy/glxext.c are covered by the GLX Public License, which is
still not free. SGI has since released their code under FreeB, but that
doesn't necessarily apply to contributions from other people. Hopefully
this can be cleared up soon, though.
* xvfb-run: append to $ERRORFILE instead of truncating it, so the error
output from Xvfb is not deleted when we run 'xauth remove'.
-- Julien Cristau <jcristau@debian.org> Tue, 30 Sep 2008 00:39:58 +0200
xorg-server (2:1.4.2-6) unstable; urgency=low
* Xevie: always set rep.length to 0 (closes: #497337). Thanks, Thorvald
Natvig!
* Xevie: swap replies if necessary, to not confuse clients with a different
endianness.
* Cherry-picked from upstream git:
XF86VidMode: Correct a NULL pointer dereference (closes: #498289)
-- Julien Cristau <jcristau@debian.org> Mon, 15 Sep 2008 01:21:13 +0200
xorg-server (2:1.4.2-5) unstable; urgency=low
* Don't pretend we support randr 1.2 when queried by swapped clients. The
dispatch code for RandR 1.2 requests would return BadImplementation anyway
(closes: #495833).
* Cherry-picked from upstream:
+ exa: fix assert logic thinko.
-- Julien Cristau <jcristau@debian.org> Tue, 26 Aug 2008 19:27:34 +0200
xorg-server (2:1.4.2-4) unstable; urgency=low
* Re-enable patch 47_fbdevhw_magic_numbers.diff, fixes xen framebuffer
(closes: #493901). Thanks, Olivier Tétard! If someone knows why I
disabled it a year ago, I'd love to know.
-- Julien Cristau <jcristau@debian.org> Fri, 15 Aug 2008 19:15:54 +0200
xorg-server (2:1.4.2-3) unstable; urgency=low
* Add Romanian debconf translation (closes: #489069). Thanks, Eddy
Petrișor!
* Update Dutch debconf translation (closes: #491663). Thanks, Thijs
Kinkhorst!
* Pull from server-1.4-branch:
- Xi: ChangeDeviceControl presence events should set the appropriate
devchange
- Fix potential crasher in xf86CrtcRotate()
* Cherry-picked from 1.5:
- Work around the DIX losing mmWidth/mmHeight for RandR 1.1 DDXen
(closes: #491526).
-- Julien Cristau <jcristau@debian.org> Sat, 02 Aug 2008 23:22:32 +0200
xorg-server (2:1.4.2-2) unstable; urgency=low
[ Julien Cristau ]
* GLX: zero the buffer used in __glXDisp_GetVisualConfigs (backport from
upstream).
[ Brice Goglin ]
* Cherry-pick various patches from upstream:
- Fix incorrect test regarding keyboard map.
- xfree86: append, not prepend, new input devices to xf86InputDevs.
-- Julien Cristau <jcristau@debian.org> Fri, 18 Jul 2008 10:53:26 +0200
xorg-server (2:1.4.2-1) unstable; urgency=low
[ Julien Cristau ]
* New upstream release.
* Security fixes from the previous upload are included upstream.
* Cherry-pick patches from upstream git to make the LeftOf and Above options
in xorg.conf actually work (closes: #466526).
* 48_xaa_nooffscreenpixmaps.diff: disable XAA offscreen pixmaps by default;
they can be enabled with Option "XaaOffscreenPixmaps" (closes: #478277,
#433331).
* Cherry-pick various patches from upstream for Xorg's modes code:
- add quirks for monitors with broken EDID (closes: #473260)
- fix max clock computation
- inherit the preferred mode from the global configuration (so if you have
Modes "800x600" in the Display subsection the server will honor it
instead of ignoring it)
* Backport patch from upstream git to fix emulation of int1A PCI BIOS
services (closes: #404885). Thanks, Robert de Bath!
[ Brice Goglin ]
* Update patches to not require -p0, closes: #485185.
-- Julien Cristau <jcristau@debian.org> Thu, 26 Jun 2008 01:57:18 +0200
xorg-server (2:1.4.1~git20080517-2) unstable; urgency=high
* High urgency upload for security fixes.
* New patch from upstream to fix multiple security issues reported by
iDefense:
CVE-2008-2360 - RENDER Extension heap buffer overflow
CVE-2008-2361 - RENDER Extension crash
CVE-2008-2362 - RENDER Extension memory corruption
CVE-2008-1379 - MIT-SHM arbitrary memory read
CVE-2008-1377 - RECORD and Security extensions memory corruption
-- Julien Cristau <jcristau@debian.org> Mon, 09 Jun 2008 14:59:04 +0200
xorg-server (2:1.4.1~git20080517-1) unstable; urgency=low
[ Julien Cristau ]
* Pass -DPRE_RELEASE=0 in CPPFLAGS, so we don't print the pre-release
warning in the Xorg log.
* Pull from upstream server-1.4-branch
+ drop patch 40_default_dpi_96.patch applied upstream
+ refresh patches 03_auto_load_driver.diff and
04_auto_load_driver_no_conf.diff
* Don't build-depend on packages with a -1 debian revision.
* Drop the XS- prefix from Vcs-* control fields.
* Add x11-common to the Depends field of xnest, xvfb and xserver-xephyr (its
init script sets up the /tmp/.X11-unix directory).
* Re-enable the dmx DDX, and build the xdmx and xdmx-tools packages (the
build is now fixed upstream); closes: #449254.
[ Drew Parsons ]
* Patch 95_xprint_disable_dbus disables dbus in Xprint by providing
dummy config functions. Taken from upstream commit
2a3d1421e0cc18822ae8f478fcc272e16a9e9340, with removal of
CONFIG_LIB from configure.ac shifted to 94_xprint_XSERVER_LIBS.
Closes: #472180.
* Enable the xprint DDX, and build the xprint and xprint-common packages.
-- Julien Cristau <jcristau@debian.org> Sun, 18 May 2008 13:36:11 +0200
xorg-server (2:1.4.1~git20080507-1) unstable; urgency=low
* Pull from upstream server-1.4-branch, highlights:
- the server should now scale input events correctly
- xkb keymap failures now give an explanation instead of just a 'failed to
load' message
* Drop patch 51_xkb-and-loathing.diff, applied upstream
* Refresh patches 13_debian_add_xkbpath_env_variable.diff,
21_glx_align_fixes.patch, 46_reduce_wakeups_from_smart_scheduler.patch and
94_xprint_XSERVER_LIBS.
* chmod +x configure in debian/rules clean so we can build a git snapshot
where configure is not in the tarball.
* Cherry-pick fix from upstream's master branch to re-arm the DPMS timer
when re-enabling DPMS (closes: #397197).
-- Julien Cristau <jcristau@debian.org> Thu, 08 May 2008 15:34:38 +0200
xorg-server (2:1.4.1~git20080131-4) unstable; urgency=low
* fix AlwaysCore handling: enabling AlwaysCore in xorg.conf 1) is the
default, and 2) shouldn't prevent the device from sending core events
(closes: #461760).
-- Julien Cristau <jcristau@debian.org> Tue, 29 Apr 2008 20:14:22 +0200
xorg-server (2:1.4.1~git20080131-3) unstable; urgency=low
* XKB: Fix processInputProc wrapping (cherry-picked from upstream).
Thanks to Thomas Jaeger. This should fix the bug with some keys getting
stuck (closes: #473165).
* xkb: when copying the keymap, make sure the structs default to 0/NULL
(cherry-picked from upstream). Fixes a crash and closes: #461783.
* __glXDRIbindTexImage: Fail if no texture bound to pixmap's texture target
(cherry-picked from upstream).
* EXA: Fix off-by-one in polyline drawing (cherry-picked from upstream).
* EXA: Skip empty glyphs (cherry-picked from upstream).
* Fix overly-restrictive integer overflow check in EXA pixmap creation
(cherry-picked from upstream). Fixes BadAlloc errors returned by
XCreatePixmap for pixmaps of width 8192 or greater (closes: #471782).
Following patches by Bart Trojanowski, stolen from the ubuntu package:
* 15_X86EMU-added-blacklist-for-I-O-port-in-0-0xFF-range.patch
- Restrict access to I/O ports in range 0-0xFF from x86emu.
* 16_X86EMU-pass-the-correct-bus-dev-fn-tag-to-pci-emula.patch
- Fix improper emulation of PCI access General Software BIOS.
* Add 17_x86emu_handle_cpuid.patch to fix X86EMU CPUID handling.
(closes: #451089).
-- Julien Cristau <jcristau@debian.org> Wed, 02 Apr 2008 00:20:15 +0200
xorg-server (2:1.4.1~git20080131-2) unstable; urgency=low
[ Brice Goglin ]
* Add 46_reduce_wakeups_from_smart_scheduler.patch to reduce
power consumption, closes: #462700.
[ Drew Parsons ]
* Restore Xprint, cherry-picking commits
f7f79724fdea0cc6fda0e90e56431df937d49335 and
d67e210f3458b62d7d4a6032aabfda0004d661c1 from master (xserver 1.5).
Include patch 94_xprint_XSERVER_LIBS to give new meaning of
XSERVER_LIBS as expected in configure.ac from master (see commit
a02db0d500cac20d0f0f107d27c064a175018421). Delete
94_xprint_XSERVER_LIBS when we upgrade to xserver 1.5.
[ Julien Cristau ]
* Re-enable patch 51_xkb-and-loathing.diff: ignore SIGALRM around calls to
Popen()/Pclose() to fix a hang when opening menus in OpenOffice.org
(once again closes: #433131)
* Refresh all patches to make patch-audit happy.
* Pull from upstream server-1.4-branch as of March 14th.
* 42_dont_break_grab_and_focus_for_window_when_redirecting.diff removed,
applied upstream.
* Don't build xprint just yet, because it needs NEW processing.
[ David Nusinow ]
* Add 11_dont_crash_on_bad_dri_mode. See bugzilla #13860
-- Julien Cristau <jcristau@debian.org> Fri, 14 Mar 2008 15:18:16 +0100
xorg-server (2:1.4.1~git20080131-1) unstable; urgency=low
[ Brice Goglin ]
* Add 45_only_XF86_APM_CAPABILITY_CHANGED_for_video_change_acpi_events.diff
to prevent XF86_APM_CAPABILITY_CHANGED from being issued for all ACPI
events, thanks Sjoerd Simons, closes: #461463.
[ David Nusinow ]
* Update Japanese translation from Hideki Yamane. closes: #462761
* New upstream pull
+ Fixes crashes due to absent LED's being referenced
-- David Nusinow <dnusinow@debian.org> Thu, 31 Jan 2008 21:43:12 -0500
xorg-server (2:1.4.1~git20080118-1) unstable; urgency=low
[ Brice Goglin ]
* Add 42_dont_break_grab_and_focus_for_window_when_redirecting.diff
to prevent password authentication bypass, closes: #449108.
[ Julien Cristau ]
* New upstream snapshot
+ includes the security fixes from the previous version
+ fixes regression introduced by the fix for CVE-2007-6429 in the MIT-SHM
extension (closes: #461410)
-- Brice Goglin <bgoglin@debian.org> Fri, 18 Jan 2008 22:20:32 +0100
xorg-server (2:1.4.1~git20080105-2) unstable; urgency=low
[ David Nusinow ]
* Improve dpms logging patch to correctly label message type
[ Brice Goglin ]
* Grab upstream commit db9ae863536fff80b5463d99e71dc47ae587980d
to set DEFAULT_DPI to 96 instead of 75.
[ Julien Cristau ]
* Fix multiple security issues
+ CVE-2007-6427: XInput Extension Memory Corruption
+ CVE-2007-6428: TOG-CUP Extension Memory Corruption
+ CVE-2007-6429: EVI Extension Integer Overflow,
MIT-SHM Extension Integer Overflow
+ CVE-2007-5760: XFree86-Misc Extension Invalid Array Index
+ CVE-2007-5958: file existence disclosure
+ CVE-2008-0006: PCF font parser buffer overflow
* Bump Standards-Version to 3.7.3 (no changes).
-- Julien Cristau <jcristau@debian.org> Thu, 17 Jan 2008 15:10:03 +0100
xorg-server (2:1.4.1~git20080105-1) unstable; urgency=low
* Don't reference non-existent bug-reporting.txt file in xvfb-run.1
* New upstream git pull, again from the server-1.4-branch
+ Drop 08_xkb_infinite_loop.diff, it's upstream now
* Improve logging when DPMS is enabled implicitly
+ Adds 08_better_dpms_logging.diff
-- David Nusinow <dnusinow@debian.org> Sun, 06 Jan 2008 16:56:38 -0500
xorg-server (2:1.4.1~git20071212-2) unstable; urgency=low
* Add patch 08_xkb_infinite_loop.diff from upstream bug#13511: papers over
an infinite loop in event processing (closes: #451989).
-- Julien Cristau <jcristau@debian.org> Sat, 22 Dec 2007 00:02:01 +0100
xorg-server (2:1.4.1~git20071212-1) unstable; urgency=low
[ Julien Cristau ]
* debian/rules: Use lsb_release -i -s to get the vendor name, instead of
hardcoding "Debian".
* debian/control: build-dep on lsb-release.
* Cherry-pick commit f30abe30 from master: edid quirk for MAX 0x77e monitor.
* Add patch 44_preferredmode_infinite_loop.diff from upstream git: fixes an
infinite loop when PreferredMode is used in xorg.conf.
[ David Nusinow ]
* New upstream version. This is based on the server-1.4-branch, and includes
all the changes in the 1.4.0.90 (pre-)release as well as additional fixes.
This is primarily a bugfix release
+ Remove 12_bgPixel_fix_64bit_issue.diff. Applied upstream
-- David Nusinow <dnusinow@debian.org> Wed, 12 Dec 2007 20:19:11 -0500
xorg-server (2:1.4.1~git20071119-1) unstable; urgency=low
* Ship a .orig.tar.gz that's been autoreconf'ed. Closes: #451891
* Re-enable validation of the screen section of xorg.conf
Modify 14_default_screen_section.diff. This also fixes a problem where the
server can't find the device section when it is specified in the screen
section. Closes: #451950
-- David Nusinow <dnusinow@debian.org> Mon, 19 Nov 2007 20:38:04 -0500
xorg-server (2:1.4.1~git20071117-1) unstable; urgency=low
[ Julien Cristau ]
* Add conflict on xserver-xorg-input-wacom (<< 0.7.8) to xserver-xorg-core.
That driver is built against the old ABI, but doesn't provide
xserver-xorg-input.
[ David Nusinow ]
* Add 14_default_screen_section.diff. This allows you to not have a screen
section in your xorg.conf. A basic default one with a simple identifier
will be created for you in this case using all default values
[ Christian Perrier ]
* Debconf translations:
* Galician. Closes: #444764
* German. Closes: #444917
* Brazilian Portuguese. Closes: #445266
* Russian. Closes: #443859
* Portuguese. Closes: #445051
* Slovak. Closes: #446418, #448220
[ Brice Goglin ]
* Bump x11proto-core-dev build-dependency to >= 7.0.9,
thanks Max Kellermann, closes: #446869.
[ David Nusinow ]
* New upstream stable snapshot
+ fixes a bunch of input-related bugs, notably keyboard leds
(closes: #440743 and its pile of duplicates)
* Remove patches merged in this snapshot
+ 08_exa_fix_exaFillRegionTiled_fallback.diff
+ 11_exa_no_negative_tile_offsets.diff
+ 42_fix_RemoveGeneralSocket_crash_from_dbus.diff
+ 44_XKB_mapping_changes_for_all_core-sending_devices.diff
+ 45_GetKeyboardEvents_reject_out-of-range_keycodes.diff
* Make xephyr recommend xfonts-base. Closes: #451542
-- David Nusinow <dnusinow@debian.org> Sat, 17 Nov 2007 18:54:02 -0500
xorg-server (2:1.4-3) unstable; urgency=low
[ David Nusinow ]
* Minor cleanups of 03_autoload_drivers.diff. Thanks to Julien for
spotting all these ugly bits
+ Newline after #else when picking the driver (this is the failsafe
choice)
+ Change by hacked "ids" file name suffix check to use strncmp and check
for ".ids"
+ Use strncpy instead of strncat unnecessarily
* Add support for a partially configured device section
Implemented in 03_autoload_driver.diff. Now if you have a device section
but lack a driver, it'll use the settings. This will allow you to just
have a device section and enable EXA but not have to specify the driver or
anything else.
* Add 07_autoconfig_screen_with_device_section.diff
This patch allows the Screen section to not specify a device section. If
this happens, the server will automatically use the first device section
listed in the xorg.conf instead
[ Brice Goglin ]
* Allow building the Xfbdev server in new package xserver-xfbdev, but leave
it disabled for now (see #439764).
* Add upstream commit 27ad5d74c20f01516a1bff73be283f8982fcf0fe as patch
44_XKB_mapping_changes_for_all_core-sending_devices.diff to fix broken
xmodmap invocation in .xsession, closes: #443044.
* Add upstream commit 0e800ca4651a947ccef239e6fe7bf64aab92257c as patch
45_GetKeyboardEvents_reject_out-of-range_keycodes.diff to fix crash
in GetKeyboardValuatorEvents, closes: #443697.
[ Christian Perrier ]
* Debconf templates and debian/control reviewed by the debian-l10n-
english team as part of the Smith review project. Closes: #442210
* Debconf translation updates:
- Swedish. Closes: #443047
- Czech. Closes: #443100
- French
- Vietnamese. Closes: #443174
- Italian. Closes: #422414
* New debconf translations
- Hungarian. Closes: #442956
- Thai. Closes: #442962
- Tamil. Closes: #443027
- Basque. Closes: #443156
- Hebrew. Closes: #443204
- Bulgarian. Closes: #443226
- Finnish. Closes: #443611
[ Julien Cristau ]
* Add patch backported from upstream commit
13949f997289068354e83bc83e50d97b8232efb1 to remove the type1 module: patch
05_kill_type1.diff replaces 48_disable_type1.diff, and is now enabled in
debian/patches/series.
* Don't build kdrive-based servers we're not shipping.
* Use ${binary:Version} instead of ${Source-Version}.
* Add 08_exa_fix_exaFillRegionTiled_fallback.diff by Michel Dänzer to punt
on fallback case not handled correctly in exaFillRegionTiled (backported
from master's c7d6d1f5); closes: #444203.
* Add 11_exa_no_negative_tile_offsets.diff by Michel Dänzer to make sure
tile offsets passed to drivers are never negative (backported from
master's 006f6525).
* Add 12_bgPixel_fix_64bit_issue.diff by Hong Liu: bgPixel (unsigned long)
is 64-bit on x86_64, so -1 != 0xffffffff (master's 9adea807).
-- Julien Cristau <jcristau@debian.org> Sat, 29 Sep 2007 16:14:35 +0200
xorg-server (2:1.4-2) unstable; urgency=low
[ Brice Goglin ]
* Add 42_fix_RemoveGeneralSocket_crash_from_dbus.diff to fix a crash
when leaving, closes: #440547.
* Add 43_allow_override_BIOS_EDID_preferred_mode.diff to allow overriding
BIOD/EDID preferred mode with Option PreferredMode in the config file.
[ David Nusinow ]
* Upload to unstable
-- David Nusinow <dnusinow@debian.org> Sun, 16 Sep 2007 14:24:18 -0400
xorg-server (2:1.4-1) experimental; urgency=low
* New upstream release (X.Org 7.3)
+ RandR doesn't mark Xinerama as active when no crtcs are enabled
(closes: #431746)
* Add proper depends to xserver-xorg-dev:
x11proto-core-dev, x11proto-input-dev (>= 1.4), x11proto-xext-dev,
x11proto-video-dev, x11proto-randr-dev (>= 1.2), x11proto-render-dev (>=
2:0.9.3), x11proto-fonts-dev
* Bump serverminver to 2:1.4, videoabiver to 2, inputabiver to 2.
-- Julien Cristau <jcristau@debian.org> Mon, 10 Sep 2007 14:35:38 +0200
xorg-server (2:1.3.99.2-1) experimental; urgency=low
[ David Nusinow ]
* Refactor auto_load_driver patch to allow the same method to be used when
there is no xorg.conf present
* Add 04_auto_load_driver_no_config.diff to use my auto_load_driver method
when there's no xorg.conf present
[ Brice Goglin ]
* Simplify output redirections in the reportbug script,
thanks Justin Pryzby, closes: #358390.
* Add missing URL in long descriptions, update links to the upstream
module, fix some capitalization, thanks Christian Perrier.
[ Julien Cristau ]
* New upstream release candidate.
+ bump build dep on renderproto to >= 0.9.3, and on pixman to >= 0.9.4-2.
+ bump video abi version and serverminver.
* Drop the Conflict on fglrx-driver, which is taken care of by the abi
version.
-- Julien Cristau <jcristau@debian.org> Tue, 04 Sep 2007 17:32:19 +0200
xorg-server (2:1.3.99.0-2) experimental; urgency=low
* Improve 03_auto_load_driver.diff
+ Move memory cleanup and directory closing to after the end label to
prevent leaks. Thanks Julien.
+ Allow a driver to claim everything from a specific vendor. It does so by
only specifying a vendor ID and leaving the latter four digits empty.
-- David Nusinow <dnusinow@debian.org> Sun, 19 Aug 2007 16:06:54 -0400
xorg-server (2:1.3.99.0-1) experimental; urgency=low
[ Julien Cristau, David Nusinow ]
* New upstream release candidate.
+ X is now more tolerant of devices without a CtrlProc (closes: #269860).
+ cvt(1) and gtf(1) typos fixed (closes: #432065).
+ Make sure DRIScreenPrivIndex is -1 when no DRI screen private is
allocated. (closes: #413697).
+ __glXDRIscreenProbe: Use drmOpen/CloseOnce (closes: #419614).
+ segfault in swrast_Triangle fixed in mesa (closes: #407502).
+ the Xvfb manpage doesn't refer to /usr/tmp anymore (closes: #270257).
+ typos in Xserver(1) fixed (closes: #306688).
* Remove patches that were pushed upstream
+ 03_xnest_manpage_overhaul.diff
+ 04_read_rom_in_chunks.diff
+ 05_module_defaults.diff
+ 07_stolen_from_HEAD_xorgconf_manpage.diff
+ 08_s390_servermd.diff
+ 12_security_policy_in_etc.diff
+ 16_s390_fix.diff
+ 18_execinfo_configured.patch
+ 23_kfreebsd_support.diff
+ 24_hurd_ioperm_fix.diff
+ 32_disable_sparc_pci_bridge.diff
+ 39_alpha_build_flags.patch
+ 40_consolidate_portPriv_pDraw_assignments.diff
+ 42_only_run_special_key_behaviours_on_non-XKB.diff
+ 44_fedora-xephyr-keysym-madness.diff (different fix applied upstream)
+ 45_CVE-2007-2437.diff
+ 46_export-ramdac-symbols.diff
+ 49_map_keyboard_driver_to_kbd.diff
+ 50_alpha_no_include_asm_pci.h.diff
+ 94_use_default_font_path.diff
+ 125_glx_remove-stray__GLinterface.diff,
126_glxproxy_remove-stray__GLinterface.diff and
127_mesa-6.5.3-compat.diff (obsolete)
* Update other patches:
+ 09_debian_xserver_rtff.diff disabled (doesn't apply, and isn't even
used AFAICS;
+ 11_define_XFree86Server.diff dropped, to be fixed in drivers instead;
+ 13_debian_add_xkbpath_env_variable.diff refreshed;
+ 21_glx_align_fixes.patch updated;
+ 43_xephyr_crash_at_exit.diff dropped (doesn't apply);
+ 47_fbdevhw_magic_numbers.diff disabled for now;
+ 48_disable_type1.diff disabled for now;
+ 51_xkb-and-loathing.diff disabled for now.
[ Julien Cristau ]
* Add build-dep on x11proto-input-dev (>= 1.4.2), libpixman-1-dev
(>= 0.9.0), libdbus-1-dev, libhal-dev (except on hurd-i386 for the last
two).
* Bump build-dep on mesa-swx11-source to >> 7.0.1~rc2-1.
* Bump serverminver to this version, videoabiver to 1.9, inputabiver to
0.9 (so this doesn't clash with a release and drivers have to be
rebuilt).
* Bump build-dep on compositeproto to >= 0.4.
* Install the upstream changelog.
* Disable the xprint and dmx DDX for now, they fail to build.
* xserver-xorg-dev needs a dependency on libpixman-1-dev.
* Add explanations about our tarball and upstream URL to debian/copyright.
[ Drew Parsons ]
* Update Xprint build to include pixman.
[ David Nusinow ]
* Add 03_auto_load_driver.diff. This patch allows the server to select a
driver and automatically create a Devices section when none is specified
in your xorg.conf. It chooses the driver based on a set of PCI ID's that
the driver itself provides in /usr/share/xserver-xorg/pci. If no driver
claims the PCI ID of your primary video card, then it will choose a
fallback based on your system.
-- Julien Cristau <jcristau@debian.org> Sat, 18 Aug 2007 18:28:49 +0200
xorg-server (2:1.3.0.0.dfsg-13) UNRELEASED; urgency=low
[ Debconf templates translations ]
* Italian added. Closes: #422414
* Slovak added. Closes: #438578
-- Christian Perrier <bubulle@debian.org> Sun, 26 Aug 2007 12:09:52 +0200
xorg-server (2:1.3.0.0.dfsg-12) unstable; urgency=low
[ Brice Goglin ]
* Add 51_xkb-and-loathing.diff to fix a hang in OpenOffice.org
when opening menus, closes: #433131.
* Install the exa(4) and fbdevhw(4) manpages.
[ Julien Cristau ]
* Update the xorg.conf(5) manpage to get documentation for RandR 1.2
options:
+ 07_stolen_from_HEAD_xorgconf_manpage.diff: new patch;
+ 07_xorgconf_manpage_overhaul.diff dropped;
+ 34_xorg.conf_man_typos.patch dropped;
+ 05_module_defaults.diff, 94_use_default_font_path.diff: dropped hunks
applying to hw/xfree86/doc/man/xorg.conf.man.pre.
* Add patch 11_define_XFree86Server.diff: XFree86Server needs to be defined
in xorg-server.h and exported to drivers.
* Add patches 125_glx_remove-stray__GLinterface.diff
126_glxproxy_remove-stray__GLinterface.diff and 127_mesa-6.5.3-compat.diff
to build with mesa >= 6.5.3, and bump build-dependency on
mesa-swx11-source.
* Include the Debian package version in OSVENDOR to make it appear in the
X log.
-- Julien Cristau <jcristau@debian.org> Thu, 09 Aug 2007 16:32:14 +0200
xorg-server (2:1.3.0.0.dfsg-11) unstable; urgency=low
* Yet another alpha build fix: also remove the asm/pci.h include from
os-support/linux/lnx_axp.c. Include "lnx.h" and <unistd.h> instead.
-- Julien Cristau <jcristau@debian.org> Sat, 14 Jul 2007 20:09:35 +0200
xorg-server (2:1.3.0.0.dfsg-10) unstable; urgency=medium
* hw/xfree86/common/compiler.h and <sys/io.h> declare incompatible
prototypes for outb and friends, so change the patch from -9 to not
#include <sys/io.h> and rely on declarations in lnx.h itself for the
IOBASE_* macros.
-- Julien Cristau <jcristau@debian.org> Sat, 14 Jul 2007 18:06:14 +0200
xorg-server (2:1.3.0.0.dfsg-9) unstable; urgency=medium
* Include <sys/io.h> instead of <asm/pci.h> in
hw/xfree86/os-support/linux/lnx.h, as the latter isn't exported to
userspace anymore; fixes FTBFS on alpha. Thanks, Steve Langasek!
-- Julien Cristau <jcristau@debian.org> Sat, 14 Jul 2007 12:17:10 +0200
xorg-server (2:1.3.0.0.dfsg-8) unstable; urgency=medium
* Medium-urgency upload to get the fix for #428794 in testing faster,
hopefully.
[ Brice Goglin ]
* Add 47_fbdevhw_magic_numbers.diff: patch by Adam Jackson to keep the
fbdev2xfree_timing() function from changing the pixel clock value if the
fbdev driver claims that it is 0.
[ Julien Cristau ]
* Don't build the type1 font module.
* Add patch by Alan Coopersmith to map (case-insensitively) the old
"keyboard" input driver to "kbd" (addresses: #428794). I'm not
reassigning the bug to xserver-xorg-core for now so as not to break
testing by letting xserver-xorg-input-keyboard transition before the fixed
xorg-server.
-- Julien Cristau <jcristau@debian.org> Sat, 14 Jul 2007 01:48:20 +0200
xorg-server (2:1.3.0.0.dfsg-7) unstable; urgency=low
[ Brice Goglin ]
* Add 40_consolidate_portPriv_pDraw_assignments.diff to avoid a crash
in xf86XVReputVideo (closes: #424899, #431655).
* Add 41_vbe_filter_less.diff to not reject VESA modes early since
xf86ValidateModes should handle them just fine (closes: #424684).
* Add 42_only_run_special_key_behaviours_on_non-XKB.diff to fix special
keys in Xephyr (closes: #415025).
* Add 43_xephyr_crash_at_exit.diff to avoid crashing Xephyr when first
client disconnect (closes: #420421).
-- Julien Cristau <jcristau@debian.org> Wed, 04 Jul 2007 23:42:40 +0200
xorg-server (2:1.3.0.0.dfsg-6) unstable; urgency=low
* Change fglrx conflict to << 8.37.6 (closes: #424975).
-- Julien Cristau <jcristau@debian.org> Fri, 01 Jun 2007 14:58:39 +0200
xorg-server (2:1.3.0.0.dfsg-5) unstable; urgency=low
[ Brice Goglin ]
* Add 24_hurd_ioperm_fix.diff to fix xf86Enable/DisableIO on Hurd with
recent GNU Mach. Thanks Samuel Thibault!
* Add 06_use_proc_instead_of_sysfs_for_pci_domains.diff since sysfs-based
PCI management code is broken at least on sparc and powerpc.
Closes: #422077, #422095. Thanks to Jim Watson for testing!
* Install the Xephyr README, closes: #395888.
* Update 07_xorgconf_manpage_overhaul.diff to drop the reference to the
xorg.conf example which we do not install since Xserver 1.3 does automatic
configuration, the manpage is very well documented, and we generate a
config file during installation. Closes: #222932.
* Fix warning in /etc/init.d/xprint when /usr/lib/X11/fonts does not exist.
Closes: #422352. Thanks Cristian Ionescu-Idbohrn!
* Pull upstream commit 9c80eda826448822328bb678a7d284cc43fffb17 to disable
RandR's fake xinerama geometry when there's more than one protocol screen
(closes: #420679).
[ Julien Cristau ]
* Add patch to make sure that the ramdac symbols are present in the server
and drivers can use them (closes: #423129).
* xserver-xorg-core Conflicts with fglrx-driver, which broke with 1.3.
We'll need to make this versioned (or drop it) when fglrx is fixed.
-- Julien Cristau <jcristau@debian.org> Wed, 16 May 2007 15:17:55 +0200
xorg-server (2:1.3.0.0.dfsg-4) unstable; urgency=low
* Cherry-pick patch from upstream git to fix security issue in the Xrender
extension: malicious clients can cause a division by zero in the server
(closes: #422936). Reference: CVE-2007-2437. Thanks, Micah Anderson!
-- Julien Cristau <jcristau@debian.org> Wed, 09 May 2007 02:11:08 +0200
xorg-server (2:1.3.0.0.dfsg-3) unstable; urgency=low
* Include 94_use_default_font_path.diff. This patch is like Eugene's patch
to always look in the default font path from the past, but now we provide
an option to disable looking in the default font path at runtime. This
will allow people to specify additional font paths in their xorg.conf
without losing their current paths. This will also help avoid people
having ye olde "fixed font" problem.
* Fix compilation warnings for 05_module_defaults.diff. Previously the patch
used a generic pointer for the options record, but now we use the actual
XF86OptionsPtr type.
-- David Nusinow <dnusinow@debian.org> Thu, 26 Apr 2007 22:39:52 -0400
xorg-server (2:1.3.0.0.dfsg-2) unstable; urgency=low
* Add Brice Goglin's fix for 05_module_defaults.diff, so that it also works
when there is no module section at all. Thanks to Michel Dänzer for
helping also.
-- David Nusinow <dnusinow@debian.org> Sat, 21 Apr 2007 09:34:12 -0400
xorg-server (2:1.3.0.0.dfsg-1) unstable; urgency=low
* Upload to unstable.
* Add XS-Vcs-* to debian/control.
* Remove non-free file hw/xfree86/doc/README.DRI from the upstream tarball.
* Bump serverminver to 2:1.3.0.0.
-- Julien Cristau <jcristau@debian.org> Fri, 20 Apr 2007 07:54:14 +0200
xorg-server (2:1.3.0.0-1) experimental; urgency=low
* New upstream release
-- David Nusinow <dnusinow@debian.org> Thu, 19 Apr 2007 22:27:05 -0400
xorg-server (2:1.2.99.905-3) experimental; urgency=low
[ Julien Cristau ]
* xvfb now Recommends: xfonts-base (closes: #314598).
[ David Nusinow ]
* Add 05_module_defaults.diff. This provides default modules loading
capabilities for the server that may be overrided easily. Previously the
server would load a set of default modules, but only if none were
specified in the xorg.conf, or if you didn't have a xorg.conf at all. This
patch provides a default set and you can add only the "Load" instructions
to xorg.conf that you want without losing the defaults. Similarly, if you
don't want to load a module that's loaded by default, you can add
"Disable modulename" to your xorg.conf (see man xorg.conf in this release
for details). See upstream bug #10541 for more.
-- David Nusinow <dnusinow@debian.org> Sun, 15 Apr 2007 11:17:45 -0400
xorg-server (2:1.2.99.905-2) experimental; urgency=low
* Install the cvt and gtf utilities and their manpages (closes: #414792).
* Build the xserver-xorg-core-dbg package, which contains debugging symbols
for Xorg and /usr/lib/xorg/modules/**/*.so
-- Julien Cristau <jcristau@debian.org> Mon, 09 Apr 2007 20:38:22 +0200
xorg-server (2:1.2.99.905-1) experimental; urgency=low
* New upstream release candidate.
+ includes fix for CVE-2007-1003: XC-MISC Extension ProcXCMiscGetXIDList()
Memory Corruption.
-- Julien Cristau <jcristau@debian.org> Fri, 06 Apr 2007 12:05:40 +0200
xorg-server (2:1.2.99.903-1) experimental; urgency=low
[ Drew Parsons ]
* Add exclude entries to dh_install in debian/rules.
[ Julien Cristau ]
* Prepare packaging to ship debugging symbols for xserver-xorg-core in
xserver-xorg-core-dbg, but leave it commented out so we can get rc3 in the
archive first.
* New upstream release candidate.
+ bump serverminver to 2:1.2.99.903.
-- Julien Cristau <jcristau@debian.org> Tue, 27 Mar 2007 07:33:29 +0200
xorg-server (2:1.2.99.902-1) experimental; urgency=low
[ Drew Parsons ]
* Bring xprint back into the xorg fold.
- include existing patches:
- 91_ttf2pt1 allows Xprint to use ttf2pt1 for Type1 font handling
(but extract and apply manually the patch to
hw/xprint/ps/Makefile.am so it may be applied by autoconf)
- 91_ttf2pt1_updates brings ttf2pt1 into the modern X11R7.1 world
- 92_xprint-security-holes-fix.patch places PS/PDF file output
into the user's home directory (~/Xprintjobs), more secure than
a shared /tmp/Xprintjobs
- 93_spooltodir_check_file_exists ensures output filenames are
less than 256 characters in length
- 93_xprint_fonts_fix released references to font names after use.
- enable freetype support for Xprint.
- add descriptions to debian/control and Build-Dependency on
x11proto-print-dev
* Run autoreconf to update changes to hw/xprint/ps/Makefile.am.
[ Brice Goglin ]
* Apply patch from adrian@smop.co.uk to our xvfb-run wrapper
to check whether Xvfb started ok and fix its cleanup
(closes: #351042).
[ Julien Cristau ]
* New upstream release candidate.
* Bump serverminver to 2:1.2.99.902.
* Drop patch 42_build_int10_submodules.diff, and use x86emu on all
architectures instead (closes: #410879).
* Refresh patches:
+ 12_security_policy_in_etc.diff
+ 21_glx_align_fixes.patch
+ 23_kfreebsd_support.diff
* Delete a few files generated by configure on clean, since they seem to
have been included in the tarball.
-- Julien Cristau <jcristau@debian.org> Thu, 15 Mar 2007 04:28:00 +0100
xorg-server (2:1.2.99.901-1) experimental; urgency=low
* New upstream release candidate.
+ Remove patches 24 (hurd support), 35 (randr byteswap) and 43 (set damage
version), applied upstream.
+ Bump build-dep on x11proto-randr-dev to >= 1.2, and on
x11proto-damage-dev to >= 1.1.
-- Julien Cristau <jcristau@debian.org> Wed, 7 Mar 2007 19:58:53 +0100
xorg-server (2:1.2.0-6) experimental; urgency=low
* Set videoabiver to 1.0, same as in xorg-server 1.1.
-- Julien Cristau <jcristau@debian.org> Fri, 2 Mar 2007 16:38:12 +0100
xorg-server (2:1.2.0-5) experimental; urgency=low
* Add input ABI versioning metadata. Rename serverabiver file to
videoabiver, and add inputabiver. Bump serverminver to 2:1.2.0-5 to deal
with this change.
-- David Nusinow <dnusinow@debian.org> Thu, 1 Mar 2007 22:09:45 -0500
xorg-server (2:1.2.0-4) experimental; urgency=low
[ Julien Cristau ]
* Don't strip modules when DEB_BUILD_OPTIONS contains nostrip. Thanks,
Cyril Brulebois!
[ David Nusinow ]
* Move serverabiver file to serverminver. Use serverabiver to store the
actual video ABI version number (1.1 right now). This will allow drivers
to automatically generate their Provides: xserver-xorg-video-* line when
built against a particular server version. The rename of the files
is to better denote what they actually are.
* Bump the serverminver to 2:1.2.0-4 because of this change
-- David Nusinow <dnusinow@debian.org> Wed, 21 Feb 2007 21:53:51 -0500
xorg-server (2:1.2.0-3) experimental; urgency=low
[ Julien Cristau ]
* Pass --with-os-name and --with-os-vendor to configure.
* Bump serverabiver to 2:1.2.0-1.
* Add patch from upstream git to set the supported damage version from the
server, instead of from the damage headers. xserver 1.2.0 supports damage
1.0, not 1.1.
-- Julien Cristau <jcristau@debian.org> Sat, 17 Feb 2007 12:03:03 +0100
xorg-server (2:1.2.0-2) experimental; urgency=low
* Delete useless debian/substvars.
* Change my email address in debian/control.
* Fix patch 42_build_int10_submodules.diff. The definition of
xf86InitInt10() was moved to int10/helper_exec.c between 1.1.1 and 1.2.0,
so we move it to int10/helper_mem.c, which we build in the main int10
module, not the vm86 and x86emu submodules. Thanks to Cédric Augonnet and
Brice Goglin for the report and testing.
-- Julien Cristau <jcristau@debian.org> Sat, 10 Feb 2007 20:57:57 +0100
xorg-server (2:1.2.0-1) experimental; urgency=low
* New upstream release.
+ 40_xorg-xserver-1.1.0-dbe-render.diff dropped.
+ 38_GetDrawableAttributes.patch dropped.
+ 37_build-mesa-mipmap.patch dropped.
+ 33_Xserver_man_typos.patch dropped.
+ 24_hurd_support.diff massively reduced.
+ 13_debian_add_xkbpath_env_variable.diff refreshed.
+ 07_xorgconf_manpage_overhaul.diff updated.
+ 42_build_int10_submodules.diff updated.
* Bump build-dep on mesa-swx11-source to >= 6.5.2.
* Version build-dependencies on x11proto-composite-dev and x11proto-kb-dev
to match configure.ac.
* Add build-dep on libxfixes-dev (needed for Xdmx).
-- Julien Cristau <jcristau@debian.org> Fri, 9 Feb 2007 20:54:27 +0100
xorg-server (2:1.1.99.903-1) experimental; urgency=low
* New upstream release candidate.
* Forward-port patches:
* 07_xorgconf_manpage_overhaul.diff: refresh
* 12_security_policy_in_etc.diff: refresh
* 21_glx_align_fixes.patch: refresh
* 23_kfreebsd_support.diff: refresh
* 24_hurd_support.diff: refresh
* 34_xorg.conf_man_typos.patch: refresh
* 36_fix_ffs.patch: remove, applied upstream
* Bump build-dependency on libdrm-dev to (>= 2.3.0) because that is the X
server's minimum requirement.
-- Thierry Reding <thierry@gilfi.de> Sat, 2 Dec 2006 12:44:59 +0100
xorg-server (2:1.1.99.902-1) experimental; urgency=low
* Update to latest upstream release candidate.
* Forward-port patches:
* 02_libvgahw_gcc4_volatile_fix.diff: update
* 04_read_rom_in_chunks.diff: update
* 05_arm_cache_flush.diff: remove, applied upstream
* 06_arm_is_not_x86_and_has_no_vga.diff: remove, applied upstream
* 07_xorgconf_manpage_overhaul.diff: update
* 08_s390_servermd.diff: update
* 09_debian_xserver_rtff.diff: update
* 12_security_policy_in_etc.diff: update
* 13_debian_add_xkbpath_env_variable.diff: update
* 15_symlink_mesa.diff: remove, fixed upstream
* 16_s390_fix.diff: update
* 17_ignoreabi.diff: remove, applied upstream
* 18_execinfo_only_for_backtrace.patch: remove, applied upstream
* 18_execinfo_configured.patch: remove, applied upstream
* 19_configurable_misc_utils.patch: remove, applied upstream
* 20_mesa_6.5.1.diff: remove, applied upstream
* 21_glx_align_fixes.patch: update
* 22_xkb_cycle_3layouts.diff: remove, applied upstream
* 23_kfreebsd_support.diff: update, partially applied upstream
* 24_hurd_support.diff: update, partially applied upstream
* 25_tfp_damage.diff: remove, applied upstream
* 26_aiglx_happy_vt_switch.diff: remove, applied upstream
* 27_aiglx_locking.diff: remove, applied upstream
* 28_mesa_copy_sub_buffer.diff: remove, applied upstream
* 29_mesa_reseed_makefile.diff: remove, fixed upstream
* 30_fix_vmode_switch.diff: remove, fixed upstream
* 31_blocksigio.diff: remove, fixed upstream
* 32_disable_sparc_pci_bridge.diff: update
* 34_xorg.conf_man_typos.patch: update
* 35_randr_byteswap.patch: update
* 36_fix_ffs.patch: update
* 37_Fix-__glXDRIbindTexImage-for-32-bpp-on-big-endian-platforms.diff:
remove, applied upstream
* Upstream no longer ships a changelog, so don't try to install it.
* Add 37_build-mesa-mipmap.patch that adds the missing mipmap.c to libmain's
sources.
* Add 38_GetDrawableAttributes.patch which readds support for the
GetDrawableAttributes extension that's needed for compiz to work properly.
-- Thierry Reding <thierry@gilfi.de> Fri, 1 Dec 2006 20:32:34 +0100
xorg-server (2:1.1.1-21) unstable; urgency=emergency
* Security update.
* Fix integer overflow in the ProcXCMiscGetXIDList() function in the XC-MISC
extension. Reference: CVE-2007-1003.
-- Julien Cristau <jcristau@debian.org> Wed, 04 Apr 2007 00:34:51 +0200
xorg-server (2:1.1.1-20) unstable; urgency=low
* xephyr: Add patch from upstream git to fix memory leak in
ephyrScreenFini(). Thanks, Guillem Jover!
-- Julien Cristau <jcristau@debian.org> Tue, 6 Mar 2007 22:20:14 +0100
xorg-server (2:1.1.1-19) unstable; urgency=high
[ Drew Parsons ]
* Removed spurious space in default font line
(/usr/X11R6/lib/X11/fonts/Type1 not "/usr/X11R6/lib/ X11/fonts/Type1")
[ David Nusinow ]
* Conflict with and replace xserver-common, because that package used to
provide the SecurityPolicy file. This is an RC bugfix because it breaks
upgrades, so it gets a high urgency. Thanks Christian Tsotras and Lionel
Elie Mamane for reporting and it. Closes: #402658
-- David Nusinow <dnusinow@debian.org> Wed, 28 Feb 2007 21:48:19 -0500
xorg-server (2:1.1.1-18) unstable; urgency=medium
* Add patch from Fedora to make xephyr work on 64bit architectures
(closes: #405928).
-- Julien Cristau <jcristau@debian.org> Fri, 16 Feb 2007 22:20:08 +0100
xorg-server (2:1.1.1-17) unstable; urgency=medium
* Make the int10 module usable on i386 with a 64bit kernel (closes: #409730).
+ New patch 42_build_int10_submodules.diff, which allows us to build vm86
and x86emu as two separate submodules, and make the int10 module itself
fall back to loading x86emu if vm86 calls fail.
+ Add workaround for https://bugs.freedesktop.org/show_bug.cgi?id=7299 to
the above patch: move definition of Int10Current from int10/xf86int10.c
to int10/helper_mem.c.
+ Drop the part of 39_alpha_build_flags.patch applying to
hw/xfree86/os-support/linux/Makefile.in, and run autoreconf with all
patches applied.
-- Julien Cristau <jcristau@debian.org> Wed, 7 Feb 2007 20:37:19 +0100
xorg-server (2:1.1.1-16) unstable; urgency=medium
* New patch 41_xfree86_linux_acpi_fix_tokenizing.diff from upstream git to
fix a crash on acpi events (closes: #409443).
-- Julien Cristau <julien.cristau@ens-lyon.org> Sat, 3 Feb 2007 22:56:04 +0100
xorg-server (2:1.1.1-15) unstable; urgency=high
* High-urgency upload for security bugfix.
* New patch 40_xorg-xserver-1.1.0-dbe-render.diff to fix multiple integer
overflows in the dbe and render extensions.
CVE IDs: CVE-2006-6101 CVE-2006-6102 CVE-2006-6103
* Add myself to Uploaders, and remove Fabio and Branden, with their
permission. They're of course welcome back when they have more time!
-- Julien Cristau <julien.cristau@ens-lyon.org> Tue, 9 Jan 2007 15:45:46 +0100
xorg-server (2:1.1.1-14) unstable; urgency=high
* The "let's drop 20 years of build logic and replace it with autoconf in a
single release, trust me, what could go wrong? <gibber, gibber>" release
* High-urgency upload for RC bugfix
* New patch 39_alpha_build_flags.patch: no really, when they said
lnx_ev56.c should be built with -mcpu=ev56, they really meant it.
Closes: #392500.
-- Steve Langasek <vorlon@debian.org> Sun, 7 Jan 2007 15:19:08 -0800
xorg-server (2:1.1.1-13) unstable; urgency=medium
[ Julien Cristau ]
* xserver-xorg-core recommends xfonts-base and suggests xfonts-100dpi |
xfonts-75dpi and xfonts-scalable. Also add explanation about fonts to the
long description, stolen from the old xserver-common package (closes:
#400654).
[ David Nusinow ]
* This is important for upgrades to etch, and has no notable risk, so bump
priority to medium.
-- David Nusinow <dnusinow@debian.org> Fri, 29 Dec 2006 19:57:51 -0500
xorg-server (2:1.1.1-12) unstable; urgency=low
[ Julien Cristau ]
* Delete hw/xfree86/common/xf86Build.h in debian/rules clean, since it's
wrongly included in the upstream tarball.
[ David Nusinow ]
* Pull fix for the ignore_abi.diff patch. This one's a major brown bag on my
part. Thanks Michel Dänzer.
* Add 38_wait_for_something_force_timer_reset.diff which forces the server
to reset timers when they've overrun in some cases rather than wait
forever. Patch by Daniel Stone. Thanks Michel Dänzer for pointing the
changes out. Closes: #374026
-- David Nusinow <dnusinow@debian.org> Tue, 12 Dec 2006 21:13:20 -0500
xorg-server (2:1.1.1-11) unstable; urgency=low
[ Drew Parsons ]
* Patches 33_Xserver_man_typos.patch and 34_xorg.conf_man_typos.patch
fix minor typos in Xserver and xorg.conf man pages.
Closes: #364556, #308899.
* Add patch 35_randr_byteswap.patch from upstream. Fixes a client/server
byteswapping problem. Closes: #291100.
[ Julien Cristau ]
* Don't build-depend on libdrm-dev on hurd-i386 (closes: #358015). Thanks,
Samuel Thibault.
* Update hurd support patch (closes: #356300). Thanks, Samuel Thibault.
* Add reportbug script stolen from the monolith, to add the user's config
and log file in every bug report.
* Delete hw/xfree86/common/xf86Build.h from our source tree, so that the
build date is correctly calculated at build time, and not hardcoded to
07 July 2006. Thanks to Jurij Smakov for noticing.
* Add patch 36_fix_ffs.patch by Jurij Smakov to fix infinite loop in ffs()
if called with an argument of 0 (closes: #395564).
* Add patch 37_Fix-__glXDRIbindTexImage-for-32-bpp-on-big-endian-platforms
from upstream git to fix color issue on big endian platforms
(closes: #392453). Thanks to Michel Dänzer for the patch!
* Fix typo in xvfb-run (closes: #337703).
* Install xdmxconfig and its manpage in xdmx-tools (closes: #393991).
* Add Replaces: xdmx (<= 2:1.1.1-10) to xdmx-tools because of the xmdxconfig
manpage move.
-- David Nusinow <dnusinow@debian.org> Fri, 24 Nov 2006 15:44:52 -0500
xorg-server (2:1.1.1-10) unstable; urgency=low
[ Denis Barbier ]
* Fix video mode switching. Closes: #391052
* Fix FTBFS on kfreebsd-i386 and kfreebsd-amd64. Thanks Petr Salinger.
Closes: #363517
[ David Nusinow ]
* Add depends on xserver-xorg so that /etc/X11/X gets installed. Thanks
Frans Pop. Closes: #392295
* Add 31_blocksigio.diff. This patch by Alan Hourihane, and it prevents a
race condition when a driver tries to set the cursor state when the server
is in the middle of switching resolution. Thanks to Frans Pop for
reporting the bug, Michel Dänzer for reading through the backtrace and
diagnosing the problem, and Alan for the final patch. Closes: #390646.
[ Jurij Smakov ]
* Add 32_disable_sparc_pci_bridge.diff. Disable PCI bridge handling on
sparc, which is broken and causes filesystem corruption (by poking
the PCI bus in the wrong places) on some machines. Closes: #392312.
[ Drew Parsons ]
* Use __appmansuffix__ not __mansuffix__ in
03_xnest_manpage_overhaul.diff. Closes: #390599.
* Install upstream ChangeLog. Closes: #365274.
-- David Nusinow <dnusinow@debian.org> Mon, 16 Oct 2006 21:59:51 -0400
xorg-server (2:1.1.1-9) unstable; urgency=low
[ Jurij Smakov ]
* Add 21_glx_align_fixes.patch to reintroduce the setting of __GLX_ALIGN64
variable, lost during the modular transition. This setting is essential
for architectures with strong alignment requirements. Patch affects
alpha, sparc, amd64, ia64 and s390, mimicking the behaviour of the
monolithic build. Closes: #388125.
[ Denis Barbier ]
* Add 22_xkb_cycle_3layouts.diff to fix layout switching when 3 layouts
are present. Thanks Ivan Pascal for the patch. Closes: #345803
[ David Nusinow ]
* Add kFreeBSD support patch (23). Thanks to Robert Millan, Petr Salinger,
Daniel Stone, and Michael Banck for input and patch writing.
Closes: #363517
* Add hurd support patch (24). Thanks Samuel Thibault, Daniel Stone, and
Michael Banck. Closes: #356300
* Disable the explicit enabling of dri in the configure. The configure
script autodetects whether or not to use this anyway, and enabling it
explicitly breaks the build on hurd. Thanks Samuel Thibault and Michael
Banck. Closes: #358015
* Add several patches written by Kristian Høgsberg for allowing compiz to
work with AIGLX. These patches were vetted by Theirry Reding with valuable
advice from Michel Dänzer, and feedback from Kristian himself.
- 25_tfp_damage.diff
- 26_aiglx_happy_vt_switch.diff
- 27_aiglx_locking.diff
- 28_mesa_copy_sub_buffer.diff
- 29_mesa_reseed_makefile.diff
- update of 20_mesa_6.5.1.diff
* Remove bizarre wholesale inclusion of another patch in the 23_kbsd patch
[ Eugene Konev ]
* Use --with-default-font-path instead of --with-fontdir.
* Set RGBPath through --with-rgb-path.
* Drop 11_debian_always_use_default_font_path.diff.
* Drop 14_debian_always_look_in_our_module_path.diff.
* Ship SecurityPolicy in xserver-xorg-core.
-- David Nusinow <dnusinow@debian.org> Thu, 28 Sep 2006 23:59:35 -0400
xorg-server (2:1.1.1-8) unstable; urgency=low
* Update mesa symlink patch to the latest from HEAD
* Add 20_mesa_6.5.1.diff to allow the server to build with mesa 6.5.1
* Bump build-dep versions on x11proto-gl to 1.4.8, and mesa to 6.5.1
-- David Nusinow <dnusinow@debian.org> Mon, 25 Sep 2006 22:21:37 -0400
xorg-server (2:1.1.1-7) unstable; urgency=low
* Fix s390 build issue. Thanks Bastian Blank for the report and Eugene Konev
for the patch. Closes: #388628.
* Disable build of various utilities that we don't ship anyway. Patch thanks
to Eugene Konev.
-- David Nusinow <dnusinow@debian.org> Thu, 21 Sep 2006 23:07:16 -0400
xorg-server (2:1.1.1-6) unstable; urgency=low
* Upload 7.1 to unstable.
[ Drew Parsons ]
* Added SGI FreeB licence to debian/copyright. Closes: #368563.
* Apply upstream patches 18_execinfo_only_for_backtrace.patch, to use
execinfo.h for and only for backtrace. Applied git patch
5a3488ccac8e5dabd9fc98bc41ef178ead1b2faf directly into configure scripts,
activated with autoreconf. Closes: #363218.
* Only requires build-depends version of x11proto-gl-dev on 1.4.6.
[ Steve Langasek ]
* Add versioned build-depends on x11proto-fixes-dev (>= 4.0), to
ensure the package is built against the right protocol version.
Closes: #383778.
-- David Nusinow <dnusinow@debian.org> Mon, 18 Sep 2006 18:30:07 -0400
xorg-server (2:1.1.1-5) experimental; urgency=low
* Fix error in 16_s390_fix.diff caused by my idiot copying. Thanks Yannick
Roehlly and Daniel Stone.
-- David Nusinow <dnusinow@debian.org> Sun, 27 Aug 2006 23:25:21 +0000
xorg-server (2:1.1.1-4) experimental; urgency=low
[ Drew Parsons ]
* Tighten dependencies between X11R7.1 server and video drivers.
xserver-xorg-core no longer Depends: xserver-xorg-video-all
| xserver-xorg-video but instead Conflicts: xserver-xorg-video.
(closes: #383873)
The dependency on xserver-xorg-video-all | xserver-xorg-video-1.0 is
managed by the xserver-xorg binary package (not included here in
order to avoid circular dependencies). (closes: #362313)
* Likewise remove Depends: xserver-xorg-input-all | xserver-xorg-input
(again, handled by xserver-xorg) to avoid circular dependency with drivers.
[ David Nusinow ]
* Epoch bump
* Add 17_ignoreabi.diff to allow users to simply set a value in xorg.conf
rather than pass -ignoreABI to the server every time it starts
-- David Nusinow <dnusinow@debian.org> Wed, 23 Aug 2006 22:03:06 +0000
xorg-server (1:1.1.1-3) unstable; urgency=low
* Add 16_s390_fix.diff to fix FTBFS on s390. Thanks Bastian Blank.
(closes: #362641)
* Bump build-depends version of libgl1-mesa-dev to 6.5.x package we have in
experimental currently
* Bump build-depends version of x11proto-gl-dev to 1.4.7 or greater
-- David Nusinow <dnusinow@debian.org> Tue, 22 Aug 2006 00:57:31 +0000
xorg-server (1:1.1.1-2) experimental; urgency=low
[ Drew Parsons ]
* Updated mesa-swx11-source build-depends to (>> 6.5.0), required
for xserver 1.1.1. (closes: #383334)
[ David Nusinow ]
* Enable and ship xephyr
* Hack off the 'x' manpage suffix
* Install Xnest manpage
* Bump policy version to 3.7.2.0. No changes necessary.
-- David Nusinow <dnusinow@debian.org> Wed, 16 Aug 2006 21:14:44 +0000
xorg-server (1:1.1.1-1) experimental; urgency=low
[ David Nusinow ]
* New upstream release
* Move patch target call so that we don't try and build twice
* Remove obsolete 15_security_allocate_local.diff and
16_SECURITY_setuid.diff
* Add 15_symlink_mesa.diff
-- David Nusinow <dnusinow@debian.org> Sun, 6 Aug 2006 16:12:25 +0000
xorg-server (2:1.0.2-10) unstable; urgency=low
* Upload to unstable to fixed messed up last upload which was supposed to go
to experimental. Brown bag o' joy.
-- David Nusinow <dnusinow@debian.org> Tue, 22 Aug 2006 19:31:08 +0000
xorg-server (1:1.0.2-9) UNRELEASED; urgency=high
[ Denis Barbier ]
* Fix 13_debian_add_xkbpath_env_variable.diff, XKBPATH environment
variable was not always taken into account.
[ David Nusinow ]
* Remove two Ubuntu packaging holdovers. Have xvfb recommend xbase-clients
rather than xauth, and have xserver-xorg-core recommend xkb-data rather
than xkeyboard-config. Thanks Sterling MacNay.
* Security update. Fix for setuid privledge escalation vulernabilities.
See http://lists.freedesktop.org/archives/xorg/2006-June/016146.html for
the full advisory.
[ Jurij Smakov ]
* Stop including the non-existent asm/kbio.h header file in
hw/xfree86/os-support/linux/lnx_{io,kbd}.c to avoid the build failure
on sparc.
-- David Nusinow <dnusinow@debian.org> Sat, 1 Jul 2006 17:20:45 -0400
xorg-server (1:1.0.2-8) unstable; urgency=low
* Move xserverrc back to xbase-clients. Thanks Benjamin Mesing.
* Add 15_security_allocate_local.diff. This fixes Bug fd.o bug #6642.
Fix buffer overflow in Render. (CVE 2006-1526). Patch by Eric Anholt.
-- David Nusinow <dnusinow@debian.org> Tue, 2 May 2006 21:47:17 -0400
xorg-server (1:1.0.2-7) unstable; urgency=low
* Ship xserverrc again in /etc/X11/xinit. Thanks Bastian Kleineidam and
Vasilis Vasaitis. (closes: #357713)
-- David Nusinow <dnusinow@debian.org> Wed, 26 Apr 2006 00:01:16 -0400
xorg-server (1:1.0.2-6) unstable; urgency=low
[ David Nusinow ]
* Use -DNO_INLINE on s390. Thanks Bastian Blank and Julien Cristau.
(closes: #362641)
* Re-add xvfb-run and manpage to xvfb package. Thanks Josselin Mouette and
Jamie Wilkinson. (closes: #363494)
* Add 014_debian_always_look_in_our_module_path.diff. This will cause the
server to always look in the default module path even if they've specified
an alternate path in their xorg.conf file via the ModulePath option. A
note to users: you should remove this part of your xorg.conf unless you
need it, as the server will look in the right place for modules if you
don't specify a location.
* Run dh_install with --list-missing
* Add missing manpages all around. Thanks Roland Mas and Jan Hudec.
(closes: #362489, #364199)
* Actually install apps to xdmx-tools. Thanks Xavier Bestel.
(closes: #356813)
[ Denis Barbier ]
* Add 13_debian_add_xkbpath_env_variable.diff so that the server takes
the XKBPATH environment variable into account. (closes: #363229)
-- David Nusinow <dnusinow@debian.org> Sat, 22 Apr 2006 17:06:23 -0400
xorg-server (1:1.0.2-5) unstable; urgency=low
* Add 11_debian_always_use_default_font_path.diff from Eugene Konev. This
patch causes the server to add the default font path to whatever the user
has specified. Right now, that's /usr/share/fonts/X11, as defined on
configure in debian/rules. Thanks Eugene, this will definitely go a long
way.
* Document how to get rid of error loading glcore (and other modules) in
NEWS.Debian. Thanks Matej Vela and others.
* Provide the virtual 'xserver' package. Thanks Steve Langasek and Daniel
Stone. (closes: #362750)
* Add 12_security_policy_in_etc.diff from Eugene Konev. This will allow us
to tell the server on configure to look in /etc/X11/xserver for the
SecurityPolicy file. Thanks Joey Hess and Eugene. (closes: #362246)
-- David Nusinow <dnusinow@debian.org> Mon, 17 Apr 2006 00:34:08 -0400
xorg-server (1:1.0.2-4) unstable; urgency=low
* Document the need to update paths in xserver-xorg-core's NEWS file.
(closes: #362077, #362244, #362431)
* Make xserver-xorg-core Architecture: any. (closes: #362150)
* Build with --with-fontdir=/usr/share/fonts/X11. Remove
--with-default-font-path option to make this work. Thanks Eugene Konev.
-- David Nusinow <dnusinow@debian.org> Thu, 13 Apr 2006 23:54:06 -0400
xorg-server (1:1.0.2-3) unstable; urgency=low
* Add build-conflicts on xlibs-static-dev. Thanks Zephaniah E. Hull.
-- David Nusinow <dnusinow@debian.org> Tue, 11 Apr 2006 18:44:51 -0400
xorg-server (1:1.0.2-2) unstable; urgency=low
* Upload to unstable
* Add versioned build-dep on libdmx-dev. Thanks Frank Lichtenheld.
(closes: #361752)
-- David Nusinow <dnusinow@debian.org> Mon, 10 Apr 2006 19:34:04 -0400
xorg-server (1:1.0.2-1) experimental; urgency=low
[ David Nusinow ]
* New upstream release. Fixes CVE-2006-0745
[ Denis Barbier ]
* Set XKB base path to /usr/share/X11/xkb.
-- David Nusinow <dnusinow@debian.org> Mon, 20 Mar 2006 21:41:04 -0500
xorg-server (1:1.0.1-2) experimental; urgency=low
[ David Nusinow ]
* Add versioned dependency on x11-common
* Remove old cruft in our patches directory
* Port patches from trunk
+ 030_libvgahw_gcc4_volatile_fix.diff
+ general/026_xc_programs_manpage_overhaul.diff
+ arm/303_arm_cache_flush.diff
+ arm/315_arm_is_not_x86_and_has_no_vga.diff
+ general/099e_xorgconf_manpage_overhaul.diff
+ s390/500_s390_support.diff
+ debian/910_debian_Xserver_RTFF.diff
* add 04_read_rom_in_chunks.diff. This reads PCI ROM in large chunks rather
than one byte at a time. This patch by Alex Williamson and forwarded to us
by Dann Frazier. Thanks to both of them. (closes: #353168)
* Don't build xserver-xorg-core on s390. This means putting all the other
arches as being explicitly listed. Damn !s390.
* Version the conflict with xserver-xfree86 to allow for the transition
package to be installed
* Remove README.DRI, as it is non-free. Add it to prune list.
* Add 10_dont_look_in_home_for_config.diff to prevent looking in a user's
home directory for xorg.conf. Thanks Daniel Stone for the patch.
-- David Nusinow <dnusinow@debian.org> Sun, 12 Mar 2006 16:18:13 -0500
xorg-server (1:1.0.1-1) experimental; urgency=low
* First upload to Debian
* Add bison and flex to the build-depends
* Define INSTALL in debian/rules
* Add xserver-xorg-core dependency xserver-xorg-video-all |
xserver-xorg-video. The former is a metapackage that depends on all the
video drivers we ship and the latter is a virtual package that each video
driver provides. This scheme will install the metapackage by default but
will permit any single video driver to satsify the dependency. Do the same
thing for the input drivers.
* switch dpatch build-dependency to quilt
* Deal with mesa packaging rename: build-dep on mesa-swrast-source ->
mesa-swx11-source
* Change xserver-core depends to be on x11-common rather than xorg-common
* Have xserver-xorg-dev install the files in /usr/share/aclocal so we get
xorg-server.m4
* Manually set permissions on serverabiver installation
* Set the default font path to /usr/share/fonts/X11 instead of
/usr/share/X11/fonts. Thanks Eugene Konev.
-- David Nusinow <dnusinow@debian.org> Mon, 20 Feb 2006 00:18:45 -0500
xorg-server (1:0.99.2+cvs.20051025-3) dapper; urgency=low
* Version mesa-swrast-source Build-Dep to 6.4.0 or higher, so GLcore is a
little less crash-happy (e.g. when moving your glxgears window).
* Export /usr/share/xserver-xorg/serverabiver to xserver-xorg-dev, which
describes the relationship needed from a driver on xserver-xorg-core.
-- Daniel Stone <daniel.stone@ubuntu.com> Fri, 28 Oct 2005 13:00:26 +1000
xorg-server (1:0.99.2+cvs.20051025-2) dapper; urgency=low
* Add Build-Deps on libxaw7-dev, libxmu-dev, libxt-dev, libxpm-dev,
libx11-dev, libxtst-dev, and libxres-dev for DMX utils.
-- Daniel Stone <daniel.stone@ubuntu.com> Wed, 26 Oct 2005 14:34:40 +1000
xorg-server (1:0.99.2+cvs.20051025-1) dapper; urgency=low
* Update to new upstream version.
* All applicable patches have been committed upstream, bar #989 and #990.
-- Daniel Stone <daniel.stone@ubuntu.com> Thu, 20 Oct 2005 10:26:33 +1000
xorg-server (1:0.99.0+cvs.20050901-1) breezy; urgency=low
* First xorg-server release.
-- Daniel Stone <daniel.stone@ubuntu.com> Wed, 6 Jul 2005 15:48:17 +1000
|