File: changelog

package info (click to toggle)
qgis 2.14.11%2Bdfsg-3%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 991,448 kB
  • ctags: 73,105
  • sloc: cpp: 535,362; python: 162,580; xml: 16,494; ansic: 8,031; sh: 1,788; perl: 1,559; sql: 727; yacc: 319; lex: 269; makefile: 251
file content (1614 lines) | stat: -rw-r--r-- 53,099 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
qgis (2.14.11+dfsg-3+deb9u1) stretch; urgency=medium

  * Add Breaks/Replaces to python-qgis-common for qgis_customwidgets.py move.
    (closes: #864695)

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 25 Jun 2017 23:09:27 +0200

qgis (2.14.11+dfsg-3) unstable; urgency=medium

  * Add patch to fix GRASS 7.2 support in processing.
    (closes: #858251)
  * Update branch in gbp.conf & Vcs-Git URL.

 -- Bas Couwenberg <sebastic@debian.org>  Tue, 21 Mar 2017 12:49:51 +0100

qgis (2.14.11+dfsg-2) unstable; urgency=medium

  * Add Breaks/Replaces on python-qt4 for QtWebKit.
    (closes: #855048)

 -- Bas Couwenberg <sebastic@debian.org>  Mon, 13 Feb 2017 18:43:07 +0100

qgis (2.14.11+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Sat, 14 Jan 2017 09:39:46 +0100

qgis (2.14.11+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.11

  [ Bas Couwenberg ]
  * New upstream release.
  * Refresh patches.
  * Update symbols for amd64.
  * Add ${python:Depends} to python-qgis-common dependencies.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 13 Jan 2017 14:19:43 +0100

qgis (2.14.10+dfsg-2) unstable; urgency=medium

  * Bump minimum GRASS version to 7.2.0.
  * Update symbols for other architectures.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 28 Dec 2016 20:01:31 +0100

qgis (2.14.10+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 18 Dec 2016 14:54:37 +0100

qgis (2.14.10+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.10

  [ Bas Couwenberg ]
  * New upstream release.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 16 Dec 2016 15:01:27 +0100

qgis (2.14.9+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Tue, 29 Nov 2016 07:15:41 +0100

qgis (2.14.9+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.9

  [ Bas Couwenberg ]
  * New upstream release.
  * Update symbols for other architectures.
  * Run doxygen in a subshell.
  * Update copyright years for Alessandro Pasotti.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 25 Nov 2016 15:37:03 +0100

qgis (2.14.8+dfsg-2~exp1) experimental; urgency=medium

  * Update symbols for other architectures.
  * Update dependencies & paths for GRASS 7.2.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 28 Oct 2016 16:49:30 +0200

qgis (2.14.8+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 26 Oct 2016 21:42:11 +0200

qgis (2.14.8+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.8

  [ Bas Couwenberg ]
  * New upstream release.
  * Update copyright file, changes:
    - Update copyright years for Marco Bernasocchi
    - Add Andrea Aime to copyright holders
  * Refresh patches.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 21 Oct 2016 20:18:11 +0200

qgis (2.14.7+dfsg-2) unstable; urgency=medium

  * Move icons to subdirectory.
  * Update symbols for other architectures.

 -- Bas Couwenberg <sebastic@debian.org>  Thu, 29 Sep 2016 14:52:59 +0200

qgis (2.14.7+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 28 Sep 2016 08:10:58 +0200

qgis (2.14.7+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.7

  [ Bas Couwenberg ]
  * New upstream release.
  * Update copyright file, changes:
    - Add license & copyright for QtWebKit files.
  * Install PyQt4 files in python-qgis package.
  * Re-enable QtWebKit support using embedded copy.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 25 Sep 2016 09:34:21 +0200

qgis (2.14.6+dfsg-4) unstable; urgency=medium

  * Add patch to fix 'columns' typo.
  * Remove obsolete diversions in qgis.preinst again, but don't rename.
    (closes: #836993)

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 18 Sep 2016 01:01:47 +0200

qgis (2.14.6+dfsg-3) unstable; urgency=medium

  * Remove obsolete diversions in postinst & prerm.
    (closes: #836993)

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 11 Sep 2016 13:04:21 +0200

qgis (2.14.6+dfsg-2) unstable; urgency=medium

  * Move obsolete diversion removal from preinst to postinst.
    (closes: #836993)
  * Update symbols for armel & mipsel.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 07 Sep 2016 23:40:28 +0200

qgis (2.14.6+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Sat, 03 Sep 2016 12:41:30 +0200

qgis (2.14.6+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.6

  [ Bas Couwenberg ]
  * New upstream release.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 26 Aug 2016 15:22:28 +0200

qgis (2.14.5+dfsg-2) unstable; urgency=medium

  * Add version constraint to libqgis-customwidgets dependency.
  * Update symbols for other architectures.
  * Drop libgsl0-dev alternative dependency.

 -- Bas Couwenberg <sebastic@debian.org>  Thu, 18 Aug 2016 13:28:43 +0200

qgis (2.14.5+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 03 Aug 2016 11:16:53 +0200

qgis (2.14.5+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.5

  [ Bas Couwenberg ]
  * New upstream release.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 29 Jul 2016 15:53:16 +0200

qgis (2.14.4+dfsg-2) UNRELEASED; urgency=medium

  * Update install files to match paths for GRASS 6 & 7.
  * Update symbols for sparc64.

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 24 Jul 2016 19:17:15 +0200

qgis (2.14.4+dfsg-1) unstable; urgency=medium

  [ Bas Couwenberg ]
  * Fix installation path of scalable icons.
    (closes: #830638)
  * Update symbols for other architectures.
  * Move from experimental to unstable.

  [ Jürgen E. Fischer ]
  * Drop usr/share/icons/scalable from qgis.install.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 13 Jul 2016 11:39:28 +0200

qgis (2.14.4+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.4

  [ Bas Couwenberg ]
  * New upstream release.
  * Disable globe plugin, doesn't support osgEarth 2.7 properly.
  * Update copyright file, changes:
    - Update copyright years for Sandro Santilli & The QGIS Project
    - Add Even Rouault to copyright holders
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 08 Jul 2016 16:39:08 +0200

qgis (2.14.3+dfsg-3) UNRELEASED; urgency=medium

  * Update symbols for hppa & ppc64.

 -- Bas Couwenberg <sebastic@debian.org>  Tue, 24 May 2016 00:16:17 +0200

qgis (2.14.3+dfsg-2) unstable; urgency=medium

  * Disable QtWebKit support, will be removed from Qt4.
    (closes: #784514)
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 22 May 2016 18:31:53 +0200

qgis (2.14.3+dfsg-1) unstable; urgency=medium

  * Update symbols for arm64 mips mipsel powerpc ppc64el s390x.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 22 May 2016 11:37:24 +0200

qgis (2.14.3+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.3

  [ Bas Couwenberg ]
  * New upstream release.
  * Add patch to add support for GNU/Hurd to GRASS plugin qtermwidget.
  * Update copyright years for Sandro Mani in copyright file.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 20 May 2016 16:31:03 +0200

qgis (2.14.2+dfsg-2) unstable; urgency=medium

  * Add patch to add support for kFreeBSD to GRASS plugin.
    (closes: #824079)

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 13 May 2016 09:33:14 +0200

qgis (2.14.2+dfsg-1) unstable; urgency=medium

  * Disable check for new version of QGIS at startup.
    To re-enable the version check, edit /etc/defaults/qgis
    and remove --noversioncheck from QGIS_OPTS.
    (closes: #823283)
  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 11 May 2016 18:54:05 +0200

qgis (2.14.2+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.2
    (closes: #822477)

  [ Bas Couwenberg ]
  * New upstream release.
  * Bump Standards-Version to 3.9.8, no changes.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 29 Apr 2016 21:07:07 +0200

qgis (2.14.1+dfsg-2) unstable; urgency=medium

  * Add python-shapely to python-qgis-common dependencies.
    (closes: #820281)
  * Update symbols for other architectures.

 -- Bas Couwenberg <sebastic@debian.org>  Thu, 07 Apr 2016 07:10:22 +0200

qgis (2.14.1+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Mon, 28 Mar 2016 11:30:58 +0200

qgis (2.14.1+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.1

  [ Bas Couwenberg ]
  * Update copyright file, changes:
    - Add license & copyright for qwtpolar-1.1.1
    - Group CMake files by Simon Edwards
  * Re-enable QwtPolar, qwtpolar-1.1 supports Qwt > 6.0.
  * Enable all hardening buildflags.
  * Drop globe-adapt-to-osgearth-2.7.patch, included upstream.
    Refresh remaining patches.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 25 Mar 2016 16:41:46 +0100

qgis (2.14.0+dfsg0-3) unstable; urgency=medium

  * Recreate symbols files, old ones failed to patch.
  * Fix build with `dpkg-buildpackage -A`. Various files in architecture
    independent packages are built in the -arch target.
    (closes: #817811)
  * Update various URLs to use HTTPS.
  * Drop unused lintian override for binaries-have-file-conflict.

 -- Bas Couwenberg <sebastic@debian.org>  Thu, 10 Mar 2016 20:52:00 +0100

qgis (2.14.0+dfsg0-2) unstable; urgency=medium

  * Restore use of pkgkde_symbolshelper by dh.
  * Add patch for osgEarth 2.7 support, re-enable globe plugin.
  * Fix removal of obsolete diversions for both the grass plugin & provider.
    (closes: #817176)

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 09 Mar 2016 19:11:51 +0100

qgis (2.14.0+dfsg0-1) unstable; urgency=medium

  * Disable globe plugin, fails to build with osgEarth 2.7.
  * Add Breaks/Replaces to qgis for binaries moved from grass provider.
  * Add patch to fix 'number' typo.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Tue, 08 Mar 2016 07:12:13 +0100

qgis (2.14.0+dfsg0-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.14.0

  [ Bas Couwenberg ]
  * New upstream release.
  * Bump Standards-Version to 3.9.7, no changes.
  * Merge upstream packaging changes, re-enable grass plugin.
  * Update patches, changes:
    - Drop 0001-fix-arm-build.patch, applied upstream
    - Drop exclude-dxf2shp-plugin.patch, license issue fixed
    - Drop typo changes for generated ChangeLog
    - Refresh remaining patches
  * Update copyright file, changes:
    - Update copyright years for existing copyright holders
    - Add new copyright holders
    - Add license & copyright for embedded copies of Python nose2 & yaml
    - Add license & copyright for new CMake modules
    - Drop dxf2shp_converter plugin from Files-Excluded,
      GPL-2 sources no longer included
    - Drop files removed from upstream source
  * Fix duplicate short description for qgis-{plugin,provider}-grass.
  * Install man pages for qgis.bin & qbrowser.bin binaries.
  * Add symbols file for libqgis-app2.14.0.
  * Use versioned Breaks instead of Conflicts.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 26 Feb 2016 18:04:13 +0100

qgis (2.13.0) UNRELEASED; urgency=medium

  * New development version 2.13 after branch of 2.12
  * add dependencies to gdal-bin, python-psycopg2, python-yaml, python-mock
    and python-nose2 for tests
  * update optional oracle dependency to 12.1
  * upgrade python-qgis from Recommends to Depends
  * downgrade liblwgeom dependency to Recommends
  * remove coding documentation
  * replace grass plugin diversion to wrapper in qgis package
  * remove spit plugin
  * add support for ubuntu xenial

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 26 Feb 2016 13:23:48 +0100

qgis (2.12.0) UNRELEASED; urgency=medium

  * Release of 2.12.0

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 23 Oct 2015 14:11:22 +0200

qgis (2.11.0) UNRELEASED; urgency=medium

  * New development version 2.11 after branch of 2.10
  * moved grass default.qgc from config to modules
  * include grass7 plugin
  * move grass provider to separate package
  * add ubuntu wily and debian stretch
  * add dependencies to qca2 and python-qt4-sql for new auth system
    and jquery and leaflet for developer map
  * separate libqgis_app to separate package
  * include geometry checker and snapper plugins
  * merge downstream debian changes from Bas Couwenberg

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 23 Oct 2015 14:10:38 +0200

qgis (2.10.0) UNRELEASED; urgency=medium

  * Release of 2.10.0

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 26 Jun 2015 14:39:38 +0200

qgis (2.9.0) UNRELEASED; urgency=medium

  * New development version 2.9 after branch of 2.8
  * include dependency to liblwgeom
  * 'stretch' package a bit
  * merge downstream addition of debug package
  * make build directory configurable
  * include links to qt4 documentation in api docs
  * include browser icons
  * include libqt4-sql-sqlite and python-pyspatialite as build dependency

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 26 Jun 2015 14:38:57 +0200

qgis (2.8.6+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.

 -- Bas Couwenberg <sebastic@debian.org>  Mon, 25 Jan 2016 06:26:31 +0100

qgis (2.8.6+dfsg-1~exp2) unstable; urgency=medium

  * Move from experimental to unstable.
  * Add patches for 'override' & 'suppress' typos.
  * Update Vcs-Git URL to use HTTPS.

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 24 Jan 2016 13:51:55 +0100

qgis (2.8.6+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.8.6

  [ Bas Couwenberg ]
  * New upstream release.
  * Add dependency on openscenegraph-plugin-osgearth to qgis-plugin-globe.
    QGIS crashes when using the Globe plugin if this package is not installed.
    (closes: #808817)
  * Refresh patches.
  * Update symbols for amd64.
  * Fix API documentation generation & installation.

 -- Bas Couwenberg <sebastic@debian.org>  Tue, 19 Jan 2016 19:53:02 +0100

qgis (2.8.5+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.8.5

  [ Bas Couwenberg ]
  * New upstream release.
  * Refresh patches.
  * Update symbols for amd64.
  * Add patches for 'occurred' & 'browser' typos.

 -- Bas Couwenberg <sebastic@debian.org>  Mon, 21 Dec 2015 11:48:03 +0100

qgis (2.8.4+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.

 -- Bas Couwenberg <sebastic@debian.org>  Tue, 08 Dec 2015 18:01:50 +0100

qgis (2.8.4+dfsg-1~exp2) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Mon, 07 Dec 2015 14:23:35 +0100

qgis (2.8.4+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.8.4
  * split grass provider off into a separate package.
  * disable grass plugin on sid (because of GRASS7)
  * add ubuntu wily

  [ Bas Couwenberg ]
  * New upstream release.
  * Drop software-typo.patch, applied upstream. Refresh remaining patches.
  * Add patch to fix 'occurrences' typo.
  * Update symbols for amd64.
  * Add build dependency on dh-python.

 -- Bas Couwenberg <sebastic@debian.org>  Tue, 01 Dec 2015 21:29:34 +0100

qgis (2.8.3+dfsg-5) unstable; urgency=medium

  * Add libgsl-dev as preferred build dependency,
    keep libgsl0-dev as alternative for backports.

 -- Bas Couwenberg <sebastic@debian.org>  Tue, 10 Nov 2015 23:16:08 +0100

qgis (2.8.3+dfsg-4) unstable; urgency=medium

  * Use desktop file in favor of menu file per CTTE #741573.
  * Also install MIME type icon in hicolor theme.
  * Drop libqgis* post{inst,rm}, rely on dpkg-triggers for ldconfig.
  * Rebuild for gdal transition.

 -- Bas Couwenberg <sebastic@debian.org>  Sat, 24 Oct 2015 00:13:55 +0200

qgis (2.8.3+dfsg-3) unstable; urgency=medium

  * Update watch file to use lowercase RC in uversionmangle.
  * Update symbols for other architectures.
  * Rebuild for openscenegraph transition.

 -- Bas Couwenberg <sebastic@debian.org>  Mon, 31 Aug 2015 21:24:05 +0200

qgis (2.8.3+dfsg-2) unstable; urgency=medium

  * Update symbols for amd64.
  * Add patch to fix 'software' typo.
  * Update Vcs-Browser URL to use HTTPS.
  * Rebuild for geos transition.

 -- Bas Couwenberg <sebastic@debian.org>  Sat, 29 Aug 2015 17:03:40 +0200

qgis (2.8.3+dfsg-1) unstable; urgency=medium

  * Update symbols for other architectures.
  * Use upstream-ltr branch in gbp.conf.
  * Disable GRASS plugin, doesn't support GRASS 7.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 21 Aug 2015 18:12:35 +0200

qgis (2.8.3+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.8.3

  [ Bas Couwenberg ]
  * New upstream release.
  * Drop patches included upstream, refresh remaining patches.
  * Update copyright file, changes:
    - Update copyright years for Jürgen E. Fischer
    - Add copyright for Daniel Vaz
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Thu, 30 Jul 2015 02:40:05 +0200

qgis (2.8.2+dfsg-3) unstable; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Mon, 27 Jul 2015 13:01:23 +0200

qgis (2.8.2+dfsg-3~exp1) experimental; urgency=medium

  * Limit upstream version to 2.8 LTR releases in watch file.
  * Disable QwtPolar, embedded copies don't support Qwt > 6.0.
  * Include change from 2.8.3 to fix segfauls caused by the deprecated
    spatialite_init() method. (closes: #788101, #791680)
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 26 Jul 2015 16:31:54 +0200

qgis (2.8.2+dfsg-2) unstable; urgency=medium

  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 26 Jun 2015 20:35:17 +0200

qgis (2.8.2+dfsg-1) experimental; urgency=medium

  * Update symbols for other architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 26 Jun 2015 17:13:17 +0200

qgis (2.8.2+dfsg-1~exp2) experimental; urgency=medium

  * Add debug package for QGIS libraries.
    (closes: #786985)
  * Update allows-to-typo.patch to also fix 'Allow' variant.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 27 May 2015 23:22:47 +0200

qgis (2.8.2+dfsg-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.8.2

  [ Bas Couwenberg ]
  * New upstream release.
  * Drop patches included upstream, refresh remaining patches.
  * Update copyright years for Alexander Bruy.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Sun, 10 May 2015 11:42:23 +0200

qgis (2.8.1+dfsg1-1) unstable; urgency=medium

  * Add patches from upstream release-2_8 branch.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@debian.org>  Mon, 27 Apr 2015 15:43:48 +0200

qgis (2.8.1+dfsg1-1~exp3) experimental; urgency=medium

  * Update symbols for armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386,
    mips, mipsel, powerpc, ppc64el & s390x.
  * Add patches from upstream release-2_8 branch.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 11 Mar 2015 18:52:57 +0100

qgis (2.8.1+dfsg1-1~exp2) experimental; urgency=medium

  * Don't build internal PySpatiaLite, use Debian package instead.
    (closes: #779933)
  * Add patch to fix FTBFS on arm*.
  * Add patches from upstream release-2_8 branch.

 -- Bas Couwenberg <sebastic@debian.org>  Mon, 09 Mar 2015 19:19:27 +0100

qgis (2.8.1+dfsg1-1~exp1) experimental; urgency=medium

  * Fix upstream version extraction from changelog.
  * Move python-qgis from Recommends to Depends.
  * Also exclude ElvenSword gradient from repacked upstream tarball,
    has problematic license terms restricting use.

 -- Bas Couwenberg <sebastic@debian.org>  Tue, 03 Mar 2015 08:09:28 +0100

qgis (2.8.1+dfsg-1~exp1) experimental; urgency=medium

  * Update copyright file, changes:
    - Document copyright & license for src/core/pal/costcalculator* separately.
  * Exclude dxf2shp plugin from repacked upstream tarball, see the copyright
    file for details of the license issue.

 -- Bas Couwenberg <sebastic@debian.org>  Sat, 28 Feb 2015 20:47:41 +0100

qgis (2.8.1-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.8.1

  [ Bas Couwenberg ]
  * New upstream release.
  * Update grass dependencies to prevent building with unsupported GRASS 7.
  * Refresh patches.
  * Add patches from release-2_8 branch.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@debian.org>  Fri, 27 Feb 2015 08:39:40 +0100

qgis (2.8.0-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.8

  [ Bas Couwenberg ]
  * Update Vcs-Browser URL to use cgit instead of gitweb.
  * Update my email to use @debian.org address.
  * Drop patches included upstream, refresh remaining patches.
  * Update copyright file, changes:
    - Add additional copyright holders to general files section
    - Add copyright years to general files section
    - Order copyright holder by year
    - Group files sections
    - Sort groups files sections alphanumerically
    - Document copyright holders & licenses for external modules
    - Add license specifications for: Apache-2.0, BSD-2-Clause,
      dxflib-Commercial-License, GPL-2, LGPL-2.1+, QT-Commericial,
      LGPL-2.1 with Digia Qt LGPL Exception 1.1 & GPL-3.
  * Remove extra license file for MetaSearch plugin.
  * Add symbols file for libqgis-server2.8.0.
  * Update symbols for amd64.
  * Drop obsolete WITH_INTERNAL_SPATIALITE option.
  * Install libqgis_server.so in libqgis-dev.
  * Install schemaExtension.xsd in qgis-server.
  * Install contributors.json & developersmap.html in qgis-common.
  * Use Debian packages for Leaflet & jQuery in developersmap.html.
  * Add dependency on libqgis-server to libqgis-dev.

 -- Bas Couwenberg <sebastic@debian.org>  Wed, 25 Feb 2015 18:54:10 +0100

qgis (2.7.0) UNRELEASED; urgency=medium

  * New development version 2.7 after branch of 2.6
  * run tests in en_US.UTF-8 locale
  * add build dependency to python-qscintilla2 for tests
  * rename libqgis-customwidgets{QGIS_ABI} to libqgis-customwidgets
  * merge some downstream debian changes
  * drop support for ubuntu saucy and add vivid

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 20 Feb 2015 13:05:35 +0100

qgis (2.6.1-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.6.1

  [ Bas Couwenberg ]
  * New upstream release. 
  * Add upstream metadata.
  * Refresh patches.
  * Update symbols for amd64.
  * Replace qgis-mapserver by qgis-server using Provides/Conflicts/Replaces.
  * Add patch from release-2_6 branch to fix layer selection issue.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Tue, 09 Dec 2014 00:06:36 +0100

qgis (2.6.0-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.6

  [ Bas Couwenberg ]
  * New upstream release.
  * Drop patches included upstream, refresh remaining patches.
  * Bump Standards-Version to 3.9.6, no changes.
  * Also install scalable icons.
  * Group libqgis* packages in control file.
  * Build depend only on python-sip-dev, remove alternatives.
  * Update copyright file, changes:
    - Remove unused Files paragraph for the python plugin_installer
    - Fix qwtpolar-1.0 typo
    - Remove unused License paragraph for Apache-2.0
    - Add License paragraph for Zlib
  * Update allows-to-typo.patch.
  * Update symbols for amd64.
  * Install only qgis and pyspatialite in python-qgis, widget-plugins
    are installed in python-qgis-common.
  * Sync control & control.in, changes:
    - control    Update package descriptions
    - control.in Reorder Breaks/Replaces, reorder packages.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Sun, 02 Nov 2014 20:07:03 +0100

qgis (2.5.0) unstable; urgency=medium

  * New development version 2.5 after branch of 2.4
  * add libqscintilla2-dev as build dependency
  * add remove sqlanywhere plugin and provider
  * drop support for ubuntu quantal and raring and add utopic
  * merge downstream debian changes
  * add build dependency to pyqt4.qsci-dev
  * adapt debian downstream changes

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 31 Oct 2014 13:00:09 +0100

qgis (2.4.0-1) unstable; urgency=medium

  * Add patches from upstream release-2_4 branch.
  * Batchpatch symbols files for non-amd64 architectures.
  * Move from experimental to unstable.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Tue, 30 Sep 2014 21:06:48 +0200

qgis (2.4.0-1~exp2) experimental; urgency=medium

  * Team upload.
  * Apply patch to fix qreal issue for arm*
    Thanks to Peter Green (Closes: #760535)
  * Add .pc quilt dir to .gitignore
  * Fix description-is-pkg-name lintian error
  * Fix wildcard-matches-nothing lintian error in copyright file

 -- Ross Gammon <rossgammon@mail.dk>  Wed, 10 Sep 2014 20:33:47 +0200

qgis (2.4.0-1~exp1) experimental; urgency=medium

  [ Jürgen E. Fischer ]
  * Release of 2.4

  [ Bas Couwenberg ]
  * New upstream release.
  * Drop obsolete patches, refresh remaining patches.
  * Don't install libgrass_gis, no longer built.
  * Remove unused template files, used by upstream packaging only.
  * Remove extra license file.
  * Exclude libqgis-customwidgets2.4.0 from dh_makeshlibs.
  * Update lintian overrides for 2.4.0.
  * Remove duplicate -f, $(RM) already uses it.
  * Update symbols for amd64.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Sun, 06 Jul 2014 00:58:34 +0200

qgis (2.3.0) UNRELEASED; urgency=medium

  * New development version 2.3 after branch of 2.2
  * enable globe on jessie
  * add dependency on libqt4-sql-sqlite to qgis-provider
  * merge debian packageing changes
  * merge distribution specific file templates into one file template
  * include metasearch plugins and add it's dependencies
  * include custom widgets

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 27 Jun 2014 14:00:08 +0200

qgis (2.2.0-1) unstable; urgency=low

  * Move from experimental to unstable.
  * Update symbols for armhf.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Tue, 18 Mar 2014 00:28:41 +0100

qgis (2.2.0-1~exp2) experimental; urgency=low

  * Add patches for changes from upstream release_2.2 branch.
  * Disable doxygen during build, run doxygen in build-indep target.
  * Don't install world.tif, symlink the osgEarth file instead.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Fri, 14 Mar 2014 19:24:37 +0100

qgis (2.2.0-1~exp1) experimental; urgency=low

  * Require at least osgEarth version 2.5.0.
  * Don't use -0 revision, shlibs depends use upstream version only.
  * Update symbols for armel, kfreebsd-amd64, kfreebsd-i386 & mipsel.
  * Add patches for changes from upstream release_2.2 branch.
  * Add path to limit the dot graph for the QGIS API documentation.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Sat, 01 Mar 2014 14:42:10 +0100

qgis (2.2.0-0~exp1) experimental; urgency=low
  
  [ Jürgen E. Fischer ]
  * Release of 2.2
  * enable globe on jessie
  * add dependency on libqt4-sql-sqlite to qgis-provider

  [ Bas Couwenberg ]
  * New upstream release.
  * Consistent capitalization in globe plugin description synopsis.
  * Run dh_sip only on python-qgis to fix the 'unused substitution variable
    ${sip:Depends}' warnings.
  * Add ${misc:Pre-Depends} for qgis-providers.
  * Use python substitution variables for python-qgis only.
  * Add gbp.conf to use pristine-tar by default.
  * Don't use space in CMAKE_OPTS.
  * Don't define BUILDNAME, not used by the project.
  * Restore qgis-icon.xpm, we still use it in qgis.menu.
  * Use CURDIR instead of PWD.
  * Don't build internal pyspatialite.
  * Update symbols for amd64 & i386.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Sun, 23 Feb 2014 16:31:40 +0100

qgis (2.2.0) UNRELEASED; urgency=medium

  * Release of 2.2

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 22 Feb 2014 09:49:29 +0100

qgis (2.1.0) UNRELEASED; urgency=low

  * new development version 2.1 after branch of 2.0
  * drop qgis_icon.xpm and use "upstream" version
  * Update Qt dependency to 4.7
  * drop support for Debian squeeze and Ubuntu lucid, maverick, natty and oneiric
  * add support for Ubuntu trusty
  * run crssync on copy of srs.db (Closes #738117)

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 22 Feb 2014 09:48:46 +0100

qgis (2.0.1-2) unstable; urgency=low

  [ Peter Michael Green ]
  * Fix broken ARM patch by Konstantinos Margaritis.
  * Fix qreal vs double issues with qmin and qmax.

  [ Jürgen E. Fischer ]
  * run crssync on copy of srs.db
    (closes: #738117)

  [ Bas Couwenberg ]
  * Additional checks in qgis-providers-common.postinst 
  * Add patch to fix mis-detection of PostGIS table types.
  * Add patch to not look for topology layers without topology support.
  * Add patch to fix postgis topology availability detection query.
  * Use dh --parallel instead of make flags.
  * Add patch to disable features on ARM.
    (closes: 737814)
  * Add qgis-crssync dpkg trigger to run crssync after installing the srs.db.
    Thanks to Andreas Beckmann for the assistance.
    (closes: #738273)
  * Also build osgEarth globe plugin.
  * Use cmake -DCMAKE_VERBOSE_MAKEFILE=1 instead of make flags.
  * Use dh commands instead of CMake directly.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Fri, 14 Feb 2014 17:20:12 +0100

qgis (2.0.1-1) unstable; urgency=low

  [ Jürgen E. Fischer ]
  * branch of version 2.0
  * add support for debian jessie and ubuntu saucy

  [ Bas Couwenberg ]
  * New upstream release.
    (closes: #688246, #690884, #713358, #713893, #724873, #734136)
  * Add myself to Uploaders.
  * Merge changes from control.sid.
  * Use minimal dh rules.
  * Update watch file. (closes: #717052)
  * Drop 10_fix_gcc4.7_build.patch, no longer required.
  * Use canonical URLs for Vcs-* fields.
  * Don't run tests during build, requires network.
  * Install SVG icon for QGIS desktop files. (closes: #676562)
  * Use pkgkde-gensymbols & pkgkde-symbolshelper to handle C++ symbols.
  * Split libqgis libraries into separate packages.
  * Remove automatically generated files on clean.
  * Add lintian overrides for no-fortify-functions false positive.
  * Add lintian overrides for binaries-have-file-conflict false positive.
  * Add patch to fix 'another' typo.
  * Add patch to fix 'allows one to' typo.
  * Add Keywords for desktop files.
  * Update copyright for qgis-providers-common resources.
  * Don't install extra license files.
  * Bump Standards-Version to 3.9.5, changes: minimal dh rules, Vcs-* field
    updates, shared library split and symbols.
  * Add patch to fix FTBFS on armel/armhf. Thanks to Konstantinos Margaritis.
    (closes: #691333)
  * Change priority to optional.
  * Update libgdal-dev build dependency.
  * Add patch to fix building with SIP 4.15.
  * Update Source URL in copyright.
  * Add patches from upstream release-2_0 branch.
  * Add patch to remove Google AdSense from documention.
  * Add patch to explicitly use /usr/bin/python2.7, update X-Python-Version and
    dependencies accordingly.
    (closes: #729495)
  * Add patch to fix a crash when a WMS-C tile matrix set isn't available
    anymore.

 -- Bas Couwenberg <sebastic@xs4all.nl>  Thu, 16 Jan 2014 21:28:09 +0100

qgis (1.9.0) UNRELEASED; urgency=low

  * new development version 1.9 after branch of 1.8
  * include ows provider
  * include wcs provider
  * symbology-ng-style now in sqlite3
  * include cpt-city files
  * support DEB_BUILD_OPTIONS' parallel=n
  * add python-unittest2 build dependency for maverick and squeeze
  * disable PyQgsRectangle test on lucid (depends on unittest2)
  * add python-psycopg2 and python-qscintilla2 dependency to python-qgis
  * add python-matplotlib dependency to python-qgis-common (for sextante)
  * add support for ubuntu quantal and raring
  * remove js files and add libjs-jquery/libjs-underscore dependency
  * add spatialite qt sql driver
  * include topology plugin
  * drop delimited text and diagram overlay plugin (now in core)
  * drop context_help, function_help and qgis_help.db files
  * use dh_sip
  * add build dependency to xfonts (100dpi, 75dpi, scalable) for tests
  * raise Qt dependency to 4.6

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 27 Jul 2013 16:45:43 +0200

qgis (1.8.0) UNRELEASED; urgency=low

  * new development version 1.8 after branch
  * include function help in package
  * include heatmap plugin
  * drop extra include path for QtWebkit on oneiric and natty
  * add translations for desktop link
  * add browser desktop entry
  * add support for Debian wheezy and Ubuntu precise
  * build package with internal libspatialite where libspatialite not available
  * drop support for Ubuntu hardy, intrepid, jaunty and karmic
  * add mssqlprovider plugin
  * copyright & policy update (synced from debiangis)
  * run crssync in postinst
  * run tests with xvfb and upload to results to (c)dashboard
  * new development version 1.8 after branch
  * add qgis browser (qbrowser)
  * add zonal statistics plugins and globe plugin
  * migrate unstable package to dh_python2
  * add ubuntu oneiric
  * include internal pyspatialite in python-qgis
  * update watch
  * drop abi postfix from sqlanywhere plugin
  * include network analysis library
  * build package with libspatialindex where available
  * drop wfsplugin & displaceplugin

 -- Jürgen E. Fischer <jef@norbit.de>  Thu, 14 Jun 2012 10:56:27 +0200

qgis (1.7.4+1.7.5~20120320-1.1) unstable; urgency=high

  * Non-maintainer upload.
  * Fix FTBFS with gcc 4.7 due to uncoordinated gcc-defaults switch, patch
    by Steven Chamberlain, thanks! (Closes: #673567)
    - 10_fix_gcc4.7_build.patch
  * Set urgency to “high” for the RC bug fix, needed for the gdal
    transition.

 -- Cyril Brulebois <kibi@debian.org>  Tue, 22 May 2012 02:34:43 +0200

qgis (1.7.4+1.7.5~20120320-1) unstable; urgency=low

  The "Sometimes they come back" release.

  * Branching from Qgis tree and adapting to current Debian Policy and
    standards. The target tree is currently set to release-1.7.
    (closes: #661491, #606304, #615683, #616182, #600308)
  * Policy bumped to 3.9.3.
  * Moving to debhelper compatibility level 9.
  * Source format is now 3.0 with quilt support.
  * Merged with 2bf42287 upstream git snapshot.
  * Migrated to dh_python2 instead of python-central.
    (closes: #617048)
  * Snapshot in qgis.org release-1.7: c936d031
  * Added an automagic creation of a lintian override for sqlite embedding.
    This is required for uploading currently.
  * Added missing ${misc:Depends} to make lintian happy.
  * Copyright notes updated and debian/copyright moved to format 1.0.
  * More licenses notices now reported in debian/copyright. Thanks ftpmasters.

 -- Francesco Paolo Lovergine <frankie@debian.org>  Tue, 24 Apr 2012 15:12:20 +0200

qgis (1.7.4-1) UNRELEASED; urgency=low

  * new upstream bugfix release

 -- Jürgen E. Fischer <jef@norbit.de>  Sun, 19 Feb 2012 22:35:23 +0100

qgis (1.7.3-1) UNRELEASED; urgency=low

  * new upstream bugfix release

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 10 Dec 2011 17:17:57 +0100

qgis (1.7.2-1) UNRELEASED; urgency=low

  * new upstream bugfix release

 -- Jürgen E. Fischer <jef@norbit.de>  Wed, 16 Nov 2011 21:43:47 +0100

qgis (1.7.0) UNRELEASED; urgency=low

  * new development version 1.7 after branch
  * add qgis-sqlanywhere1.7.0 package
  * add road graph plugin
  * drop quickprint and ogrconverter plugin
  * add gdal provider
  * turn qgis-providers-common's architecture to all
  * include api documentation
  * Missing ${python:Depends} added to python-qgis dependencies
    (closes: #611492)
  * move qgis_help to /usr/lib/qgis (closes: #615833)

 -- Jürgen E. Fischer <jef@norbit.de>  Thu, 24 Mar 2011 00:24:01 +0100

qgis (1.6.0) UNRELEASED; urgency=low

  * new development version 1.6 after branch
  * qgis-plugin-grass-common breaks earlier versions of qgis-common: add
    control fields.
  * include displacementplugin and offline editing plugin
  * add subversion as build dependency for trunk
  * add qgis-mapserver package
  * trim dependencies

 -- Jürgen E. Fischer <jef@norbit.de>  Sun, 17 Oct 2010 12:09:23 +0200

qgis (1.5.0) UNRELEASED; urgency=low

  * new development version 1.5 after branch
  * adapted Francesco Paolo Lovergine's updates to Debian qgis 1.4 package
  * require CMake >2.6 and Qt 4.4
  * remove circular dependencies
  * integrate new GRASS raster provider and remove dependency to
    libgdal1-$VERSION-grass
  * add spatialquery plugin
  * include qgis.g.browser in grass plugin
  * drop symbol tracking as C++ ABIs change too frequently
  * exclude python scripts from grass plugin on lenny
  * add missing dependency to python-sip(4) to python-qgis
  * follow sip4 => sip transition
  * add gdal-bin and python-gdal dependency for GdalTools
  * trim build dependencies

 -- Jürgen E. Fischer <jef@norbit.de>  Wed, 23 Jun 2010 18:34:25 +0200

qgis (1.4.0) UNRELEASED; urgency=low

  * new development version after 1.3 branch
  * use templates for configuration for ABIs and distributions
  * policy updated to 3.8.3
  * remove README.Debian from libqgis-dev
  * add symbol files for shared libraries
  * shorten qgis.sh
  * add all python files in qgis' site-packages
  * add labeling plugin

 -- Jürgen E. Fischer <jef@norbit.de>  Tue, 17 Nov 2009 16:27:53 +0100

qgis (1.3.0) UNRELEASED; urgency=low

  * new upstream release
  * add analysis library and raster terrain analysis plugin
  * alternativly depend on libgdal1-1.6.0-grass
  * include CONTRIBUTORS, TRANSLATORS and DONORS
  * reverse order of libgdal1-*-grass dependencies

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 12 Sep 2009 22:09:18 +0200

qgis (1.2.0) UNRELEASED; urgency=low

  * new development version after 1.1 branch
  * add new build dependency to pyqt4-dev-tools
  * update SONAMEs to 1.2.0
  * add python dependency to qgis-plugin-grass-common
  * include osm provider and evis plugin

 -- Jürgen E. Fischer <jef@norbit.de>  Tue, 18 Aug 2009 08:20:18 +0200

qgis (1.1.0-5) UNRELEASED; urgency=low

  * rename {qgis,qgis_help}.man to {qgis,qgis_help}.1

 -- Jürgen E. Fischer <jef@norbit.de>  Tue, 21 Apr 2009 22:09:33 +0200

qgis (1.1.0-4) UNRELEASED; urgency=low

  * include oracle plugin

 -- Jürgen E. Fischer <jef@norbit.de>  Wed, 15 Apr 2009 22:32:27 +0200

qgis (1.1.0-3) UNRELEASED; urgency=low

  * include diagram overlays

 -- Jürgen E. Fischer <jef@norbit.de>  Wed, 08 Apr 2009 16:30:57 +0200

qgis (1.1.0-2) UNRELEASED; urgency=low

  * change package names to reflect ABI (changes SONAME)

 -- Jürgen E. Fischer <jef@norbit.de>  Sun, 05 Apr 2009 12:34:38 +0200

qgis (1.1.0-1) UNRELEASED; urgency=low

  * allow build with GRASS 6.4rc3

 -- Jürgen E. Fischer <jef@norbit.de>  Mon, 02 Mar 2009 21:06:07 +0100

qgis (1.1.0) UNRELEASED; urgency=low

  * gridmaker plugin removed from package
  * updated mime support
  * sync with debian-gis debian/ tree
    - introduce arch-independent qgis-common and
      qgis-plugin-grass-common
    - policy updated to 3.8.0
    - join libqgis1-core and libqgis1-gui to libqgis1
    - add debian/watch
    - dh_lintian overrides
    - fix qgis.desktop
    - fix license reference in copyright
  * introduce arch-independent python-qgis-common
  * added sharedmimeinfo
  * remove dpatch

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 13 Feb 2009 22:03:25 +0100

qgis (1.0.0) experimental; urgency=low

  * new upstream release
  * update qgis.mime
  * add qgis.desktop and qgis.xml
  * add mime types for KDE
  * don't ignore errors in preinst and postrm
  * run ldconfig in postrm

 -- Jürgen E. Fischer <jef@norbit.de>  Tue, 23 Dec 2008 20:42:21 +0100

qgis (1.0preview18) experimental; urgency=low

  * add suggestion for gpsbabel

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 20 Dec 2008 19:08:34 +0100

qgis (1.0preview17) experimental; urgency=low

  * include quickprint and coordinate capture plugin

 -- Jürgen E. Fischer <jef@norbit.de>  Wed, 12 Nov 2008 12:57:46 +0100

qgis (1.0preview16) experimental; urgency=low

  * new upstream preview release (1.0preview2).
  * introduce conflict with uim-qt3 (fixes GUI issues on Ubuntu intrepid)

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 08 Nov 2008 12:10:21 +0100

qgis (1.0preview7) experimental; urgency=low

  * remove quickprint plugin

 -- Jürgen E. Fischer <jef@norbit.de>  Mon, 01 Sep 2008 21:58:58 +0200

qgis (1.0preview6) experimental; urgency=low

  * add missing dependency of python-qgis to python-qt4

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 29 Aug 2008 17:26:33 +0200

qgis (1.0preview5) experimental; urgency=low

  * add wrapper scripts to qgis-plugin-grass that adds the grass
    shared libraries to LD_LIBRARY_PATH.

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 29 Aug 2008 00:19:05 +0200

qgis (1.0preview4) experimental; urgency=low

  * add ogr converter plugin

 -- Jürgen E. Fischer <jef@norbit.de>  Wed, 27 Aug 2008 17:48:32 +0200

qgis (1.0preview3) experimental; urgency=low

  * build in pedantic mode
  * add interpolation plugin

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 23 Aug 2008 15:19:32 +0200

qgis (1.0preview2) experimental; urgency=low

  * added dxf2shp plugin
  * removed pggeoprocessing plugin

 -- Jürgen E. Fischer <jef@norbit.de>  Wed, 20 Aug 2008 08:47:29 +0200

qgis (1.0preview1) experimental; urgency=low

  * prepackaging of Quantum GIS 1.0
  * raised abi version from 0.11 to 1

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 19 Jul 2008 19:57:04 +0200

qgis (0.11.0-2) stable; urgency=low

  * remove libqgisgrass0.11 package by integrating it into qgis-plugin-grass
  * move libqgisgrass.so link from libqgis1-dev to qgis-plugin-grass
  * qgis recommends instead of just suggests the grass and python plugin

 -- Jürgen E. Fischer <jef@norbit.de>  Sat, 19 Jul 2008 11:38:49 +0200

qgis (0.11.0-1) stable; urgency=low

  * libqgispython0.11 integrated into python-qgis
  * introduced a build conflict with libqgis1-dev

 -- Jürgen E. Fischer <jef@norbit.de>  Wed, 16 Jul 2008 22:42:11 +0200

qgis (0.11.0) stable; urgency=low

  * New upstream release: Quantum GIS 0.11.0 'Metis'

 -- Jürgen E. Fischer <jef@norbit.de>  Tue, 15 Jul 2008 20:41:12 +0200

qgis (0.11.0test3) experimental; urgency=low

  * add memory provider

 -- Jürgen E. Fischer <jef@norbit.de>  Tue, 10 Jun 2008 15:32:42 +0200

qgis (0.11.0test2) experimental; urgency=low

  * removed 'upstream' changes from changelog
  * policy update 3.7.2 to 3.7.3
  * python support: renamed qgis-python-plugin to python-qgis, moved to python
    section, added Python:Provides
  * replaced QGIS with Quantum GIS in descriptions
  * moved so symlinks to dev package

 -- Jürgen E. Fischer <jef@norbit.de>  Sun, 01 Jun 2008 13:45:39 +0200

qgis (0.11.0test1) experimental; urgency=low

  * prepackaging of Quantum GIS 0.11.0 'Mantis'
  * raised abi from 0.10 to 0.11
  * separate packages for python support
  * raised dependency from python-qt4* from 4.0.0 to 4.1.0
  * call cmake with -Wno-dev

 -- Jürgen E. Fischer <jef@norbit.de>  Thu, 29 May 2008 00:23:14 +0200

qgis (0.10.0-2) gutsy; urgency=low

  * fix libgdal1 grass dependency for ubuntu gutsy/hardy (1.4.0 | 1.5.0)

 -- Jürgen E. Fischer <jef@norbit.de>  Wed, 30 Apr 2008 22:35:42 +0200

qgis (0.10.0-1) gutsy; urgency=low

  * updated Maintainer field
  * updated version for sip build dependency and removed old libgdal<1.5
    dependencies.
  * removed explicit shared library dependency for qgis and qgis-grass-plugin.
  * removed recommends for qt4-designer on libqgis1-dev, because there's also
    a depends.

 -- Jürgen E. Fischer <jef@norbit.de>  Mon, 28 Apr 2008 22:21:53 +0200

qgis (0.10.0) gutsy; urgency=low

  * Quantum GIS 0.10.0 'Io' upstream release

 -- Jürgen E. Fischer <jef@norbit.de>  Fri, 18 Apr 2008 00:51:58 +0200

qgis (0.9.2test1) gutsy; urgency=low

  * Testing package to see if icons deploy

 -- Tim Sutton <tim@linfiniti.com>  Tue, 12 Feb 2008 21:18:35 -0200

qgis (0.9.2rc1) gutsy; urgency=low

  * new upstream release

 -- Tim Sutton <tim@linfiniti.com>  Mon, 28 Jan 2008 23:00:41 -0200

qgis (0.9.1) gutsy; urgency=low

  * new upstream release

 -- Tim Sutton <tim@linfiniti.com>  Fri, 07 Dec 2007 01:36:55 -0200

qgis (0.9.0) gutsy; urgency=low

  * Quantum GIS 0.9.0 'Ganymede' release

 -- Tim Sutton <tim@linfiniti.com>  Tue, 28 Aug 2007 22:43:41 -0300

qgis (0.8.1-3) UNRELEASED; urgency=low

  * Added Build-Depends: sip4.

 -- Niccolo Rigacci <niccolo@rigacci.org>  Fri, 10 Aug 2007 11:37:29 +0200

qgis (0.8.1-2) UNRELEASED; urgency=low

  * Quick-and-dirty changes on Debian files.

 -- Niccolo Rigacci <niccolo@rigacci.org>  Fri, 10 Aug 2007 10:52:25 +0200

qgis (0.8.1-1) UNRELEASED; urgency=low

  * New upstream release.
  * Now the building system is based on cmake. Qt4 and SIP are required.
  * Added cmake.dpatch new patch (to build-up consistently).
  * Added georef.dpatch new patch (improvement of georeferencer by Martin Dobias).
  * Removed obsolete postgresql-dev build-dep.
    (closes: #429984)
  * Removed obsolete libmysqlclient14-dev build-dep.
  * Added a grid_maker patch to compile standalone binaries.

 -- Francesco Paolo Lovergine <frankie@debian.org>  Fri, 29 Jun 2007 16:03:56 +0200

qgis (0.8.0-5) unstable; urgency=low

  * Added python-dev build-dep.
    Patch added: ax_python.dpatch, fixes python environment detection.
    (closes: #429234)
  * Added build-dep for autoconf/automake due to acinclude.m4 changes.

 -- Francesco Paolo Lovergine <frankie@debian.org>  Tue, 19 Jun 2007 18:28:05 +0200

qgis (0.8.0-4) unstable; urgency=low

  * Enabled python scripts support and changed build-dep and suggests as consequence.
  * Enabled WFS support.
    (closes: #302618)
  * Long description revised.
  * Patch gcc43-fixes updated. Thanks again Martin Michlmayr.
    (closes: #417522)
  * Now installing missing binaries: msexport, qgis_help
    (closes: #423989)

 -- Francesco Paolo Lovergine <frankie@debian.org>  Tue, 22 May 2007 17:03:18 +0200

qgis (0.8.0-3) unstable; urgency=low

  * Added missing flex/bison build-deps.
    (closes: #421143)
  * Added gcc4.3-fixes based the patch by tbm.
    (closes: #417522)

 -- Francesco Paolo Lovergine <frankie@debian.org>  Mon, 30 Apr 2007 23:24:02 +0200

qgis (0.8.0-2) unstable; urgency=low

  * Releasing for unstable.
    Moved to soname 1 instead of 0.

 -- Francesco Paolo Lovergine <frankie@debian.org>  Tue, 10 Apr 2007 13:42:47 +0200

qgis (0.8.0-1) experimental; urgency=low

  * New upstream release.
  * Patchset updated.
    New patch: gridmaker_bin to generate gridmaker binary as it should.


 -- Francesco Paolo Lovergine <frankie@debian.org>  Wed,  4 Apr 2007 14:19:48 +0200

qgis (0.7.4-6) UNRELEASED; urgency=low

  * Moved to team maintainership as asked by Steve.
  * Moved to new gdal 1.4.0 dependency (currently in experimental)

 -- Francesco Paolo Lovergine <frankie@debian.org>  Wed,  4 Apr 2007 14:04:38 +0200

qgis (0.7.4-5) unstable; urgency=low

  * Acknowledge GCC 4.1 NMU (Closes: #356215)
  * Update deps to libgdal1-1.3.2-dev and grass-dev (Closes: #383143, #360649)
  * Bump standards version to 3.7.2. No changes made.

 -- Steve Halasz <debian@adkgis.org>  Sat, 19 Aug 2006 22:13:32 -0400

qgis (0.7.4-4.1) unstable; urgency=low

  * NMU as part of the GCC 4.1 transition.
  * patches/gcc41-extra-qualifications.dpatch: Update to remove two more
    extra qualifications from C++ files (Closes: #356215)

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 26 May 2006 23:57:18 +0200

qgis (0.7.4-4) unstable; urgency=low

  * Apply patch for building with gcc 4.1 (Closes: #356215)
  * Create patch for moving location of installed documentation
    (Closes: #355208)
  * Remove essentially empty README file (Closes: #324533)

 -- Steve Halasz <debian@adkgis.org>  Fri,  7 Apr 2006 10:12:58 -0400

qgis (0.7.4-3) unstable; urgency=low

  * Build with libgdal1-1.3.1
  * Build-dep on libmysqlclient15-dev
  * Remove follow-on build-deps that are now pulled in by
    libgdal1-1.3.1-dev

 -- Steve Halasz <debian@adkgis.org>  Mon, 20 Feb 2006 20:21:48 -0500

qgis (0.7.4-2) unstable; urgency=low

  * Build libqgis0 as separate package to conform to policy (Closes: #339254)
  * Rename qgis-dev to libqgis0-dev
  * Build-dep on libmysqlclient14-dev
  * Acknowledge binary NMU (Closes: #345148)

 -- Steve Halasz <debian@adkgis.org>  Wed, 14 Dec 2005 23:14:35 -0500

qgis (0.7.4-1) unstable; urgency=low

  * New upstream release
  * Build GRASS support in qgis-plugin-grass package (Closes: #248649)

 -- Steve Halasz <debian@adkgis.org>  Sat,  5 Nov 2005 16:04:45 -0500

qgis (0.7.0-1) unstable; urgency=low

  * New upstream release (Closes: #327592)
    - Don't segfault when starting without X (Closes: #295872)
    - GPX plugin uses less RAM (Closes: #284238)
  * PostgreSQL transition: build-dep on libpq-dev | postgresql-dev
  * C++ ABI transition. No explicit changes made. (Closes: #327597)
  * Bump standards version to 3.6.2. No changes made.

 -- Steve Halasz <debian@adkgis.org>  Fri, 16 Sep 2005 10:43:49 -0400

qgis (0.6.0-2) unstable; urgency=low

  * Depend on xerces26 instead of xerces21 (Closes: #301709)
  * Apply patch for PostGis 1.0 (Closes: #303743)
  * Added note about setting QTDIR=/usr/share/qt3 (Closes: #281910)
  * Patch for crash loading shapefiles exposed by gdal 1.2.6

 -- Steve Halasz <debian@adkgis.org>  Thu, 14 Apr 2005 11:03:20 -0400

qgis (0.6.0-1) unstable; urgency=low

  * New upstream release
  * Display version name consistently (Closes: #275608)
  * Make Alt+F accelerators unique (Closes: #275611)
  * Use upstream's new manpage for qgis
  * Make delimited text plugin dialog more user-friendly (Closes: #282085)
  * Fix for disappearing icons (Closes: #275610)
  * Properly load shapefiles specified on the command line (Closes: #275607)

 -- Steve Halasz <debian@adkgis.org>  Tue, 21 Dec 2004 09:46:27 -0500

qgis (0.5.0-2) unstable; urgency=low

  * Fix typos in .install files that left out the delimitedtext plugin
    (Closes: #282084)

 -- Steve Halasz <debian@adkgis.org>  Fri, 19 Nov 2004 10:51:07 -0500

qgis (0.5.0-1) unstable; urgency=low

  * New upstream release
  * Create separate qgis-dev package (Closes: #264213)

 -- Steve Halasz <debian@adkgis.org>  Wed,  6 Oct 2004 07:34:28 -0400

qgis (0.4.0-3) unstable; urgency=medium

  * Add build-dep on libjasper-1.701-dev
  * Add build-dep on libtiff4-dev - doh! :-/
  * Add build-dep on netcdfg-dev

 -- Steve Halasz <debian@adkgis.org>  Tue, 10 Aug 2004 11:22:29 -0400

qgis (0.4.0-2) unstable; urgency=low

  *  Remove build-dep on libtiff3g-dev (Closes: #264573)

 -- Steve Halasz <debian@adkgis.org>  Mon,  9 Aug 2004 09:15:08 -0400

qgis (0.4.0-1) unstable; urgency=low

  * New upstream release

 -- Steve Halasz <debian@adkgis.org>  Fri,  2 Jul 2004 09:36:23 -0400

qgis (0.3.0-1) unstable; urgency=low

  * New upstream release

 -- Steve Halasz <debian@adkgis.org>  Wed, 26 May 2004 09:38:22 -0400

qgis (0.2.0-1) unstable; urgency=low

  * New upstream release

 -- Steve Halasz <debian@adkgis.org>  Mon, 26 Apr 2004 09:48:19 -0400

qgis (0.1-2) unstable; urgency=low

  * Build with the Shapefile to PostGIS Import Tool (SPIT) and
    PostgreSQL support (Closes: #233191)

 -- Steve Halasz <debian@adkgis.org>  Wed,  7 Apr 2004 09:18:34 -0400

qgis (0.1-1) unstable; urgency=low

  * New upstream release
  * changed install location of html documentation to /usr/share/doc/qgis
  * updated man page to describe new command-line options and include pointers
    to HTML and PDF documentation (Closes: #234600)
  * debian/control:
    - updated description to include raster support

 -- Steve Halasz <debian@adkgis.org>  Wed, 25 Feb 2004 08:56:18 -0500

qgis (0.0.13-1) unstable; urgency=low

  * Initial Release (Closes: #217237).
  * clean out config.status and config.log before building

 -- Steve Halasz <debian@adkgis.org>  Fri,  9 Jan 2004 12:27:07 -0500