File: changelog

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

  * New upstream version 3.25.1

 -- Timo Röhling <roehling@debian.org>  Wed, 30 Nov 2022 20:57:47 +0100

cmake (3.25.0-3) unstable; urgency=medium

  * Prefer default Python version regardless of CMP0094 (Closes: #1024625)

 -- Timo Röhling <roehling@debian.org>  Thu, 24 Nov 2022 21:45:01 +0100

cmake (3.25.0-2) unstable; urgency=medium

  * New patch to prefer Python default version.
    Now Python3_FIND_UNVERSIONED_NAMES is set to FIRST, so the
    default interpreter is checked first. (Closes: #1024625)
  * Stop shipping emacs cmake mode.
    That mode has been split into the separate package
    elpa-cmake-mode.

 -- Timo Röhling <roehling@debian.org>  Wed, 23 Nov 2022 22:35:39 +0100

cmake (3.25.0-1) unstable; urgency=medium

  * New upstream version 3.25.0
  * Drop obsolete 0001-Prefer-Debian-default-version-of-Python.patch.
    The same effect can be achieved with -DPython3_FIND_UNVERSIONED_NAMES=FIRST
  * Drop ancient d/NEWS

 -- Timo Röhling <roehling@debian.org>  Wed, 16 Nov 2022 21:17:45 +0100

cmake (3.24.3-1) unstable; urgency=medium

  * New upstream version 3.24.3

 -- Timo Röhling <roehling@debian.org>  Thu, 03 Nov 2022 08:51:17 +0100

cmake (3.24.2-2) unstable; urgency=medium

  * Improve discovery for Debian default version of Python

 -- Timo Röhling <roehling@debian.org>  Fri, 14 Oct 2022 11:19:20 +0200

cmake (3.24.2-1) unstable; urgency=medium

  * New upstream version 3.24.2
    - Revert AUTOMOC dummy function (Closes: #1019136)

 -- Timo Röhling <roehling@debian.org>  Tue, 13 Sep 2022 21:38:03 +0200

cmake (3.24.1-1) unstable; urgency=medium

  * New upstream version 3.24.1

 -- Timo Röhling <roehling@debian.org>  Thu, 18 Aug 2022 17:28:16 +0200

cmake (3.24.0-1) unstable; urgency=medium

  * New upstream version 3.24.0

 -- Timo Röhling <roehling@debian.org>  Thu, 04 Aug 2022 22:13:42 +0200

cmake (3.23.3-1) unstable; urgency=medium

  * New upstream version 3.23.3
  * Update Lintian overrides

 -- Timo Röhling <roehling@debian.org>  Fri, 29 Jul 2022 23:19:03 +0200

cmake (3.23.2-1) unstable; urgency=medium

  * Bump Standards-Version to 4.6.1
  * New upstream version 3.23.2
    - Fix cmake-ncurses-gui crash when all cache items are deleted
      (Closes: #1010690)
  * Refresh patches
    - Drop Revert-commit-f745e049-temporarily.patch
      (applied upstream)

 -- Timo Röhling <roehling@debian.org>  Wed, 25 May 2022 21:02:25 +0200

cmake (3.23.1-2) unstable; urgency=medium

  * Work around regression with qa=+canary.
    Upstream has reverted the problematic commit for the
    next point release, pending further investigation. (Closes: #1009408)
  * Address hints from AppStream Report

 -- Timo Röhling <roehling@debian.org>  Wed, 20 Apr 2022 20:47:58 +0200

cmake (3.23.1-1) unstable; urgency=medium

  * Add AppStream metadata for cmake-qt-gui
  * New upstream version 3.23.1

 -- Timo Röhling <roehling@debian.org>  Wed, 13 Apr 2022 00:33:22 +0200

cmake (3.23.0-1) unstable; urgency=medium

  * New upstream version 3.23.0
  * Refresh patches
    - Keep Prefer-Debian-default-version-of-Python.patch
      (Debian specific)
    - Drop Fix-check_symbol_exists-with-pedantic-errors.patch
      (applied by upstream)

 -- Timo Röhling <roehling@debian.org>  Tue, 29 Mar 2022 21:46:55 +0200

cmake (3.22.1-1) unstable; urgency=medium

  [ Mathieu Malaterre ]
  * d/control: Add cmake-format to Suggests: line

  [ Timo Röhling ]
  * New upstream version 3.22.1

 -- Timo Röhling <roehling@debian.org>  Wed, 08 Dec 2021 00:19:44 +0100

cmake (3.22.0-1) unstable; urgency=medium

  * Add lintian overrides for various false positives
  * New upstream version 3.22.0
  * Refresh patches
    - Drop Fix-cross-compilation-with-MPI.patch (applied upstream)
    - Drop Fix-RunCMake.CPack_DEB.EXTRA-on-Debian-non-Linux-OSe.patch
      (applied upstream)
    - Drop Make-FindFLTK-safe-to-include-multiple-times.patch
      (applied upstream)
    - Keep Prefer-Debian-default-version-of-Python.patch
      (Debian-specific)
    - Keep Fix-check_symbol_exists-with-pedantic-errors.patch
      (accepted by upstream, targeted for 3.23 release)

 -- Timo Röhling <roehling@debian.org>  Sat, 20 Nov 2021 13:55:40 +0100

cmake (3.21.4-1) unstable; urgency=medium

  * Also unset _proxy variables for ninja autopkgtest (Fixup for #960179)
  * New upstream version 3.21.4
  * Refresh patches
    - Keep Prefer-Debian-default-version-of-Python.patch
      (Debian-specific)
    - Update Fix-cross-compilation-with-MPI.patch
      (modified by upstream, targeted for 3.22 release)
    - Keep Fix-RunCMake.CPack_DEB.EXTRA-on-Debian-non-Linux-OSe.patch
      (accepted by upstream, targeted for 3.22 release)
    - Drop Fix-misinterpretation-of-Debian-Policy-on-LIBEXECDIR.patch
      (applied by upstream)
    - Keep Make-FindFLTK-safe-to-include-multiple-times.patch
      (accepted by upstream, targeted for 3.22 release)
    - Keep Fix-check_symbol_exists-with-pedantic-errors.patch
      (accepted by upstream, targeted for 3.23 release)

 -- Timo Röhling <roehling@debian.org>  Tue, 02 Nov 2021 14:18:06 +0100

cmake (3.21.3-5) unstable; urgency=medium

  * Package can be cross-compiled now
  * Make FindFLTK safe to include multiple times (Closes: #671746)
  * Fix check_symbols_exists() with -pedantic-errors (Closes: #777542)

 -- Timo Röhling <roehling@debian.org>  Fri, 22 Oct 2021 14:24:08 +0200

cmake (3.21.3-4) unstable; urgency=medium

  * Fix misinterpretation of Debian Policy on LIBEXECDIR
  * New build profile: cmake.pkg.nogui

 -- Timo Röhling <roehling@debian.org>  Thu, 07 Oct 2021 21:03:50 +0200

cmake (3.21.3-3) unstable; urgency=medium

  * Fix FTBFS on non-Linux systems (Closes: #995288)

 -- Timo Röhling <roehling@debian.org>  Wed, 29 Sep 2021 10:25:25 +0200

cmake (3.21.3-2) unstable; urgency=medium

  * Prevent dh_elpha from disabling the test suite
  * Make dh_elpa B-D-Indep
  * Skip spuriously failing tests on kfreebsd-*
  * New build profile: pkg.cmake.bootstrap

 -- Timo Röhling <roehling@debian.org>  Sat, 25 Sep 2021 14:34:09 +0200

cmake (3.21.3-1) unstable; urgency=medium

  * New upstream version 3.21.3
  * Migrate emacsen helpers to dh_elpa (Closes: #802915)
    - M-x cmake-mode autoload is interactive now (Closes: #729598)
  * Update d/watch to version 4

 -- Timo Röhling <roehling@debian.org>  Tue, 21 Sep 2021 00:36:54 +0200

cmake (3.21.2-1) unstable; urgency=medium

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Fix day-of-week for changelog entries 1.2-1, 1.0-1, 1.2-1, 1.0-1.
  * Drop transition for old debug package migration.

  [ Timo Röhling ]
  * New upstream version 3.21.2
    - Map LANGUAGE source file property to compiler language flag
      (Closes: #728108)
    - Rewrite documentation for UseJava.cmake (Closes: #986327)
    - Add PostgreSQL 13 to list of known versions (Closes: #990623)
  * Update patches
    - Drop Compile_with_FILE_OFFSET_BITS_64_on_32-bit_Linux.patch
      (accepted by upstream)
    - Drop disable_fileapi_json_extra_test.patch
      (no longer needed)
    - New patch Fix-cross-compilation-with-MPI.patch (Closes: #943312)
    - New patch Prefer-Debian-default-version-of-Python.patch (Closes: #945825)
  * Bump Standards-Version to 4.6.0
  * Switch to debhelper version 13
  * Unset *_proxy variables in autopkgtest (Closes: #960179)
  * Add myself to uploaders
  * Mark cmake-doc as Multi-Arch: foreign

 -- Timo Röhling <roehling@debian.org>  Tue, 14 Sep 2021 18:05:46 +0200

cmake (3.18.4-2) unstable; urgency=medium

  [ Helmut Grohne ]
  * Drop unused Build-Depends: libbz2-dev and liblzma-dev. (Closes: #981135)
    Compression support is handled via libarchive.

  [ Felix Geyer ]
  * Mark cmake-data as Multi-Arch: foreign. (Closes: #973392)

 -- Felix Geyer <fgeyer@debian.org>  Sun, 07 Feb 2021 10:23:34 +0100

cmake (3.18.4-1) unstable; urgency=medium

  [ Tobias Frost ]
  * B-D on libarchive >=3.3.3 (Closes: #972252)

  [ Kyle Edwards ]
  * Set --docdir to actual destination

  [ Felix Geyer ]
  * New upstream release
  * Cherry-pick commit to build with -D_FILE_OFFSET_BITS=64 on 32bit archs.
    - Add Compile_with_FILE_OFFSET_BITS_64_on_32-bit_Linux.patch
    - Closes: #965046

 -- Felix Geyer <fgeyer@debian.org>  Mon, 19 Oct 2020 16:20:14 +0200

cmake (3.18.2-1) unstable; urgency=medium

  * New upstream release.
  * Drop FindPkgConfig_also_handle_isystem.patch, applied upstream.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 30 Aug 2020 14:41:24 +0200

cmake (3.16.3-3) unstable; urgency=medium

  * Handle -isystem from pkg-config correctly. (Closes: #959064)
    - Cherry-pick upstream patch in FindPkgConfig_also_handle_isystem.patch

 -- Felix Geyer <fgeyer@debian.org>  Sat, 09 May 2020 15:40:54 +0200

cmake (3.16.3-2) unstable; urgency=medium

  * Build-depend on python3-sphinxcontrib.qthelp for sphinx >= 2.0
    (Closes: #955120)

 -- Felix Geyer <fgeyer@debian.org>  Sun, 19 Apr 2020 18:07:42 +0200

cmake (3.16.3-1) unstable; urgency=medium

  * New upstream release. (Closes: #949964)

 -- Felix Geyer <fgeyer@debian.org>  Sun, 02 Feb 2020 14:59:35 +0100

cmake (3.15.4-1) unstable; urgency=medium

  * New upstream release. (Closes: #944090)
  * Disable FIleAPI json-extra test for now as it doesn't seem critical and
    fails with libjsoncpp 1.7.4.
  * Switch to debhelper compat level 12.
  * Pass --fail-missing to dh_missing.

 -- Felix Geyer <fgeyer@debian.org>  Tue, 12 Nov 2019 20:11:25 +0100

cmake (3.13.4-1) unstable; urgency=medium

  * New upstream release.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 10 Feb 2019 11:33:12 +0100

cmake (3.13.2-1) unstable; urgency=medium

  * New upstream release.
    - No longer passes implicit include directories to the moc tool,
      fixing kio FTBFS. (Closes: #915391)

 -- Felix Geyer <fgeyer@debian.org>  Fri, 14 Dec 2018 19:07:46 +0100

cmake (3.13.1-1) unstable; urgency=medium

  [ Jelmer Vernooij ]
  * Use secure copyright file specification URI.
  * Trim trailing whitespace.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Add Helmut Grohne's script to generate toolchain files based on
    Ubuntu/Debian's Multi-Arch as debtoolchainfilegen.

  [ Felix Geyer ]
  * New upstream release.
    - Adds support for the Boost Stacktrace component. (Closes: #912074)
  * Drop FindBoost_add_-lpthread_#563479.diff, fixed upstream.

 -- Felix Geyer <fgeyer@debian.org>  Fri, 30 Nov 2018 07:33:06 +0100

cmake (3.13.0~rc2-1) experimental; urgency=medium

  * New upstream release candidate.
  * Drop patches that have been applied upstream:
    - fix-ftbfs-on-kfreebsd.patch
    - fix_ftbfs_on_kfreebsd2.patch
    - hurd_so_noexec.patch
    - GNUInstallDirs-kfreebsd-man.patch

 -- Felix Geyer <fgeyer@debian.org>  Sun, 28 Oct 2018 14:29:04 +0100

cmake (3.12.3-3) unstable; urgency=medium

  * Fix info and man page install directories on kFreeBSD. (Closes: #911700)
    - Add GNUInstallDirs-kfreebsd-man.patch

 -- Felix Geyer <fgeyer@debian.org>  Sun, 28 Oct 2018 12:05:32 +0100

cmake (3.12.3-2) unstable; urgency=medium

  * Increase timeout of tests from 2000s to 5000s. (Closes: #910513)
    - Needed for riscv64 qemu-system buildds.

 -- Felix Geyer <fgeyer@debian.org>  Tue, 16 Oct 2018 22:43:42 +0200

cmake (3.12.3-1) unstable; urgency=medium

  * New upstream release.
    - Fixes FTBFS on hurd. (Closes: #900240)
  * Make shared libraries non-executable on hurd.
    - Fixes a test suite failure.
    - Cherry-pick upstream fix in hurd_so_noexec.patch

 -- Felix Geyer <fgeyer@debian.org>  Sun, 07 Oct 2018 16:38:46 +0200

cmake (3.12.1-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Add patch from upstream to fix FTBFS in kfreebsd.  Closes: #905138
  * Add Build-Dependency on freebsd-glue on kfreebsd-any.

 -- Mattia Rizzolo <mattia@debian.org>  Thu, 27 Sep 2018 17:50:12 +0200

cmake (3.12.1-1) unstable; urgency=medium

  * New upstream release.
    - Fixes FTBFS with recent version of libuv1. (Closes: #905140)
  * Drop qt_import_dir_variable.diff, not needed anymore.

 -- Felix Geyer <fgeyer@debian.org>  Thu, 09 Aug 2018 21:35:37 +0200

cmake (3.11.2-1) unstable; urgency=medium

  * New upstream release.
    - Properly handles OpenJDK 10 versioning. (Closes: #897611)

 -- Felix Geyer <fgeyer@debian.org>  Sat, 19 May 2018 13:44:22 +0200

cmake (3.11.1-1) unstable; urgency=medium

  * New upstream release.
    - Fixes Java 10 detection. (Closes: #895229)

 -- Felix Geyer <fgeyer@debian.org>  Mon, 23 Apr 2018 22:41:25 +0200

cmake (3.10.2-1) unstable; urgency=medium

  * New upstream release.
  * Disable CTestTestUpload in autopkgtest.
  * Point Vcs-* control fields to the new repo on salsa.
  * Switch to debhelper compat level 10.
  * Make cmake suggest cmake-doc. (Closes: #805901)

 -- Felix Geyer <fgeyer@debian.org>  Sun, 18 Feb 2018 12:49:47 +0100

cmake (3.9.5-1) unstable; urgency=medium

  * New upstream release.
  * Set Rules-Requires-Root: no

 -- Felix Geyer <fgeyer@debian.org>  Mon, 06 Nov 2017 20:40:15 +0100

cmake (3.9.3-1) unstable; urgency=medium

  * New upstream release.
  * Increase test timeout to 2000s.
    - Hopefully this gives slow buildds enough time to run the Qt5Autogen test.
      (Closes: #876378)
  * Switch to python3 sphinx.
  * Remove upgrade maintainer scripts from before stretch.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 24 Sep 2017 12:12:40 +0200

cmake (3.9.1-1) unstable; urgency=medium

  * New upstream release.
  * Remove fix-java9-detection.patch, applied upstream.

 -- Felix Geyer <fgeyer@debian.org>  Fri, 11 Aug 2017 12:26:36 +0200

cmake (3.9.0-1) unstable; urgency=medium

  * New upstream release.
  * Refresh patches.
  * Drop ancient Breaks/Replaces/Conflicts.
  * No longer suggest eclipse and codeblocks. (Closes: #750465)
  * Add Python and Java to findmodules autopkgtest.
  * Fix detection of OpenJDK 9 early access builds. (Closes: #868327)
    - Add fix-java9-detection.patch

 -- Felix Geyer <fgeyer@debian.org>  Tue, 25 Jul 2017 18:14:02 +0200

cmake (3.8.0-1) experimental; urgency=medium

  * New upstream release.
    - CPackDeb: print warning when "file" tool is missing. (Closes: #847307)
  * Refresh fix-ftbfs-on-kfreebsd.patch
  * Drop mips-rld-map-rel.patch, merged upstream.
  * Add librhash-dev to Build-Depends.

 -- Felix Geyer <fgeyer@debian.org>  Sat, 15 Apr 2017 12:08:12 +0200

cmake (3.7.2-1) unstable; urgency=medium

  * New upstream release.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 15 Jan 2017 16:00:24 +0100

cmake (3.7.1-1) unstable; urgency=medium

  * New upstream release.
  * Don't try to link against libuv on hurd. (Closes: #844374)

 -- Felix Geyer <fgeyer@debian.org>  Sun, 04 Dec 2016 01:01:26 +0100

cmake (3.7.0-1) unstable; urgency=medium

  * New upstream release.
  * Remove libjapser from the autopkgtest, the package has been removed
    from the archive.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 13 Nov 2016 19:35:16 +0100

cmake (3.7.0~rc3-1) experimental; urgency=medium

  * New upstream release.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 06 Nov 2016 11:59:35 +0100

cmake (3.7.0~rc2-1) experimental; urgency=medium

  * New upstream release.
  * Drop CMakeParseImplicitLinkInfo_Exclude_libclang_rt.patch, fixed upstream.
  * Refresh patches.
  * Add libuv1-dev to Build-Depends, required by new release.
  * Update Uploaders. (Closes: #840858)

 -- Felix Geyer <fgeyer@debian.org>  Sun, 30 Oct 2016 23:21:54 +0100

cmake (3.6.2-2) unstable; urgency=medium

  * Add mips-rld-map-rel.patch to solve segfaults caused by new
    DT_MIPS_RLD_MAP_REL tag and RPATH removers (Closes: #820334).
    Thanks James Cowgill for the patch.
  * Refresh patches.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Fri, 14 Oct 2016 22:29:17 -0300

cmake (3.6.2-1) unstable; urgency=medium

  * New upstream release.
  * Fix broken binaries when using clang with -fsanitize. (Closes: #835426)
    - Add CMakeParseImplicitLinkInfo_Exclude_libclang_rt.patch,
      cherry-picked from upstream.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 11 Sep 2016 18:25:36 +0200

cmake (3.6.1-1) unstable; urgency=medium

  * New upstream release.
  * Drop FindImageMagick_find_program.patch, the underlying issue has been
    fixed upstream.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 21 Aug 2016 11:13:07 +0200

cmake (3.6.0-1) experimental; urgency=medium

  * New upstream release.
  * Drop patches that have been applied upstream:
    - FindLibArchive_Support_libarchive_3.2.patch
    - file_Sort_GLOB_results_to_make_it_deterministic.patch
  * Fix detection of ImageMagick.
    - Add FindImageMagick_find_program.patch
  * Add new autopkgtest which checks if various Find modules are wokring,

 -- Felix Geyer <fgeyer@debian.org>  Sun, 10 Jul 2016 10:49:22 +0200

cmake (3.5.2-2) unstable; urgency=medium

  * Make FindLibArchive compatible with libarchive 3.2. (Closes: #828092)
    - Add FindLibArchive_Support_libarchive_3.2.patch
  * Backport patch to make file(GLOB) order deterministic. (Closes: #824263)
    - Add file_Sort_GLOB_results_to_make_it_deterministic.patch

 -- Felix Geyer <fgeyer@debian.org>  Tue, 28 Jun 2016 19:39:56 +0200

cmake (3.5.2-1) unstable; urgency=medium

  * New upstream release.
  * Add cvs to autopkgtest Depends. (Closes: #819775)

 -- Felix Geyer <fgeyer@debian.org>  Fri, 22 Apr 2016 21:11:37 +0200

cmake (3.5.1-1) unstable; urgency=medium

  * New upstream release.
    - Fixes FindCUDA regression in separate compilation. (Closes: #818937)
  * Update copyright file.

 -- Felix Geyer <fgeyer@debian.org>  Tue, 29 Mar 2016 22:16:11 +0200

cmake (3.5.0-1) unstable; urgency=medium

  * New upstream release.
    - Fixes fltk_wrap_ui segmentation fault. (Closes: #809535)
  * Pass correct buildsystem to dh_auto_test, fixes FTBFS. (Closes: #818040)
  * Change Vcs-* and Homepage to https URLs.
  * Migrate to dbgsym debug package.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 13 Mar 2016 15:16:37 +0100

cmake (3.4.1-2) unstable; urgency=medium

  * Upload to unstable.

 -- Felix Geyer <fgeyer@debian.org>  Mon, 14 Dec 2015 21:41:03 +0100

cmake (3.4.1-1) experimental; urgency=medium

  * New upstream release.

 -- Felix Geyer <fgeyer@debian.org>  Thu, 03 Dec 2015 18:45:35 +0100

cmake (3.4.0-1) experimental; urgency=medium

  * New upstream release.
  * Drop patches that have been applied upstream:
    - FindJNI.cmake.mips.patch
    - fix-hdf5-hl.patch
    - FindJNI-Add-support-for-x32-architecture-on-Linux.patch
    - Features_Extract_strings_from_test_binary_more_reliably.patch
    - FindPkgConfig_remove_variable_dereference.patch
    - FindPython_Add_versions_3.5_and_3.6.patch
  * Point watch file to the https URL.
  * Stop hardcoding the major version in cmake-data.install.
  * Remove upgrade maintainer scripts from before wheezy.

 -- Felix Geyer <fgeyer@debian.org>  Tue, 17 Nov 2015 18:27:32 +0100

cmake (3.3.2-2) unstable; urgency=medium

  * Search for Python 3.5 and 3.6. (Closes: #802826)
    - Add FindPython_Add_versions_3.5_and_3.6.patch
  * Add tighter build-depends on dpkg-dev and debhelper for Build-Profiles
    support.

 -- Felix Geyer <fgeyer@debian.org>  Sat, 07 Nov 2015 19:13:27 +0100

cmake (3.3.2-1) unstable; urgency=medium

  * Upload to unstable.
  * New upstream release.
  * Drop Debian menu entries.
  * Make compiler feature testing more reliable.
    - Fixes testsuite failure on alpha. (Closes: #789807)
    - Features_Extract_strings_from_test_binary_more_reliably.patch
  * Fix FindPkgConfig when no minimum version has been set.
    - FindPkgConfig_remove_variable_dereference.patch
  * Remove inactive uploaders from the list.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 20 Sep 2015 21:36:39 +0200

cmake (3.3.1-2) experimental; urgency=medium

  * Set the team mailing list as maintainer.
  * Add a stage1 build profile that disables building cmake-qt-gui.
    (Closes: #738161)
  * Add autopkgtests which run the upstream testsuite against the system cmake.
  * Add support for x32 in FindJNI. (Closes: #792262)
    - FindJNI-Add-support-for-x32-architecture-on-Linux.patch

 -- Felix Geyer <fgeyer@debian.org>  Fri, 28 Aug 2015 18:41:24 +0200

cmake (3.3.1-1) experimental; urgency=medium

  * New upstream release.
    - Fixes bashism in Modules/Squish4RunTestCase.sh. (Closes: #772218)
  * Drop patches that have been applied upstream:
    - cpack-doc-typo.patch
    - protect-tests-from-makeflags.patch
    - custom-sphinx-flags.patch
    - fix-mips-endian.patch
    - openjdk-8-detection.patch
  * Move bash_completion from /etc to /usr/share.
    - Stop using dh_bash-completion. It still installs files to /etc and
      dh_install works just fine.

 -- Felix Geyer <fgeyer@debian.org>  Fri, 21 Aug 2015 11:57:13 +0200

cmake (3.2.2-2) unstable; urgency=medium

  * Make cmake.bash-completion use wildcards for the minor version
    thus avoiding installing the file as a script (Closes: #785267).

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 13 May 2015 23:04:05 -0300

cmake (3.2.2-1) unstable; urgency=medium

  [ Mario Lang ]
  * New upstream release (Closes: #780704).
    - Fixes version detection in the OpenSSL module. (Closes: #784443)
  * Add myself to Uploaders.
  * Build-Depend on liblzma-dev and libjsoncpp-dev.
  * Drop patches merged upstream:
    - fix-FindImageMagick-1.diff
    - fix-FindImageMagick-2.diff
    - FindJNI_ppc64le.diff
    - hurd_host_system_processor.diff
  * Refresh patches:
    - FindBoost_add_-lpthread_#563479.diff
    - FindJNI.cmake.mips.patch
    - fix-ftbfs-on-kfreebsd.patch
    - fix-hdf5-hl.patch
    - qt_import_dir_variable.diff
  * Bump Standards-Version to 3.9.6.
  * Fix "Typo in cpack documentation" by adding new patch cpack-doc-typo.patch
    (Closes: #760298)
  * debian/cmake-data.install: Install new manpage cmake-compile-features.7

  [ Felix Geyer ]
  * Build cmake-qt-gui against Qt 5 again.
  * Add protect-tests-from-makeflags.patch, cherry-picked from upstream.
    - Fixes running the test suite in parallel from dh_auto_test.
  * Make builds reproducible.
    - Add custom-sphinx-flags.patch, cherry-picked from upstream.
    - Pass the date from d/changelog to sphinx.
  * Add libcurl-ssl-dev as an alternative build-dependency to
    libcurl4-openssl-dev. (Closes: #785128)
  * Properly detect mipsel as little endian architecture. (Closes: #785126)
    - Add fix-mips-endian.patch
  * Fix detection of openjdk 8. (Closes: #772631)
    - Add openjdk-8-detection.patch

 -- Felix Geyer <fgeyer@debian.org>  Wed, 13 May 2015 19:02:05 +0200

cmake (3.0.2-1) unstable; urgency=medium

  * New upstream release.
    - Adds support for OpenRISC (or1k). (Closes: #749004)
  * Detect the processor when running on Hurd. (Closes: #761060)
    - Add hurd_host_system_processor.diff, cherry-picked from upstream.
  * Revert cmake-qt-gui to Qt 4 for now as qtbase 5 fails to build on some
    architectures.

 -- Felix Geyer <fgeyer@debian.org>  Sun, 14 Sep 2014 19:16:38 +0200

cmake (3.0.1-1) experimental; urgency=medium

  * New upstream release.
  * Drop patches (fixed upstream):
    - fix-bootstrap-test-1.diff
    - fix-bootstrap-test-2.diff

 -- Felix Geyer <fgeyer@debian.org>  Sat, 09 Aug 2014 21:11:50 +0200

cmake (3.0.0-1) experimental; urgency=medium

  * New upstream release. (Closes: #743231)
    - Uses multiarch libdir only when prefix is /usr. (Closes:  #739876)
    - Doesn't crash on bad generator name. (Closes: #747306)
    - Provides a FindLua module that supports versions 5.0 - 5.3.
      (Closes: #739285)
    - Fixes parsing CMakeLists.txt in UTF-8 with BOM encoding. (Closes: #593327)
    - Call cmake-gui for edit_cache when using the ninja generator.
      (Closes: #712241)
  * Drop patches (fixed upstream):
    - install_to_multiarch_libdir_on_kfreebsd_hurd.diff
    - FindPHP4_fix_typo.diff
    - FindJNI_amd64_ppc_biarch.diff
    - fix-FindFreetype.diff
    - FindRuby_support_Ruby_2.diff
    - fix-FindFreetype-version.diff
  * Refresh patches:
    - FindJNI.cmake.mips.patch
    - FindJNI_ppc64le.diff
  * Fix running the test suite.
    - Cherry-pick upstream fix in fix-bootstrap-test-1.diff and
      fix-bootstrap-test-2.diff
  * Build the sphinx documentation and man pages.
    - Build-depend on python-sphinx.
  * Update install files.
  * Pass --list-missing to dh_install.
  * Use sphinxdoc debhelper sequence.
  * Add -Wl,--as-needed to LDFLAGS to avoid overlinking.
  * Drop custom cmake-gui manpage, upstream provides one now.
  * Build cmake-qt-gui against Qt 5.
  * Drop obsolete lintian override cmake-data: extra-license-file.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Update debian/copyright.

 -- Felix Geyer <fgeyer@debian.org>  Thu, 07 Aug 2014 23:38:00 +0200

cmake (2.8.12.2-2) unstable; urgency=high

  * Search for Python 3.4 in FindPython{Interp,Libs}.
    - Add search_for_python3.4.diff
  * Don't create docs symlinks from arch-dep to arch-indep packages.
    (Closes: #760823)
  * Move the rm_conffile calls to cmake.maintscript.

 -- Felix Geyer <fgeyer@debian.org>  Mon, 08 Sep 2014 22:18:32 +0200

cmake (2.8.12.2-1) unstable; urgency=medium

  [ Felix Geyer ]
  * New upstream release.
  * Add Lisandro and myself to uploaders.
  * Correctly pass CXXFLAGS with CPPFLAGS to bootstrap.
  * Suggest ninja-build as cmake provides a generator for ninja.
    (Closes: #743229)
  * Fix JNI detection on ppc64el.
    - Add FindJNI_ppc64le.diff, cherry-picked from upstream.
  * Drop ancient Breaks/Replaces.
  * Add lintian override for source-is-missing tags.
    These are just binary test files used by the test suite to verify that
    changing the RPATH works fine.
  * Drop some redundant build options from debian/rules.
  * Drop multiarch_findgtk2_fix.diff, was already fixed upstream in 2.8.11.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Update debian/copyright.

 -- Felix Geyer <fgeyer@debian.org>  Thu, 07 Aug 2014 20:16:56 +0200

cmake (2.8.12.1-1.6) unstable; urgency=low

  * Non-maintainer upload.
  * Fix HDF5 macro for HL and Fortran_HL components (closes: #756108).

 -- Gilles Filippini <pini@debian.org>  Wed, 30 Jul 2014 12:51:57 +0200

cmake (2.8.12.1-1.5) unstable; urgency=medium

  * Non-maintainer upload.
  * Detect the version string of Freetype 2.5. (Closes: #732182)
    - Add fix-FindFreetype-version.diff, cherry-picked from upstream.
  * Detect the multi-arch ImageMagick include dirs. (Closes: #747907)
    - Add fix-FindImageMagick-1.diff and fix-FindImageMagick-2.diff,
      cherry-picked from upstream.

 -- Felix Geyer <fgeyer@debian.org>  Tue, 22 Jul 2014 21:18:39 +0200

cmake (2.8.12.1-1.4) unstable; urgency=medium

  * Non-maintainer upload.
  * Add support for mips64 mips64el mipsn32 mipsn32el in
    Modules/FindJNI.cmake.
    Add FindJNI.cmake.mips.patch.
    Patch by Yunqiang Su.
    Closes: #747174.

 -- Anibal Monsalve Salazar <anibal@debian.org>  Mon, 26 May 2014 12:34:45 +0100

cmake (2.8.12.1-1.3) unstable; urgency=medium

  * Non-maintainer upload.
  * multiarch-python-include-dirs.diff has bad side-effects
    Drop multiarch-python-include-dirs.diff
    Closes: #735248

 -- Anibal Monsalve Salazar <anibal@debian.org>  Fri, 23 May 2014 09:25:22 +0100

cmake (2.8.12.1-1.2) unstable; urgency=low

  * Non-maintainer upload.
  * Backport patch to support Ruby 2.0 and 2.1 in FindRuby.cmake.
    (closes: #739826, #730095)

 -- Bas Couwenberg <sebastic@xs4all.nl>  Sun, 30 Mar 2014 21:57:27 +0200

cmake (2.8.12.1-1.1) unstable; urgency=high

  * Non-maintainer upload.
  * Make sure to find freetype headers in their new location (without an
    extra freetype/ directory, fix-FindFreetype.diff). (Closes: #731089)

 -- Cyril Brulebois <kibi@debian.org>  Sun, 15 Dec 2013 10:30:54 +0000

cmake (2.8.12.1-1) unstable; urgency=low

  * New upstream release:
    - Automoc no longer ignores ADD_DEFINITIONS. (Closes: #728793)
  * Migrate to emacs policy v2.0: cmake-data no longer needs to depend on
    emacsen-common but pretty recent debhelper is needed at build time.
  * Drop fixup_manpages.diff patch: merged upstream.

 -- Modestas Vainius <modax@debian.org>  Thu, 07 Nov 2013 00:56:52 +0200

cmake (2.8.12-2) unstable; urgency=low

  * Fix FTBFS on kFreeBSD (fix-ftbfs-on-kfreebsd.patch).

 -- Modestas Vainius <modax@debian.org>  Mon, 04 Nov 2013 00:31:57 +0200

cmake (2.8.12-1) unstable; urgency=low

  * New upstream release:
    - no longer contains workaround for GCC 2.96 bugs; (Closes: #717144)
    - cmake -E touch no longer truncates time to seconds. (Closes: #699657)
  * Enable bash-completion. (Closes: #722236)
  * Switch to using libcurl4-openssl-dev rather than GnuTLS variant. cmake and
    all its dependencies appear to be licence compatible. The main reason for
    the switch is that OpenSSL variant appear to be less troublesome.
    (Closes: #716798)
  * Follow emacsen policy 5C and link cmake-mode.el source file next to
    compiled one. Thanks to Kevin Ryde. (Closes: #710570)
  * Add compiled cmake-mode.elc to load-path and do not barf in emacs if
    cmake-data was removed but not purged. Thanks to Kevin Ryde.
    (Closes: #710573)
  * Remove the whole emacs compiled directory rather than just .elc file.
    Thanks to Kevin Ryde. (Closes: #710572)
  * Fix a code typo in PHP4 (patch FindPHP4_fix_typo.diff). Thanks to Mathieu
    Malaterre for the patch. (Closes: #722475)
  * Properly find Java when kernel is 64bit, userland - 32bit (amd64/ppc64).
    (patch: FindJNI_amd64_ppc_biarch.diff) (Closes: #718290)
  * Bump Standards-Version to 3.9.5: no further changes needed.
  * Fix spelling mistakes in manpages (patch: fixup_manpages.diff).

 -- Modestas Vainius <modax@debian.org>  Sun, 03 Nov 2013 20:42:54 +0200

cmake (2.8.11.2-1) unstable; urgency=low

  * New upstream release.
  * Use canonical URL in the Vcs-Git control field.

 -- Modestas Vainius <modax@debian.org>  Thu, 04 Jul 2013 23:27:07 +0300

cmake (2.8.11.1-1) unstable; urgency=low

  * New upstream tweak release:
    - this release fixes tests which used to fail when cmake build path
      contained regex metacharacters. As a result, cmake should no longer FTBFS
      on Debian buildds which have '+' symbol in the build path.

 -- Modestas Vainius <modax@debian.org>  Sun, 16 Jun 2013 00:58:09 +0300

cmake (2.8.11-2) unstable; urgency=low

  * Build with BZip2 support, thanks to Pino Toscano for heads up!
  * Bump Standards-Version to 3.9.4: no changes needed.

 -- Modestas Vainius <modax@debian.org>  Sun, 19 May 2013 22:47:11 +0300

cmake (2.8.11-1) unstable; urgency=low

  * New upstream release.
  * Add multiarch-python-include-dirs.diff to support multi-arch capable
    python. Stolen from Ubuntu.
  * FindQt4: define QT_IMPORTS_DIR variable even if it is not present on
    the system (i.e. there are no plugins currently installed). Stolen
    from Ubuntu. Patch qt_import_dir_variable.diff.

 -- Modestas Vainius <modax@debian.org>  Sun, 19 May 2013 12:38:26 +0300

cmake (2.8.11~rc3-1) experimental; urgency=low

  * New upstream release.

 -- Modestas Vainius <modax@debian.org>  Sun, 21 Apr 2013 11:09:05 +0300

cmake (2.8.11~rc1-1) experimental; urgency=low

  * New upstream release. (Closes: #700225)
  * Make cmake recommend make and gcc rather than suggest them.
  * Make cmake suggest codeblocks and eclipse.
  * Drop XMLrpc support. It has been disabled upstream for a while now.
    (Closes: #687326)
  * Bump Standards-Version to 3.9.4: no changes needed.
  * Replace FindBoost_add_-lpthread_#563479.diff patch with a better version
    from upstream BTS and make it apply to current FindBoost.
  * Drop FindPostgreSQL_665721.diff patch, merged upstream.
  * Refresh multiarch_findgtk2_fix.diff patch.

 -- Modestas Vainius <modax@debian.org>  Sat, 16 Mar 2013 20:41:24 +0200

cmake (2.8.9-1) unstable; urgency=low

  * New upstream release (no upstream changes since RC3).
  * Make FindPostgreSQL find headers on Debian. Thanks to Pere Nubiola i
    Radigales and Gregor Jasny. (Closes: #665721)
    Patch: FindPostgreSQL_665721.diff
  * Refresh patches.
  * Install to multiarch libdir on kFreeBSD and Hurd like on Linux. Thanks
    to John Stamp (Closes: #684956)
    Patch: install_to_multiarch_libdir_on_kfreebsd_hurd.diff

 -- Modestas Vainius <modax@debian.org>  Sat, 18 Aug 2012 23:13:37 +0300

cmake (2.8.9~rc3-1) unstable; urgency=low

  * New upstream release:
    - fixes COMPONENT option. (Closes: #681428)
  * Remove obsolete /etc/emacs/site-start.d/50cmake.el conffile (predates
    squeeze). (Closes: #681625)

 -- Modestas Vainius <modax@debian.org>  Sat, 04 Aug 2012 10:41:40 +0300

cmake (2.8.9~rc1-1) unstable; urgency=low

  * New upstream release.
  * Remove patches, merged upstream:
    - backport_findpkgconfig_set_found_variable.diff;
    - backport_module_no_soname.diff;
    - manpage_fixes.diff.
  * Drop cmake-{qt,curses}-gui.lintian-overrides, not needed with newer lintian.
  * Enable hardening flags (by appending CPPFLAGS to C(XX)FLAGS).

 -- Modestas Vainius <modax@debian.org>  Wed, 27 Jun 2012 21:34:06 +0300

cmake (2.8.8-3) unstable; urgency=low

  * Backport a no-soname feature from CMake (2.8.9) master tree. Just set a
    NO_SONAME property on the shared library or module target in order to skip
    addition of the SONAME field to the shared object. This makes it possible to
    build Debian Python policy compliant modules with CMake. (Closes: #668982)

 -- Modestas Vainius <modax@debian.org>  Wed, 02 May 2012 21:50:09 +0300

cmake (2.8.8-2) unstable; urgency=low

  * FindPkgConfig.cmake: properly set documented PKG_CONFIG_FOUND variable
    (patch backport_findpkgconfig_set_found_variable.diff). (Closes: #669627)

 -- Modestas Vainius <modax@debian.org>  Sun, 29 Apr 2012 09:55:50 +0300

cmake (2.8.8-1) unstable; urgency=low

  * New upstream release:
    - do not segfault when adding symbols to ZIP. (Closes: #666456)
      Fixed by upstream commit: 768cf9183
  * Remove patches merged/backported from upstream:
    - backport_findpython_fixes.diff
    - backport_findruby_improvements.diff
    - backport_support_cxxtest4.diff
    - manpage_fixes.diff
    - mipsel_is_little_endian.diff
    - paths_in_regex_espace_metachars.diff
  * Refresh FindBoost_add_-lpthread_#563479.diff patch.
  * Readd manpage_fixes.diff patch with new man page fixes.

 -- Modestas Vainius <modax@debian.org>  Thu, 19 Apr 2012 22:32:10 +0300

cmake (2.8.7-4) unstable; urgency=low

  * Backport a bunch of FindPython* related commits from cmake master. It
    is now possible to force a specific python version via command line again.
    The interface has changed though, see NEWS entry. (Closes: #663188)
    Patch: backport_findpython_fixes.diff
  * Backport a bunch of FindRuby improvements from cmake master. It should be
    able to properly find ruby 1.9.1 as packaged in Debian now.
    (Closes: #643949)
    Patch: backport_findruby_improvements.diff
  * Add support for CxxTest 4 in FindCxxTest (backport a patch from cmake
    master). (Closes: #662982) Thanks to Simone Rossetto.
    Patch: backport_support_cxxtest4.diff
  * Bump Standards-Version to 3.9.3: no changes needed.
  * Mark cmake Multi-Arch: foreign. The change was stolen from Ubuntu
    cmake_2.8.7-0ubuntu3 package. Thanks to Steve Langasek.

 -- Modestas Vainius <modax@debian.org>  Fri, 16 Mar 2012 23:49:28 +0200

cmake (2.8.7-3) unstable; urgency=medium

  * Fix some tests not to fail if absolute build path contains regex
    metacharacters like +. This makes the package binNMUable again.
    (patch paths_in_regex_espace_metachars.diff)
  * Drop support_cppflags.diff patch because this particular solution was
    rejected by upstream. This reopens #653916.

 -- Modestas Vainius <modax@debian.org>  Mon, 27 Feb 2012 00:56:14 +0200

cmake (2.8.7-2) unstable; urgency=low

  * Properly detect mipsel as little endian architecture. Fixes FTBFS (patch
    mipsel_is_little_endian.diff).
  * Bump debhelper compat level to 9 in order to receive build flags
    automagically.

 -- Modestas Vainius <modax@debian.org>  Sun, 19 Feb 2012 13:44:42 +0200

cmake (2.8.7-1) unstable; urgency=low

  * New upstream release. (Closes: #658427)
  * Disable CTestTestUpload test because it requires Internet access. Thanks to
    Felix Geyer. (Closes: #634603)
  * Remove multiarch_lib_dirs_should_be_implicit.diff patch, merged upstream.
  * Refresh other patches.
  * Respect CPPFLAGS environment variable when building C/C++ sources (patch
    support_cppflags.diff). (Closes: #653916)
  * Fix various typos and formatting errors in manpages (patch
    manpage_fixes.diff).
  * Update install files: add usr/share/aclocal/cmake.m4.

 -- Modestas Vainius <modax@debian.org>  Sat, 18 Feb 2012 15:33:35 +0200

cmake (2.8.5-1) unstable; urgency=low

  * New upstream release:
    - fixes UseSWIG. (Closes: #631497)
  * Drop screen-256color-bce.diff - merged upstream.
  * Drop spelling_formatting_fixes.diff - merged upstream.
  * Make sure CMake considers /lib/<arch> as implicit and keeps it out of
    automatic R(UN)PATH (patch multiarch_lib_dirs_should_be_implicit.diff).
  * Refresh FindBoost_add_-lpthread_#563479.diff patch.

 -- Modestas Vainius <modax@debian.org>  Sat, 09 Jul 2011 15:18:39 +0300

cmake (2.8.5~rc2-1) unstable; urgency=low

  * New upstream release.
  * No longer repack upstream tarball and drop dfsg suffix from the version
    number. The tarball is DFSG clean now.
  * Drop fixup_manpages.diff patch, merged upstream.
  * Drop backport_test_order_fix.diff patch, was backported from upstream.
  * Drop multiarch_basic_support.diff patch, merged upstream.
  * Refresh screen-256color-bce.diff patch.
  * Add spelling_formatting_fixes.diff which fixes a couple of new
    spelling / formatting errors.
  * Override incorrect menu-icon-missing lintian warning properly.

 -- Modestas Vainius <modax@debian.org>  Sun, 19 Jun 2011 17:33:45 +0300

cmake (2.8.4+dfsg.1-5) unstable; urgency=medium

  * Fix multiarch regex to support armel and (hopefully) all other possible
    linux architectures (patch multiarch_basic_support.diff updated).
  * Support multiarch paths on kfreebsd and hurd (patch
    multiarch_basic_support.diff updated). (Closes: #630167)
  * Urgency=medium, the bugs above make cmake almost unusable on armel and
    kfreebsd.

 -- Modestas Vainius <modax@debian.org>  Sat, 11 Jun 2011 22:47:18 +0300

cmake (2.8.4+dfsg.1-4) unstable; urgency=low

  * Drop multiarch_library_directory_hack.diff patch. A better solution has
    been implemented (see below).
  * Add multiarch implementation from upstream (patch
    multiarch_basic_support.diff, taken from upstream bug #12037). New
    implementation does not need dpkg-dev 1.16, it is entirely backwards
    compatible with previous releases and in addition, it implements multiarch
    support for find_package().
  * Adapt multiarch_findgtk2_fix.diff patch to work with
    multiarch_basic_support.diff.

 -- Modestas Vainius <modax@debian.org>  Thu, 09 Jun 2011 01:18:19 +0300

cmake (2.8.4+dfsg.1-3) unstable; urgency=low

  * Merge 2.8.2+dfsg.1-0+squeeze1 changes.
  * Do not start cmake description synopsis with an article.
  * Generate colour Makefiles when $TERM is set to 'screen-256color-bce'.
    Thanks to Davide Mancusi for the patch (screen-256color-bce.diff).
    (Closes: #627853)
  * Add libxmlrpc-core-c3-dev as a preferred alternative to libxmlrpc-c3-dev
    in Build-Depends. libxmlrpc-c3-dev has become a transitional package.
  * Bump Standards-Version to 3.9.2: no changes needed.
  * Switch Vcs-* debian/control fields to anonscm.debian.org.
  * Fix find_library() to find libraries in multiarch library paths (patch
    multiarch_library_directory_hack.diff). While the patch is not a good fix
    (hackish by nature, no cross-compilation support etc.), it should do the
    job in majority of cases. Also require dpkg-dev >= 1.16 at both build
    time (Build-Depends) and runtime (cmake Depends) because the patch needs
    dpkg-architecture -qDEB_HOST_MULTIARCH. (Closes: #618932)
  * Make FindGTK2.cmake work with Debian multiarch
    (patch multiarch_findgtk2_fix.diff). (LP: #751940)

 -- Modestas Vainius <modax@debian.org>  Wed, 08 Jun 2011 00:15:00 +0300

cmake (2.8.4+dfsg.1-2) unstable; urgency=low

  * Add backport_test_order_fix.diff to restore conpatibility with earlier
    versions with respect to the test run order. (Closes: #615054)

 -- Modestas Vainius <modax@debian.org>  Fri, 25 Feb 2011 19:12:33 +0200

cmake (2.8.4+dfsg.1-1) unstable; urgency=low

  * 2.8.4-2 ended up in unstable by accident :-( Fix distribution field
    accordingly.
  * Remove files licensed under proprietary licence from the original tarball.
    (Closes: #614390) Generate a new tarball with +dfsg.1 suffix. Thanks to
    Vasily Gurevich for heads up.

 -- Modestas Vainius <modax@debian.org>  Wed, 23 Feb 2011 23:12:02 +0200

cmake (2.8.4-2) unstable; urgency=low

  [ Kai Wasserbäch ]
  * debian/watch: Remove trailing backslash.

  [ Modestas Vainius ]
  * Merge 2.8.3-5.

 -- Modestas Vainius <modax@debian.org>  Sun, 20 Feb 2011 14:53:41 +0200

cmake (2.8.4-1) experimental; urgency=low

  * New upstream release.

  [ Kai Wasserbäch ]
  * Dropped obsolete patches (merged or taken from upstream):
    - backport_fix_asm_support.diff
    - FindTCL_fix_#600245.diff
    - FindPython_fix_#569321_and_#580503.diff (Please note, that upstream's
      solution is slightly different from what Debian had initially!)
  * debian/patches/FindBoost_add_-lpthread_#563479.diff: Added.
    (Closes: #563479)
  * debian/README.Debian: Deleted, we're shipping an unmodified version of the
    Python modules again.
  * debian/README.source: Deleted, not needed with "3.0 (quilt)".
  * debian/control:
    - Changed my E-Mail address.
    - Bumped B-D on debhelper.
  * debian/compat: now "8".
  * debian/rules: Updated for debhelper v8.

  [ Modestas Vainius ]
  * Disable git-import-orig in debian/watch. One extra command is not a good
    enough reason to lose control of packaging to non-trivial black-box tools.
  * Use less error-prone way of setting build flags.
  * Do not set MINGW_CC_LINUX2WIN_EXECUTABLE build flag. Workaround is no
    longer needed with ccache 3.0 or later.
  * Add verify-build-flags target to debian/rules. It can be used to verify if
    build flags are still valid (i.e. present in any of CMakeLists.txt).
  * Remove obsolete build flags from debian/rules:
    - BUILD_WXDialog;
    - TARGET_VERSION;
    - TARGET_SOVERSION;
    - BUILD_DOXYGEN.
  * Support parallel building at bootstrap phase.
  * Enable more verbosiness when bootstraping.
  * Add more spelling fixes to fixup_manpages.diff patch.

 -- Modestas Vainius <modax@debian.org>  Sat, 19 Feb 2011 20:07:33 +0200

cmake (2.8.3-5) unstable; urgency=low

  * Check if /usr/share/doc/$pkgname is a directory before attempting to remove
    it in {cmake,cmake-doc,cmake-dbg,cmake-*-gui}.postinst. (Closes: #614202)

 -- Modestas Vainius <modax@debian.org>  Sun, 20 Feb 2011 14:16:34 +0200

cmake (2.8.3-4) unstable; urgency=low

  * Release to unstable.

 -- Modestas Vainius <modax@debian.org>  Sat, 19 Feb 2011 14:43:46 +0200

cmake (2.8.3-3) experimental; urgency=low

  * Install documentation to /usr/share/cmake-data instead as it's the "base"
    package rather than cmake. Also link doc directories to it.
  * The job of replacing directories with symlinks apparently is a tough one.
    Create a symlink manually in the postinst of the affected (!cmake-data)
    packages.

 -- Modestas Vainius <modax@debian.org>  Sun, 02 Jan 2011 14:10:18 +0200

cmake (2.8.3-2) experimental; urgency=low

  [ Kai Wasserbäch ]
  * debian/source/local-options: Added "unapply-patches".
  * debian/watch: Added git-import-orig invocation.
  * debian/gbp.conf: Added, to ensure we use pristine-tar.
  * debian/patches/FindTCL_fix_#600245.diff: Added. (Closes: #600245)

  [ Modestas Vainius ]
  * Install cmake documentation into /usr/share/doc/cmake/ and link doc
    directories of the rest binary packages to it (needs debhelper 7.4.2).
    (LP: #669197)
  * Backport a patch from 2.8.4 to fix ASM support. Thanks to Leon Nardella for
    heads up. (Closes: #608510, LP: #695335)

 -- Modestas Vainius <modax@debian.org>  Sun, 02 Jan 2011 12:45:38 +0200

cmake (2.8.3-1) experimental; urgency=low

  * New upstream release.

  [ Kai Wasserbäch ]
  * debian/patches/fix_spelling_errors.patch: Added Applied-Upstream header.
  * debian/control: Bumped Standards-Version to 3.9.1, no further changes
    needed.

  [ Modestas Vainius ]
  * Drop patches which were merged upstream:
    - debian/patches/hurd_platform.diff;
    - FindGTK2_pangommconfig.diff;
    - FindJNI_fix_libarch_determination.diff;
    - cpack_installed_size.diff;
    - add_libarchive_script.patch - better version merged upstream;
    - fix-CTestTestFailedSubmit-xmlrpc.diff;
    - fix_spelling_errors.patch.
  * Adapt FindPython_fix_#569321_and_#580503.diff patch to upstream changes.
  * Bump libarchive-dev Build-Depends to 2.8.0. cmake needs symbols which
    appeared in that version. (Closes: #595275)
  * Add fixup_manpages.diff patch to fix small issues with cmake mangpages
    (found by lintian).

 -- Modestas Vainius <modax@debian.org>  Sat, 13 Nov 2010 02:16:34 +0200

cmake (2.8.2+dfsg.1-0+squeeze1) stable-proposed-updates; urgency=low

  * Regenerate original tarball removing files provided under proprietary
    licence. (Closes: #614390) They were not actually used. Mention removed
    files in the debian/copyright.

 -- Modestas Vainius <modax@debian.org>  Fri, 04 Mar 2011 22:16:29 +0200

cmake (2.8.2-2) unstable; urgency=low

  [ Kai Wasserbäch ]
  * debian/control:
    - Added libarchive-dev to Build-Depends.
    - Don't {,B-}D on procps on Hurd, already provided by hurd.
    - Added Homepage field (fixes no-homepage-field).
    - Added new binary package cmake-doc and moved all additional
      documentation there (registered with doc-base now).
  * debian/rules: Use system libarchive.
  * debian/patches:
    - add_libarchive_script.patch: Added to allow building with the system's
      libarchive.
    - fix_spelling_errors.patch: Added. Thanks to Lintian for finding them.

  [ Modestas Vainius ]
  * Build with CTEST_USE_XMLRPC to re-enable XMLRPC support in CTest and add
    fix-CTestTestFailedSubmit-xmlrpc.diff patch to fix a (wrongly) failing test
    in that case.
  * Add cmake-dbg package.
  * Add cmake to cmake-doc Suggests.
  * Start package synopsis with lowercase letter where applicable.

 -- Modestas Vainius <modax@debian.org>  Mon, 12 Jul 2010 02:14:05 +0300

cmake (2.8.2-1) unstable; urgency=low

  * New upstream release:
    - Detects Clang compiler (Closes: #560693).

  [ Kai Wasserbäch ]
  * debian/patches/debian/patches/FindPython_fix_#569321_and_#580503.diff:
    Added. (Closes: #569321, #580503)
  * debian/cmake-data.NEWS: Document the changes of the new patch, so nobody
    gets surprised.

  [ Modestas Vainius ]
  * Update patches:
    - kFreeBSD_Hurd_fixes.diff - remove, merged upstream.
  * Bump Standards-Version to 3.9.0:
    - replace Conflicts: cmake (<= 2.6.2-1) with Breaks in cmake-data;
    - add Breaks: cmake (<= 2.6.2-1) to cmake-gui-curses.
  * Remove deprecated references to /usr/share/common-licenses/BSD from
    debian/copyright.
  * Add packaging copyright to debian/copyright.
  * Include copyright information for Utilities/xml/* in the debian/copyright.

 -- Modestas Vainius <modax@debian.org>  Wed, 30 Jun 2010 11:20:53 +0300

cmake (2.8.1-5) unstable; urgency=low

  [ Kai Wasserbäch ]
  * debian/control: added myself to Uploaders with Modestas' permission.

  [ Modestas Vainius ]
  * Add procps to Build-Depends and cmake Depends. cmake sometimes uses ps
    binary.
  * Fix FindJNI patch (again): avoid using tricky bits of cmake IF() command
    syntax. This should fix FindJNI on architectures which do not need special
    CMAKE_SYSTEM_PROCESSOR handling (e.g. ia64).

 -- Modestas Vainius <modax@debian.org>  Sat, 29 May 2010 02:54:42 +0300

cmake (2.8.1-4) unstable; urgency=low

  * Further improve FinJNI.cmake. This should fix some inconsistencies on s390.
  * Add cpack_installed_size.diff to fix generation of Installed-Size field for
    deb packages. Thanks to Simone Rossetto for heads up and initial patch.

 -- Modestas Vainius <modax@debian.org>  Mon, 17 May 2010 01:24:41 +0300

cmake (2.8.1-3) unstable; urgency=medium

  * Add patches:
    - FindJNI_fix_libarch_determination.dif - rewrite _java_libarch
      determination code in FindJNI.cmake (based on OpenJDK 1.6.0_18 + icedtea
      patches). This should fix invalid _java_libarch detection on mipsel and
      armel (Closes: #544674).
    - FindGTK2_pangommconfig.diff - look for Pangomm Config include directory
      in FindGTK2.cmake (Closes: #579718). Thanks to Sune Vuorela for the
      patch.
  * Add gcc and make to cmake Suggests (Closes: #577516).
  * Rename (to kFreeBSD_Hurd_fixes.diff) and improve kFreeBSD_fixes.diff to fix
    FTBFS on GNU/Hurd as well.
  * Urgency=medium to minimize negative impact on KDE transition.

 -- Modestas Vainius <modax@debian.org>  Wed, 05 May 2010 11:49:57 +0300

cmake (2.8.1-2) unstable; urgency=low

  * Add kFreeBSD_fixes.diff patch to fix FTBFS on kfreebsd-* (failure of the
    CTestTestTimeout test).

 -- Modestas Vainius <modax@debian.org>  Thu, 18 Mar 2010 01:45:08 +0200

cmake (2.8.1-1) unstable; urgency=low

  * New upstream release.
  * Remove DMUA entry from debian/control. No longer needed.
  * Enable building in parallel (--parallel).
  * Update debian/patches:
    - drop bootstraptest_increase_timeout.diff - merged upstream;
    - hurd_platform.diff - adapt to upstream changes.
  * Forcefully set MINGW_CC_LINUX2WIN_EXECUTABLE to empty value. It breaks
    otherwise valid Simple_Mingw_Linux2Win test when ccache is enabled.
  * Update install files.
  * Update Standards-Version to 3.8.4: no changes needed.
  * Change my email address to modax@debian.org.

 -- Modestas Vainius <modax@debian.org>  Wed, 17 Mar 2010 17:51:38 +0200

cmake (2.8.0-5) unstable; urgency=low

  * Skip the unpredictably long and rather pointless BootstrapTest
    (Closes: #558001).

 -- Modestas Vainius <modestas@vainius.eu>  Thu, 26 Nov 2009 14:20:46 +0200

cmake (2.8.0-4) unstable; urgency=medium

  * Replace bootstraptest_increase_timeout.diff with upstream version. My
    previous patch didn't work.
  * Revert previous "Build with g++-4.4 on hppa" change. It was not needed, build
    with default compiler on hppa.
  * Remove obsolete hack for parisc64 from debian/rules. It didn't work after
    switch to dh v7 anyway.
  * It should build on hppa now (Closes: #556653). So urgency=medium.

 -- Modestas Vainius <modestas@vainius.eu>  Wed, 25 Nov 2009 11:37:34 +0200

cmake (2.8.0-3) unstable; urgency=medium

  * Set HOME to current build directory when running test suite. This should
    fix failures of kwsys.testRegistry and FindPackageTest tests on the
    buildds.
  * Increase timeout of BootstrapTest to 2 hours so it no longer times out
    on s390 or armel (patch bootstraptest_increase_timeout.diff).
  * Fix GNU.cmake file used on Hurd. Thanks to Pino Toscano for the patch.
  * Build with g++-4.4 on hppa. May solve FTBFS (segfault likely due to
    miscompilation) reported in #556653.
  * Urgency medium due to likely RC bug fix (#556653).

 -- Modestas Vainius <modestas@vainius.eu>  Sun, 22 Nov 2009 20:49:29 +0200

cmake (2.8.0-2) experimental; urgency=low

  * Reenable test suite.

 -- Modestas Vainius <modestas@vainius.eu>  Sun, 22 Nov 2009 00:38:54 +0200

cmake (2.8.0-1) unstable; urgency=low

  * New upstream release.
  * Disable test suite for now.

 -- Modestas Vainius <modestas@vainius.eu>  Sat, 14 Nov 2009 01:59:25 +0200

cmake (2.8.0~rc6-1) experimental; urgency=low

  * New upstream development release.
  * Switch debian/rules to use dh v7:
    - bump debhelper build depends to 7.3;
    - also drop unused Dart handling in the process;
    - enable test suite.
  * Add myself as Maintainer, A. Maitland Bottoms as Uploader (with
    permission).

 -- Modestas Vainius <modestas@vainius.eu>  Tue, 10 Nov 2009 23:46:25 +0200

cmake (2.8.0~rc5-1) experimental; urgency=low

  * New upstream development release.
    - FindJNI.cmake does no longer get confused about multiple JVM installs
      (Closes: #553151).
  * Switch to dpkg-source format 3.0 (quilt):
    - drop build dependency on quilt;
    - drop quilt.make snippet include from debian/rules.
  * Build with CMAKE_USE_RELATIVE_PATHS=ON.
  * Drop tcp8.4 from build depends. Not needed.

 -- Modestas Vainius <modestas@vainius.eu>  Fri, 06 Nov 2009 22:47:17 +0200

cmake (2.8.0~rc3-1) experimental; urgency=low

  * New upstream development release.
    - ctest no longer segfaults on such a invalid input (Closes: #528530).
  * Drop all patches:
    - FindQt4.cmake2.6.diff - remove, no longer needed as original bug has been
      fixed since 2.6;
    - FindQt3.cmake.diff - remove, merged upstream;
    - findmpeg2-addpath.diff - remove, bug fixed upstream (in other way);
    - kfreebsd-Platform.diff - remove, merged upstream;
    - executables-dont-need-fpic.diff - remove, merged upstream;
    - manpage_friendly_docs.diff - remove, merged upstream;
    - fix_bashisms.diff - remove, merged upstream;
    - FindPerlLibs.cmake-perl-5.10.diff - remove, fixed upstream differently;
    - FindJNI.cmake-more-arches.diff - remove, was taken from upstream;
    - FindVTK.cmake-vtk-5.4.diff - remove, was taken from upstream.
  * Update install files.
  * Call dpkg with --print-architecture rather than obsolete
    --print-installation-architecture.
  * Fix lintian override cmake-data: extra-license-file.
  * Remove obsolete README.Debian.
  * cmake-curses-gui should not provide cmake-gui.

 -- Modestas Vainius <modestas@vainius.eu>  Sun, 11 Oct 2009 15:09:42 +0300

cmake (2.6.4-3) unstable; urgency=low

  * Bump Standards-Version to 3.8.3, no changes needed.
  * Add ${misc:Depends} to Depends fields of packages.
  * Improve debian/watch:
    - make it scan remote directories recursively;
    - make it work with new upstream RC release mangling.
  * Remove Pierre Habouzit from Uploaders by his own request.
  * Backport FindJNI.cmake from CMake 2.8 CVS in order to make it arch
    independent on Linux. New FindJNI.cmake also supports most Linux arches and
    is capable of finding Sun Java, OpenJDK, Kaffe and GCJ (if latter is
    default-java) JVMs. Support for Debian specific /usr/lib/jvm/default-java is
    also included. Patch FindJNI.cmake-more-arches.diff (Closes: #544674).
  * Backport Modules/FindVTK.cmake from CMake 2.8 CVS. It adds support for VTK
    5.4. Patch FindVTK.cmake-vtk-5.4.diff (Closes: #546030).
  * Update debian/copyright with more details (Closes: #544290).
  * Make cmake-curses-gui and cmake-qt-gui packages provide 'cmake-gui'.

 -- Modestas Vainius <modestas@vainius.eu>  Wed, 30 Sep 2009 20:51:13 +0300

cmake (2.6.4-2) unstable; urgency=low

  * Prefer *-qt3 binary names to generic ones in FinqQt3.cmake
    (Closes: #538864).
  * Fix bashisms in CMake scripts (Closes: #530056).
  * Merge in 2.6.0-6 debian/changelog.
  * Use quilt.make rather than custom quilt patch implementation.
  * Make debian/rules dpkg-buildpackage -jX safe and support parallel
    in DEB_BUILD_OPTIONS (Closes: #538826).
  * Add FindPerlLibs.cmake-perl-5.10.diff patch which adds perl 5.10 support in
    FindPerlLibs.cmake  (Closes: #541609). Thanks to Joshua Rubin.

 -- Modestas Vainius <modestas@vainius.eu>  Fri, 21 Aug 2009 19:35:21 +0300

cmake (2.6.4-1) unstable; urgency=low

  * New upstream release.
  * Resync patches:
    - relative_path_fixes2.diff - removed, merged upstream;
    - FindQt4_qt4_lupdate_lrelease.diff - removed, merged upstream.
  * Bump Standards-Version to 3.8.1. No changes needed.
  * Remove deprecated dh_desktop from debian/rules.
  * Update manpage_friendly_docs.diff patch to fix more lintian warnings.

 -- Modestas Vainius <modestas@vainius.eu>  Sat, 02 May 2009 01:28:29 +0300

cmake (2.6.3-2) unstable; urgency=low

  * Remove do-not-use-lib64.diff, no longer needed (according to upstream).
  * Remove reinstate-arm.diff, merged upstream.
  * Upload to unstable.

 -- Modestas Vainius <modestas@vainius.eu>  Sat, 07 Mar 2009 15:13:56 +0200

cmake (2.6.3-1) experimental; urgency=low

  * New upstream release.
  * Update debian/patches:
    - remove find_package_support_prefix_lib_cmake.diff, merged upstream;
    - adopt FindQt4.cmake2.6.diff;
    - refresh do-not-use-lib64.diff;
    - remove relative_path_fixes.diff, merged upstream;
    - refresh relative_path_fixes2.diff;
    - remove manpage-generation-fixes.diff, merged upstream;
    - refresh FindQt4_qt4_lupdate_lrelease.diff;
    - remove FindMPEG2_include_FindSDL_fix.diff, merged upstream;
  * Use dh_prep instead of deprecated dh_clean -k (fixes lintian warning).
  * Call dh_desktop in the binary targets (fixes lintian warning).
  * Install cmake-gui docs to the cmake-qt-gui package.
  * Enable binary-indep target.
  * Add manpage_friendly_docs.diff patch to make some bits of documentation
    manpage friendly (eliminate warnings).
  * Fix installation of lintian overrides (move dh_lintian to binary targets).

 -- Modestas Vainius <modestas@vainius.eu>  Tue, 24 Feb 2009 00:26:34 +0200

cmake (2.6.2-4) unstable; urgency=low

  * Release to unstable. No other changes.

 -- Modestas Vainius <modestas@vainius.eu>  Sun, 15 Feb 2009 23:33:47 +0200

cmake (2.6.2-3) experimental; urgency=low

  * Fix typo in cmake-qt-gui description.
  * Merge patch from upstream to support <prefix>/lib/cmake search path in
    find_package() config mode. This enables reduction of /usr/lib cluttering
    (find_package_support_prefix_lib_cmake.diff).
  * Tighten libqt4-dev build depend to version (>= 4.4.0) (Closes: #508349).

 -- Modestas Vainius <modestas@vainius.eu>  Wed, 24 Dec 2008 00:45:20 +0200

cmake (2.6.2-2) experimental; urgency=low

  * Add Vcs fields.
  * Add patches:
    - FindQt4_qt4_lupdate_lrelease.diff - prefer lupdate-qt4 to lupdate and
      lrelease-qt4 to lrelease. This is specific to Debian Qt4.
      Thanks to Ludovico Cavedon (Closes: #487528).
    - FindMPEG2_include_FindSDL_fix.diff - fix FindSQL include in the
      MPEG2 module. Thanks to Leopold Palomo Avellaneda (Closes: #500770).
  * Try sorting out emacsen mess once again (Closes: #481391):
    - depend on emacsen-common;
    - old-prerm will most likely fail spewing emacsen-common error message
      when upgrading from previous version but this is OK. Add a custom
      prerm script which recovers from the problem and notifies the user to
      ignore the error message.
  * Rewrite cmake cache initialization code. Pass initial cmake flags via
    file (--init= argument to the bootstrap script).
  * Make build verbose again.
  * Prepare for multiple binary packages: switch to install files and to
    debhelper v7 (due to more convenient install file handling), install
    everything to debian/tmp initially.
  * Add new binary packages:
    - cmake-data - split off data files needed for each cmake flavour to run.
      Move emacsen stuff in here too;
    - cmake-curses-gui - splif off ccmake here from the cmake package;
    - cmake-qt-gui - build & install Qt4 based GUI (cmake-gui). Add menu file
      and manual page (Closes: #482787). Update debian/copyright.
  * Dynamically link against system libraries available in Debian
    (Closes: #502441).
  * Remove left-over debian/doxygen.config.
  * Rename debian/docs to debian/cmake-data.docs and clean it up. Do not
    install ChangeLog.txt. It is size and usefulness ratio is too low to
    justify inclusion in the binary package.

 -- Modestas Vainius <modestas@vainius.eu>  Sat, 01 Nov 2008 14:07:08 +0200

cmake (2.6.2-1) experimental; urgency=low

  * New upstream release.
  * New co-maintainer:
    - add myself to Uploaders.
    - add DM-Upload-Allowed: yes to debian/control.
  * Refresh patches:
    - FindQt4.cmake2.6.diff
    - do-not-use-lib64.diff
  * Add patches from upstream CVS:
    - relative_path_fixes.diff - fixes a couple of major bugs in Makefile
      generation when CMAKE_USE_RELATIVE_PATHS is ON. This brings
      CMAKE_USE_RELATIVE_PATHS=ON to a very usable state.
    - manpage-generation-fixes.diff - fixes a few manual page generation
      issues. This resolves all lintian warnings and info tags related
      to the cmake manual pages.
  * Bump Standards-Version to 3.8.0:
    - add README.source which directs the reader to quilt README.source.
  * Use dh_lintian:
    - rename cmake.lintian to cmake.lintian-overrides;
    - bump debhelper compat level to 6;
    - build depend on debhelper (>= 6.0.7~).
  * Fix path in the lintian override so it is effective again.
  * Make cmake.menu conform to the current Debian Menu System standard.
  * Drop unused old manual pages from debian/. They are provided by upstream
    now.
  * Add debian/watch.

 -- Modestas Vainius <modestas@vainius.eu>  Mon, 13 Oct 2008 19:24:49 +0300

cmake (2.6.0-6) unstable; urgency=medium

  * Dynamically link against system libraries available in Debian.
    Thanks to Michal Čihař (Closes: #502441).
  * Urgency medium due to security issue above.
  * Add Vcs fields.
  * Add myself to Uploaders.

 -- Modestas Vainius <modestas@vainius.eu>  Thu, 16 Oct 2008 22:18:14 +0300

cmake (2.6.0-5) unstable; urgency=medium

  * Fix build-deps: libncursesw5-dev doesn't work, just use the non wide one.
    This will build ccmake again (Closes: #481392).

 -- Pierre Habouzit <madcoder@debian.org>  Tue, 29 Jul 2008 11:05:17 +0200

cmake (2.6.0-4) unstable; urgency=low

  * Really remove dependency on emacsen-common (Closes: #471975).

 -- Pierre Habouzit <madcoder@debian.org>  Wed, 14 May 2008 21:01:42 +0200

cmake (2.6.0-3) unstable; urgency=low

  * Remove dependency on emacsen-common (Closes: #471975):
    emacs guys, I was asked in a previous bug (#427763) to byte-compile the
    cmake extension, the policy mandates a dependency upon emacs which is
    silly, and depending upon emacsen-common breaks the whole thing. A
    pre-depends would be insane, WHY ON EARTH is the emacs policy so horribly
    broken ? Until someone answers that, cmake will stay in the previous state
    with byte-compilation, and without any emacs dependency.

  * Add patches/reinstate-arm.diff to fix FTBFS on arm platforms
    (Closes: #481016)

 -- Pierre Habouzit <madcoder@debian.org>  Tue, 13 May 2008 10:18:12 +0200

cmake (2.6.0-2) unstable; urgency=low

  * Upload to unstable this time.
  * Depend upon emacsen-common (Closes: #471975).

 -- Pierre Habouzit <madcoder@debian.org>  Mon, 12 May 2008 18:13:33 +0200

cmake (2.6.0-1) experimental; urgency=low

  * Update patches/FindQt4.cmake2.6.diff (Closes: #479907).
  * Add patches/executables-dont-need-fpic.diff (Closes: #478404).
  * Bump Standards-Version to 3.7.3.

 -- Pierre Habouzit <madcoder@debian.org>  Mon, 12 May 2008 17:11:04 +0200

cmake (2.6.0~rc8-1.1) experimental; urgency=low

  * Non-maintainer upload with permission from DadCoder.
    Happy Prague visit.
  * Fix FindQt4.cmake (Closes: #477110)

 -- Sune Vuorela <debian@pusling.com>  Sun, 20 Apr 2008 22:58:33 +0200

cmake (2.6.0~rc8-1) experimental; urgency=low

  * New upstream rc release.
  * Update patches:
     + drop findmpeg2-robustness.diff.
     + drop hurd-SA_SIGINFO.diff.
     + drop nsis-support.diff.

 -- Pierre Habouzit <madcoder@debian.org>  Fri, 18 Apr 2008 20:49:30 +0200

cmake (2.4.8-1) unstable; urgency=low

  [ Pierre Habouzit ]
  * New upstream release (Closes: 462335).
  * remove patches/hurd-Platform.diff, merged upstream.

  [ Rafael Laboissiere ]
  * debian/rules, debian/cmake.emacsen-{startup,install,remove}: Allow
    byte-compilation of cmake-mode.el at install time and put in the
    emacsen startup directory just the necessary initialization code
    of cmake-mode (Closes: 427763)

 -- Pierre Habouzit <madcoder@debian.org>  Fri, 25 Jan 2008 10:19:47 +0100

cmake (2.4.7-1) unstable; urgency=low

  * New upstream release.
  * Drop patches/findqt4-binaries-order.diff (Closes: #433105).

 -- Pierre Habouzit <madcoder@debian.org>  Thu, 19 Jul 2007 18:58:37 +0200

cmake (2.4.6-1) unstable; urgency=low

  * Upload to unstable.
  * Make FindMPEG2.cmake more robust (Closes: 419134).

 -- Pierre Habouzit <madcoder@debian.org>  Mon, 18 Jun 2007 10:24:58 +0100

cmake (2.4.6-0) experimental; urgency=low

  * New upstream release (experimental upload, 2.4.5 must propagate):
     + Ruby NAMES now includes ruby1.8 (Closes: 407481).

  * Add patch to support NSIS on linux properly,
    thanks to Michal Čihař (Closes: 408846).

 -- Pierre Habouzit <madcoder@debian.org>  Wed, 13 Jun 2007 12:39:42 +0200

cmake (2.4.5-2) unstable; urgency=low

  * Add myself to Uploaders.
  * Ack my NMU (Closes: 419007, 407155, 407304).
  * Move to quilt, split diff.gz into patches, to avoid losing them.

  * debian/rules:
     + add quilt snipplets.
     + remove commented dh_ calls.
     + remove old cruft, make it shorter.
     + Avoid subshells, use makeism's rather than shell if/then/else.

  * Lintian warnings:
     + use debian/compat rather than DH_COMPAT.
     + add an override for the extra-license-file that in fact is a template.

 -- Pierre Habouzit <madcoder@debian.org>  Thu, 07 Jun 2007 11:09:46 +0200

cmake (2.4.5-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Disable lib64 paths in FindLibrary, as it's not needed in debian and
    yields incorrect results (Closes: #419007).
  * Apply Hurd Porter patch to deal with undefined SA_SIGINFO
    (Closes: #407304).
  * Reintroduce lost GNU.cmake (Closes: #407155).

 -- Pierre Habouzit <madcoder@debian.org>  Tue, 05 Jun 2007 13:28:35 +0200

cmake (2.4.5-1) unstable; urgency=low

  * New upstream bugfix release (Closes: #401071)
    Fix for seg fault when a macro runs a bad command BUG# 3815
    Fix fix for foo.dll.lib that does not break -L/usr/lib in link names
    Fix problem with LIBRARY_OUTPUT_PATH and linking to a dll foo.dll.lib  instead of foo.lib
    Do not depend on optimized libraries for a debug build and visa versa.
    Fix target name matching custom command output conflict.
    Fix FindQt3 so that it does not find qt4
    Fix FindKDE4 so that it only looks for kde4-config

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon,  4 Dec 2006 16:29:44 -0500

cmake (2.4.4-1) unstable; urgency=low

  * New upstream release
  * Upstream fixes parsing bug (Closes: #392624)

 -- A. Maitland Bottoms <bottoms@debian.org>  Sat, 25 Nov 2006 19:49:38 -0500

cmake (2.4.3-3) unstable; urgency=low

  * Have FindMPEG2 look in paths used in Debian (Closes: #391831)
  * Make FindQt4 more reliable (Closes: #392473)

 -- A. Maitland Bottoms <bottoms@debian.org>  Fri, 10 Nov 2006 11:27:35 -0500

cmake (2.4.3-2) unstable; urgency=low

  * Remove recommends line (Closes: #392013, #392044)

 -- A. Maitland Bottoms <bottoms@debian.org>  Tue, 10 Oct 2006 21:33:40 -0400

cmake (2.4.3-1) unstable; urgency=low

  * New upstream release
  * recognize .F90 as a fortran source extension (Closes: #376587)
  * don't install cmake .vim files (Closes: #366663)
  * don't depend upon emacs, let dh_installemacsen handle it (Closes: #378998)

 -- A. Maitland Bottoms <bottoms@debian.org>  Sat,  5 Aug 2006 17:06:11 -0400

cmake (2.4.2-1) unstable; urgency=low

  * New upstream release (Closes: #338324)
  * Put cmake .vim files into /usr/share/vim/addons/plugin/
    where they can be used. (Closes: #366663)
  * Install cmake-mode.el so it can be used. (Closes: #366664)
  * Ensure cmake FindKDE locates KDE libraries on Debian
    based distributions.

 -- A. Maitland Bottoms <bottoms@debian.org>  Sun, 18 Jun 2006 16:34:11 -0400

cmake (2.2.3-1) unstable; urgency=low

  * New upstream release (Closes: #338324)
  * support GNU/kFreeBSD in cmake (Closes: #340764)

 -- A. Maitland Bottoms <bottoms@debian.org>  Sun,  8 Jan 2006 10:48:14 -0500

cmake (2.0.6-2) unstable; urgency=low

  * Apply upstream patch to fix UseSWIG.cmake (Closes: #330581)

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 28 Sep 2005 15:29:19 -0400

cmake (2.0.6-1) unstable; urgency=low

  * New upstream release
  * g++ 4.0 Transition

 -- A. Maitland Bottoms <bottoms@debian.org>  Sun, 11 Sep 2005 14:51:36 -0400

cmake (2.0.5-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed,  2 Mar 2005 09:22:44 -0500

cmake (2.0.3-1) unstable; urgency=low

  * New upstream release
  * finds QT's moc, gets bug closing syntax right (Closes: #250000)

 -- A. Maitland Bottoms <bottoms@debian.org>  Thu, 12 Aug 2004 09:21:32 -0400

cmake (2.0.2-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 23 Jun 2004 13:51:38 -0400

cmake (2.0.1-1) unstable; urgency=low

  * New upstream release with soname and soversion support
  * find QT's moc (Closes: 250000)

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon,  7 Jun 2004 22:08:50 -0400

cmake (1.8.2.1-1) unstable; urgency=low

  * From CVS to pick up soname and soversion support

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 26 Nov 2003 21:46:54 -0500

cmake (1.8.1-1) unstable; urgency=low

  * New upstream release
  * Add Gavin Baker's Take II on adding versioning support for shared libraries

 -- A. Maitland Bottoms <bottoms@debian.org>  Sun,  9 Nov 2003 09:43:02 -0500

cmake (1.6.7-2) unstable; urgency=low

  * Add Gavin Baker's Take II on adding versioning support for shared libraries

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 23 Jun 2003 13:39:03 -0400

cmake (1.6.7-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 23 Jun 2003 13:06:46 -0400

cmake (1.6.5-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 24 Feb 2003 11:25:58 -0500

cmake (1.6.4-1) unstable; urgency=low

  * New upstream release, move up to tcl8.4

 -- A. Maitland Bottoms <bottoms@debian.org>  Fri, 14 Feb 2003 16:06:12 -0500

cmake (1.4.7-1) unstable; urgency=low

  * New upstream release
  * Build without dart-client network submission (Closes: #175579)

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 06 Jan 2003 19:02:36 -0500

cmake (1.4.6-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Thu, 24 Oct 2002 21:19:47 -0400

cmake (1.4.5-2) unstable; urgency=low

  * Don't put man page in /usr/man (Closes: #163901)

 -- A. Maitland Bottoms <bottoms@debian.org>  Thu, 17 Oct 2002 17:43:22 -0400

cmake (1.4.5-1) unstable; urgency=low

  * New upstream version.

 -- A. Maitland Bottoms <bottoms@debian.org>  Fri, 20 Sep 2002 23:33:49 -0400

cmake (1.4.3-3) unstable; urgency=low

  * Build with Dart, build in separate Build directory to make cleanup easier
  * New upstream man page
  * CMakeSetup no longer exists upstream, Debian menu now refers to ccmake

 -- A. Maitland Bottoms <bottoms@debian.org>  Tue,  6 Aug 2002 19:05:05 -0400

cmake (1.4.3-2) unstable; urgency=low

  * Oh no, not again.
  * Use -ffunction-sections on parisc64 (closes: #155366)

 -- A. Maitland Bottoms <bottoms@debian.org>  Sat,  3 Aug 2002 21:45:37 -0400

cmake (1.4.3-1) unstable; urgency=low

  * New upstream. (Closes: #155296)

 -- A. Maitland Bottoms <bottoms@debian.org>  Sat,  3 Aug 2002 00:02:18 -0400

cmake (1.2-2) unstable; urgency=low

  * Use -ffunction-sections on parisc64 (closes: #133696)

 -- Maitland Bottoms <bottoms@sarti.debian.org>  Thu, 14 Feb 2002 18:36:25 +0000

cmake (1.2-1) unstable; urgency=low

  * New upstream.

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 09 Jan 2002 17:20:12 -0500

cmake (1.0-1) unstable; urgency=low

  * Newer upstream. (Need to keep up with VTK 4 build needs)
  * Patched support for DESTDIR in install targets
  * Patched option to disable use of -rpath using CMAKE_SKIP_RPATH
  * include cmake-mode.el

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 09 Jan 2002 17:20:12 -0500

cmake (0.98-1) unstable; urgency=low

  * Newer upstream, includes curses interface: ccmake
  * Patched to support make install DESTDIR=foo

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 17 Dec 2001 19:54:32 -0500

cmake (0.96-1) unstable; urgency=low

  * Initial Release.
    (Closes: #121610)

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 28 Nov 2001 08:45:22 -0500


cmake (2.0.5-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed,  2 Mar 2005 09:22:44 -0500

cmake (2.0.3-1) unstable; urgency=low

  * New upstream release
  * finds QT's moc, gets bug closing syntax right (Closes: #250000)

 -- A. Maitland Bottoms <bottoms@debian.org>  Thu, 12 Aug 2004 09:21:32 -0400

cmake (2.0.2-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 23 Jun 2004 13:51:38 -0400

cmake (2.0.1-1) unstable; urgency=low

  * New upstream release with soname and soversion support
  * find QT's moc (Closes: 250000)

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon,  7 Jun 2004 22:08:50 -0400

cmake (1.8.2.1-1) unstable; urgency=low

  * From CVS to pick up soname and soversion support

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 26 Nov 2003 21:46:54 -0500

cmake (1.8.1-1) unstable; urgency=low

  * New upstream release
  * Add Gavin Baker's Take II on adding versioning support for shared libraries

 -- A. Maitland Bottoms <bottoms@debian.org>  Sun,  9 Nov 2003 09:43:02 -0500

cmake (1.6.7-2) unstable; urgency=low

  * Add Gavin Baker's Take II on adding versioning support for shared libraries

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 23 Jun 2003 13:39:03 -0400

cmake (1.6.7-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 23 Jun 2003 13:06:46 -0400

cmake (1.6.5-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 24 Feb 2003 11:25:58 -0500

cmake (1.6.4-1) unstable; urgency=low

  * New upstream release, move up to tcl8.4

 -- A. Maitland Bottoms <bottoms@debian.org>  Fri, 14 Feb 2003 16:06:12 -0500

cmake (1.4.7-1) unstable; urgency=low

  * New upstream release
  * Build without dart-client network submission (Closes: #175579)

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 06 Jan 2003 19:02:36 -0500

cmake (1.4.6-1) unstable; urgency=low

  * New upstream release

 -- A. Maitland Bottoms <bottoms@debian.org>  Thu, 24 Oct 2002 21:19:47 -0400

cmake (1.4.5-2) unstable; urgency=low

  * Don't put man page in /usr/man (Closes: #163901)

 -- A. Maitland Bottoms <bottoms@debian.org>  Thu, 17 Oct 2002 17:43:22 -0400

cmake (1.4.5-1) unstable; urgency=low

  * New upstream version.

 -- A. Maitland Bottoms <bottoms@debian.org>  Fri, 20 Sep 2002 23:33:49 -0400

cmake (1.4.3-3) unstable; urgency=low

  * Build with Dart, build in separate Build directory to make cleanup easier
  * New upstream man page
  * CMakeSetup no longer exists upstream, Debian menu now refers to ccmake

 -- A. Maitland Bottoms <bottoms@debian.org>  Tue,  6 Aug 2002 19:05:05 -0400

cmake (1.4.3-2) unstable; urgency=low

  * Oh no, not again.
  * Use -ffunction-sections on parisc64 (closes: #155366)

 -- A. Maitland Bottoms <bottoms@debian.org>  Sat,  3 Aug 2002 21:45:37 -0400

cmake (1.4.3-1) unstable; urgency=low

  * New upstream. (Closes: #155296)

 -- A. Maitland Bottoms <bottoms@debian.org>  Sat,  3 Aug 2002 00:02:18 -0400

cmake (1.2-2) unstable; urgency=low

  * Use -ffunction-sections on parisc64 (closes: #133696)

 -- Maitland Bottoms <bottoms@sarti.debian.org>  Thu, 14 Feb 2002 18:36:25 +0000

cmake (1.2-1) unstable; urgency=low

  * New upstream.

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 09 Jan 2002 17:20:12 -0500

cmake (1.0-1) unstable; urgency=low

  * Newer upstream. (Need to keep up with VTK 4 build needs)
  * Patched support for DESTDIR in install targets
  * Patched option to disable use of -rpath using CMAKE_SKIP_RPATH
  * include cmake-mode.el

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 09 Jan 2002 17:20:12 -0500

cmake (0.98-1) unstable; urgency=low

  * Newer upstream, includes curses interface: ccmake
  * Patched to support make install DESTDIR=foo

 -- A. Maitland Bottoms <bottoms@debian.org>  Mon, 17 Dec 2001 19:54:32 -0500

cmake (0.96-1) unstable; urgency=low

  * Initial Release.
    (Closes: #121610)

 -- A. Maitland Bottoms <bottoms@debian.org>  Wed, 28 Nov 2001 08:45:22 -0500