File: changelog

package info (click to toggle)
cervisia 4%3A16.08.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,892 kB
  • sloc: cpp: 14,347; xml: 371; sh: 3; makefile: 1
file content (3331 lines) | stat: -rw-r--r-- 107,150 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
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
cervisia (4:16.08.2-1) unstable; urgency=medium

  [ Automatic packaging ]
  * Update build-deps and deps with the info from cmake

  [ Maximiliano Curia ]
  * New upstream release (16.08.2)
  * Update build dependencies
  * Update install files

 -- Maximiliano Curia <maxy@debian.org>  Mon, 17 Oct 2016 21:42:11 +0200

cervisia (4:16.04.2-1) unstable; urgency=medium

  * New upstream release.

 -- Maximiliano Curia <maxy@debian.org>  Sun, 19 Jun 2016 11:04:56 +0200

cervisia (4:15.12.0-2) unstable; urgency=medium

  [ Automatic packaging ]
  * Bump Standards-Version to 3.9.8

  [ Maximiliano Curia ]
  * Add upstream metadata (DEP-12)
  * debian/control: Update Vcs-Browser and Vcs-Git fields

 -- Maximiliano Curia <maxy@debian.org>  Sat, 21 May 2016 15:40:47 +0200

cervisia (4:15.12.0-1) experimental; urgency=medium

  * New upstream release (15.12.0).

 -- Maximiliano Curia <maxy@debian.org>  Mon, 01 Feb 2016 10:23:51 +0100

cervisia (4:15.08.3-1) unstable; urgency=medium

  * New upstream release (15.08.3).

 -- Maximiliano Curia <maxy@debian.org>  Wed, 02 Dec 2015 12:38:56 +0100

cervisia (4:15.08.2-1) unstable; urgency=medium

  * New upstream release (15.08.2).

 -- Maximiliano Curia <maxy@debian.org>  Fri, 16 Oct 2015 08:07:19 +0200

cervisia (4:15.08.1-1) unstable; urgency=medium

  * New upstream release (15.08.1).
  * Add libsoprano-dev build dep.

 -- Maximiliano Curia <maxy@debian.org>  Sat, 19 Sep 2015 19:10:42 +0200

cervisia (4:14.12.3-1) experimental; urgency=medium

  * New upstream release (14.12.3).

 -- Maximiliano Curia <maxy@debian.org>  Sun, 29 Mar 2015 15:13:39 +0200

cervisia (4:14.12.3-0ubuntu1) vivid; urgency=medium

  * New upstream release
  * New upstream release

 -- Scarlett Clark <sgclark@kubuntu.org>  Fri, 13 Mar 2015 13:46:55 -0700

cervisia (4:14.12.2-1) experimental; urgency=medium

  [ Scarlett Clark ]
  * New upstream release

  [ Maximiliano Curia ]
  * Prepare Debian release.
  * Bump Standards-Version to 3.9.6, no changes needed.

 -- Maximiliano Curia <maxy@debian.org>  Mon, 16 Feb 2015 14:56:21 +0100

cervisia (4:14.12.0-0ubuntu1) vivid; urgency=medium

  * New upstream release
  * Remove kdelibs5-dev depend version as there was not a new release.

 -- Scarlett Clark <sgclark@kubuntu.org>  Mon, 15 Dec 2014 16:06:07 +0100

cervisia (4:14.11.97-0ubuntu1) vivid; urgency=medium

  * New upstream release candidate

 -- Scarlett Clark <sgclark@kubuntu.org>  Tue, 02 Dec 2014 09:56:43 -0800

cervisia (4:14.11.95-0ubuntu2) vivid; urgency=medium

  * Fix Watch file applications locations 
  * Fix VCS for new kde-applications location 

 -- Scarlett Clark <sgclark@kubuntu.org>  Mon, 24 Nov 2014 08:27:20 -0800

cervisia (4:14.11.95-0ubuntu1) vivid; urgency=medium

  * Initial release for KDE applications 14.12 series 
   - Change maintainer to Debian/Kubuntu
   - Added a not-installed for the libkdeinit4* files installed
     by dh_movelibkdeinit and the manpage that is installed.
  * Debian merge, no remaining changes. 

 -- Scarlett Clark <sgclark@kubuntu.org>  Sat, 22 Nov 2014 07:12:05 +0000

cervisia (4:4.14.2-0ubuntu1) vivid; urgency=medium

  * New upstream release

 -- Scarlett Clark <sgclark@kubuntu.org>  Fri, 10 Oct 2014 02:34:17 -0700

cervisia (4:4.14.1-0ubuntu1) utopic; urgency=medium

  * New upstream release

 -- Scarlett Clark <scarlett@scarlettgatelyclark.com>  Mon, 22 Sep 2014 16:23:31 +0200

cervisia (4:4.14.0-1) unstable; urgency=medium

  * New upstream release.

 -- Maximiliano Curia <maxy@debian.org>  Fri, 22 Aug 2014 20:11:10 +0200

cervisia (4:4.14.0-0ubuntu1) utopic; urgency=medium

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 20 Aug 2014 12:28:35 +0200

cervisia (4:4.13.97-0ubuntu1) utopic; urgency=medium

  * New upstream beta release RC

 -- Scarlett Clark <scarlett@scarlettgatelyclark.com>  Fri, 01 Aug 2014 16:07:58 +0200

cervisia (4:4.13.95-0ubuntu1) utopic; urgency=medium

  * New upstream beta release

 -- Scarlett Clark <scarlett@scarlettgatelyclark.com>  Wed, 30 Jul 2014 17:22:15 +0200

cervisia (4:4.13.90-0ubuntu1) utopic; urgency=medium

  * New upstream beta release

 -- Scarlett Clark <scarlett@scarlettgatelyclark.com>  Thu, 24 Jul 2014 17:22:38 +0200

cervisia (4:4.13.2-0ubuntu1) utopic; urgency=medium

  * new upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 18 Jun 2014 11:39:40 +0100

cervisia (4:4.13.0-0ubuntu2) utopic; urgency=medium

  * Merge with debian, remaining changes:
    - Add the cvsservice package back in
      + Add appropriate Breaks/Replaces

 -- Rohan Garg <rohangarg@kubuntu.org>  Mon, 02 Jun 2014 12:40:56 +0200

cervisia (4:4.13.0-0ubuntu1) trusty; urgency=medium

  * New upstream KDE Software Compilation release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 10 Apr 2014 21:34:47 +0100

cervisia (4:4.12.97-0ubuntu1) trusty; urgency=medium

  * New upstream release candidate

 -- Philip Muškovac <yofel@kubuntu.org>  Wed, 02 Apr 2014 11:06:05 +0200

cervisia (4:4.12.95-0ubuntu1) trusty; urgency=medium

  * New upstream beta release

 -- Rohan Garg <rohangarg@kubuntu.org>  Sun, 23 Mar 2014 11:53:08 +0100

cervisia (4:4.12.90-0ubuntu1) trusty; urgency=medium

  * New upstream beta release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 19 Mar 2014 10:32:42 +0000

cervisia (4:4.12.3-0ubuntu1) trusty; urgency=medium

  * New upstream bugfix release

 -- Rohan Garg <rohangarg@kubuntu.org>  Tue, 04 Mar 2014 20:25:09 +0100

cervisia (4:4.12.2-2) unstable; urgency=medium

  * Release to unstable

 -- Maximiliano Curia <maxy@debian.org>  Mon, 28 Apr 2014 12:25:08 +0200

cervisia (4:4.12.2-1) experimental; urgency=medium

  * Bump Standards-Version to 3.9.5, no changes needed.
  * New upstream release.
  * Bump kde-sc-dev-latest build dependency.

 -- Maximiliano Curia <maxy@debian.org>  Mon, 10 Feb 2014 11:31:49 +0100

cervisia (4:4.12.2-0ubuntu1) trusty; urgency=medium

  * New upstream bugfix release

 -- Rohan Garg <rohangarg@kubuntu.org>  Tue, 04 Feb 2014 23:34:07 +0000

cervisia (4:4.12.1-0ubuntu1) trusty; urgency=low

  * New upstream bugfix release

 -- Rohan Garg <rohangarg@kubuntu.org>  Thu, 16 Jan 2014 07:54:07 +0000

cervisia (4:4.12.0-0ubuntu1) trusty; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 18 Dec 2013 16:21:23 +0000

cervisia (4:4.11.97-0ubuntu1) trusty; urgency=low

  * New upstream RC release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 29 Nov 2013 12:27:25 +0000

cervisia (4:4.11.95-0ubuntu1) trusty; urgency=low

  * New upstream beta release

 -- Rohan Garg <rohangarg@kubuntu.org>  Mon, 25 Nov 2013 17:38:58 +0100

cervisia (4:4.11.80-0ubuntu1) trusty; urgency=low

  * New upstream beta release

 -- Rohan Garg <rohangarg@kubuntu.org>  Sat, 23 Nov 2013 17:25:00 +0100

cervisia (4:4.11.3-1) unstable; urgency=low

  * New upstream release.
  * Update build dependencies.

 -- Maximiliano Curia <maxy@debian.org>  Sat, 09 Nov 2013 14:25:44 +0100

cervisia (4:4.11.2-1) experimental; urgency=low

  * First release of kdesdk after being split by upstream.

 -- Maximiliano Curia <maxy@debian.org>  Tue, 08 Oct 2013 10:58:32 +0200

cervisia (4:4.11.2-0ubuntu1) saucy; urgency=low

  * New upstream bugfix release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 30 Sep 2013 13:55:07 +0100

cervisia (4:4.11.1-0ubuntu1) saucy; urgency=low

  * New upstream bugfix release.

 -- Howard Chan <smartboyhw@gmail.com>  Fri, 06 Sep 2013 22:03:37 +0100

cervisia (4:4.11.0-0ubuntu1) saucy; urgency=low

  [ Howard Chan ]
  * New upstream release

  [ Jonathan Riddell ]
  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 13 Aug 2013 23:55:00 +0100

cervisia (4:4.10.97-0ubuntu1) saucy; urgency=low

  * New upstream RC 2 release
  * New upstream RC 2 release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 26 Jul 2013 19:01:39 +0100

cervisia (4:4.10.95-0ubuntu1) saucy; urgency=low

  * New upstream RC release

 -- Rohan Garg <rohangarg@kubuntu.org>  Fri, 19 Jul 2013 12:31:39 +0000

cervisia (4:4.10.90-0ubuntu1) saucy; urgency=low

  * New upstream bet release

 -- Michał Zając <quintasan@kubuntu.org>  Fri, 28 Jun 2013 17:57:18 +0100

cervisia (4:4.10.80-0ubuntu2) saucy; urgency=low

  * Instead of depending on cvsservice break/replace it as the binaries are
    now shipped in cervisia

 -- Philip Muškovac <yofel@kubuntu.org>  Sat, 22 Jun 2013 12:49:32 +0200

cervisia (4:4.10.80-0ubuntu1) saucy; urgency=low

  [ Jonathan Riddell ]
  * New upstream release
  * Initial package, split from kdesdk

  [ Howard Chan ]
  * Fixed the .install files.
  * Fixed copyright file to prevent lintian warning of lgpl-2.1+ having
    no content.

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 21 Jun 2013 02:29:34 +0100

cervisia (4:4.10.4-0ubuntu1) saucy-proposed; urgency=low

  [ Rohan Garg ]
  * New upstream bugfix release

  [ Jonathan Riddell ]
  * Add kubuntu_01_dfsg_licence.diff from upstream to remove FDL with
    invariant sections

 -- Rohan Garg <rohangarg@kubuntu.org>  Fri, 07 Jun 2013 00:29:28 +0100

cervisia (4:4.10.3-0ubuntu1) saucy; urgency=low

  * New upstream release
  * Merge from Debian Git. Remaining changes:
    - Use versioned boost build-depends
    - cervisia-scripts depends on pkg-kde-tools
  * Version build-dep boost libboost1.53-dev
  * Don't prune non-free files, fixed upstream
  * Remove X-Debian-ABI: 0 additions to prevent unnecessary binary incompatiblity

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 23 May 2013 11:04:36 +0000

cervisia (4:4.10.2+dfsg-2) experimental; urgency=low

  [ Pino Toscano ]
  * Add the pkg-config build dependency.
  * Remove extra ${perl:Depends} from cervisia.
  * Remove extra ${shlibs:Depends} from okteta-dev.

 -- Sune Vuorela <sune@debian.org>  Mon, 29 Apr 2013 01:23:38 +0200

cervisia (4:4.10.2+dfsg-1) experimental; urgency=low

  * New upstream release.

  [ Josep Febrer Salord ]
  * Bump kde-sc-dev-latest build dependency to 4:4.10.2.
  * Bump kdepimlibs5-dev build dependency to 4:4.10.2.
  * Bump libkonq5-dev build dependency to 4:4.10.2.
  * Refresh patch append_kde.diff.
  * Refresh patch enable_debianabimanager.diff.
  * Refresh patch dont_export_private_classes.diff.
  * Refresh patch okteta_big_endian.diff.
  * Add new package libkasten2controllers2 and remove libkasten1controllers1.
  * Add new package libkasten2core2 and remove libkasten1core1.
  * Add new package libkasten2gui2 and remove libkasten1gui1.
  * Add new package libkasten2okteta1controllers1 and remove
    libkasten1okteta1controllers1.
  * Add new package libkasten2okteta1core1 and remove libkasten1okteta1core1.
  * Add new package libkasten2okteta1gui1 and remove libkasten1okteta1gui1.
  * Update install files.
  * Disable build of tests.
  * Update cervisia-scripts.examples.
  * Update symbols files.
  * Delete kbugbuster commented references in control and remove
    kbugbuster.install and kbugbuster.manpages, dropped upstream.
  * Update copyright file.
  * Update file paths on rules.
  * Add new package cervisia-thumbnailers.

  [ Pino Toscano ]
  * Update paths of the DFSG-pruned files.
  * Remove kde-dev-scripts/add_trace.pl from the tarball, since its license
    is unclear.

  [ Maximiliano Curia ]
  * Update Uploaders.
  * Update watch file, add dfsg mangle.
  * Update lintian-overrides.
  * Bump debhelper to 9.
  * Update copyright file.

 -- Sune Vuorela <sune@debian.org>  Mon, 22 Apr 2013 09:27:58 +0200

cervisia (4:4.10.2-0ubuntu1) raring; urgency=low

  * New upstream bugfix release

 -- Philip Muškovac <yofel@kubuntu.org>  Sun, 31 Mar 2013 14:46:18 +0200

cervisia (4:4.10.1-0ubuntu1) raring-proposed; urgency=low

  * New upstream bugfix release
    - update append_kde.diff for new script folder name
    - adjust cervisia-scripts.examples for new script folder name
    - Add a new and drop a missing private symbol from 
      libkasten2okteta1controllers1.symbols

 -- Philip Muškovac <yofel@kubuntu.org>  Tue, 05 Mar 2013 15:43:04 +0000

cervisia (4:4.10.0-0ubuntu1) raring-proposed; urgency=low

  * New upstream release

 -- Rohan Garg <rohangarg@kubuntu.org>  Wed, 06 Feb 2013 11:51:06 +0000

cervisia (4:4.9.98-0ubuntu1) raring-proposed; urgency=low

  * New upstream release candidate

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 18 Jan 2013 15:32:17 +0000

cervisia (4:4.9.97-0ubuntu1) raring; urgency=low

  * New upstream release candidate

 -- Philip Muškovac <yofel@kubuntu.org>  Thu, 03 Jan 2013 22:33:00 +0100

cervisia (4:4.9.95-0ubuntu1) raring; urgency=low

  [ Jonathan Riddell ]
  * New upstream RC release

  [ Rohan Garg ]
  * Update install files

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 18 Dec 2012 23:27:21 +0000

cervisia (4:4.9.90-0ubuntu1) raring; urgency=low

  * New upstream beta release
  * Update .symbols files

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 07 Dec 2012 17:50:36 +0000

cervisia (4:4.9.3-0ubuntu1) raring; urgency=low

  * New upstream release (LP: #1074747)

 -- Philip Muškovac <yofel@kubuntu.org>  Tue, 06 Nov 2012 22:34:42 +0100

cervisia (4:4.9.2-0ubuntu2) quantal; urgency=low

  * Rebuild to get missing binaries that were lost due to being copied from
    proposed to release before they were built

 -- Scott Kitterman <scott@kitterman.com>  Fri, 05 Oct 2012 00:55:55 -0400

cervisia (4:4.9.2-0ubuntu1) quantal-proposed; urgency=low

  * New upstream bugfix release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 02 Oct 2012 15:25:58 +0100

cervisia (4:4.9.1-0ubuntu1) quantal; urgency=low

  [ Harald Sitter ]
  * New upstream release

  [ Philip Muškovac ]
  * Change sonames from 4.9.0 to 4.9.* 

 -- Harald Sitter <apachelogger@ubuntu.com>  Mon, 10 Sep 2012 18:27:36 +0530

cervisia (4:4.9.0-0ubuntu2) quantal; urgency=low

  * Build-dep on kdelibs 4.9.0a, adjust .install files to new library
    version no

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 02 Aug 2012 11:57:51 +0100

cervisia (4:4.9.0-0ubuntu1) quantal; urgency=low

  * Use direct build-depends versions rather than kde-sc-dev-latest
  * New upstream release
  * Update symbols files
  * Add build-dep on pkg-config

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 26 Jul 2012 17:55:47 +0100

cervisia (4:4.8.90-0ubuntu1) quantal; urgency=low

  * New upstream beta release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 14 Jun 2012 15:11:09 +0100

cervisia (4:4.8.90-0ubuntu1) quantal; urgency=low

  * New upstream beta release.

 -- Felix Geyer <debfx@ubuntu.com>  Mon, 11 Jun 2012 23:18:17 +0200

cervisia (4:4.8.80-0ubuntu1) quantal; urgency=low

  * New uptream beta release
  * Update dont_export_private_classes.diff

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 06 Jun 2012 11:49:54 +0100

cervisia (4:4.8.4+dfsg-1) unstable; urgency=low

  * Team upload.

  [ Pino Toscano ]
  * Improve packages descriptions:
    - cervisia-dolphin-plugins: mention all the contained plugins.
    - kcachegrind-converters: sort the list of scripts.
    - cervisia-strigi-plugins: add xliff files.
  * Make cervisia-dolphin-plugins enhance dolphin.
  * Pass --language=C to dh_installman to avoid its autodetection of the
    language, which causes bogus results due to the script names (all the
    man pages in cervisia-scripts are in English, anyway). (Closes: #696959)
  * Remove .texi files under GFDL + invariant sections: (Closes: #695701)
    - add prune-nonfree to debian/rules to remove them.
    - add a note on README.source of what we are removing from the original
      tarball.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Confirm symbols files from buildds' logs.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 30 Jan 2013 13:47:01 -0300

cervisia (4:4.8.4-2) unstable; urgency=low

  * Push to unstable

 -- Sune Vuorela <sune@debian.org>  Thu, 21 Jun 2012 23:41:07 +0200

cervisia (4:4.8.4-1) experimental; urgency=low

  * Team upload.
  * New upstream release.

  [ Pino Toscano ]
  * Fix typo in kompare's description. (Closes: #670199)

  [ José Manuel Santamaría Lema ]
  * Update build dependencies:
    - Bump kde-sc-dev-latest to 4:4.8.4.
    - Bump kdepimlibs5-dev to >= 4:4.8.
    - Bump libkonq5-dev to >= 4:4.8.
  * Update patches:
    - update dont_export_private_classes.diff.
    - refresh other patches to make them apply without any offset.
  * Rename the following packages due to name/SONAME changes:
    - libkastencontrollers4 -> libkasten1controllers1
    - libkastencore4 -> libkasten1core1
    - libkastengui4 -> libkasten1gui1
    - liboktetacore4 -> libokteta1core1
    - liboktetagui4 -> libokteta1gui1
    - liboktetakastencontrollers4abi1 -> libkasten1okteta1controllers1
    - liboktetakastencore4 -> libkasten1okteta1core1
    - liboktetakastengui4 -> libkasten1okteta1gui1
  * Update installed files.
  * Bump Standards-Version to 3.9.3:
    - cervisia binary package now belongs to section 'metapackages'.
  * Add watch file.
  * Update lintian overrides.

 -- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>  Wed, 20 Jun 2012 12:54:30 -0300

cervisia (4:4.8.3-0ubuntu1) quantal; urgency=low

  [ Jonathan Kolberg ]
  * New upstream release

  [ Philip Muškovac ]
  * Switch boost build-dep to 1.49 

 -- Philip Muškovac <yofel@kubuntu.org>  Mon, 14 May 2012 21:51:58 +0200

cervisia (4:4.8.2-0ubuntu2) precise; urgency=low

  * Fixed the description of cervisia-dolphin-plugins (LP: #973224)

 -- Jonathan Kolberg <bulldog98@kubuntu-de.org>  Wed, 04 Apr 2012 11:54:25 +0200

cervisia (4:4.8.2-0ubuntu1) precise; urgency=low

  * New upstream release

 -- Philip Muškovac <yofel@kubuntu.org>  Mon, 02 Apr 2012 17:41:03 +0200

cervisia (4:4.8.1-0ubuntu1) precise; urgency=low

  * New upstream release 
    - update lokalize.install

 -- Philip Muškovac <yofel@kubuntu.org>  Sun, 04 Mar 2012 19:29:09 +0100

cervisia (4:4.8.0-0ubuntu1) precise; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 20 Jan 2012 12:10:23 +0000

cervisia (4:4.7.97-0ubuntu1) precise; urgency=low

  * New upstream release candidate

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 05 Jan 2012 12:18:21 +0000

cervisia (4:4.7.95-0ubuntu1) precise; urgency=low

  [ Philip Muškovac ]
  * New upstream release candidate

  [ Felix Geyer ]
  * Fix lintian warning debian-changelog-line-too-long.
  * Update symbols files.

 -- Philip Muškovac <yofel@kubuntu.org>  Sat, 24 Dec 2011 18:10:46 +0100

cervisia (4:4.7.90-0ubuntu1) precise; urgency=low

  * new upstream beta release
  * Remove kubuntu_no_structures_tool.diff now upstream
    https://bugs.kde.org/283661
  * Do not use debian abi manager, okteta libraries have their own way of doing
    this
  * rename several okteta library packages to match upstream

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 15 Dec 2011 14:17:52 +0000

cervisia (4:4.7.4-3) unstable; urgency=low

  * Team upload. Upload to unstable.
  * Update uploaders, remove Armin.

  [ José Manuel Santamaría Lema ]
  * Confirm symbols files on all architectures.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Wed, 07 Mar 2012 10:38:58 +0100

cervisia (4:4.7.4-2) experimental; urgency=low

  * Add default-jre-headless to Build-Depends, thus we make sure that antlr
    will use the latest gcj (4.6 today) when building with sbuild configured to
    use the aptitude based resolver. Right now, this avoids an FTBFS on
    kfreebsd-amd64; this FTBFS happens because of gcj 4.4, which segfaults when
    executing antlr.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 28 Dec 2011 22:22:31 +0100

cervisia (4:4.7.4-1) experimental; urgency=low

  * New upstream release.
  
  [ José Manuel Santamaría Lema ]
  * Bump kde-sc-dev-latest to 4:4.7.4.
  * Make this source package build properly with big endian architectures:
    - Add okteta_big_endian.diff to disable part of okteta funcionality
      (allegedly broken on big endian architectures).
    - Change debian/rules and some debian/*.install to install conditionally
      some files depending on the architecture endian-ness. These files are
      related to the allegedly broken functionality mentioned above.
  * Confirm symbols files on more architectures with the 4.7.2 build logs.

  [ Pino Toscano ]
  * Add DEP3 headers to patch append_kde.diff.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 18 Dec 2011 03:20:26 +0100

cervisia (4:4.7.3-0ubuntu1) precise; urgency=low

  * New upstream release
  * Merge from Debian Git. Remaining changes: 
    - Use versioned boost build-depends
    - cervisia-scripts depends on pkg-kde-tools
    - Don't install the following files in cervisia-scripts:
      - extractattr
      - extractrc
    - Add kubuntu_no_structures_tool.diff guard includes which are not
      available if the structures tool is not built. should be removable for 4.8
  * Remove kubuntu_add_missing_symbol.diff, liboktetakastencontrollers4 now
    liboktetakastencontrollers4abi1

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 23 Nov 2011 23:46:49 +0000

cervisia (4:4.7.2-1) experimental; urgency=low

  * New upstream release:
    - stops using the deprecated Switch.pm perl module. (Closes: #629339)

  [ Daniele E. Domenichelli ]
  * Update build dependencies:
    * Bump kde-sc-dev-latest to 4:4.7.2.
    * Bump kdepimlibs5-dev to >= 4:4.7.
    * Bump libkonq5-dev to >= 4:4.7.
  * Update append_kde.diff.
  * Update symbols files.
  * Remove kate from built packages.
  * Update installed files.
  * Fix some problems found by lintian.
  * Add lintian-overrides for missing symbols files.

  [ José Manuel Santamaría Lema ]
  * Bump liboktetakastencontrollers ABI version due to a BIC issue.

  [ Pino Toscano ]
  * Manage some packages renamings:
    - cervisia-dbg depends on kde-runtime-dbg instead of kdebase-runtime-dbg.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 03 Dec 2011 10:43:38 -0300

cervisia (4:4.7.2-0r1) raring; urgency=low

  * New upstream release:
    - stops using the deprecated Switch.pm perl module. (Closes: #629339)

  [ Daniele E. Domenichelli ]
  * Update build dependencies:
    * Bump kde-sc-dev-latest to 4:4.7.2.
    * Bump kdepimlibs5-dev to >= 4:4.7.
    * Bump libkonq5-dev to >= 4:4.7.
  * Update append_kde.diff.
  * Update symbols files.
  * Remove kate from built packages.
  * Update installed files.
  * Fix some problems found by lintian.
  * Add lintian-overrides for missing symbols files.

  [ José Manuel Santamaría Lema ]
  * Bump liboktetakastencontrollers ABI version due to a BIC issue.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 27 Sep 2011 13:26:57 +0100

cervisia (4:4.6.5-1) unstable; urgency=low

  * New upstream release.

  [ Modestas Vainius ]
  * Update symbol files.

  [ José Manuel Santamaría Lema ]
  * Bump kde-sc-dev-latest build dependency to 4:4.6.5.
  * Update symbols files.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 18 Jul 2011 21:54:00 +0300

cervisia (4:4.7.2-0ubuntu1) oneiric-proposed; urgency=low

  * New upstream release (LP: #872506)

 -- Philip Muškovac <yofel@kubuntu.org>  Sat, 15 Oct 2011 10:23:20 +0200

cervisia (4:4.7.1-0ubuntu3) oneiric; urgency=low

  * Guard includes which are not available if the structures tool
    is not built. LP: #852430.

 -- Matthias Klose <doko@ubuntu.com>  Thu, 06 Oct 2011 11:07:35 +0200

cervisia (4:4.7.1-0ubuntu2) oneiric; urgency=low

  * No-change rebuild so translations aren't stripped from .desktop
    files anymore.

 -- Felix Geyer <debfx-pkg@fobos.de>  Fri, 16 Sep 2011 00:48:41 +0200

cervisia (4:4.7.1-0ubuntu1) oneiric; urgency=low

  * New upstream release

 -- Jonathan Kolberg <bulldog98@kubuntu-de.org>  Thu, 08 Sep 2011 11:38:43 -0400

cervisia (4:4.7.0-0ubuntu1) oneiric; urgency=low

  [ Felix Geyer ]
  * Update symbols files.

  [ Philip Muškovac ]
  * New upstream release 
    - update okteta-dev.install again

 -- Philip Muškovac <yofel@kubuntu.org>  Thu, 28 Jul 2011 17:16:54 +0200

cervisia (4:4.6.90-1ubuntu1) oneiric; urgency=low

  * New upstream release candidate 
    - bump kde-sc-dev-latest depends to 4:4.6.90
    - fix cervisia-dbg to depend on kde-runtime-dbg
    - Update Vcs lines for new location
    - drop kubuntu_kate_desktop.patch as kate was removed
    - drop kate package, packaged seperately
    - refresh append_kde.diff to remove fuzz
    - update install and symbol files
    - Add kubuntu_add_missing_symbol.diff to add a function back
      that was accidentially removed.

 -- Philip Muškovac <yofel@kubuntu.org>  Mon, 11 Jul 2011 12:38:12 +0200

cervisia (4:4.6.3-1ubuntu1) oneiric; urgency=low

  * Merge from debian unstable. Remaining changes: 
    - Use versioned boost build-depends
    - cervisia-scripts depends on pkg-kde-tools
    - Don't install the following files in cervisia-scripts:
      - extractattr
      - extractrc
    - Add kate-dev package
  * Update Vcs links as the branch is owned by kubuntu-packagers now 

 -- Philip Muškovac <yofel@kubuntu.org>  Fri, 03 Jun 2011 10:53:58 +0200

cervisia (4:4.6.3-1) unstable; urgency=low

  * New upstream release. 

  [ José Manuel Santamaría Lema ]
  * Bump kde-sc-dev-latest build dependency to 4:4.6.3.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 26 May 2011 02:41:39 +0300

cervisia (4:4.6.2-2) experimental; urgency=low

  * Confirm symbol files on more debian arches.
  * Pass -c0 to dpkg-gensymbols.
  * Do not use wildcards in okteta-dev.install.
  * Do not export private classes in libkastencore (patch
    dont_export_private_classes.diff).
  * Bump Standards-Version to 3.9.2: no changes needed.

 -- Modestas Vainius <modax@debian.org>  Mon, 02 May 2011 03:55:54 +0300

cervisia (4:4.6.2-1) experimental; urgency=low

  * New upstream release:
    - fixes plugin loading in kate sessions (Closes: #525853)
    - updates kate man page with respect to instance creation defaults
      (Closes: #598443)
    - fixes cursor position with static word-wrap in Kate (Closes: #570409)
    - xml2pot creates .pot files with the correct mimetype (Closes: #326060)
  * Update installed files.
  * Update lintian overrides.

  [ Modestas Vainius ]
  * Point debian/control Vcs fields to the new Git repository.
  * Strip sequence numbers from debian/patches.
  * Strip trailing whitespace in debian/copyright.
  * Add kdeutils-dbg (<< 4:4.6) to cervisia-dbg Breaks/Replaces (due to moved
    okteta).
  * Add ${perl:Depends} to Depends of cervisia and cervisia-kio-plugins.

  [ George Kiagiadakis ]
  * Add myself to uploaders.
  * Refresh patch 02_append_kde.diff.
  * Drop patch 03_kmtrace_compile.diff; fixed upstream in a better way.
  * Add libkonq5-dev, libantlr-dev and antlr to build depends.
    (Closes: #505425)
  * Bump kdepimlibs5-dev build dependency to version 4:4.6.
  * Add new package: cervisia-dolphin-plugins.

  [ José Manuel Santamaría Lema ]
  * Remove package kbugbuster.
  * Enable DebianABIManager:
    - include DebianABIManager.cmake at the bottom of the main CMakeLists.txt
      (patch enable_debianabimanager.diff).
    - debian/control: managing all non-local unstable-BC libraries.
  * Add packages for okteta:
    - okteta
    - okteta-dev
    - libkastencontrollers4
    - libkastencore4
    - libkastengui4
    - liboktetacore4
    - liboktetagui4
    - liboktetakastencontrollers4
    - liboktetakastencore4
    - liboktetakastengui4
  * Add symbols files for new library packages.
  * Bump kde-sc-dev-latest build dependency to 4:4.6.2.
  * Bump pkg-kde-tools build dependency to 0.12.
  * Switch debian/rules engine to dhmk based qt-kde-team/2/*
    - and remove cdbs from Build-Depends.
  * Bump S-V to 3.9.1; update Replaces/Breaks/Conflicts.
  * Add myself to Uploaders.
  
  [ Pino Toscano ]
  * Add build dependency on libqca2-dev.
  * Do not ship kdesrc-build with cervisia-scripts, it is packaged separately.
  * Small updates to descriptions.
  * Clean up Replaces/Breaks from the pre-squeeze era whenever possible.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 27 Apr 2011 12:23:44 +0300

cervisia (4:4.6.2-0ubuntu1) natty; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 04 Apr 2011 15:24:21 +0000

cervisia (4:4.6.1-0ubuntu1) natty; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 01 Mar 2011 16:10:04 +0000

cervisia (4:4.6.0-0ubuntu3) natty; urgency=low

  * Fix syntax of symbols that don't exist on armel.

 -- Felix Geyer <debfx-pkg@fobos.de>  Wed, 16 Feb 2011 16:38:07 +0100

cervisia (4:4.6.0-0ubuntu2) natty; urgency=low

  [ Jonathan Riddell ]
  * Update kde-sc-dev-latest version

  [ Felix Geyer ]
  * Make cervisia-scripts depend on pkg-kde-tools as extractrc and extractattr
    have been moved there.

 -- Felix Geyer <debfx-pkg@fobos.de>  Wed, 16 Feb 2011 15:13:30 +0100

cervisia (4:4.6.0-0ubuntu1) natty; urgency=low

  [ Felix Geyer ]
  * New upstream release.

  [ Philip Muskovac ]
  * Update libkastengui4.symbols for armel

 -- Philip Muskovac <yofel@gmx.net>  Sat, 22 Jan 2011 16:26:33 +0100

cervisia (4:4.5.95-0ubuntu2) natty; urgency=low

  * Rename cervisia-dev into kate-dev and add install file
  * Add new okteta-dev package for the okteta development files
  * Split okteta libraries into their own packages
    - add symbol files

 -- Philip Muskovac <yofel@gmx.net>  Thu, 13 Jan 2011 23:23:38 +0100

cervisia (4:4.5.95-0ubuntu1) natty; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 05 Jan 2011 17:31:45 +0000

cervisia (4:4.5.90-0ubuntu1) natty; urgency=low

  * New upstream RC release
  * Add back cervisia-dev experimentally on request of user who wants to compile pate
    kate plugins

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 22 Dec 2010 23:46:27 +0000

cervisia (4:4.5.85a-0ubuntu1) natty; urgency=low

  * New upstream beta release
  * build-depend on libqca2-dev
  * refresh kuiviewer.install
  * refresh not-installed

 -- Philip Muskovac <yofel@gmx.net>  Mon, 06 Dec 2010 23:35:11 +0100

cervisia (4:4.5.80-0ubuntu2) natty; urgency=low

  * cervisia-dbg replaces kdeutils-dbg due to oketa moving from kdeutils to
    cervisia
  * Drop incorrect kdeutils-dbg conflict with kdebase-dbg

 -- Scott Kitterman <scott@kitterman.com>  Tue, 30 Nov 2010 21:20:30 -0500

cervisia (4:4.5.80-0ubuntu1) natty; urgency=low

  * New upstream beta release
  * Remove kubuntu_03_optimizegraphics.diff now upstream
  * Remove kbugbuster package, removed upstream
  * Add okteta package, moved here from kdeutils by upstream

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 26 Nov 2010 12:40:45 +0000

cervisia (4:4.5.3-0ubuntu1) natty; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 05 Nov 2010 15:15:42 +0000

cervisia (4:4.5.2-0ubuntu2) natty; urgency=low

  * cervisia-dolphin-plugins replaces dolphin-plugins
  * Build against libkonq5-dev (>= 4:4.5.2-0ubuntu1) for libkonq5 -> libkonq5a
    transition

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sat, 23 Oct 2010 20:43:20 +0200

cervisia (4:4.5.2-0ubuntu1) natty; urgency=low

  [ Alessandro Ghersi ]
  * Merge with Debian git remaining changes:
    - Build against libboost1.42-dev
    - cervisia-dbg depends on kdesdk, not suggests
    - cervisia-scripts suggests optipng and advancecomp, not recommends
    - Don't install the following files in cervisia-scripts:
      - extractattr
      - extractrc
    - Keep our patches

  [ Jonathan Riddell ]
  * New upstream release

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Mon, 18 Oct 2010 03:25:44 +0200

cervisia (4:4.5.1-0r1) raring; urgency=low

  * New upstream release.

  [ Modestas Vainius ]
  * Point debian/control Vcs fields to the new Git repository.

  [ George Kiagiadakis ]
  * Add myself to uploaders.
  * Refresh patch 02_append_kde.diff.
  * Drop patch 03_kmtrace_compile.diff; fixed upstream in a better way.
  * Add libkonq5-dev, libantlr-dev and antlr to build depends.
  * Bump kdepimlibs5-dev build dependency to version 4:4.5.
  * Update installed files.
  * Add new package: cervisia-dolphin-plugins.
  * Update lintian overrides.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 04 Sep 2010 12:56:39 +0300

cervisia (4:4.5.1-0ubuntu3) maverick; urgency=low

  * Add build-dep on antlr, LP: #643198
  * Suggest optipng, advancecomp instead of recommend, they are in universe, LP: #641356

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 21 Sep 2010 12:10:09 +0100

cervisia (4:4.5.1-0ubuntu2) maverick; urgency=low

  * Add back poxml package, less antlr libraries, LP: #643198

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 21 Sep 2010 00:31:44 +0100

cervisia (4:4.5.1-0ubuntu1) maverick; urgency=low

  * New upstream release.
  * Update install files.

 -- Felix Geyer <debfx-pkg@fobos.de>  Mon, 30 Aug 2010 19:04:10 +0200

cervisia (4:4.5.0b-0ubuntu1) maverick; urgency=low

  * New tar from upstream

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 04 Aug 2010 23:20:03 +0100

cervisia (4:4.5.0-0ubuntu1) maverick; urgency=low

  * New upstream release
    - Bump on build-depends
    - Updated install files

 -- Michał Zając <michal.zajac@gmail.com>  Sat, 31 Jul 2010 01:23:28 +0200

cervisia (4:4.4.92-0ubuntu1) maverick; urgency=low

  * New upstream rc release
    - Bump kde-sc-dev-latest
    - Refresh patches
    - Update install files
    - Update not-installed

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Thu, 08 Jul 2010 06:17:28 +0200

cervisia (4:4.4.90-0ubuntu1) maverick; urgency=low

  [ Alessandro Ghersi ]
  * New upstream rc release
    - Bump kde-sc-dev-latest
    - Removed 03_kmtrace_compile.diff fixed by upstream
    - Add libantlr-dev to build-depends (optional dependency,
      used for the po2xml and swappo tools)

  [ Harald Sitter ]
  * -dbg replaces&conflicts kdebase-dbg << 4.4.80 since the VCS plugins got
     moved around inbetween 4.4 and 4.5 (LP: #588775)

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sun, 20 Jun 2010 00:22:35 +0200

cervisia (4:4.4.85-0ubuntu1) maverick; urgency=low

  * New upstream release
    - Bump build-depends

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Mon, 07 Jun 2010 20:04:32 +0200

cervisia (4:4.4.80-0ubuntu2) maverick; urgency=low

  * Add build-dep on libkonq5-dev

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sun, 30 May 2010 22:25:02 +0100

cervisia (4:4.4.80-0ubuntu1) maverick; urgency=low

  * New upstream release
  * Don't build poxml, needs antlr files which don't seem to be in our archive

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 28 May 2010 12:33:13 +0000

cervisia (4:4.4.5-1) unstable; urgency=low

  [ Modestas Vainius ]
  * New upstream release.
  * Bump kde-sc-dev-latest build dependency to 4:4.4.5.

  [ Sune Vuorela ]
  * Update email address
  * Update descriptions

 -- Sune Vuorela <sune@debian.org>  Sun, 18 Jul 2010 10:40:07 +0200

cervisia (4:4.4.4-1) unstable; urgency=low

  * New upstream release.

  [ Modestas Vainius ]
  * Bump pkg-kde-tools build dependency to (>= 0.9) for HTML_INSTALL_DIR
    switch and 3.0 (quilt) source format support.
  * Switch to 3.0 (quilt) source package format and original tar.bz2
    tarballs.
  * Replace usr/share/doc/kde4 references with usr/share/doc/kde.
  * Drop quilt from Build-Depends, no longer needed for 3.0 (quilt).
  * Remove debian/README.source. Patch support is part of source format
    now.
  * Move debian/source.lintian-overrides to debian/source/lintian-overrides.
  * Bump kde-sc-dev-latest build dependency to 4:4.4.4.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 01 Jun 2010 01:15:19 +0300

cervisia (4:4.4.3-1ubuntu1) maverick; urgency=low

  * Merge with Debian unstable, remaining changes:
    - Build dep on libboost1.42-dev
    - cervisia-dbg depends on kdesdk, not suggests\
    - Keep the Kubuntu docpath (/usr/share/doc/kde)
    - Don't install the following in cervisia-scripts:
      + extractattr
      + extractrc
    - Keep kubuntu_01_kate_desktop.patch

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Thu, 20 May 2010 08:13:59 +0200

cervisia (4:4.4.3-1) unstable; urgency=low

  * New upstream release.

  [ Ferdinand Thommes ]
  * fixed copyright file

  [ Modestas Vainius ]
  * Bump kde-sc-dev-latest build dependency to 4.4.3.
  * Release KDE SC 4.4.3 to unstable.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 01 May 2010 23:37:57 +0300

cervisia (4:4.4.3-0ubuntu1) lucid; urgency=low

  * New upstream bugfix release
    - Bump KDE build-depends to 4.4.3

 -- Christian Mangold <neversfelde@ubuntu.com>  Mon, 03 May 2010 20:11:55 +0200

cervisia (4:4.4.2-1) experimental; urgency=low

  * New upstream release:
    - Kate now always uses the encoding specified in the File Open dialog.
      (Closes: #316258)
    - KCacheGrind now displays an error message when failing to open a file.
      (Closes: #497852)

  [ Modestas Vainius ]
  * Add myself as uploader.
  * Fix Vcs-Browser URL.
  * Add cmake to Build-Depends.
  * Add kde-sc-dev-latest (>= 4:4.4.2) to Build-Depends.
  * Bump Standards-Version to 3.8.4: no changes needed.
  * Bump KDE build dependencies to 4:4.4.
  * Bump pkg-kde-tools build dependency to 0.6.4.
  * Build depend on shared-mime-info (>= 0.30).

  [ Pino Toscano ]
  * svn does not exist while subversion does, so adjust cervisia-scripts
    recommend. (Closes: #554009)
  * Add brief descriptions of the conversion scripts provided in
    kcachegrind-converters. (Closes: #403608)
  * cervisia-kio-plugins contains also the perldoc kioslave, so add that in the
    description and suggest perl-doc.
  * Add dependency on ${misc:Depends} in all the packages.
  * Do not install the .so symlink of our antlr copy.

  [ Sune Vuorela ]
  * Install the kde gdb macros as a example
  * Install the kde vim scripts as a example
  * Update install files
  * Lokalize needs hunspell
  * Remove cervisia-dev. It is not used and we aren't actually handling the
    libraries as we should.
  * Don't ship dev stuff in kmtrace package.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 09 Apr 2010 18:40:15 +0300

cervisia (4:4.4.2-0ubuntu3) lucid; urgency=low

  * Update kubuntu_03_optimizegraphics.diff to also check for optipng
  * move optipng from recommends to suggests

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 16 Apr 2010 17:22:32 +0100

cervisia (4:4.4.2-0ubuntu2) lucid; urgency=low

  * Add kubuntu_03_optimizegraphics.diff to prompt for installing
    advancecomp when not installed
  * Move advancecomp from Recommends to Suggests, closes LP: #563769

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 16 Apr 2010 15:23:24 +0100

cervisia (4:4.4.2-1) experimental; urgency=low

  * New upstream release:
    - Kate now always uses the encoding specified in the File Open dialog.
      (Closes: #316258)
    - KCacheGrind now displays an error message when failing to open a file.
      (Closes: #497852)

  [ Modestas Vainius ]
  * Add myself as uploader.
  * Fix Vcs-Browser URL.
  * Add cmake to Build-Depends.
  * Add kde-sc-dev-latest (>= 4:4.4.2) to Build-Depends.
  * Bump Standards-Version to 3.8.4: no changes needed.
  * Bump KDE build dependencies to 4:4.4.
  * Bump pkg-kde-tools build dependency to 0.6.4.
  * Build depend on shared-mime-info (>= 0.30).

  [ Pino Toscano ]
  * svn does not exist while subversion does, so adjust cervisia-scripts
    recommend. (Closes: #554009)
  * Add brief descriptions of the conversion scripts provided in
    kcachegrind-converters. (Closes: #403608)
  * cervisia-kio-plugins contains also the perldoc kioslave, so add that in the
    description and suggest perl-doc.
  * Add dependency on ${misc:Depends} in all the packages.
  * Do not install the .so symlink of our antlr copy.

  [ Sune Vuorela ]
  * Install the kde gdb macros as a example
  * Install the kde vim scripts as a example
  * Update install files
  * Lokalize needs hunspell
  * Remove cervisia-dev. It is not used and we aren't actually handling the
    libraries as we should.
  * Don't ship dev stuff in kmtrace package.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 09 Apr 2010 18:40:15 +0300

cervisia (4:4.4.2-0ubuntu1) raring; urgency=low

  * New upstream release
    - Bump build-depends
    - Update kate.install

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sat, 27 Mar 2010 20:57:08 +0100

cervisia (4:4.4.1-0ubuntu1) lucid; urgency=low

  * New upstream release
    - Bump build-depends
    - Update kate.install

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sat, 27 Feb 2010 04:52:58 +0100

cervisia (4:4.4.0-0ubuntu1) lucid; urgency=low

  * New upstream release
    - Bump build dep versions

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Thu, 04 Feb 2010 20:17:18 +0100

cervisia (4:4.3.98-0ubuntu1) lucid; urgency=low

  [ Christian Mangold ]
  * New upstream release candidate
    - Bump build dep versions

  [ Alessandro Ghersi ]
  * Bump Qt to 4.6.1

 -- Christian Mangold <neversfelde@ubuntu.com>  Mon, 01 Feb 2010 23:50:33 +0100

cervisia (4:4.3.95-0ubuntu1) lucid; urgency=low

  [ Alessandro Ghersi ]
  * New upstream release
    - Bump build-deps

  [ Jonathan Thomas ]
  * Make cervisia-scripts recommend subversion rather than svn (LP: #483602)

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Wed, 20 Jan 2010 14:52:16 +0100

cervisia (4:4.3.90-0ubuntu1) lucid; urgency=low

  * New upstream release candidate:
    - Refresh all patches
    - Bump build-depend versions

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Wed, 06 Jan 2010 19:39:54 -0500

cervisia (4:4.3.85-0ubuntu1) lucid; urgency=low

  * New upstream beta release:
    - Refresh all patches
    - Bump build-depend versions

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Fri, 18 Dec 2009 23:46:24 -0500

cervisia (4:4.3.80-0ubuntu1) lucid; urgency=low

  * New upstream release
    - Re-pack source (gzip)
    - Bump build-deps
    - Add libx11-dev, libhunspell-dev
  * Update install files
    - kate.install
    - cervisia-dev.install
    - cervisia-scripts.install
    - kmtrace.install
    - kompare.install
    - lokalize.install
    - poxml.install
  * Refresh patches
    - kubuntu_01_kate_desktop.patch
  * Remove patches
    - kubuntu_02_abort2cancel.diff - fixed upstream

 -- Roderick B. Greening <roderick.greening@gmail.com>  Wed, 02 Dec 2009 16:31:01 -0330

cervisia (4:4.3.4-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Karl Ferdinand Ebert:

  * Add source.lintian-overrides to ignore lintian warning about missing
    debug depends.

  +++ Changes by Lukasz Janyst:

  * Updated build dep's version numbers in debian/control
  * Readded missing man pages (Closes: #530390)

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Remove myself from Uploaders.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 09 Dec 2009 00:24:12 +0200

cervisia (4:4.3.3-0ubuntu1) lucid; urgency=low

  * New upstream release
  * Merged with Debian, remaining changes:
    - Keep Ubuntu-specific dep on libboost1.38-dev
    - Keep -kde4 conflicts/replaces
    - cervisia-dbg depends on kdesdk, not suggests
    - Keep the Kubuntu docpath (/usr/share/doc/kde)
    - Don't install the following in cervisia-scripts:
      + extractattr
      + extractrc
    - Keep kubuntu_01_kate_desktop.patch
    - Suggest instead of Recommend subversion since KDE is moving to Git

 -- Ralph Janke <txwikinger@ubuntu.com>  Sat, 14 Nov 2009 10:44:29 -0500

cervisia (4:4.3.2-1) unstable; urgency=low

  * New upstream release.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Wed, 07 Oct 2009 21:40:23 +0200

cervisia (4:4.3.1-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Fathi Boudra:

  * Bump KDE build dependencies to 4.3.1.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 31 Aug 2009 09:22:07 +0200

cervisia (4:4.3.0-3) unstable; urgency=low

  +++ Changes by Pino Toscano:

  * Add patch 03_kmtrace_compile.diff to compile kmtrace on kFreeBSD and Hurd,
    as they are using glibc. Patch by Petr Salinger (slightly edited by me for
    better accommodate Hurd), thanks! (Closes: #542749)

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Bump Standard-Version from 3.8.2 to 3.8.3 (no changes needed).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 23 Aug 2009 13:44:05 +0200

cervisia (4:4.3.0-2) unstable; urgency=low

  * Add conflicts and replaces with libcvsservice0 to cvsservice.

 -- Armin Berres <armin+debian@space-based.de>  Wed, 05 Aug 2009 13:48:22 +0200

cervisia (4:4.3.0-1) unstable; urgency=low

  * New upstream release.
  * Update installed files.
  * Bump build dependencies to >= 4.3.0.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Tue, 04 Aug 2009 09:21:12 +0200

cervisia (4:4.2.96-3) experimental; urgency=low

  * Install missing kompareinterface.h.
  * Bump Standard-Version from 3.8.0 to 3.8.1 (no changes needed).

 -- Fathi Boudra <fabo@debian.org>  Fri, 17 Jul 2009 10:11:25 +0200

cervisia (4:4.2.96-2) experimental; urgency=low

  * Bump build-deps; (Closes: #536829)

 -- Sune Vuorela <debian@pusling.com>  Mon, 13 Jul 2009 13:36:34 +0200

cervisia (4:4.2.96-1) experimental; urgency=low

  * New upstream release candidate. (Closes: #532716)

  +++ Changes by Pino Toscano:

  * Add cvsservice as dependency for cervisia, otherwise cervisia is basically
    useless. (Closes: #532004)

  +++ Changes by Nick Shaforostoff:

  * Update lokalize dependencies for KDE 4.3
  * Make lokalize hard-depend on cervisia-strigi-plugins because it is needed for most use cases and is of low install size
  * Update lokalize description. (Closes: #536216)
  * Update lokalize filelist based on latest SVN (4.3 branch)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 10 Jul 2009 10:24:23 +0200

cervisia (4:4.2.4-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Sune Vuorela:

  * Fix sections.
  * Fix strigi plugin description. (Closes: #524792)
  * Make lokalize recommend python-kde4. (Closes: #524793)

  +++ Changes by Fathi Boudra:

  * Bump Standards-Version from 3.8.0 to 3.8.1 (no changes needed).
  * Add optipng and advancecomp to cervisia-scripts recommends.
    They're used by optimizegraphics script. (Closes: #525832)
  * Add kmtrace dependency to cervisia package. (Closes: #524113)

  [ Didier Raboud ]
  * Add kdesvn-kio-plugins as alternative to cervisia-kio-plugins in kdesdk
    dependencies.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 02 May 2009 12:35:15 +0200

cervisia (4:4.3.2-0ubuntu1) karmic; urgency=low

  * New upstream release
    - Bump build-depend versions

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sat, 03 Oct 2009 19:42:08 +0200

cervisia (4:4.3.1-0ubuntu1) karmic; urgency=low

  * New upstream release
    - Bump build-depend versions

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sat, 29 Aug 2009 00:30:02 +0200

cervisia (4:4.3.0-0ubuntu1) karmic; urgency=low

  [ Alessandro Ghersi ]
  * New upstream release
    - Bump build-depend versions

  [ Jonathan Riddell ]
  * Add kubuntu_02_abort2cancel.diff, LP: #389751

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 31 Jul 2009 16:04:23 +0100

cervisia (4:4.2.98-0ubuntu2) karmic; urgency=low

  * Rebuild with new pkg-kde-tools to build translation templates

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 29 Jul 2009 18:12:02 +0100

cervisia (4:4.2.98-0ubuntu1) karmic; urgency=low

  * New upstream release
    - Bump build-depend versions
    - Update lokalize.install

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Wed, 22 Jul 2009 20:21:26 +0200

cervisia (4:4.2.96-0ubuntu2) karmic; urgency=low

  * Update lokalize description, depends, recommends, and suggests based on
    upstream feedback
    - Cherry picked from the Debian Qt-KDE packaging team svn (thanks)
  * Harmonize lokalize.install with Debian (reordered files)
  * Update KUBUNTU-DEBIAN-DIFFERENCES

 -- Scott Kitterman <scott@kitterman.com>  Mon, 13 Jul 2009 01:40:42 -0400

cervisia (4:4.2.96-0ubuntu1) karmic; urgency=low

  * New upstream release
    - Bump build-depend versions

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Fri, 10 Jul 2009 13:47:03 +0200

cervisia (4:4.2.95-0ubuntu1) karmic; urgency=low

  * New upstream release
    - Bump build-depend versions

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Fri, 26 Jun 2009 04:38:23 +0200

cervisia (4:4.2.90-0ubuntu1) karmic; urgency=low

  [ Alessandro Ghersi ]
  * New upstream release
    - Bump build-depend versions
    - Update lokalize.install and cervisia-dev.install

  [ Jonathan Riddell ]
  * Build with boost 1.38

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 08 Jun 2009 15:10:17 +0100

cervisia (4:4.2.85-0ubuntu2) karmic; urgency=low

  * Bump replaces version of poxml for cervisia-scripts

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Sat, 16 May 2009 15:36:14 -0400

cervisia (4:4.2.85-0ubuntu1) karmic; urgency=low

  * New upstream beta release:
    - Bump build-depend versions in debian/control, switch over to Qt phonon
      dev package
    - Update 02_append-kde.diff
    - Update .install files

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Wed, 13 May 2009 16:35:29 -0400

cervisia (4:4.2.2-1ubuntu1) karmic; urgency=low

  * Merge with Debian unstable, remaining changes:
    - Keep Ubuntu-specific dep on libboost1.35-dev
    - Keep -kde4 conflicts/replaces
    - cervisia-dbg depends on kdesdk, not suggests
    - Keep the Kubuntu docpath (/usr/share/doc/kde)
    - Don't install the following in cervisia-scripts:
      + extractattr
      + extractrc
    - Keep kubuntu_01_kate_desktop.patch
  * Update KUBUNTU-DEBIAN-DIFFERENCES

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Fri, 08 May 2009 15:04:29 -0400

cervisia (4:4.2.2-1) unstable; urgency=low

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * New upstream release:
    - Fix kompare "Could not parse diff output" problem when exclude options
      are used. (Closes: #358415)
    - Fix kate: can't scroll horizontally during search/replace, there is a
      new dialog now. (Closes: #187339)
    - Fix kompare: displays wrong destination filename owhen reading unified
      diffs.  (Closes: #358852)
    - Fix kompare parsing of multi-file unified diffs. (Closes: #358853)
    - Fix kate crashes when opening large files. (Closes: #415605, #360081)
    - Improve cervisia and kompare integration. (Closes: #330255)
  * Bump build dependencies.
  * Update installed files.
  * Replace Suggest on khelpcenter with khelpcenter4.
  * Add Depends on libqt4-sql-sqlite for lokalize. (Closes: #494289).
  * Install kdesvn-buildrc-sample as example file. (Closes: #507384).

  +++ Changes by Sune Vuorela:

  * Add strigi plugins and gettext as localize recommends.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 05 Apr 2009 23:21:07 +0200

cervisia (4:4.2.2-0ubuntu1) jaunty; urgency=low

  * New upstream release:
    - Bump build-depends in debian/control
    - Update cervisia-scripts.install and lokalize.install for new files
  * Add conflicts/replaces on cervisia (<= 4:4.1.4) to kdesdk-dev (LP: #333467)
  * Make lokalize depend on libqt4-sql-sqlite (LP: #326786)

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Fri, 27 Mar 2009 14:58:48 -0400

cervisia (4:4.2.1-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Modestas Vainius:

  * Move a few misplaced manual pages from cervisia-scripts back to their
    real owner packages. Also ignore a few manual pages as they describe
    non-existant binaries/scripts (Closes: #513780).
  * Tweak cervisia-scripts suggests/recommends a bit. In particular, move
    cvs to recommends and recommend svn instead. Suggest qt4-doc instead
    of qt3-doc.
  * Point Debian Vcs URLs to pkg-kde/trunk (new location).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 03 Mar 2009 04:23:47 +0100

cervisia (4:4.2.1-0ubuntu1) jaunty; urgency=low

  * New upstream release
  * Update install files (replace 4.2.0 w/ 4.2.*)
  * Update build-deps (kdelibs5-dev, kdepimlibs5-dev, libplasma-dev,
    libphonon-dev)
  * Update kapptemplate deps (kdelibs5-dev)
  * Update lokalize deps (libkrosspython0)

 -- Roderick B. Greening <roderick.greening@gmail.com>  Fri, 27 Feb 2009 13:24:00 -0330

cervisia (4:4.2.0-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Add new package: kpartloader.
  * Bump KDE build dependencies to 4.2.0.
  * Bump Standards-Version to 3.8.0 and add a README.source file.
  * Remove explicit cmake build dependency.
  * Refresh patch 02_append_kde.diff.
  * Update installed files.
  * Update the copyright file.

  +++ Changes by Modestas Vainius:

  * Add debian/installgen.
  * Dbus interface XMLs belong to cervisia-dev.
  * Improve cvsservice package description.
  * Do not build depend on libplasma-dev. Plasma headers are in kdelibs5-dev
    for now.
  * Rename debian/*.lintian to debian/*.lintian-overrides.
  * Bump debian/compat and debhelper build dependency to v7 (to get more
    sophisticated debian/tmp handling).
  * Switch from internal debian/cdbs/kde.mk to pkg-kde-tools:
    - build depend on pkg-kde-tools 0.4;
    - remove debian/cdbs directory;
    - replace debian/cdbs/kde.mk with
      /usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk in debian/rules.

  +++ Changes by Sune Vuorela:

  * Add KPartLoader package description.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 27 Jan 2009 20:25:05 +0100

cervisia (4:4.2.0-0ubuntu3) jaunty; urgency=low

  * extractattr and extractrc moved to pkg-kde-tools

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 16 Feb 2009 16:22:59 +0000

cervisia (4:4.2.0-0ubuntu2) jaunty; urgency=low

  [ Jonathan Thomas ]
  * Make libkrosspython0, cervisia-strigi-plugins and gettext recommends of
    lokalize as per lokalize/PACKAGING (LP: #323439)

  [ Richard Birnie ]
  * Rebuild for transition boost -> boost1.35 (LP: #297152)
  * Changed build-dep in debian/control libboost-dev -> libboost1.35-dev

 -- Scott Kitterman <scott@kitterman.com>  Thu, 05 Feb 2009 19:14:58 -0500

cervisia (4:4.2.0-0ubuntu1) jaunty; urgency=low

  * New upstream release
  * Update build-deps accordingly
  * Change doc path from kde4 to kde
  * Add missing usr/bin/svnforwardport to cervisia-scripts.install

 -- Roderick B. Greening <roderick.greening@gmail.com>  Fri, 23 Jan 2009 15:17:30 -0330

cervisia (4:4.2.0-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Add new package: kpartloader.
  * Bump KDE build dependencies to 4.2.0.
  * Bump Standards-Version to 3.8.0 and add a README.source file.
  * Remove explicit cmake build dependency.
  * Refresh patch 02_append_kde.diff.
  * Update installed files.
  * Update the copyright file.

  +++ Changes by Modestas Vainius:

  * Add debian/installgen.
  * Dbus interface XMLs belong to cervisia-dev.
  * Improve cvsservice package description.
  * Do not build depend on libplasma-dev. Plasma headers are in kdelibs5-dev
    for now.
  * Rename debian/*.lintian to debian/*.lintian-overrides.
  * Bump debian/compat and debhelper build dependency to v7 (to get more
    sophisticated debian/tmp handling).
  * Switch from internal debian/cdbs/kde.mk to pkg-kde-tools:
    - build depend on pkg-kde-tools 0.4;
    - remove debian/cdbs directory;
    - replace debian/cdbs/kde.mk with
      /usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk in debian/rules.

  +++ Changes by Sune Vuorela:

  * Add KPartLoader package description.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 27 Jan 2009 20:25:05 +0100

cervisia (4:4.1.96-0ubuntu2) jaunty; urgency=low

  * Correct /usr/share/man/man1/cvsrevertlast.1 line in 
    cervisia-scripts.install which casued FTBFS on this package

 -- Steve Stalcup <vorian@ubuntu.com>  Wed, 14 Jan 2009 20:53:32 -0500

cervisia (4:4.1.96-0ubuntu1) jaunty; urgency=low

  * New upstream release:
    - Bump build-depend versions of various KDE libraries to (>= 4:4.1.96)
    - Update various .install files for new manpages

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Fri, 09 Jan 2009 08:03:37 -0500

cervisia (4:4.1.85-0ubuntu2) jaunty; urgency=low

  * Drop kaider-kde4 transitional package - no longer needed 

 -- Scott Kitterman <scott@kitterman.com>  Tue, 30 Dec 2008 23:18:35 -0500

cervisia (4:4.1.85-0ubuntu1) jaunty; urgency=low

  * New upstream release

 -- Harald Sitter <apachelogger@ubuntu.com>  Sat, 13 Dec 2008 20:24:25 +0100

cervisia (4:4.1.80-0ubuntu2) jaunty; urgency=low

  * Change Vcs-Browser to Launchpad and replace Vcs-Svn with Vcs-Bzr
  * Remove debian/scripts (got debundled into kde-pkg-tools) (LP: #303468)

 -- Harald Sitter <apachelogger@ubuntu.com>  Fri, 05 Dec 2008 09:21:26 +0100

cervisia (4:4.1.80-0ubuntu1) jaunty; urgency=low

  * New upstream release:
    - Bump build-depends versions
    - Add new kpartloader binary package
    - Update various .install files
    - lokalize depends on libkrosspython0 due to a newly-included script

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Mon, 24 Nov 2008 15:30:02 -0500

cervisia (4:4.1.4-1) experimental; urgency=low

  * New upstream
    - bump build-deps

 -- Sune Vuorela <debian@pusling.com>  Sat, 10 Jan 2009 19:01:00 +0100

cervisia (4:4.1.3-1) experimental; urgency=low

  * New upstream release

 -- Sune Vuorela <debian@pusling.com>  Sat, 01 Nov 2008 20:02:49 +0100

cervisia (4:4.1.2-1ubuntu4) jaunty; urgency=low

  * Don't use a dh_sameversiondeps with lots of random debugging

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 17 Nov 2008 13:23:44 +0000

cervisia (4:4.1.2-1ubuntu3) jaunty; urgency=low

  * Add build-dep on kdelibs5-dev, needed until dh_sameversiondeps 
    rebuilds kdepimlibs

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 13 Nov 2008 10:43:18 +0000

cervisia (4:4.1.2-1ubuntu2) jaunty; urgency=low

  * Update dh_sameversiondeps with newer version from pkg-kde Debian team

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 10 Nov 2008 15:12:17 +0000

cervisia (4:4.1.2-1ubuntu1) jaunty; urgency=low

  * Merge with Debian
    - update build deps (cmake 2.6.0)
    - update Depends: and Suggests: entry on kapptemplate
    - cleanup on install files:
      - kapptemplate.install (minor cleanup)
      - cervisia-dev.install (minor cleanup)
      - kompare.install (move some .so to cervisia-dev)
      - cervisia-scripts.install (minor cleanup)
      - kmtrace.install (remove empty line)
    - re-merge missing debian/changelog entries
    - re-sync 02_append_kde.diff patch (minor numbering differences)
    - Update control file entry for cervisia-misc (remove kstartperf
      entry as it's not installed)
  * Ubuntu remaining changes
    - differences in debian/KUBUNTU-DEBIAN-DIFFERENCES
    - switch to kde4.mk from cdbs (remove debian/cdbs)
    - add cdbs scripts in debian/scripts/ for extracing messages to .pot files
    - update build deps kdepimlibs5-dev (>= 4:4.1.2),
        libplasma-dev (>= 4:4.1.2), libphonon-dev (>= 4:4.2.0-0ubuntu1)
    - update kapptemplate Suggests to kdelibs5-dev (>= 4:4.1.2)
    - khelpcenter4 rather than meta khelpcenter as dep on packages
    - cervisia dep on cvsservice
    - kaider-kde4 transitional package (to lokalize)
    - make cervisia a Depends: rather than Suggests: for kdesdk-dbg
    - add missing kate.xpm and add it to kate.install
    - add patches/kubuntu_01_kate_desktop.patch and update series
    - Conflicts/Replaces due to old -kde4 package scheme
    - remove unused patches/97_fix_target_link_libraries.diff
    - update standards version to 3.8.0
    - update cervisia dep kdesdk-kio-plugins | kdesvn-kio-plugins
  * MD5 sums change for src files

 -- Roderick B. Greening <roderick.greening@gmail.com>  Wed, 05 Nov 2008 15:46:45 -0330

cervisia (4:4.1.3-1) experimental; urgency=low

  * New upstream release

 -- Sune Vuorela <debian@pusling.com>  Sat, 01 Nov 2008 20:02:49 +0100

cervisia (4:4.1.2-1) experimental; urgency=low

  * New upstream release.
  * Update installed files.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Tue, 30 Sep 2008 17:23:34 +0200

cervisia (4:4.1.2-0ubuntu1.1) intrepid-proposed; urgency=low

  * cervisia should depend on kdesdk-kio-plugins | kdesvn-kio-plugins to let
    kdesvn be installed alongside cervisia. (LP: #292322)

 -- Andreas Wenning <awen@awen.dk>  Tue, 04 Nov 2008 00:19:58 +0100

cervisia (4:4.1.2-0ubuntu1) intrepid; urgency=low

  * New upstream release

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Fri, 26 Sep 2008 12:14:03 -0400

cervisia (4:4.1.1-1) experimental; urgency=low

  * New upstram release

 -- Sune Vuorela <pusling@eider.killmulehill.net>  Fri, 29 Aug 2008 10:27:45 +0200

cervisia (4:4.1.1-0ubuntu2) intrepid; urgency=low

  * Rebuild against kdelibs 4:4.1.1+really4.1.1

 -- Jonathan Thomas (The man) <echidnaman@gmail.com>  Mon, 01 Sep 2008 21:36:58 -0400

cervisia (4:4.1.1-1) experimental; urgency=low

  * New upstram release

 -- Sune Vuorela <pusling@eider.killmulehill.net>  Fri, 29 Aug 2008 10:27:45 +0200

cervisia (4:4.1.1-0ubuntu1) intrepid; urgency=low

  [ Jonathan Thomas (The man) ]
  * New upstream release
  * Make Kompare conflict libcvsservice0, not replace it. Add libcvsservice0
    as a conflict/replace of cvsserive. Add cvsservice as a depend of cervisia.
    (LP: #248567)

  [ Harald Sitter ]
  * Cervisia depends = binary:Version of cvsservices

 -- Harald Sitter <apachelogger@ubuntu.com>  Sat, 30 Aug 2008 13:55:18 +0200

cervisia (4:4.1.0-1) experimental; urgency=low

  * New upstream release.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Mon, 28 Jul 2008 00:21:25 +0200

cervisia (4:4.1.0-0ubuntu9) intrepid; urgency=low

  * debian/control:
    - change kapptemplate Architecture from all to any, it's a binary

 -- Guillaume Martres <smarter@ubuntu.com>  Tue, 19 Aug 2008 19:29:39 +0200

cervisia (4:4.1.0-0ubuntu8) intrepid; urgency=low

  * Re-include kubuntu_01_kate_desktop.patch to maintain Kate as default editor

 -- Harald Sitter <apachelogger@ubuntu.com>  Thu, 14 Aug 2008 10:54:33 +0200

cervisia (4:4.1.0-0ubuntu7) intrepid; urgency=low

  * Add desktop/kate.xpm icon (needed by Kate),
    (LP: #256471)

 -- Salvatore Palma <palma-salvatore@ubuntu.com>  Sat, 09 Aug 2008 23:48:04 +0200

cervisia (4:4.1.0-0ubuntu6) intrepid; urgency=low

  * Fixed debian/series

 -- Anthony Mercatante <tonio@ubuntu.com>  Wed, 06 Aug 2008 11:28:16 +0200

cervisia (4:4.1.0-0ubuntu5) intrepid; urgency=low

  * Removed kubuntu_01_kate_desktop.patch:
    - The patch caused kate.desktop to fail with kde4
      Kdeinit couldn't launch kate

 -- Anthony Mercatante <tonio@ubuntu.com>  Tue, 05 Aug 2008 10:10:07 +0200

cervisia (4:4.1.0-0ubuntu4) intrepid; urgency=low

  * switch to kde4.mk from cdbs

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 01 Aug 2008 15:29:43 +0000

cervisia (4:4.1.0-0ubuntu3) intrepid; urgency=low

  * Add findfiles, createdesktopcontext.pl and msgsplit for .desktop
    file .pot generation

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 31 Jul 2008 14:40:49 +0100

cervisia (4:4.1.0-0ubuntu2) intrepid; urgency=low

  * Fix version of -scripts' kdelibs5-dev conflict
  * Removed -scripts' replacement on kdelibs5-dev, since it only conflicts
    but not replaces older versions of kdelibs5-dev

 -- Harald Sitter <apachelogger@ubuntu.com>  Wed, 30 Jul 2008 13:07:40 +0200

cervisia (4:4.1.0-0ubuntu1) intrepid; urgency=low

  * New upstream release

 -- Harald Sitter <apachelogger@ubuntu.com>  Thu, 24 Jul 2008 20:02:28 +0200

cervisia (4:4.0.98-1) experimental; urgency=low

  * New upstream release, Release Candidate 1.
  * Update 97_fix_target_link_libraries.diff.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Thu, 10 Jul 2008 02:34:48 +0200

cervisia (4:4.0.98-0ubuntu2) intrepid; urgency=low

  * Add cdbs scripts in debian/scripts/ for extracing messages to .pot files

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 22 Jul 2008 13:49:01 +0100

cervisia (4:4.0.98-0ubuntu1) intrepid; urgency=low

  * New upstream release candidate
  * Bump Standards-Version to 3.8.0
  * -dbg depends cervisia

 -- Harald Sitter <apachelogger@ubuntu.com>  Sat, 12 Jul 2008 13:48:16 +0200

cervisia (4:4.0.84-1) experimental; urgency=low

  * New upstream snapshot.

 -- Sune Vuorela <debian@pusling.com>  Sun, 29 Jun 2008 18:17:10 +0200

cervisia (4:4.0.83-0ubuntu3) intrepid; urgency=low

  * Add transitional package from kaider-kde4 to lokalize

 -- Harald Sitter <apachelogger@ubuntu.com>  Thu, 26 Jun 2008 16:17:02 +0200

cervisia (4:4.0.83-0ubuntu2) intrepid; urgency=low

  * cervisia-scripts Suggests qt4-doc (LP: #220664) 

 -- Harald Sitter <apachelogger@ubuntu.com>  Wed, 25 Jun 2008 17:01:52 +0200

cervisia (4:4.0.83-0ubuntu1) intrepid; urgency=low

  * New upstream beta release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 19 Jun 2008 11:45:17 +0000

cervisia (4:4.0.82+svn819867-1) experimental; urgency=low

  * New upstream development snapshot.

  +++ Changes by Fathi Boudra:

  * Update installed files:
    - Add kdevappwizard to kapptemplate package.
    - Move libkompare*.so to cervisia-dev package.
  * Make kapptemplate arch: any. It contains kapptemplate binary.

  +++ Changes by Ana Beatriz Guerrero Lopez:

   * Bump build dependencies to (>= 4:4.0.81).
   * Change libphonon-dev to new versioning (>= 4:4.2~).

  +++ Changes by Sune Vuorela:

  * kate dbg files was long time ago in kdebase. add proper conflicts.
  * cvsservice vs libcvsservice0 also needs replaces

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 15 Jun 2008 23:21:05 +0200

cervisia (4:4.0.80-2ubuntu3) intrepid; urgency=low

  * Remove kstartperf files from cervisia-misc, they don't compile

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 10 Jun 2008 15:39:27 +0100

cervisia (4:4.0.80-2ubuntu2) intrepid; urgency=low

  * Fix config install paths

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 09 Jun 2008 16:13:10 +0100

cervisia (4:4.0.80-2ubuntu1) intrepid; urgency=low

  * Merge with Debian
  * Add conflicts on -kde4 packages
  * Add kstartperf files to cervisia-misc, update description

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 28 May 2008 10:11:43 +0100

cervisia (4:4.0.80-2) experimental; urgency=low

  * kate dbg files was long time ago in kdebase. add proper conflicts.
  * cvsservice vs libcvsservice0 also needs replaces

 -- Sune Vuorela <debian@pusling.com>  Wed, 28 May 2008 01:18:27 +0200

cervisia (4:4.0.80-1) experimental; urgency=low

  * New upstream snapshot.
  * Update install files.

 -- Fathi Boudra <fabo@debian.org>  Thu, 22 May 2008 23:22:36 +0200

cervisia (4:4.0.74-1) experimental; urgency=low

  * New upstream snapshot: (Closes: #479010)
    - The latest upstream commit is r806542 by fischer
    - Date: Sun May 11 17:19:51 2008 UTC

  * Add binutils-dev build dependency to get libiberty for kmtrace.
    (Closes: 479085)
  * Add 97_fix_target_link_libraries patch.

 -- Fathi Boudra <fabo@debian.org>  Sun, 18 May 2008 14:25:13 +0200

cervisia (4:4.0.73-0ubuntu1) intrepid; urgency=low

  * New upstream development release, merge with Debian

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 12 May 2008 13:17:40 +0100

cervisia (4:4.0.73-1) raring; urgency=low

  * New upstream snapshot. (Closes: #479010)
  * Add binutils-dev build dependency to get libiberty for kmtrace.
    (Closes: 479085)
  * Add 97_fix_target_link_libraries patch.

 -- Fathi Boudra <fabo@debian.org>  Sat, 10 May 2008 16:25:51 +0200

cervisia (4:4.0.72-1) experimental; urgency=low

  * New upstream snapshot.

  +++ Changes by Fathi Boudra:

  * Add libboost-dev build dependency, needed by umbrello.
  * Add kmtrace package, ported to KDE 4.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Remove cervisia manpage from lokalize. (Closes: #474717)
  * Update build depends, add libstreamanalyzer-dev and libxslt1-dev.

 -- Fathi Boudra <fabo@debian.org>  Thu, 01 May 2008 12:28:45 +0200

cervisia (4:4.0.68+svn794641-1) experimental; urgency=low

  * New upstream snapshot.
  * Remove cervisia manpage from lokalize. (Closes: #474717)
  * Update build depends, add libstreamanalyzer-dev and libxslt1-dev.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Thu, 24 Apr 2008 18:25:31 +0200

cervisia (4:4.0.66+svn791114-1) experimental; urgency=low

  * First KDE 4.1 snapshot packaged,
  * New application: lokalize.
  * Update installed files.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Sun, 30 Mar 2008 15:27:15 +0200

cervisia (4:4.0.2-1) experimental; urgency=low

  * New upstream release:
    - Bump build-depends to >= 4:4.0.2.
  * Add lintian overrides.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Wed, 05 Mar 2008 22:39:36 +0100

cervisia (4:4.0.1-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Fathi Boudra:

  * Append "-kde" to svn-clean like KDE3. (Closes: #461095)
    svn-clean script is provided by subversion-tools.
  * Update installed files.
  * Add Vcs-Browser and Vcs-Svn fields.
  * Fix typo in copyright file.

  +++ Changes by Matthew Rosewarne:

  * Tweak package descriptions.
  * Use source:Version for cervisia metapackage.
  * Add dependencies on kate and poxml to cervisia-dev.
  * Change cervisia-dbg Depends from kdelibs-dbg to kdebase-runtime-dbg.
  * Add Suggests: cervisia to kdesdk-dbg.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Bump compat/debhelper to 6.
  * Bump build-depends to >= 4:4.0.1-1.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 06 Feb 2008 13:43:27 +0100

cervisia (4:4.0.0-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Remove kate's Recommends on kregexpeditor, it is not being released in KDE 4.
  * Update years in copyright.
  * Lower cervisia-misc's Recommends: libqt4-dev to Suggests and kapptemplate
    Recommends: kdelibs5-dev to Suggests.

  +++ Changes by Matthew Rosewarne:

  * Add Homepage: to control.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 09 Jan 2008 14:35:08 +0100

cervisia (4:3.98.0~svn755919-1) experimental; urgency=low

  * New svn snapshot release to revision 755919.
  * Change b-d on kdelibs5-dev and kdebase-workspace-dev, to kdepimlibs5-dev
    and libphonon-dev.
  * Update kcachegrind.install.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Thu, 03 Jan 2008 07:24:38 +0100

cervisia (4:3.98.0~svn753247-1) experimental; urgency=low

  * Svn snapshot of revision 753247.
  * Re-add kompare.
  * Update *.install files.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Sat, 29 Dec 2007 09:34:53 +0100

cervisia (4:3.97.0-1) experimental; urgency=low

  * KDE 4 RC2, first upload to the Debian archive.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Mon, 24 Dec 2007 00:39:50 +0100

cervisia (4:3.90.1-1) experimental; urgency=low

  * Initial release.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Fri, 25 May 2007 01:43:40 +0200

cervisia (4:3.5.9-0ubuntu1) hardy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 14 Feb 2008 12:27:08 +0000

cervisia (4:3.5.8-1ubuntu7) hardy; urgency=low

  * Rebuild to get rid of libdb4.4.

 -- Matthias Klose <doko@ubuntu.com>  Mon, 04 Feb 2008 20:41:27 +0000

cervisia (4:3.5.8-1ubuntu6) hardy; urgency=low

  * Add desktop i18n scripts to /usr/lib/kubuntu-desktop-i18n/

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 14 Dec 2007 16:41:08 +0000

cervisia (4:3.5.8-1ubuntu5) hardy; urgency=low

  * Build-dep on kdepim 3.5.7enterprise20070926-1ubuntu4

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 23 Nov 2007 14:50:30 +0000

cervisia (4:3.5.8-1ubuntu4) hardy; urgency=low

  * Downgrade build-dep version of libktnef1-dev

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 23 Nov 2007 11:27:44 +0000

cervisia (4:3.5.8-1ubuntu3) hardy; urgency=low

  * Downgrade libkcal2-dev dependency to 3.5.8

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 15 Nov 2007 15:11:08 +0000

cervisia (4:3.5.8-1ubuntu2) hardy; urgency=low

  * Run buildprep before upload
  * Downgrade kdepim dependency to 3.5.7

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 15 Nov 2007 11:03:22 +0000

cervisia (4:3.5.8-1ubuntu1) hardy; urgency=low

  * Merge with Debian, no changes except LP translations patch

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 14 Nov 2007 17:25:47 +0000

cervisia (4:3.5.8-1) unstable; urgency=low

  +++ Changes by Ana Beatriz Guerrero Lopez:
  
  * New upstream release:
    - Patches: remove 01_branches_umbrello_update_1.5.71, merged upstream.
  * Update *.install files.
  * Change kbugbuster menu section. (Closes: #444899)

  +++ Changes by Fathi Boudra:

  * Fix typo in kompare menu file. (Closes: #440945, #444251, #445122)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 15 Oct 2007 16:17:11 +0200

cervisia (4:3.5.8-0ubuntu1) gutsy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 09 Oct 2007 11:41:27 +0100

cervisia (4:3.5.7-2ubuntu1) gutsy; urgency=low

  * Merge with Debian for new Umbrello upstream

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 27 Jul 2007 13:36:44 +0100

cervisia (4:3.5.7-3) unstable; urgency=low

  +++ Changes by Sune Vuorela:

  * Implement the use of uploaders.mk and update uploaders.
  * Pull newer umbrello release in. (Closes: 428059). Thanks to Eric Valette
    for his friendly attitude.
  * Don't think that all gnu triplets end with gnu on glibc based systems. 
    We also have gnueabi for new arm eabi and the different newer mipsen 
    also doesn't end with -gnu. Thanks to Aurelien Jarno for the bug report 
    and a suggested fix. (Closes: 431346)
  * Update buildprep.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 23 Jul 2007 23:27:56 +0200

cervisia (4:3.5.7-2) unstable; urgency=low

  * Install new images in kompare documentation. Thanks to Jonathan Riddell 
    for the pointer.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Wed, 23 May 2007 22:03:38 +0100

cervisia (4:3.5.7-1ubuntu1) gutsy; urgency=low

  * Merge with Debian for new upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 23 May 2007 17:42:32 +0100

cervisia (4:3.5.7-1) unstable; urgency=low

  * New upstream release. (Closes: #421918, #417309)

  +++ Changes by Sune Vuorela:

  * Add gettext to kbabel recommends (related to upstream bug
    http://bugs.kde.org/show_bug.cgi?id=144789)
  * Depend on php5-cli instead of php4. Php4 is going away. (Closes: #412596)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 16 May 2007 16:08:05 +0100

cervisia (4:3.5.6-2ubuntu1) gutsy; urgency=low

  * Merge with Debian

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 30 Apr 2007 20:32:57 +0100

cervisia (4:3.5.6-2) unstable; urgency=low

  * Upload to unstable after Etch release.

  +++ Changes by Sune Vuorela:

  * Promote graphviz from kcachegrind Suggests to Recommends. (Closes: #407043)
  * Don't install the licensecheck script in cervisia. The devscripts package
    has taken it and is working actively on it. Let cervisia-scripts suggest
    devscripts instead. (Closes: #420154)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 23 Apr 2007 11:53:44 +0100

cervisia (4:3.5.6-1) experimental; urgency=low

  * New upstream release.
  
  +++ Changes by Josh Metzler:

  * Make cervisia-dbg depend on kdelibs-dbg to get useful backtraces when
    debugging.

  +++ Changes by Ana Beatriz Guerrero Lopez:
  
  * Update Uploaders.
  * Drop patch 07_support_automake1-10, merged upstream.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 18 Jan 2007 18:32:21 +0100

cervisia (4:3.5.5-3) unstable; urgency=low

  * Update automake 1.10 support patch as cdbs runs patch with -p1 before -p0
    and patches the wrong file. (Closes: #396985)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 16 Nov 2006 17:01:23 -0500

cervisia (4:3.5.6-0ubuntu2) feisty; urgency=low

  * Added kubuntu_01_umbrello_1.5.61.diff, brings Umbrello up to 1.5.61 release

 -- Juan Carlos G. Torres <jucato@kubuntu.org>  Fri, 30 Mar 2007 22:57:02 +0800

cervisia (4:3.5.6-0ubuntu1) feisty; urgency=low

  * New upstream release
  * Remove 07_support_automake1-10_in_template.diff, applied upstream

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 17 Jan 2007 11:22:31 +0000

cervisia (4:3.5.5-3ubuntu2) feisty; urgency=low

  * Merge back Ubuntu changes
   - build with --enable-gcc-hidden-visibility
   - Add kubuntu_01_kdepot.diff
   - Install desktop i18n scripts to /usr/lib/kubuntu-desktop-i18n/
   - Build-dep on libapr0-dev not libapr1-dev

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 24 Nov 2006 12:36:00 +0000

cervisia (4:3.5.5-3ubuntu1) feisty; urgency=low

  * Fake sync.

 -- Scott James Remnant <scott@ubuntu.com>  Fri, 24 Nov 2006 11:13:09 +0000

cervisia (4:3.5.5-2) unstable; urgency=low

  +++ Changes by Fathi Boudra:

  * Rename svn-clean and svnversions to svn-clean-kde and svnversion-kde to
    avoid conflicts and mistakes with subversion scripts. (Closes: #397874)

  +++ Changes by Sune Vuorela:

  * Add support for automake 1.10 to kapptemplate. (Closes: #396985)
  * Add Suggests: kdelibs4-doc to kunittest. kdelibs4-doc contains kunittest
    documentation. (Closes: #386040)
  * Don't install /usr/bin/kunittest and /usr/bin/kunittest_debughelper. These
    are not useful without the dcopperl bindings which are not built in the
    Debian kdebindings packages. (Closes: #386039)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 14 Nov 2006 17:34:11 -0500

cervisia (4:3.5.5-1) unstable; urgency=low

  [ Debian Qt/KDE Maintainers ]
  * New upstream release.
    + Fixes kbabel: Kbabel Spellcheck window moves outside the screen.
      (Closes: #360445)

  +++ Changes by Fathi Boudra:

  * Remove libdb4.3-dev build dependency; libapr0-dev depends on libdb4.4-dev.
    Fixes installability. (Closes: #388092)

  +++ Changes by Luk Claes:

  * Build depend on libapr1-dev instead of libapr0-dev for apache2.2
    transition.
  * Build depend on libsvn-dev instead of libsvn0-dev. (Closes: #388092).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 10 Oct 2006 00:53:47 +0200

cervisia (4:3.5.4-1) unstable; urgency=low

  * New upstream release.
    + Contains up-to-date KDE admin dir in kapptemplate. This includes
      autoconf 2.6* awareness. (Closes: #378763)

  * KDE_3_5_BRANCH update (up to r577421).

  +++ Changes by Christopher Martin:

  * De-version libcvsservice0's dependency on cvs, since this prevents the
    installation of cvs alternatives. The required version is ancient and
    in Sarge anyway.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 26 Aug 2006 13:20:23 -0400

cervisia (4:3.5.5-0ubuntu1) edgy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue,  3 Oct 2006 10:56:07 +0000

cervisia (4:3.5.4-0ubuntu4) edgy; urgency=low

  * Rebuild with latest cdbs to add gettext domain to .desktop files for
    langpacks-desktopfiles-kde, no source changes

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue,  5 Sep 2006 22:53:11 +0000

cervisia (4:3.5.4-0ubuntu3) edgy; urgency=low

  * Remove broken kolf rules from debian/desktop-i18n/findfiles

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 30 Aug 2006 16:44:06 +0000

cervisia (4:3.5.4-0ubuntu2) edgy; urgency=low

  * Add desktop i18n scripts to /usr/lib/kubuntu-desktop-i18n/
    for building packages, see 
    https://launchpad.net/distros/ubuntu/+spec/langpacks-desktopfiles-kde

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed,  2 Aug 2006 10:42:16 +0000

cervisia (4:3.5.4-0ubuntu1) edgy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 25 Jul 2006 10:12:19 +0000

cervisia (4:3.5.3-1ubuntu3) edgy; urgency=low

  * Build-dep on kdepim-dev 3.5.3-2ubuntu3 to avoid libfam.la breakage

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 13 Jul 2006 15:20:07 +0000

cervisia (4:3.5.3-1ubuntu2) edgy; urgency=low

  * Rebuild without lifam.la, no changes

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 12 Jul 2006 10:42:52 +0000

cervisia (4:3.5.3-1ubuntu1) edgy; urgency=low

  * New upstream release
  * Sync with Debian

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue,  4 Jul 2006 16:03:08 +0000

cervisia (4:3.5.2-1) unstable; urgency=low

  * New upstream release.

  * KDE_3_5_BRANCH update (up to r524399).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 30 Mar 2006 08:43:32 -0500

cervisia (4:3.5.1-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Christopher Martin:

  * Allow kdesvn-kio-plugins to satisfy cervisia's dependencies instead of
    cervisia-kio-plugins, since it is a replacement for kdesdk-kio-plugins
    and provides equivalent functionality. (Closes: #347903)

  * Eliminate libcvsservice0's Recommends on kdelibs-bin.

  * Upload to unstable.

  +++ Changes by Luk Claes:

  * Move kbabel to the Apps/Text submenu and add a l10n hint (Closes: #311740)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu,  2 Feb 2006 11:06:25 -0500

cervisia (4:3.5.0-3) unstable; urgency=low

  +++ Changes by Christopher Martin:

  * Upload to unstable.

  * KDE_3_5_BRANCH update (up to r497528).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 12 Jan 2006 20:12:15 -0500

cervisia (4:3.5.0-2) experimental; urgency=low

  * Upload to experimental.

  * KDE_3_5_BRANCH update (up to r490305).

  +++ Changes by Christopher Martin:
 
  * Improve kapptemplate's admin directory, setting proper permissions on the
    scripts and removing files that are artifacts of the Debian build system.
    (Closes: #343678)

  * No longer build with gcc-3.4 on any architectures, since gcc-4.0 should
    be fixed. (Closes: #342988)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 21 Dec 2005 08:28:13 -0500

cervisia (4:3.5.2-0ubuntu3) dapper; urgency=low

  * Edit debian/cdbs/debian-qt-kde.mk to use dh_iconcache

 -- Gauvain Pocentek <gauvainpocentek@ubuntu.com>  Tue, 23 May 2006 19:34:53 +0200

cervisia (4:3.5.2-0ubuntu2) dapper; urgency=low

  * Edit debian/cdbs/kde.mk to generate .po files
  * Edit debian/cdbs/kde.mk to mark .po files as UTF-8

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 21 Apr 2006 16:29:18 +0100

cervisia (4:3.5.2-0ubuntu1) dapper; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 20 Mar 2006 12:06:31 +0000

cervisia (4:3.5.1-0ubuntu3) dapper; urgency=low

  * Remove build-dep on libdb4.x, correct versin will be
    brought in by other packages

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 21 Feb 2006 14:55:07 +0000

cervisia (4:3.5.1-0ubuntu2) dapper; urgency=low

  * Don't use GCC 3.4 on hppa

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 16 Feb 2006 12:03:17 +0000

cervisia (4:3.5.1-0ubuntu1) dapper; urgency=low

  * New upstream release
  * Update Replaces on libcvsservice0 for cervisia
  * Build-dep on libdb4.2-dev | libdb4.3-dev for backports

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 23 Jan 2006 14:26:07 +0000

cervisia (4:3.5.0-1ubuntu1) dapper; urgency=low

  * Sync with Debian

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu,  8 Dec 2005 17:54:03 +0000

cervisia (4:3.5.0-1) alioth; urgency=low

  * New upstream release.

  +++ Changes by Christopher Martin:

  * Add a cervisia-dbg package for helping to trace problems.

  * New packages: kunittest, and cervisia-kio-plugins, which splits
    out the svn ioslave from cervisia-misc.

  * Re-libtoolize. This fixes GNU/kFreeBSD, and prunes poxml's
    excessive dependencies. (Closes: #327706, #329902)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue,  6 Dec 2005 13:10:37 -0500

cervisia (4:3.4.3-1) unstable; urgency=low

  * New upstream release.

  * This package is now in the hands of the Debian Qt/KDE Maintainers. Thanks
    to Ben Burton for all his work.

  * Acknowledge NMU. (Closes: #330934)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon,  5 Dec 2005 07:23:04 -0500

cervisia (4:3.5.0-0ubuntu2) dapper; urgency=low

  * Change libdb4.2 build-dep to libdb4.3

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu,  8 Dec 2005 02:48:59 +0000

cervisia (4:3.5.0-0ubuntu1) dapper; urgency=low

  * New upstream release
  * Remove GCC 3.4 on hppa

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue,  6 Dec 2005 12:28:57 +0000

cervisia (4:3.5-rc2-0ubuntu1) dapper; urgency=low

  * Sync with Debian
  * New upstream pre-release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 23 Nov 2005 15:00:05 +0000

cervisia (4:3.4.2-2.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Build-dep on g++-3.4 on arm, hppa and m68k (closes:#330934). 

 -- Luk Claes <luk@debian.org>  Sat,  1 Oct 2005 20:21:41 +0200

cervisia (4:3.4.2-2) unstable; urgency=low

  * Built against libfam-dev, not libgamin-dev (closes: #326547).
  * Updated overrides files to account for kdeinit black magic.

 -- Ben Burton <bab@debian.org>  Sun,  4 Sep 2005 10:58:17 +1000

cervisia (4:3.4.2-1) unstable; urgency=low

  * New upstream release.
  * First g++-4 upload to sid.
  * Adjusted build-dependencies and shlibs files for the C++ ABI transition.
    Note that the libcvsservice0 package name does not need to change.
  * Updated FSF address in the copyright file.
  * Changed the conflicts on kdevelop3-plugins to a versioned replaces as
    described in the changelog for 4:3.4.0-0pre2.
  * Removed redundant xlibs-dev recommendation from kapptemplate.
  * Adjusted Ivan's changelog entry from 29 Feb 2001 to 01 Mar 2001 so the
    changelog is parseable.
  * KBabel now treats multiple-line headers correctly (closes: #277341).
  * Bumped standards-version to 3.6.2.1 (no changes required).

 -- Ben Burton <bab@debian.org>  Sun,  4 Sep 2005 01:14:27 +1000

cervisia (4:3.4.3-0ubuntu1) breezy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat,  8 Oct 2005 21:59:11 +0000

cervisia (4:3.4.2-0ubuntu2) breezy; urgency=low

  * Add missing files to libcvsserver0, cervisia-scripts and kompare.

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 28 Jul 2005 17:55:43 +0000

cervisia (4:3.4.2-0ubuntu1) breezy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 26 Jul 2005 16:25:16 +0000

cervisia (4:3.4.1-0ubuntu5) breezy; urgency=low

  * Rebuild for removed libXcursor.la and libXrender.la
    and tighten kdelibs dependency.

 -- Jonathan Riddell <jr@jriddell.org>  Sun, 24 Jul 2005 23:54:37 +0000

cervisia (4:3.4.1-0ubuntu4) breezy; urgency=low

  * Add build-depend on libxi-dev

 -- Jonathan Riddell <jr@jriddell.org>  Thu, 30 Jun 2005 13:42:22 +0000

cervisia (4:3.4.1-0ubuntu3) breezy; urgency=low

  * Add version to cervisia-misc conflict on kdevelop3-plugins

 -- Jonathan Riddell <jr@jriddell.org>  Mon,  6 Jun 2005 22:45:10 +0000

cervisia (4:3.4.1-0ubuntu2) breezy; urgency=low

  * Add libkdeinit_cvsservice.so to libcvsservice0.install
  * Add cervisia.so and libkdeinit_cervisia.so to cervisia.install

 -- Jonathan Riddell <jr@jriddell.org>  Thu,  2 Jun 2005 01:33:59 +0000

cervisia (4:3.4.1-0ubuntu1) breezy; urgency=low

  * Update version number following KDE 3.4.1 release

 -- Jonathan Riddell <jr@jriddell.org>  Wed,  1 Jun 2005 00:56:16 +0000

cervisia (4:3.4.1-0ubuntu0pre1) breezy; urgency=low

  * Sync with Debian

 -- Jonathan Riddell <jr@jriddell.org>  Thu, 26 May 2005 16:34:06 +0000

cervisia (4:3.4.0-0pre2) unstable; urgency=low

  * Merge in recent packaging changes from the 3.3 branch.
  * Introduce a temporary conflicts against kdevelop3-plugins, which provides
    a copy of the subversion I/O slave taken from cervisia-misc.  This will be
    removed once kdevelop has been rebuilt against KDE 3.4 (without the
    subversion I/O slave), and a versioned replaces will be put in place
    instead.
  * Now that KDE has moved to subversion, disable cvs-clean in debian/rules
    for the time being.

 -- Ben Burton <bab@debian.org>  Sat, 14 May 2005 19:20:58 +1000

cervisia (4:3.4.0-0pre1) unstable; urgency=low

  * New major upstream release.
  * Note that although libktnef.la has moved from kdepim-dev to libktnef1-dev,
    a build-dependency on kdepim-dev is still required for some header files.
  * Removed cvs dependency from cervisia, since this comes indirectly through
    libcvsservice0 anyway.  Updated the cvs dependency for libcvsservice
    to require cvs (>= 1.11), as cervisia used to when it handled cvs itself.
  * Removed obsolete kderemove tags from menu items.

 -- Ben Burton <bab@debian.org>  Fri, 25 Mar 2005 12:56:49 +1100

cervisia (4:3.4.0-0ubuntu5) hoary; urgency=low

  * Update cdbs/kde.mk

 -- Jonathan Riddell <jr@jriddell.org>  Tue, 29 Mar 2005 22:58:09 +0000

cervisia (4:3.4.0-0ubuntu4) hoary; urgency=low

  * Add paths.diff

 -- Jonathan Riddell <jr@jriddell.org>  Mon, 28 Mar 2005 23:01:12 +0000

cervisia (4:3.4.0-0ubuntu3) hoary; urgency=low

  * added empty empty patches 

 -- Andreas Mueller <amu@ubuntu.com>  Wed, 23 Mar 2005 10:46:56 +0000

cervisia (4:3.4.0-0ubuntu2) hoary; urgency=low

  * fixed broken patchdir
  * added KDE branch patches   

 -- Andreas Mueller <amu@ubuntu.com>  Tue, 22 Mar 2005 20:57:56 +0000

cervisia (4:3.4.0-0ubuntu1) hoary; urgency=low

  * New upstream release.

 -- Jonathan Riddell <jr@jriddell.org>  Thu, 17 Mar 2005 04:18:57 +0000

cervisia (4:3.3.2-3) unstable; urgency=high

  * Fresh pull from KDE_3_3_BRANCH for recent bugfixes.
  * Many thanks to upstream who have relicensed cervisia under the GPL
    (closes: #296514).  Also noted in debian/copyright that cvsservice is
    under the LGPL.
  * Fix kdemangen.pl output to use minus instead of hyphen where appropriate,
    thanks to Achim Bohnet (closes: #295454).
  * Fixed amd64/gcc-4.0 build by using longs for node IDs in kcachegrind,
    thanks to Andreas Jochens (closes: #287032).

 -- Ben Burton <bab@debian.org>  Thu, 31 Mar 2005 19:59:13 +1000

cervisia (4:3.3.2-2) unstable; urgency=high

  * Fixed drag-and-drop problems in umbrello that can cause a real and/or
    apparent loss of data (closes: #296433).
  * Patched kbabel spell-check-as-you-go to use checkWord() instead of check(),
    which seems to protect it from the kdelibs crash described in #289646.
  * Added the full text of the GFDL to debian/copyright, since all of the
    docbook documentation is under this license.
  * Added a note to README.Debian in the poxml package regarding the
    necessity of system identifiers (closes: #286103).
  * Installing the new script cvsforwardport and a corresponding manpage.

 -- Ben Burton <bab@debian.org>  Thu, 24 Mar 2005 07:59:47 +1100

cervisia (4:3.3.2-1) unstable; urgency=low

  * New upstream bugfix release.
  * Rebuilt against libkcal2a and reversioned kdepim-dev and libkcal2-dev
    build-depends to >= 4:3.3.2 accordingly (closes: #291592).
  * Fixed setupGUI() typo in kapptemplate (part of #289304).
  * Added a README.Debian for poxml that outlines the available binaries
    (closes: #286106).
  * Applied upstream patch for poxml that addresses escaped literals
    and KDE-specific credits in split2po (closes: #288929).

 -- Ben Burton <bab@debian.org>  Sat, 22 Jan 2005 07:29:29 +1100

cervisia (4:3.3.1-2) unstable; urgency=medium

  * Build-depends on kdepim-dev (>= 4:3.3.1), which provides libktnef.la.
    When building against libkcal2-dev (>= 4:3.3.1), libktnef.la is needed
    at link time.
  * Also changed libkcal2-dev in the build-depends to the versioned
    libkcal2-dev (>= 4:3.3.1) to ensure consistency.

 -- Ben Burton <bab@debian.org>  Thu,  9 Dec 2004 08:16:17 +1100

cervisia (4:3.3.1-1) unstable; urgency=medium

  * New upstream bugfix release.
  * Build-conflicts with autoconf2.13, which does not play well with
    Makefile.common.
  * Force a rerun of admin/Makefile.common when building (not just after
    a clean), since the debian patches affect Makefile.ams.

 -- Ben Burton <bab@debian.org>  Thu, 28 Oct 2004 19:03:02 +1000

cervisia (4:3.3.0-1) unstable; urgency=low

  * New upstream release.
  * New package kcachegrind-converters.  These foreign format converters
    are packaged separately so that kcachegrind need not depend on php.
  * Binary package kmtrace has returned.  Note that the kmtrace libraries
    for debian are now installed in /usr/lib/kmtrace, not in /usr/lib as
    is done upstream.
  * Versioned libqt3-mt-dev build-depends is no longer necessary since
    kdelibs4-dev already forces Qt 3.3.
  * Made libcvsservice-dev depend on kdelibs4-dev.
  * Removed python dependency from poxml, since all apps are now compiled
    binaries.
  * Added a sample kde-buildrc to the cervisia-scripts documentation.

 -- Ben Burton <bab@debian.org>  Fri, 15 Oct 2004 09:55:26 +1000

cervisia (4:3.2.3-2) unstable; urgency=low

  * Fixed C++ code generator to use keyword "virtual" when declaring
    abstract operations (closes: #255552).

 -- Ben Burton <bab@debian.org>  Thu, 24 Jun 2004 08:35:22 +1000

cervisia (4:3.2.3-1) unstable; urgency=low

  * New upstream bugfix release.
  * Rebuilt against STL-enabled Qt and corresponding kdelibs.
  * Added manpages for cvs2dist and build-progress.sh.
  * Use real paths for doc-base entries instead of symlinked paths
    (closes: #247690).
  * Suggests (konqueror | www-browser) for cervisia-doc-html instead of
    just www-browser.
  * KBabel catalogue manager no longer opens spurious empty windows
    (closes: #237031).

 -- Ben Burton <bab@debian.org>  Wed, 16 Jun 2004 08:41:42 +1000

cervisia (4:3.2.2-1) unstable; urgency=low

  * New upstream bugfix release.
  * Add Conflicts/Replaces for umbrello-manual (closes: #237173).
  * Don't use Conflicts/Replaces elsewhere where we should just use Replaces.
  * Have kcachegrind suggest graphviz (closes: #243883).

 -- Ben Burton <bab@debian.org>  Tue, 16 Mar 2004 09:15:01 +1100

cervisia (4:3.2.1-1) unstable; urgency=low

  * First KDE 3.2 upload to sid.

 -- Ben Burton <bab@debian.org>  Sun,  7 Mar 2004 17:42:59 +1100

cervisia (4:3.2.0-2) experimental; urgency=low

  * First KDE 3.2 upload to experimental.
  * Sync from KDE_3_2_BRANCH for recent bugfixes.
  * Using versioned dependencies for the cervisia metapackage.

 -- Ben Burton <bab@debian.org>  Mon, 23 Feb 2004 08:14:22 +1100

cervisia (4:3.2.0-1) unstable; urgency=low

  * New upstream release.
  * Many thanks to Ralf Nolden for all his help with packaging KDE 3.2.
  * Thanks to Robert Lemmen for previous packaging work on umbrello and
    to Philipp Frauenfelder for previous packaging work on kcachegrind.
  * New binary packages kcachegrind, kuiviewer and umbrello.
  * Created a new package cervisia-doc-html for HTML documentation.

 -- Ben Burton <bab@debian.org>  Sat, 31 Jan 2004 12:08:48 +1100

cervisia (4:3.1.5-1) unstable; urgency=low

  * New upstream release.

 -- Ben Burton <bab@debian.org>  Sun, 18 Jan 2004 12:55:12 +1100

cervisia (4:3.1.4-3) unstable; urgency=low

  * New pull from BRANCH; includes bugfixes for kbabel and kompare.
  * Fixed freeze in KBabel spellcheck (closes: #209397).

 -- Ben Burton <bab@debian.org>  Fri, 12 Dec 2003 10:42:10 +1100

cervisia (4:3.1.4-2) unstable; urgency=low

  * Patched split2po to handle entities inside attributes correctly;
    thanks to Denis Barbier (closes: #213036).
  * Added encoding header to fixsgml; thanks to Petter Reinholdtsen
    (closes: #208949).  Note that fixsgml is no longer supported
    upstream and will not be shipped with KDE 3.2.

 -- Ben Burton <bab@debian.org>  Tue, 14 Oct 2003 16:26:05 +1000

cervisia (4:3.1.4-1) unstable; urgency=low

  * New upstream release.
  * Bumped standards-version to 3.6.1.

 -- Ben Burton <bab@debian.org>  Mon, 29 Sep 2003 15:08:53 +1000

cervisia (4:3.1.3-2) unstable; urgency=low

  * Rebuilt against Qt 3.2 so kbabel no longer crashes (closes: #208509).
  * Added versioned build-depends on libqt3-mt-dev (>= 3:3.2.1).
  * Updated admin/ from CVS.

 -- Ben Burton <bab@debian.org>  Fri,  5 Sep 2003 12:07:17 +1000

cervisia (4:3.1.3-1) unstable; urgency=low

  * New upstream release.
  * Split menu titles into title/longtitle.
  * Bumped standards-version to 3.6.0.

 -- Ben Burton <bab@debian.org>  Wed, 13 Aug 2003 11:02:26 +1000

cervisia (4:3.1.2-1) unstable; urgency=low

  * New upstream release.
  * Build-depends on flex-old instead of flex (closes: #193871).
  * Debian menu pixmaps no longer use a restricted colour map.
  * Man page overhaul.

 -- Ben Burton <bab@debian.org>  Sun,  1 Jun 2003 14:15:47 +1000

cervisia (4:3.1.1-1) unstable; urgency=low

  * New upstream release.
  * Removed binary package kmtrace which claims not to work with
    glibc >= 2.3.x.

 -- Ben Burton <bab@debian.org>  Sat, 22 Mar 2003 16:18:51 +1100

cervisia (4:3.1.0-5) unstable; urgency=low

  * Renamed symbolmatch to kmmatch and kdefixincludes to fixkdeincludes;
    these will be the upstream names in KDE 3.2.
  * Removed alpha compile options.

 -- Ben Burton <bab@debian.org>  Mon, 17 Mar 2003 08:35:19 +1100

cervisia (4:3.1.0-4) unstable; urgency=low

  * Updated admin/ so that kapptemplate's admin/ works with the new Qt
    packaging style.

 -- Ben Burton <bab@debian.org>  Wed, 12 Mar 2003 13:28:16 +1100

cervisia (4:3.1.0-3) unstable; urgency=low

  * Changed /usr/bin/match to /usr/bin/symbolmatch to avoid filename
    conflicts (closes: #181840).
  * Build-depends on libqt3-compat-headers for now until obsolete
    #includes are removed from both cervisia and kdelibs.
  * Added patch to work around flex's namespace problems until the
    flex package is fixed.

 -- Ben Burton <bab@debian.org>  Tue, 25 Feb 2003 11:50:26 +1100

cervisia (4:3.1.0-2) unstable; urgency=low

  * First KDE3 upload to debian (closes: #167062).
  * Rolled the epoch to aid upgrades from the unofficial repository on
    ftp.kde.org.. *sigh*

 -- Ben Burton <bab@debian.org>  Sun,  2 Feb 2003 19:40:16 +1100

cervisia (3.1.0-1) unstable; urgency=low

  * New upstream release.
  * Merged kdepalettes package into cervisia-misc.
  * Installs shell completion controls.
  * Replaced the old kde-devel-emacs.el with the new kde-emacs.el.

 -- Ben Burton <bab@debian.org>  Mon, 18 Nov 2002 14:15:59 +1100

cervisia (3.0.9-1) unstable; urgency=low

  * New upstream release.
  * Built with g++-3.2.
  * Build-depends on automake1.7.

 -- Ben Burton <benb@acm.org>  Tue, 22 Oct 2002 11:57:39 +1000

cervisia (3.0.8-1) unstable; urgency=low

  * New upstream release.
  * Moved to Chris Cheney's style of debian/rules.
  * Moved kbabel *.la files into kbabel-dev.
  * Build-depends on automake1.6.

 -- Ben Burton <benb@acm.org>  Sun, 22 Sep 2002 17:57:55 +1000

cervisia (3.0.3-2) unstable; urgency=low

  * Rename static kmtrace library to libktrace_s.a.
  * Install vim helper file.
  * Take out cvschanged again since it's superseded by cvscheck.

 -- Ben Burton <benb@acm.org>  Sat,  7 Sep 2002 19:03:33 +1000

cervisia (3.0.3-1) unstable; urgency=low

  * New upstream release.

 -- Ben Burton <benb@acm.org>  Thu, 15 Aug 2002 13:22:22 +1000

cervisia (3.0.2-2) unstable; urgency=low

  * Build-depends on automake1.5.
  * Install cvschanged.
  * Don't install kde-build (relies on kde-buildrc).

 -- Ben Burton <benb@acm.org>  Sat,  6 Jul 2002 14:58:13 +1000

cervisia (3.0.2-1) unstable; urgency=low

  * New upstream release.

 -- Ben Burton <benb@acm.org>  Thu,  4 Jul 2002 19:36:49 +1000

cervisia (3.0.1-1) unstable; urgency=low

  * New upstream release.

 -- Ben Burton <benb@acm.org>  Mon, 13 May 2002 03:15:24 +1000

cervisia (2.2.2-7) unstable; urgency=low

  * cervisia-scripts recommends gawk for kdekillall (closes: Bug#156109).

 -- Ben Burton <benb@acm.org>  Sat, 10 Aug 2002 14:25:35 +1000

cervisia (2.2.2-6) unstable; urgency=low

  * Emptied cervisia-scripts.links instead of removing it so the diff works
    correctly (closes: Bug#154803).

 -- Ben Burton <benb@acm.org>  Fri,  2 Aug 2002 14:28:27 +1000

cervisia (2.2.2-5) unstable; urgency=low

  * Fixed manpage section for kdelnk2desktop.py.1 (closes: #148371).

 -- Ben Burton <benb@acm.org>  Sat,  6 Jul 2002 14:02:27 +1000

cervisia (2.2.2-4) unstable; urgency=low

  * Package kspy depends on kdelibs-dev (closes: Bug#150707).

 -- Ben Burton <benb@acm.org>  Sun, 23 Jun 2002 13:02:06 +1000

cervisia (2.2.2-3) unstable; urgency=low

  * Fixed gcc3 build (closes: Bug#138177).

 -- Ben Burton <benb@acm.org>  Tue, 19 Mar 2002 17:01:44 +1100

cervisia (2.2.2-2) unstable; urgency=low

  * Moved kspy.h to /usr/include/kde (closes: Bug#122448, Bug#122449).

 -- Ben Burton <benb@acm.org>  Thu,  6 Dec 2001 09:50:47 -0600

cervisia (2.2.2-1) unstable; urgency=low

  * New upstream release.

 -- Ben Burton <benb@acm.org>  Wed,  7 Nov 2001 10:49:53 -0600

cervisia (2.2.1-4) unstable; urgency=low

  * Uses automake again to solve new alpha problems.
  * Updated to reflect new python policy.

 -- Ben Burton <benb@acm.org>  Tue,  6 Nov 2001 23:51:27 -0600

cervisia (2.2.1-3) unstable; urgency=low

  * Builds with automake 1.5.
  * Installs .py.1 man pages in the correct locations (requires newer
    debhelper).

 -- Ben Burton <benb@acm.org>  Thu, 11 Oct 2001 15:31:32 -0500

cervisia (2.2.1-2) unstable; urgency=low

  * Updated parameters for alpha build (closes: Bug#113110).

 -- Ben Burton <benb@acm.org>  Sat, 22 Sep 2001 12:00:37 -0500

cervisia (2.2.1-1) unstable; urgency=low

  * New upstream release.

 -- Ben Burton <benb@acm.org>  Fri, 31 Aug 2001 21:08:56 -0500

cervisia (2.2.0-final-1) unstable; urgency=low

  * New upstream release.
  * Generating HTML docs for users who can't view KDE docbook files.
  * Build-Depends: requires newer kdelibs-dev for working meinproc.
  * Suggests: konqueror for packages with docs to view through khelpcenter.
  * Reinstating doc-base entries.
  * Bumped standards-version to 3.5.6.
  * Cleaned up debian/rules.

 -- Ben Burton <benb@acm.org>  Sun, 29 Jul 2001 17:48:59 +1000

cervisia (2.2-beta1-4) unstable; urgency=low

  * Builds on alpha.

 -- Ben Burton <benb@acm.org>  Sun, 29 Jul 2001 00:20:23 +1000

cervisia (2.2-beta1-3) unstable; urgency=low

  * Build-Depends: added version to kdebase-dev (closes: Bug#103514).

 -- Ben Burton <benb@acm.org>  Wed,  4 Jul 2001 11:41:50 -0500

cervisia (2.2-beta1-2) unstable; urgency=low

  * Build-Depends: added kdebase-dev (closes: Bug#103255).
  * Build-Depends: changed libdb-dev back to libdb2-dev since libdb3-dev
    doesn't work.

 -- Ben Burton <benb@acm.org>  Mon,  2 Jul 2001 22:15:53 -0500

cervisia (2.2-beta1-1) unstable; urgency=low

  * New upstream release.
  * Added packages cervisia-doc, kspy and poxml.
  * Build-Depends: added uic.

 -- Ben Burton <benb@acm.org>  Sun, 17 Jun 2001 14:44:38 -0500

cervisia (2.1.1-8) unstable; urgency=low

  * Added arm/m68k to the libtool linux arch list (closes: Bug#99498).

 -- Ben Burton <benb@acm.org>  Fri,  1 Jun 2001 18:29:27 -0500

cervisia (2.1.1-7) unstable; urgency=low

  * Build-Depends: replaced libdb2-dev with libdb-dev; removed sed
    which is build-essential.
  * Changed cervisia to Architecture: any to please the autobuilders.
  * Minor cosmetic changes.

 -- Ben Burton <benb@acm.org>  Thu, 31 May 2001 12:21:41 -0500

cervisia (2.1.1-6) unstable; urgency=low

  * Added man pages for cervisia-scripts (closes: Bug#92451).
  * Added gdb macros and emacs helper files.
  * Added suggestions and recommendations for cervisia-scripts
    to satisfy requirements of individual scripts.
  * Fixed location of KDE docs in /usr/bin/kdedoc.
  * Fixed location of Qt docs in /usr/bin/qtdoc.
  * Changed conflict for kexample to version (<< 2.1.1-0) so potato
    packages don't break.

 -- Ben Burton <benb@acm.org>  Sun, 29 Apr 2001 15:52:54 -0500

cervisia (2.1.1-5) unstable; urgency=low
 
  * Updated Standards-Version to 3.5.2.
  * Added kderemove="1" to the debian menu items.
  * Reformatted and fleshed out man pages.

 -- Ben Burton <benb@acm.org>  Fri, 27 Apr 2001 14:56:02 -0500

cervisia (2.1.1-4) unstable; urgency=low

  * Ensures /usr/bin/extractrc is installed (needed by kdevelop) and
    conflicts with earlier versions of kdevelop (which provided its own
    /usr/bin/extractrc).

 -- Ben Burton <benb@acm.org>  Thu,  5 Apr 2001 15:19:13 -0500

cervisia (2.1.1-3) unstable; urgency=low

  * Added man page for /usr/bin/extractmsg (closes: Bug#92450).
  * Tidied up various other man pages.
  * Build-Depends: now requires version (>> 3.0.0) of debhelper.
  * Added Suggests: kdebase to packages kbabel, kexample.
  * Replaced gimp, xpaint with gimp | xpaint in Suggests: for kdepalettes.
  * Upgraded to debian/rules DH_COMPAT=3 and removed postinst scripts.
  * Rebuilt using correct gcc/libc6 packages.

 -- Ben Burton <benb@acm.org>  Sun,  1 Apr 2001 22:30:27 -0500

cervisia (2.1.1-2) unstable; urgency=low

  * Build-Depends: Added libdb2-dev (closes: Bug#92174).
  * Conflicts (kexample): Added cervisia-scripts (<< 2.1.1-1)
    (closes: Bug#92432).

 -- Ben Burton <benb@acm.org>  Sun,  1 Apr 2001 11:59:48 -0500

cervisia (2.1.1-1) unstable; urgency=low

  * New upstream sources.
  * Adopted by Ben Burton <benb@acm.org> (closes: Bug#84531).
  * Added packages cervisia, kapptemplate, kdepalettes.
  * Split kexample from package cervisia-scripts into a new package.
  * Changed some package architectures to all.
  * Build-Depends: Removed autoconf and gettext which are redundant;
    required version (>> 2.0.0) of debhelper; added sed.
  * Removed all Suggests: kdebase flags.
  * Completely reworked debian/rules.
  * Added a mime type for kbabel.
  * Added various man pages.
  * Added icons to the debian menu items.
  * Changed admin/Makefile.common to ignore cvs-clean in debian/ so
    new debian files aren't deleted!
  * Tidied up package descriptions.
  * Miscellaneous cleanups in debian.

 -- Ben Burton <benb@acm.org>  Mon, 26 Mar 2001 09:10:56 -0600

cervisia (2.1.0-1) unstable; urgency=low
 
  * New upstream CVS pull
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 07 Mar 2001 02:00:00 -0700

cervisia (2.1-final-1.1) unstable; urgency=low

  * Fix for doc link (Closes: #84075)
  * Fix the description of kbabel (Closes: #84078)

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 01 Mar 2001 00:10:00 -0700

cervisia (2.1-final-1) unstable; urgency=low
 
  * New upstream version
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 19 Feb 2001 02:00:00 +0100

cervisia (2.1-beta2-2) unstable; urgency=low

  * Closes: #83652.
  * Package maintaner change.
  * Upload sponsored by Ivan E. Moore II <rkrusty@debian.org>.

 -- Mariusz Przygodzki <dune@home.pl>  Sat, 27 Jan 2001 17:18:53 +0100

cervisia (2.1-beta2-1) unstable; urgency=low
 
  * New upstream beta
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 26 Jan 2001 18:00:00 -0700