File: changelog

package info (click to toggle)
gnumeric 1.12.32-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 129,260 kB
  • ctags: 25,173
  • sloc: ansic: 288,510; xml: 55,625; perl: 5,366; sh: 4,503; makefile: 2,905; yacc: 1,330; python: 203
file content (3014 lines) | stat: -rw-r--r-- 120,739 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
gnumeric (1.12.32-1) unstable; urgency=medium

  * New upstream release [August 2016] (Closes: #829872, #832827).

 -- Dmitry Smirnov <onlyjob@debian.org>  Fri, 26 Aug 2016 09:57:37 +1000

gnumeric (1.12.31-1) unstable; urgency=medium

  * New upstream release [June 2016].

 -- Dmitry Smirnov <onlyjob@debian.org>  Sun, 03 Jul 2016 20:58:36 +1000

gnumeric (1.12.30-1) unstable; urgency=medium

  * New upstream release [June 2016].
  * Build-Depends += "dh-python".
  * Corrected Vcs-Git URL.

 -- Dmitry Smirnov <onlyjob@debian.org>  Mon, 27 Jun 2016 14:07:34 +1000

gnumeric (1.12.29-1) unstable; urgency=medium

  * New upstream release [May 2016].
  * Standards-Version: 3.9.8.
  * Dropped obsolete "paradox.patch".

 -- Dmitry Smirnov <onlyjob@debian.org>  Sun, 08 May 2016 18:26:03 +1000

gnumeric (1.12.28-2) unstable; urgency=medium

  * Removed unused .xpm icon (Closes: #819876).
    Thanks, Pino Toscano.
  * New patch to fix FTBFS with pxlib-dev_0.6.6-1 (Closes: #822398).
    Thanks, Jean Brefort.
  * plugins-extra: don't install paradox plugin.
  * Build-Depends:
    - imagemagick

 -- Dmitry Smirnov <onlyjob@debian.org>  Sun, 01 May 2016 22:03:22 +1000

gnumeric (1.12.28-1) unstable; urgency=medium

  * New upstream release [March 2016].
  * Build-Depends:
    - libgoffice-0.10-dev (>= 0.10.27)
    + libgoffice-0.10-dev (>= 0.10.28)
  * Standards-Version: 3.9.7.
  * Fixed FTBFS when built with 'dpkg-buildpackage -A' (Closes: #806038).

 -- Dmitry Smirnov <onlyjob@debian.org>  Sun, 27 Mar 2016 19:09:57 +1100

gnumeric (1.12.27-1) unstable; urgency=medium

  * New upstream release [February 2016].
  * control: updated Vcs URLs (vcs-field-uses-insecure-uri).
  * Build-Depends:
    - libgoffice-0.10-dev (>= 0.10.22)
    + libgoffice-0.10-dev (>= 0.10.27)

 -- Dmitry Smirnov <onlyjob@debian.org>  Fri, 12 Feb 2016 10:17:25 +1100

gnumeric (1.12.26-1) unstable; urgency=medium

  * New upstream release [December 2015].
  * Removed obsolete "gzip-timestamps.patch".
  * Removed menu file (command-in-menu-file-and-desktop-file).
  * Removed "debian/pycompat" (debian-pycompat-is-obsolete).

 -- Dmitry Smirnov <onlyjob@debian.org>  Thu, 31 Dec 2015 14:39:05 +1100

gnumeric (1.12.24-1) unstable; urgency=medium

  * New upstream release [October 2015].

 -- Dmitry Smirnov <onlyjob@debian.org>  Sat, 17 Oct 2015 18:49:19 +1100

gnumeric (1.12.23-1) unstable; urgency=low

  * New upstream release [July 2015].
  * Reproducible build: stabilise embedded gzip timestamps (Closes: #784672)
    Thanks, Daniel Kahn Gillmor.

 -- Dmitry Smirnov <onlyjob@debian.org>  Fri, 31 Jul 2015 08:53:07 +1000

gnumeric (1.12.22-1) unstable; urgency=low

  [ Dmitry Smirnov ]
  * New upstream release [April 2015].
  * Build-Depends:
    + libgoffice-0.10-dev (>= 0.10.22)
    + libgsf-1-dev (>= 1.14.33)
    + gobject-introspection
  * Added "--with gir" to populate "${gir:Depends}".
  * Upload to unstable.

  [ Raphael Geissert ]
  * Add some sanity checks to the preinst to prevent it from bailing out
    too easily (Closes: #782137).

 -- Dmitry Smirnov <onlyjob@debian.org>  Sun, 26 Apr 2015 18:02:16 +1000

gnumeric (1.12.21-1) experimental; urgency=low

  * New upstream release [March 2015].
  * Build-Depends:
    + libgoffice-0.10-dev (>= 0.10.21)
    + libgsf-1-dev (>= 1.14.32)
  * Dropped obsolete "772075.patch".
  * X-Python-Version: >= 2.7

 -- Dmitry Smirnov <onlyjob@debian.org>  Thu, 19 Mar 2015 17:00:06 +1100

gnumeric (1.12.18-2) unstable; urgency=low

  * New "772075.patch" to fix undo crash (Closes: #772075).
  * Droped obsolete "Recommends: gnome-desktop-data" (Closes: #764045).
    Thanks, Laurent Bigonville.

 -- Dmitry Smirnov <onlyjob@debian.org>  Thu, 19 Mar 2015 15:51:15 +1100

gnumeric (1.12.18-1) unstable; urgency=medium

  * New upstream release [September 2014].
  * Fixed FTBFS with libgirepository1.0-dev>=1.41.4 (Closes: #763229).
  * Updated Standards-Version to 3.9.6.
  * Updated Vcs-Browser URL.

 -- Dmitry Smirnov <onlyjob@debian.org>  Mon, 29 Sep 2014 13:12:47 +1000

gnumeric (1.12.17-1) unstable; urgency=low

  * New upstream release [June 2014].

 -- Dmitry Smirnov <onlyjob@debian.org>  Sun, 15 Jun 2014 19:40:35 +1000

gnumeric (1.12.16-1) unstable; urgency=low

  * New upstream release [May 2014].
  * Install libspreadsheet dev headers and .pc file (Closes: #723903).

 -- Dmitry Smirnov <onlyjob@debian.org>  Wed, 28 May 2014 01:40:18 +1000

gnumeric (1.12.15-1) unstable; urgency=low

  * New upstream release [May 2014].

 -- Dmitry Smirnov <onlyjob@debian.org>  Fri, 09 May 2014 06:46:22 +1000

gnumeric (1.12.14-1) unstable; urgency=low

  * New upstream release [April 2014].
  * Build-Depends: "libgoffice-0.10-dev (>= 0.10.14)".

 -- Dmitry Smirnov <onlyjob@debian.org>  Wed, 16 Apr 2014 23:42:28 +1000

gnumeric (1.12.13-1) unstable; urgency=medium

  * New upstream release [March 2014].
    + fixed crash on .XLS file open (Closes: #742030).
  * gir1.2-gnumeric: minor package description update.

 -- Dmitry Smirnov <onlyjob@debian.org>  Wed, 19 Mar 2014 12:43:59 +1100

gnumeric (1.12.12-1) unstable; urgency=low

  * New upstream release [March 2014].

 -- Dmitry Smirnov <onlyjob@debian.org>  Thu, 06 Mar 2014 22:07:40 +1100

gnumeric (1.12.11-1) unstable; urgency=low

  * New upstream release [February 2014].
  * Standards to 3.9.5.

 -- Dmitry Smirnov <onlyjob@debian.org>  Sat, 01 Mar 2014 19:33:16 +1100

gnumeric (1.12.9-1) unstable; urgency=medium

  * New upstream release [November 2013].
    - removed "721520.patch".
  * Build-Depends: "libgoffice-0.10-dev (>= 0.10.9)".
  * Ship all sample .gnumeric files in -doc package;
    install compatibility symlink "/usr/share/doc/gnumeric/samples".

 -- Dmitry Smirnov <onlyjob@debian.org>  Mon, 16 Dec 2013 13:11:42 +1100

gnumeric (1.12.6-2) unstable; urgency=low

  * New backported patch to fix crash when opening some files
    (Closes: #721520);
    Thanks, Morten Welinder.

 -- Dmitry Smirnov <onlyjob@debian.org>  Mon, 02 Sep 2013 01:20:43 +1000

gnumeric (1.12.6-1) unstable; urgency=low

  * New upstream release [August 2013].
    + graph:Plot fixes (Closes: #718594).
  * Dropped "mimetypes.patch" (applied-upstream).
  * Suggests: ttf-liberation --> fonts-liberation.

 -- Dmitry Smirnov <onlyjob@debian.org>  Fri, 30 Aug 2013 13:44:41 +1000

gnumeric (1.12.4-1) unstable; urgency=low

  * New upstream release [July 2013].

 -- Dmitry Smirnov <onlyjob@debian.org>  Sun, 21 Jul 2013 17:20:45 +1000

gnumeric (1.12.3-1) unstable; urgency=low

  * New upstream release [June 2013].
    Bugs fixed:
    + "URL support in Excel export" (Closes: #226984).
    + "LaTeX landscape export" (Closes: #465565).
    + "Misbehaving menus from validating lists" (Closes: #660112).
    + "ssconvert: man page to mention that default is the active sheet"
      (Closes: #540071).
    + "ssgrep: man page improvements" (Closes: #530462).
    + "document how to add grid lines to a chart background"
      (Closes: #621735).
    + "names menu does not honour R1C1 setting" (Closes: #699054).
    + "export of FLOOR(x) to xlsx" (Closes: #464732).
  * Recommend "gnumeric-doc", not merely Suggest (Closes: #710742).
  * gnumeric-doc: promote "yelp" to Depends (Closes: #395967).
  * Build-Depends: "libgoffice-0.10-dev (>= 0.10.3)".
  * Dropped man.patch (applied-upstream).
  * Added MIMEtype registrations for .ODS files.

 -- Dmitry Smirnov <onlyjob@debian.org>  Mon, 01 Jul 2013 11:51:49 +1000

gnumeric (1.12.2-2) unstable; urgency=low

  * New "automake_1.13.2.patch" to fix FTBFS with automake (>= 1.13.2).
  * New "man.patch" to correct "hyphen-used-as-minus-sign" in man pages.

 -- Dmitry Smirnov <onlyjob@debian.org>  Sat, 01 Jun 2013 12:20:40 +1000

gnumeric (1.12.2-1) unstable; urgency=low

  * New upstream release [April 2013].
    + Build-Depends on "libgoffice-0.10-dev (>= 0.10.2)".
  * Added Vcs links to new repository at collab-maint.
  * "debian/copyright" to copyright-format-1.0 + audit.
  * Updated "no-nested-externs-error.patch"; added DEP-3 headers.
  * Debhelper & compat to version 9; rules rewrite (dh-style).
    + "autotools-dev" --> "dh-autoreconf".
    + verbose build (--disable-silent-rules).
    + enabled parallel build.
    + clean-up.
    + do not install windows icons (*.ico files) any more.
    + convert menu icon on build-time.
  * Lintianisation:
    + "desktop-command-not-in-package": .desktop file moved to the main
      package; added corresponding Breaks/Replaces.
    + "postinst-does-not-load-confmodule".
    + "missing-debconf-dependency-for-preinst".
    + lintian-oveddides for hardening false-positives.
    + lintian-oveddides for warnings related to private "libspreadsheet"
      library.
    + lintian-oveddides for "script-not-executable".
  * Clean-up:
    + clean generated "src/parser.c" file.
    + dropped unused -conf files md5sum check.
    + dropped *.dirs files.
    + dropped broken symlink "GNOME_Gnumeric.idl".
    + debian/control: don't suggest "epiphany-browser".
    + debian/control: added consistency Breaks to match Replaces.
    + debian/control: re-arranged package lists.
    + debian/control: dropped unnecessary versioned dependencies
      and unknown packages.
  * xz compression for source archive and binary packages (*.deb).
  * New maintainer; thanks for all your work, J.H.M. Dassen (Ray).

 -- Dmitry Smirnov <onlyjob@debian.org>  Tue, 28 May 2013 11:05:49 +1000

gnumeric (1.12.1-1) unstable; urgency=low

  * New upstream release, first of the new stable series.
  * [debian/control]
    * Bumped goffice build dependency as per configure.ac .
  * [debian/patches/no-nested-externs-error] Added. Don't build
    -Werror=nested-externs as this breaks a test used for GLIB_WITH_NLS
    which in turn makes the locales directory come out wrong.
  * [debian/gnumeric.install] Include ssdiff.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 09 Mar 2013 22:18:14 +0100

gnumeric (1.12.0-1) unstable; urgency=low

  * New upstream release, first of the new stable series.
  * [debian/rules] Use dh_autotools-dev_updateconfig instead of our own
    config.{guess,sub} handling.
  * [debian/control]
    * Update build dependencies following gsf and goffice gir
      packaging fixes.
    * Drop obsoleted python-gtk2-dev build dependency.
    * Add autotools-dev build dependency for dh_autotools-dev_updateconfig.
  * [debian/patches] None needed currently.
  * [debian/watch] Upstream has switched to .xz tarballs.
  * Issues fixed in this release or in the 1.11 development series:
    * Import of charts in a table:shapes environment in ODF. (Closes: 672451)
    * Redefining a deleted name no longer requires a restart. (Closes: 661505)
    * Data -> Export Data provides access to all supported export formats.
      (Closes: 666699)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 01 Jan 2013 18:20:39 +0100

gnumeric (1.11.90-1) experimental; urgency=low

  * New upstream development release.
  * [debian/patches/update-translations] Post-release translation updates.
  * [debian/rules]
    * Harden build.
    * Enable Introspection support.
    * Added --disable-maintainer-mode to configure flags.
    * Don't update config.{guess,sub} as part of "clean".
  * [debian/control]
    * Updated goffice build dependency.
    * Updated glib build dependency.
    * Updated pango build dependency.
    * Updated libgsf build dependency.
    * Switched gtk build dependency to gtk3.
    * Switched python-gobject build dependency to python-gi-dev.
    * Added versioned dpkg-dev build dependency for hardening data.
    * Added libgirepository1.0-dev and libgsf and goffice gir build
      dependencies for introspection support.
    * Updated Standards-Version.
  * [debian/gir1.2-gnumeric.dirs, debian/gir1.2-gnumeric.install] New.
  * [debian/gnumeric.install, debian/gnumeric-common.install, debian/rules]
    Removed references to gconf schemes.
  * [debian/gnumeric-common.install] Removed reference to UI files as they
    are embedded now.
  * [debian/patches/patches/ffd85ed-backport] New. Adding per upstream's
    recommendation.
  * [debian/patches/re-auto-all] Drop.
  * [debian/patches/series] Updated accordingly.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 02 Dec 2012 14:52:34 +0100

gnumeric (1.10.17-1) unstable; urgency=low

  * New upstream stable release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 01 Aug 2011 20:02:18 +0200

gnumeric (1.10.16-1) unstable; urgency=low

  * New upstream stable release.
  * [debian/po/nl.po] Updated, courtesy of Jeroen Schot <schot@A-Eskwadraat.nl>
    (Closes: #626355).
  * [debian/rules] Reshuffle and add "build-arch" and "build-indep" targets.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 18 Jun 2011 13:43:16 +0200

gnumeric (1.10.15-1) unstable; urgency=low

  * New upstream stable release.
  * [debian/control]
    * Bumped goffice build dependency as per configure.in .
    * Updated Standards-Version.
  * [debian/rules, debian/gnumeric.install] Remove .la files. (Closes: #621167)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 22 May 2011 19:55:23 +0200

gnumeric (1.10.14-1) unstable; urgency=low

  * New upstream stable release. Changes include
    * Improve "dif" output. (Closes: #616152)
  * [debian/control, debian/rules, debian/pycompat] Convert from
    python-central to dh_python2. (Closes: #616831)
  * [debian/control, debian/rules, gnumeric-plugins-extra.install] Removed
    psiconv support. Psion file support is a fairly obscure feature and
    should not block gnumeric packages from entering testing.
  * [debian/control] Cleanup: there is no --with-gnomedb option any more.
  * [debian/gnumeric-common.install] Install GSettings schemas.
  * [debian/po/ja.po] Updated, courtesy of Nobuhiro Iwamatsu
    <iwamatsu@nigauri.org>. (Closes: #611051)
  * [debian/po/pt_BR.po] Updated, courtesy of Eder L. Marques
    <eder@edermarques.net>. (Closes: #619607)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 26 Mar 2011 11:52:00 +0100

gnumeric (1.10.13-1) unstable; urgency=low

  * New upstream stable release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 03 Feb 2011 20:37:38 +0100

gnumeric (1.10.12-1) unstable; urgency=low

  * New upstream stable release. Changes include
    * patches to fix the crashes and extreme slowness reported by Andres
      Cimmarusti <acimmarusti@gmail.com>. (Closes: #602257)
  * Fixed in earlier upstream releases:
    * Please let the user choose whether to display grids above or below
      plots. (Closes: #599051) 
    * Fix column and row fitting on paste. (Closes: #592611)
  * [debian/control, debian/gnumeric-common.install] libglade is no longer
    used, and there are no glade files to install anymore.
  * [debian/gnumeric-doc.postinst, debian/gnumeric-doc.postrm] Unused;
    remove.
  * Translation updates: 
    * [debian/po/vi.po] Updated Vietnamese translation courtesy of Clytie
      Siddall <clytie@riverland.net.au>. (Closes: #601548)
    * [debian/po/da.po] Updated Danish translation courtesy of Joe Dalton
      <joedalton2@yahoo.dk>. (Closes: #601792)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 26 Nov 2010 20:59:23 +0100

gnumeric (1.10.11-1) unstable; urgency=low

  * New upstream stable release. Changes include:
    * Revised ssconvert man page. (Closes: #569497)
    * Auto-correction no longer upper-cases after a comma. (Closes: #597494)
  * Translation updates: 
    * [debian/po/cs.po] Updated Czech translation courtesy of Miroslav Kure
      <kurem@debian.cz> (Closes: #598340)
    * Ensure all recent translation updates are in.
  * [debian/control]
    * Bumped libgsf build dependency as per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 02 Oct 2010 10:39:03 +0200

gnumeric (1.10.10-1) unstable; urgency=low

  * New upstream stable release.
  * [debian/control]
    * Bumped goffice build dependency as per configure.in .
    * Added explicit Build-Depends: python-gobject-dev as it is no longer
      being pulled in by python-gtk2-dev.
  * [debian/po/de.po] Updated German translation courtesy of Johannes
    Starosta <feedback-an-johannes@arcor.de>. (Closes: #594702)
  * [debian/po/fr.po] Updated French translation courtesy of Steve
    Petruzzello <dlist@bluewin.ch>. (Closes: #595147)
  * [debian/po/it.po] Updated Italian translation courtesy of Luca Monducci
    <luca.mo@tiscali.it>. (Closes: #593956)
  * [debian/po/ru.po] Updated Russian translation courtesy of Yuri Kozlov
    <yuray@komyakino.ru>. (Closes: #593908)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 05 Sep 2010 17:42:41 +0200

gnumeric (1.10.9-1) unstable; urgency=low

  * New upstream stable release.
  * [debian/po/sv.po] Updated Swedish translation courtesy of Martin Bagge
    <brother@persilja.net>. (Closes: #592043)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 17 Aug 2010 20:41:08 +0200

gnumeric (1.10.8-1) unstable; urgency=low

  * New upstream stable release. Changes include:
    * Save default search settings. (Closes: #451641)
    * Add new function SORT; add menu item to wrap SORT around an existing
      range. (Closes: #306543)
  * [debian/gnumeric.templates] Added entry for the debconf prompt title.
  * [debian/gnumeric.preinst] Use template to allow for translation of the
    debconf prompt title.
  * [debian/rules] Call dh_perl. Call debconf-updatepo in "clean" target.
  * [debian/control]
    * Bumped goffice build dependency as per configure.in .
    * Added gnumeric-plugins-extra Depends: ${perl:Depends}.
    * Use "Breaks" instead of "Conflicts".
    * Updated Standards-Version.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 31 Jul 2010 12:19:55 +0200

gnumeric (1.10.7-1) unstable; urgency=low

  * New upstream stable release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 29 Jun 2010 17:31:38 +0200

gnumeric (1.10.6-1) unstable; urgency=low

  * New upstream stable release. Changes include:
    * Improve ACCRINT and its description. (Closes: #560770)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 19 Jun 2010 13:08:11 +0200

gnumeric (1.10.5-1) unstable; urgency=low

  * New upstream stable release.
  * [debian/control] Bumped goffice build dependency as per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 01 Jun 2010 08:39:08 +0200

gnumeric (1.10.4-1) unstable; urgency=low

  * New upstream stable release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 21 May 2010 20:15:35 +0200

gnumeric (1.10.3-1) unstable; urgency=low

  * New upstream stable release.
  * [debian/control] Bumped goffice build dependency as per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 09 May 2010 12:20:16 +0200

gnumeric (1.10.2-1) unstable; urgency=low

  * New upstream stable release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 17 Apr 2010 11:45:12 +0200

gnumeric (1.10.1-1) unstable; urgency=low

  * New upstream stable release.
  * [debian/control] Updated goffice build dependency to build against
    renamed packages.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 09 Mar 2010 21:45:03 +0100

gnumeric (1.10.0-1) unstable; urgency=low

  * New upstream stable release.
  * [debian/control]
    * Updated Standards-Version.
    * Bumped goffice build dependency as per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 15 Feb 2010 13:59:38 +0100

gnumeric (1.9.18-1) unstable; urgency=low

  * New upstream release. Upstream development is now in a "code slush"
    towards a new stable release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 26 Jan 2010 21:19:45 +0100

gnumeric (1.9.17-1) unstable; urgency=low

  * New upstream release. Changes include:
    * Fix selection problem (bugzilla.gnome.org #601107). (Closes: #552302)
  * [debian/source/format] Added - switch to source format 3.0 (quilt).
  * [debian/control] Bumped goffice build dependency as per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 16 Dec 2009 19:39:19 +0100

gnumeric (1.9.16-1) unstable; urgency=low

  * [debian/control]
    * Bumped goffice build dependency as per configure.in .
    * Added gnumeric Recommends: lp-solve as Linear Programming solving has
      been moved into a plugin that uses the external lp_solve program.
  * [debian/rules, debian/control, debian/gnumeric-plugins-extra.install]
    Disable GDA support as it requires newer GDA packages than are available
    in unstable.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 01 Dec 2009 20:52:06 +0100

gnumeric (1.9.15-1) unstable; urgency=medium

  * New upstream development release.
  * Urgency medium to catch up with new goffice.
  * [debian/control] Bumped goffice build dependency as per configure.in .
  * [debian/gnumeric.mime] Added entry for application/x-lpsolve .
  * [debian/gnumeric-common.links] Dropped.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 03 Nov 2009 13:32:32 +0100

gnumeric (1.9.14-2) unstable; urgency=low

  * Uploading to unstable now that 1.9.13 has migrated to testing.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 17 Oct 2009 21:36:50 +0200

gnumeric (1.9.14-1) experimental; urgency=low

  * New upstream development release. Uploading to experimental so as not to
    interfere with gnumeric 0.7.13's migration to testing.
  * [debian/control] Bumped goffice build dependency as per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 11 Oct 2009 18:37:13 +0200

gnumeric (1.9.13-1) unstable; urgency=medium

  * New upstream development release. Urgency medium as testing's gnumeric
    is currently broken.
  * [debian/control] Bumped goffice build dependency as per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 20 Sep 2009 21:47:45 +0200

gnumeric (1.9.12-2) unstable; urgency=high

  * [ChangeLog, src/gnm-pane.c] Backported upstream fix
    b3b2325915b2f2420f9a20fd1d8e68eb548d7782 to address a grab issue when
    moving graphs. (Closes: #546559)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 15 Sep 2009 19:45:21 +0200

gnumeric (1.9.12-1) unstable; urgency=low

  * New upstream development release.
  * [debian/control] Bumped goffice build dependency as per per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 06 Sep 2009 19:39:45 +0200

gnumeric (1.9.11-2) unstable; urgency=low

  * [ChangeLog, src/item-bar.c] Backported upstream fixes
    649386d422bbfdd6767d17da8cedfe896db52db4 and
    897f7be3220347e0adb78108ca21accf2dbb88ea to address a grab issue with
    the context menu. (Closes: #544975)
  * [debian/control] Bumped goffice build dependency, as 0.7.10 was somewhat
    problematic.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 04 Sep 2009 22:03:55 +0200

gnumeric (1.9.11-1) unstable; urgency=low

  * New upstream development release.
  * [debian/rules, debian/control, debian/gnumeric-plugins-extra.install]
    Reenable GDA plugin now that a sufficiently recent GDA is packaged in
    sid. (Closes: #522430)
  * [debian/control] Bumped goffice build dependency as per per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 01 Sep 2009 20:58:18 +0200

gnumeric (1.9.10-2) unstable; urgency=medium

  * [src/dialogs/search-replace.glade] Fix XML by using an entity for the
    ampersand character. This fixes the search & replace menu. (Closes:
    542141)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 18 Aug 2009 13:04:30 +0200

gnumeric (1.9.10-1) unstable; urgency=low

  * New upstream development release.
  * [debian/control]
    * Bumped goffice build dependency as per per configure.in .
    * Updated Standards-Version.
  * [debian/rules]
    * dh_scrollkeeper is a deprecated no-op nowadays; removed call.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 16 Aug 2009 14:00:53 +0200

gnumeric (1.9.9-2) unstable; urgency=medium

  * [src/print-info.c] (gnm_page_breaks_clean): handle breaks being NULL.
    (Closes: #541095)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 13 Aug 2009 19:49:05 +0200

gnumeric (1.9.9-1) unstable; urgency=low

  * New upstream development release.
  * [debian/control]
    * Bumped libgsf and goffice build dependencies as per per configure.in .
    * Updated Standards-Version.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 21 Jun 2009 20:42:08 +0200

gnumeric (1.9.8-1) unstable; urgency=low

  * New upstream development release.
  * [debian/control] Bumped libgsf and goffice build dependencies as per
    configure.in; updated scrollkeeper build dependency to rarian-compat |
    scrollkeeper.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 24 May 2009 13:31:08 +0200

gnumeric (1.9.7-1) unstable; urgency=high

  * New upstream development release. Upstream changes include:
    * Fix xls export issue that made files readable by Gnumeric only.
    Urgency set accordingly.
  * [debian/control] Bumped libgsf and goffice build dependencies as per
    configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 07 May 2009 08:57:42 +0200

gnumeric (1.9.6-1) unstable; urgency=low

  * New upstream development release. Upstream changes include:
    * Basic infrastructure for variable sheet sizes. For example, text and
      CSV files now load into sheets as big as needed and the silent
      truncation of a test DBF file with 65536 rows is no longer
      reproducible. (Closes: #252468, #331356)
  * [debian/control]
    * Bumped libgsf and goffice build dependencies as per configure.in .
    * Fixed debhelper-but-no-misc-depends.
    * Call dh_prep instead of dh_clean -k.
    * Updated Standards-Version.
    * Follow upstream VCS change: replaced Vcs-Svn by Vcs-git and updated
      Vcs-Browser.
  * [debian/gnumeric.install] Re-enabled schema installation.
  * [debian/gnumeric.prerm] Dropped. Fixes maintainer-script-empty.
  * [debian/rules]
    * Removed calls to dh_desktop which has been deprecated.
    * Removed --without-gnomedb, --without-gb, --without-bonobo from
      features; they are longer needed or recognised.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 26 Apr 2009 17:58:42 +0200

gnumeric (1.9.5-1) unstable; urgency=low

  * New upstream development release.
  * [debian/control] Bumped glib, gtk and goffice build dependencies as per
    configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 29 Mar 2009 20:15:19 +0200

gnumeric (1.9.4-1) unstable; urgency=low

  * New upstream development release. Uploading to unstable now that lenny
    has been released. Upstream changes include:
    * Fix for CVE-2009-0318, an untrusted search path vulnerability which
      affected the python-loader plugin which is part of the
      gnumeric-plugins-extra package. (Closes: #569648)
    * ssconvert(1) now documents the options for --export-options and has a
      simpler example to start with. (Closes: #406920, 511958)
    * gnumeric(1) now mentions ssconvert in SEE ALSO. (Closes: 511957)
    * Fix problem with functions docs in locales without encoding information.
      (Closes: #514127)
  * [debian/control] Updated glib, goffice and pango build dependencies,
    dropped gconf build dependency per configure.in . Dropped bonobo,
    libgnomeui, libgnome, libgsf-gnome build dependencies as we follow the
    new upstream default of a non-GNOME build. (Closes: #399323)
  * [debian/gnumeric.install] Removed gconf schemas which are no longer
    built.
  * [debian/gnumeric-common.install] Removed pattern for idl files as they
    are no longer built.
  * [debian/gnumeric.mime] Removed entry for obsolete, unofficial type
    text/x-comma-separated-values.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 23 Feb 2009 12:44:03 +0100

gnumeric (1.9.3-1) experimental; urgency=low

  * New upstream development release. Upstream changes include:
    * Print wysiwyg. (Closes: #180378)
  * Fixed version numbering.
  * [debian/rules] Fix permissions of plugins under /usr/lib/goffice as well.
  * [debian/gnumeric.install] Install the plugins under /usr/lib/goffice as
    well.
  * [debian/control]
    * Updated goffice build dependency per configure.in .
    * Change the Recommends: evince to evince | evince-gtk. (Closes: #501897)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 19 Oct 2008 17:45:44 +0200

gnumeric (1.9.2) experimental; urgency=low

  * New upstream development release.
  * [debian/compat] New; updated to current debhelper compatibility level.
  * [debian/rules] No longer set DH_COMPAT.
  * [debian/control]
    * Updated debhelper build dependency.
    * Bumped libgsf and pango build dependencies per configure.in .
    * Changed fonts suggestion now that the Liberation fonts are available in
      main and the Microsoft Corefonts installer package has been renamed.
      (Closes: #490039)
    * Cleaned up build dependencies to fix build-depends-on-1-revision lintian
      warning.
  * [debian/gnumeric.install, debian/gnumeric-common.install,
    debian/gnumeric-plugins-extra.install] Dropped some obsoleted patterns;
    commented out some patterns which have no current matches.
  * [debian/gnumeric.preinst] Added debhelper token.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 30 Aug 2008 16:49:14 +0200

gnumeric (1.9.1-1) experimental; urgency=low

  * New upstream development release.
  * [doc/C/gnumeric-C.omf] Missing from tarball; added from SVN.
  * [debian/control]
    * Updated goffice build dependency per configure.in .
    * Reintroduced intltool build dependency. (Closes: #487581)
    * Updated Standards-Version.
  * [debian/gnumeric-common.install] Include the tango based icons which are
    now shipped upstream.
  * [debian/rules] Call dh_icons.
  * [debian/gnome-gnumeric.xpm] Updated, based on upstream 32x32 png icon.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 25 Jun 2008 20:04:08 +0200

gnumeric (1.9.0-1) experimental; urgency=low

  * New upstream development release.

  * Upstream changes include:
    * Gnumeric graphs cannot always round trip through xls format, as
      Gnumeric's structure for graphs is richer than that supported by the xls
      format, e.g. Gnumeric supports multiple charts per graph and
      distinguishes between graph titles and chart titles, but the xls format
      only supports one chart per graph and just one title. When exporting to
      xls format, if there is no chart title, but there is a graph title, save
      that graph title. (Closes: #305399)
  * [debian/control] Update libgsf and goffice build dependencies as per
    configure.in .
  * [debian/gnumeric.install] Include ssgrep.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 05 May 2008 07:17:09 +0200

gnumeric (1.8.4-3) unstable; urgency=high

  * [plugins/python-loader/gnm-py-interpreter.c,
    plugins/python-loader/ChangeLog] Pull in fix from SVN gnumeric-1-8
    branch to deal with CVE-2009-0318, an untrusted search path vulnerability
    which affected the python-loader plugin which is part of the
    gnumeric-plugins-extra package. (Closes: #513418)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 29 Jan 2009 15:50:12 +0100

gnumeric (1.8.4-2) unstable; urgency=high

  * [po/Makefile.in.in] Added a "dummy" definition text for POTFILES to
    prevent the definition of CATALOGS from being eaten when
    build/po/Makefile is generated; this brings the translations back.
    (Closes: #513199)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 27 Jan 2009 19:11:11 +0100

gnumeric (1.8.4-1) unstable; urgency=low

  * New upstream stable release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 18 Jan 2009 20:30:30 +0100

gnumeric (1.8.3-6) unstable; urgency=medium

  * [NEWS, plugins/excel/ChangeLog, plugins/excel/ms-chart.c]: Pull in fixes
    from SVN gnumeric-1-8 branch for issues affecting Excel charts
    import/export (bugzilla.gnome.org #544935, #557027). (Closes: #509281)
  * [ChangeLog, src/xml-sax-read.c] Pull in fix from SVN gnumeric-1-8 branch
    to not crash on old gnumeric files which have gnm:StyleRegion tags
    without attributes in them. (Closes: #510929)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 11 Jan 2009 16:19:33 +0100

gnumeric (1.8.3-5+lenny1) testing-security; urgency=high

  * Non-maintainer upload by the Security Team.
  * Fix insecure search path vulnerability due to how python handles sys.path
    by sanitizing sys.path after calling PySys_SetArgv
    (CVE-2009-0318; Closes: #513418).

 -- Nico Golde <nion@debian.org>  Fri, 06 Feb 2009 19:24:06 +0100

gnumeric (1.8.3-5) unstable; urgency=medium

  * [plugins/perl-loader/perl-loader.c] Call PERL_SYS_INIT3() prior to
    perl_parse as per perlembed(1) so as not to hang on HPPA. 
    (Closes: #495062).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 19 Aug 2008 15:57:26 +0200

gnumeric (1.8.3-4) unstable; urgency=high

  * [plugins/fn-date/ChangeLog, plugins/fn-date/functions.c] Pull in fix from
    SVN gnumeric-1-8 branch for off-by-one errors in DATE function. 
    (Closes: #492743)
  * [debian/po/ja.po] Updated Japanese translation, courtesy of Atsushi
    Shimono <shimono@mozilla.gr.jp>. (Closes: #490668)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 01 Aug 2008 21:56:40 +0200

gnumeric (1.8.3-3) unstable; urgency=low

  * Pulled in updates from SVN gnumeric-1-8 branch.
  * [debian/compat] New.
  * [debian/rules] No longer set DH_COMPAT.
  * [gnumeric.preinst] Added debhelper token.
  * [debian/copyright] Fixed copyright-without-copyright-notice.
  * [debian/control]
    * Changed fonts suggestion now that the Liberation fonts are available in
      main and the Microsoft Corefonts installer package has been renamed.
      (Closes: #490039)
    * Updated Standards-Version.
    * Cleaned up build dependencies to fix build-depends-on-1-revision lintian
      warning.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 12 Jul 2008 15:20:19 +0200

gnumeric (1.8.3-2) unstable; urgency=low

  * [debian/control] Reintroduced intltool build dependency.
  * Updates from SVN gnumeric-1-8 branch:
    * [src/stf-export.c, ChangeLog, NEWS] (try_auto_date): Don't generate an
      invalid time format.  Fixes GNOME bugzilla #534514.  Fix detection of
      fractional seconds.
    * [po/pl.po, po/ChangeLog]: pl.po: Updated polish translation

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 23 Jun 2008 19:47:36 +0200

gnumeric (1.8.3-1) unstable; urgency=low

  * New upstream release.
  * Issues fixed in this or previous release:
    * Cell contents are not displayed for cells with an invalid format
      (Closes: #470300)
    * Failure to open xlsx files generated by Gnumeric itself. 
      (Closes: #469643)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 25 May 2008 10:25:50 +0200

gnumeric (1.8.2-1) unstable; urgency=low

  * New upstream release.
  * [debian/control] Added gnumeric Suggests: msttcorefonts as these may be
    needed for proper preview and printing of Excel files.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 07 Mar 2008 07:01:57 +0100

gnumeric (1.8.1-1) unstable; urgency=medium

  * New upstream release. Changes include
    * plugins/excel/ms-chart.c: (ms_excel_chart_write): save graph title if
      any and if the first chart has no title. (Gnome #301720) 
      (Closes: #305399)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 25 Jan 2008 19:55:54 +0100

gnumeric (1.8.0-1) unstable; urgency=medium

  * New upstream stable release, building on top of goffice 0.6.
    (Closes: #458006)
  * [doc/C/gnumeric-C.omf] Taken from svn as it is missing in the upstream
    tarball.
  * Upstream changes in this release include:
    * Fixed paired t-test [gnome #504256]. (Closes: #456798)
  * [debian/copyright, debian/gnumeric-doc.copyright] Updated.
  * [debian/control]
    * Build depend on new goffice packages (as per configure.in). 
      (Closes: #458006)
    * Updated Standards-Version.
  * [debian/po/de.po] Updated translation. Thanks Johannes Starosta
    <feedback-an-johannes@arcor.de>. (Closes: #455223)

  Gnumeric bugs cleanup:
  * Several issues were fixed during the 1.7.x development series:
    * Title elements in charts are lost when saving in xls format. 
      (Closes: #305399)
    * "x_order_2: colinear!" message when showing Help -> About. 
      (Closes: #341262)
    * Autocomplete should be more configurable. (Closes: #242528)
    * RFE: Quick tab color changer. (Closes: #353811)
    * RFE: Support import of OOXML. (Closes: #408068)
  * Issues which have been tagged as unreproducible for a long time and for
    which no new information regarding them (or new reports of them) has come
    forth:
    * Gnumeric crashes and hangs the entire computer (Closes: #447219)
    * Eats all memory if started with LC_NUMERIC set. (Closes: #395051)
    * XLS plugin is off by default. (Closes: #416110)
    Please reopen them if they can be reproduced with this version.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 29 Dec 2007 23:57:51 +0100

gnumeric (1.7.91-1) unstable; urgency=low

  * New upstream beta release.
  * [debian/rules] Changed the way in which LDFLAGS are passed so
    -Wl,--as-needed has much greater effect.
  * [debian/control] Added Homepage.
  * [debian/po/vi.po] Added Vietnamese translation courtesy of Clytie Siddall
    <clytie@riverland.net.au>. (Closes: #453626).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 06 Dec 2007 10:17:19 +0100

gnumeric (1.7.90-1) unstable; urgency=low

  * New upstream beta release.
  * [debian/control]
    * Bumped goffice build dependency per configure.in .
    * Dropped `XS-' prefix from XS-Vcs-Svn, XS-Vcs-Browser.
  * [debian/watch] Updated.
  * [debian/gnumeric.install] Install gnumeric-features.h .

  Christian Perrier <bubulle@debian.org>:
  * Debconf templates and debian/control reviewed by the debian-l10n-
    english team as part of the Smith review project. Closes: #448448
  * [Debconf translation updates]
  * Swedish. Closes: #449026
  * Galician. Closes: #449065
  * Slovak. Closes: #449079
  * Finnish. Closes: #449086
  * Portuguese. Closes: #449232
  * Czech. Closes: #449269
  * Italian. Closes: #449447
  * Spanish; Castilian. Closes: #450546
  * Russian. Closes: #451399
  * French. Closes: #451758

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 20 Nov 2007 22:20:32 +0100

gnumeric (1.7.14-1) unstable; urgency=low

  * New upstream release.
  * [debian/control]
    * Bumped goffice build dependency per configure.in .
    * Versioned the evince recommends to versions which implement the
      --print-settings parameter used in the GTK_PRINT_PREVIEW_COMMAND
      definition in current gtk+. (Closes: #448445)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 04 Nov 2007 20:25:29 +0100

gnumeric (1.7.13-1) unstable; urgency=low

  * New upstream release.
  * Upload to unstable. The 1.6.x series is no longer being developed and
    upstream consensus is that 1.7.x is now more stable than 1.6.x.
    * Close bugs already marked as fixed in experimental or fixed upstream.
      (Closes: #238944, #242528, #341262, #408068)
    * Close bugs relating to components which have undergone near complete
      overhaul (printing, charts).
      (Closes: #284720, #286117, #286523, #336011, #374192, #392670, #396674, #405385, #406019)
  * Fixed upstream:
    * Title elements in charts are preserved when exporting as .xls and
      re-importing. (Closes: #305399)
  * [debian/control]
    * Bumped goffice build dependency per configure.in .
    * Added XS-Vcs-Svn, XS-Vcs-Browser.
  * [debian/po/sk.po] Added Slovak translation courtesy of Ivan Masár
    <helix84@centrum.sk>. (Closes: #441672).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 21 Oct 2007 20:54:09 +0200

gnumeric (1.7.12-1) experimental; urgency=low

  * New upstream development release.
  * [debian/control]
    * Bumped libgsf and goffice build dependencies per configure.in .
    * Made binNMU safe, thanks Lior Kaplan <kaplan@debian.org>.
      (Closes: #432962)
  * [debian/gnumeric.menu] Changed section to Applications/Office as per the
    new Debian menu structure. Thanks Bill Allombert <ballombe@debian.org>.
    (Closes: #439009)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 04 Sep 2007 21:01:55 +0200

gnumeric (1.7.11-1) experimental; urgency=low

  * New upstream development release.
  * [debian/control] Bumped libgsf and goffice build dependencies per
    configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 24 Jul 2007 19:46:17 +0200

gnumeric (1.7.10-1) experimental; urgency=low

  * New upstream development release.
  * [debian/rules, debian/control, debian/gnumeric-plugins-extra.install]
    Enabled Psion files support.
  * [debian/control] Bumped goffice build dependency per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri,  4 May 2007 20:19:21 +0200

gnumeric (1.7.9-1) experimental; urgency=low

  * New upstream development release.
  * [debian/control]
    * Bumped libgtk2.0-dev build dependencies and removed gnomeprint build
      dependency per configure.in .
    * Added gnumeric Depends: procps for pgrep (used in the preinst script).
    * Added gnumeric Recommends: evince (called by the print preview
      implementation in libgtk).
    * Added gnumeric Suggests: epiphany-browser (default browser used by the
      library functions called for Help -> Gnumeric on the Web and Help ->
      Report a Problem).
  * [debian/po/pt_BR.po] Added, courtesy of Eder L. Marques
    <frolic@debian-ce.org>. (Closes: #417350)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 21 Apr 2007 19:47:30 +0200

gnumeric (1.7.8-1) experimental; urgency=low

  * New upstream development release.
  * [debian/gnumeric.mime] Fixed broken entry. (Closes: #412193)
  * [debian/control] Bumped goffice build dependency per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon,  5 Mar 2007 07:01:26 +0100

gnumeric (1.7.7-1) experimental; urgency=low

  * New upstream development release.
  * Fixes integrated upstream:
    * [doc/C/gnumeric.1] Typos/grammar glitches. (Closes: #410249)
  * [debian/control] Bumped goffice build dependency per configure.in .
  * [debian/po/es.po] Added, courtesy of Carlos Valdivia Yagüe
    <valyag@dat.etsit.upm.es>. (Closes: #383359)
  * [debian/po/gl.po] Added, courtesy of Jacobo Tarrio <jtarrio@debian.org>.
    (Closes: #407955)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 17 Feb 2007 17:07:17 +0100

gnumeric (1.7.6-1) experimental; urgency=low

  * New upstream development release.
  * [debian/control] Bumped goffice build dependency per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 18 Dec 2006 09:02:59 +0100

gnumeric (1.7.5-1) experimental; urgency=medium

  * New upstream development release.
  * [debian/control] Bumped goffice build dependency per configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon,  4 Dec 2006 17:01:13 +0100

gnumeric (1.7.4-1) experimental; urgency=medium

  * New upstream development release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 27 Nov 2006 15:52:41 +0100

gnumeric (1.7.3-1) experimental; urgency=medium

  * New upstream development release.
  * [debian/po/ja.po] Added, courtesy of Shimono Atsushi
    <shimono@kwasan.kyoto-u.ac.jp>. (Closes: #384994).
  * [debian/po/it.po] Added, courtesy of Luca Monducci <luca.mo@tiscali.it>.
    (Closes: #396946)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 22 Nov 2006 22:16:34 +0100

gnumeric (1.7.2-1) experimental; urgency=low

  * New upstream development release.
  * Follow new python policy: (Closes: #380831)
    * [debian/control]
      * Added ${python:Depends} dependency to gnumeric-plugins-extra
      * Added XB-Python-Version: ${python:Versions} and
        XS-Python-Version: current to gnumeric and gnumeric-plugins-extra.
      * Build-depend on python-dev instead of python2.3-dev.
      * Bumped debhelper build dependency.
      * Added python-central build dependency.
    * [debian/pycompat] Added.
    * [debian/rules] Added dh_pycentral calls.
  * [debian/config] Added.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 17 Oct 2006 19:22:12 +0200

gnumeric (1.7.1-1) experimental; urgency=low

  * New upstream development release.
  * [debian/control] Bumped libgsf and goffice build dependencies per
    configure.in .
  * [debian/control] Change list bullet character from `o' to `*' for
    aptitude. (Closes: #389140)
  * [debian/gnumeric.install] Add goffice plugin.
  * [debian/po/lt.po] Added, courtesy of Gintautas Miliauskas <gintas@akl.lt>.
    (Closes: #374319).
  * [debian/po/pt.po] Added, courtesy of Ricardo Silva <ardoric@gmail.com> via
    Rui Branco <ruipb@debianpt.org>. (Closes: #378890)
  * [debian/po/ru.po] Added, courtesy of Yuri Kozlov <kozlov.y@gmail.com>.
    (Closes: #379367)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed,  4 Oct 2006 21:24:30 +0200

gnumeric (1.7.0-1) experimental; urgency=low

  * New upstream development release. Changes include:
    * Moving tabs works (Closes: #366354)
    * The sheet from which the sheet manage dialog is started is now selected
      in that dialog, making it easier to e.g. change the tab's color.
      (Closes: #353811)
  * [debian/control] Changed goffice build dependency per configure.in;
    updated Standards-Version.
  * [debian/gnumeric.mime] Updated.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 10 May 2006 21:29:08 +0200

gnumeric (1.6.3-5.1+etch2) stable-proposed-updates; urgency=medium

  * [plugins/python-loader/gnm-py-interpreter.c,
    plugins/python-loader/ChangeLog] Pull in fix from SVN gnumeric-1-6
    branch to deal with CVE-2009-0318, an untrusted search path vulnerability
    which affected the python-loader plugin which is part of the
    gnumeric-plugins-extra package. (Closes: #513418)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 29 Jan 2009 21:20:17 +0100

gnumeric (1.6.3-5.1+etch1) stable-security; urgency=high

  * Non-maintainer upload by the Security Team.
  * Backport fix from upstream SVN:
    - CVE-2008-0668: arbitrary code execution through integer overflow in
      Excel spreadsheet HLINK handling

 -- Devin Carraway <devin@debian.org>  Sun, 30 Mar 2008 01:02:31 +0000

gnumeric (1.6.3-5) unstable; urgency=low

  * [doc/C/gnumeric.1] Typos/grammar glitches. (Closes: #410249)
  * [debian/po/it.po] Added, courtesy of Luca Monducci <luca.mo@tiscali.it>.
    (Closes: #396946)
  * [debian/po/es.po] Added, courtesy of Carlos Valdivia Yagüe
    <valyag@dat.etsit.upm.es>. (Closes: #383359)
  * [debian/po/gl.po] Added, courtesy of Jacobo Tarrio <jtarrio@debian.org>.
    (Closes: #407955)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 11 Feb 2007 21:18:59 +0100

gnumeric (1.6.3-4) unstable; urgency=low

  * Pulled in core code and translation changes from upstream CVS branch.
  * Backported packaging improvements from the 1.7.x packages in experimental,
    including:
    * Follow new python policy. (Closes: #380831)
    * [debian/control] Made lists in package descriptions render nicely in
      aptitude (Closes: #389140)
  * [debian/po/ja.po] Added, courtesy of Shimono Atsushi
    <shimono@kwasan.kyoto-u.ac.jp>. (Closes: ##384994).
  * [debian/gnumeric.mime] Add text/csv in whose favour 
    text/comma-separated-values has been depreciated in RFC 4180. 
    (Closes: #394053)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 22 Oct 2006 17:42:30 +0200

gnumeric (1.6.3-3) unstable; urgency=low

  * [debian/po/lt.po] Added, courtesy of Gintautas Miliauskas <gintas@akl.lt>.
    (Closes: #374319).
  * [debian/po/pt.po] Added, courtesy of Ricardo Silva <ardoric@gmail.com> via
    Rui Branco <ruipb@debianpt.org>. (Closes: #378890)
  * [debian/po/ru.po] Added, courtesy of Yuri Kozlov <kozlov.y@gmail.com>.
    (Closes: #379367)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon,  7 Aug 2006 21:47:06 +0200

gnumeric (1.6.3-2) unstable; urgency=low

  * Sourceful upload; should fix installability on amd64. (Closes: #365691)
  * [debian/po/nl.po] Added, courtesy of Kurt De Bree <kdebree@telenet.be>
    (Closes: #363043).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue,  9 May 2006 21:21:58 +0200

gnumeric (1.6.3-1) unstable; urgency=medium

  * New upstream release.
  * [debian/rules] Corrected sed expression to determine the upstream
    version: `+' is allowed in a debian_revision. This fixes the
    dependencies when a binNMU is made of this package. (Closes: #357936)
  * [debian/control] Updated goffice build dependency per configure.in .
    Updated pxlib-dev and libgsf-1-dev build dependencies to ensure only one
    version of libgsf is used.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 23 Mar 2006 08:36:14 +0100

gnumeric (1.6.2-3) unstable; urgency=medium

  * [ChangeLog, NEWS, README, plugins/fn-financial/functions.c,
    plugins/xbase/ChangeLog, plugins/xbase/boot.c, plugins/xbase/xbase.c,
    src/dialogs/ChangeLog, src/dialogs/dialog-stf-format-page.c, 
    src/print-cell.c, src/tools/solver/ChangeLog, src/tools/solver/solver.c]
    Updates from CVS gnumeric-1-6 branch.
  * [debian/po/fr.po] Added, courtesy of Severine Lombardo via Thomas Huriaux
    <thomas.huriaux@gmail.com> (Closes: #354543).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun,  5 Mar 2006 10:40:45 +0100

gnumeric (1.6.1-2) unstable; urgency=medium

  * [debian/gnumeric.templates, debian/gnumeric.preinst] New. Make a
    reasonable effort attempt to give the administrator the option of aborting
    an installation when there are running gnumeric processes (as those 
    processes may not be able to function properly (in particular, save their 
    data) when gnumeric is upgraded). (Closes: #286563, #290508)
  * [debian/rules] Added dh_installdebconf calls.
  * [debian/control] Added Suggests: debconf.
  * [debian/control] Dropped gnumeric-common Depends: gnumeric as it causes a
    circular dependency which is problematic in some upgrade scenarios.
    (Closes: #339925)
  * [debian/control] Added gnumeric-doc Suggests: docbook-xsl for the
    (navigation) images in the documentation. Made this a Suggests: rather
    than a Recommends: dependency as Recommends: dependencies are difficult to
    avoid in many package management frontends and the Recommends: of
    docbook-xsl itself (in particular: httpd) are not desirable on many
    systems. (Closes: #341572)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun,  4 Dec 2005 10:50:17 +0100

gnumeric (1.6.1-1) unstable; urgency=medium

  * New upstream release. Changes include:
    * Builds with current goffice. (Closes: #338669)
    * [po/it.po] Fixed a conflict between accelerators. (Closes: #334103)
  * [debian/control] Bumped goffice build dependency per configure.in; bumped
    pxlib build dependency to ensure single libgsf runtime dependency.
  * [debian/rules] The old way of inhibiting scrollkeeper from running during
    "make install" no longer worked; have it run, then remove the files it
    generates.
  * [debian/docs] Removed "TODO" as it has been removed upstream.
  * [debian/watch] Updated.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 15 Nov 2005 08:06:02 +0100

gnumeric (1.6.0-2) unstable; urgency=low

  * Upload to unstable.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue,  1 Nov 2005 21:44:07 +0100

gnumeric (1.6.0-1) experimental; urgency=low

  * New upstream release.
  * Fixed upstream: crash on close with some spreadsheets. (Closes: #329227)
  * [debian/*.md5sum] New. Checksums of historical versions of obsoleted
    conffiles.
  * [debian/rules, debian/gnumeric-common.install] Install checksum files.
  * [debian/gnumeric-common.postinst] New. Remove unmodified obsoleted schema
    files in /etc/gconf/schemas. (Closes: #264324)
  * [debian/rules] Deal with changed mandir; pass --as-needed to ld.
  * [debian/gnumeric.install] Updated now that libspreadsheet has version
    information in its filename.
  * [debian/control] Bumped goffice and libgsf build dependencies per 
    configure.in .
    Added gnumeric-plugins-extra Depends: python-gtk2. (Closes: #332509)
  * Upload to experimental due to dependencies.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 10 Oct 2005 21:17:20 +0200

gnumeric (1.5.90-1) unstable; urgency=low

  * New upstream beta release.
  * [debian/control] Bumped libgsf, goffice build dependencies per
    configure.in .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri,  9 Sep 2005 07:00:00 +0200

gnumeric (1.5.5-1) unstable; urgency=low

  * New upstream bugfix release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 29 Aug 2005 07:01:06 +0200

gnumeric (1.5.4-1) unstable; urgency=low

  * New upstream release.
  * [debian/rules] Temporarily disabled GDA and GnomeDB plugins as they 
    currently require newer versions of those libraries than are available in
    sid.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 28 Aug 2005 19:02:18 +0200

gnumeric (1.5.3-2) unstable; urgency=low

  * [debian/gnumeric-common.install] Install all translations, including those
    of the functions documentation.
  * [debian/gnumeric.install] Include manpages here, so dh_install takes them
    into account.
  * [debian/gnumeric.manpages] Dropped.
  * [debian/rules] Clean out additional unwanted files from the temporary
    installation directory; use dh_install --fail-missing rather than
    --list-missing.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 18 Aug 2005 18:19:22 +0200

gnumeric (1.5.3-1) unstable; urgency=low

  * New upstream release.
  * The following issues have been fixed upstream:
    * Page settings, including paper orientation, are now restored properly on
      load. (Closes: #195600, #236024)
    * Blank pages with print and print preview with LANG="". (Closes: #238944)
    * Off-by-one errors on xspread import. (Closes: #258964)
    * Problems setting margins. (Closes: #276707)
    * Typos in German translation. (Closes: #313746)
    * Honour the quoting setting in configurable text export. (Closes: #315187)
    * IRR function misbehaving on some arguments. (Closes: #315625)
  * [ChangeLog, src/workbook-view.c] Applied fix from upstream CVS for ugly
    warning on xls save,
  * [doc/C/gnumeric-C.omf] Restored contents from upstream CVS.
  * [debian/rules] Temporarily disabled GDA and GnomeDB plugins; they require
    newer versions of those libraries than are currently available in sid.
  * [debian/control] Mention OASIS XML, OpenOffice.org XML, StarOffice in
    package description. (Closes: #317395)
    Bumped goffice build dependency per configure.in .
  * [debian/gnumeric.mime] Add entry for OpenOffice.org Calc.
  * [debian/copyright, debian/gnumeric-doc.copyright] Updated FSF's address.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 18 Aug 2005 10:04:22 +0200

gnumeric (1.5.2-1) unstable; urgency=low

  * New upstream release.
  * Fixed upstream:
    * sumif behaviour with intersheet references. (Closes: #308346)
    * Brown bag text import problem. (Closes: #310832)
  * [debian/control] Bumped goffice and libgsf build dependencies 
    per configure.in.
  * [debian/rules, debian/gnumeric.install] Install libspreadsheet runtime
    files. Libspreadsheet is not a fully rounded separate library at this 
    point and the gnumeric binary package contains the only binaries 
    currently using it, so there is no need yet for it to be in a separate 
    package. This may well change in the future.
  * [debian/rules, debian/gnumeric.install] Build and include ssindex.
    (Closes: #311534)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 14 Jun 2005 22:38:59 +0200

gnumeric (1.5.1-1) unstable; urgency=low

  * New upstream development release.
  * [debian/rules] Clean up, following 1.4 branch.
  * [debian/control] Overhauled build dependencies.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 17 May 2005 08:11:37 +0200

gnumeric (1.4.3-6) unstable; urgency=high

  * [ChangeLog, NEWS, omf.make, src/dependent.c, xmldocs.make] Update from
    CVS gnumeric-1-4 branch; fixes include:
    * Fix crash for sheet-remove on sheets with local dynamic dependencies.
  * [debian/rules, debian/gnumeric-doc.install] Applied patch courtesy of
    Philipp Sadleder <philipp@sadleder.de> to restore the documentation files
    which were lost in -5 due to an accidental switch to upstream CVS's
    xmldocs.make. (Closes: #307883)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri,  6 May 2005 22:44:29 +0200

gnumeric (1.4.3-5) unstable; urgency=medium

  * [ChangeLog, Makefile.am, NEWS, configure.in, plugins/fn-stat/ChangeLog,
    plugins/fn-stat/functions.c, schemas/Makefile.am, src/application.c,
    src/cut-n-paste-code/goffice/gui-utils/go-action-combo-text.c,
    src/dialogs/dialog-function-select.c, src/dialogs/dialog-preferences.c,
    src/gnumeric-gconf-priv.h, src/gnumeric-gconf.c, src/gnumeric-gconf.h,
    src/gui-file.c, src/libgnumeric.c, src/libgnumeric.h, src/plugin.c,
    src/print-info.c, src/tools/ChangeLog, src/tools/Makefile.am,
    src/tools/auto-correct.c, src/tools/goal-seek.c, src/tools/goal-seek.h,
    src/wbc-gtk.c] Update from CVS gnumeric-1-4 branch; fixes include:
    * Backport fix for case sensitivity of font combo. [upstream #161382]
    * Backport TRIMMEAN fix.
    * Backport goal-seek fix.
  * [Makefile.am] Commented out references to the tools dir (which is not
    needed on non-win32).
  * Reauto*ed.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 30 Apr 2005 20:06:59 +0200

gnumeric (1.4.3-4) unstable; urgency=high

  * [debian/control] Bumped libgda2-dev and libgnomedb2-dev build dependencies
    to get runtime dependencies on libgda2-3 and libgnomedb2-4 rather than
    libgda2-1 and libgnomedb2-3.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 10 Apr 2005 10:05:20 +0200

gnumeric (1.4.3-3) unstable; urgency=high

  * [NEWS, ChangeLog, plugins/fn-math/ChangeLog,
    plugins/fn-math/functions.c, src/colrow.c, src/gnumeric-gconf.c,
    src/gnumeric-gconf.h, src/dialogs/ChangeLog,
    src/dialogs/dialog-stf-export.c] Updated from CVS gnumeric-1-4 branch to
    address
    * a crash on page setup
      http://bugzilla.gnome.org/show_bug.cgi?id=171503
    * problems which broke the sumif and countif functions
      http://bugzilla.gnome.org/show_bug.cgi?id=171509
    (Closes: #303085)
    * three leaks in structured text export which caused crashes on exit.
      http://bugzilla.gnome.org/show_bug.cgi?id=128936

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue,  5 Apr 2005 07:04:02 +0200

gnumeric (1.4.3-2) unstable; urgency=high

  * [NEWS, ChangeLog, plugins/qpro/ChangeLog, plugins/qpro/plugin.xml.in,
    po/*.po, src/gui-clipboard.c, src/gui-file.c, src/wbc-gtk.c,
    src/workbook-control.c] Fixes from CVS gnumeric-1-4 branch, including
    a fix for a crash with a non-UTF-8 filename. (Closes: #299805)
  * [debian/rules] Configure --with-python=yes. The interpreter name is
    currently not configurable.
  * [debian/README.Debian] Minor update.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 20 Mar 2005 12:18:38 +0100

gnumeric (1.4.3-1) unstable; urgency=medium

  * New upstream bugfix release, possibly the last of the 1.4 (stable) series.
  * [debian/watch] Updated.
  * [debian/rules] Cleaned up.
  * [debian/gnumeric-common.links] New.
  * [debian/gnumeric.install, debian/gnumeric-doc.install] Cleaned up.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 13 Mar 2005 17:32:09 +0100

gnumeric (1.4.2-2) unstable; urgency=high

  * Backported fixes and improvements from CVS gnumeric-1-4 branch:
    * [src/file.c] (gnm_file_saver_save) Produce an error when no proper UTF-8
      filename was produced. (Closes: #291265)
    * [po/pt_BR.po] Updated Brazilian Portuguese translation.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 23 Jan 2005 16:06:53 +0100

gnumeric (1.4.2-1) unstable; urgency=low

  * New upstream release. Changes include:
    * Redo var width content when resizing all cols at once (Closes: #288157)
    * Fix comment indicator position when zoomed (Closes: #290388)
    * src/libgnumeric.h (gnumeric_popt_options): remove from here. 
      (Closes: #286882)
    * Draw rotated text and print rotated text. (Closes: #289262)
  * [debian/control] Fixed some lintian/linda warnings.
  * [debian/gnumeric-common.install] Removed
    /usr/share/mc/templates/gnumeric.desktop

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 17 Jan 2005 21:09:29 +0100

gnumeric (1.4.1-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 14 Dec 2004 06:29:55 +0100

gnumeric (1.4.0-2) unstable; urgency=medium

  * [debian/gnumeric-doc.doc-base] Removed. The documentation is now included
    in DocBook XML format only, and doc-base doesn't handle XML docs.
    (Closes: #283700)
  * [plugins/xml_sax/xml-sax-write.c,plugins/xml_sax/ChangeLog,NEWS] Patch
    from CVS to fix exporting using the sax exporter of sheets with
    validation. (Closes: #283999)
  * [debian/rules] Build the Paradox plugin.
  * [debian/control] Added build dependency on pxlib-dev for the
    Paradox plugin; versioned this build dependency as pxlib 0.4.2-1 was
    broken (see #283067).
  * [debian/gnumeric-plugins-extra.install] Include the Paradox plugin.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat,  4 Dec 2004 13:40:33 +0100

gnumeric (1.4.0-1) unstable; urgency=medium

  * New upstream release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 29 Nov 2004 18:06:16 +0100

gnumeric (1.3.93-2) unstable; urgency=medium

  * [src/history.c, ChangeLog] Applied upstream patch to fix crash with weird
    history items. (Closes: #280346)
  * [debian/gnumeric.install, debian/gnumeric.manpages] Bring back ssconvert.
    (Closes: #281477)
  * [doc/C/functions.xml, doc/C/func.defs] Replaced by richer manually
    generated ones. (Closes: #281940)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 19 Nov 2004 17:57:48 +0100

gnumeric (1.3.93-1) unstable; urgency=low

  * New upstream release.
  * [debian/gnumeric.dirs, debian/rules] Include the schemas.
    (Closes: #280065, #280066)
  * [configure.in, ChangeLog] Fixed things for GNUMERIC_PLUGIN_LDFLAGS and
    PY_EXTRA_LIBS.
  * Regenerated auto*.
  * [src/gnumeric-gconf.c, ChangeLog] Patch from CVS HEAD:
    (go_conf_get_short_desc) return NULL if we don't have a description
    (go_conf_get_long_desc): ditto.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun,  7 Nov 2004 12:25:03 +0100

gnumeric (1.3.92-2) unstable; urgency=low

  * [debian/rules] Set 'DESTDIR' rather than 'prefix' on install, for the Perl
    plugin; this should address the FTBFS seen on some buildds.
  * [debian/gnumeric-plugins-extra.install, debian/control] Put the Perl
    plugin in gnumeric-plugins-extra.
  * [debian/control] Updated description.
  * There are some more bugs which are resolved in this version:
    * CSV export now uses the internal number information rather than the
      displayed precision. (Closes: #138192)
    * A HYPOT function has been added. (Closes: #261155)
    * There was an invalid MIME type in gnumeric.desktop. (Closes: #278429)
    * Stricter dependencies ought to ensure that if gnumeric-doc is installed
      at all, it is of the same upstream release as the gnumeric package.
      (Closes: #216588)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat,  6 Nov 2004 10:09:44 +0100

gnumeric (1.3.92-1) unstable; urgency=low

  * New upstream release; the 1.4 series will start soon.
    * The ui service error on startup has been fixed upstream.
      (Closes: #269459)
  * Applied fixes from CVS HEAD:
    * [configure.in] Cleanup; fixed Python test.
    * [plugins/gnome-db/ui.xml] Add an action to the menu tag.
  * Redid auto*.
  * Upload to unstable. Several bugs were already fixed in previous uploads to
    experimental:
    * Problems with small CSV files. (Closes: #269964, #277722, #277735)
    * Ignore whitespace in formulas wherever possible. (Closes: #250350)
    * Documentation of selection of discontinuous cells. (Closes: #256777)
  * [debian/rules]
    * Use dh_desktop. (Closes: #278725)
    * Updated the rule to redo auto* and friends.
  * [debian/control] Bumped debhelper dependency, for dh_desktop. Added build
    dependency on libperl-dev, for the Perl plugin.
  * [doc/C/gnumeric.xml] Use DocBook 4.2 to make scrollkeeper and yelp happy.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri,  5 Nov 2004 11:41:40 +0100

gnumeric (1.3.91-1) experimental; urgency=low

  * New upstream release.
  * [debian/rules, debian/gnumeric-doc.postinst, debian/gnumeric-doc.postrm]
    Use dh_scrollkeeper.
  * [debian/control] Bumped debhelper build dependency to the latest version
    with dh_scrollkeeper-related changes.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed,  6 Oct 2004 10:52:42 +0200

gnumeric (1.3.90-1) experimental; urgency=low

  * New upstream development release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu,  9 Sep 2004 08:10:48 +0200

gnumeric (1.3.2-1) experimental; urgency=low

  * New upstream development release.
  * [doc/C/bugs.xml] Added from CVS.
  * [doc/C/Makefile.am,doc/C/Makefile.in] Added bugs.xml .
  * [debian/watch] Added.
  * [debian/control] Tightened libgsf build dependencies to ensure that > 6.8
    meg xls files we export can round-trip through Excel without data loss.
    Tightened libgnomedb build dependency as 1.0.4-6 has undeclared
    dependencies on i386.
  * [debian/rules] Minor cleanup.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 30 Aug 2004 11:24:33 +0200

gnumeric (1.3.1-1) experimental; urgency=low

  * New upstream development release:
    * Ignores spaces in lots of places, notably before and after operators,
      without breaking compatibility with Excel's space operator. 
      (Closes: #250350)
    * The documentation for multiple, discontinuous cell selection has been
      updated. (Closes: #256777)
  * [debian/control] Bumped libglib2.0-dev, libgtk2.0-dev,
    libgnomeprint2.2-dev, libgnomeprintui2.2-dev build dependencies. Added
    explicit libgconf2-dev, libbonobo2-dev, libbonoboui2-dev build dependencies.
  * [xmldocs.make] Adjusted docdir path.
  * [debian/rules] Install the binary as just `gnumeric'.
  * [debian/rules, debian/control] The new yelp no longer needs to have XML
    documents pregenerated to HTML for speed.
  * [debian/gnumeric-doc.doc-base] Dropped.
  * [debian/gnumeric.install, debian/gnumeric.manpages] Removed ssconvert 
    references as ssconvert isn't being built currently.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 19 Jul 2004 21:35:58 +0200

gnumeric (1.2.13-2) unstable; urgency=low

  * [po/ChangeLog,po/cs.po,po/en_GB.po,po/fr.po,po/ja.po,po/nl.po,po/pt_BR.po]
    Updated translations from CVS.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 15 Jul 2004 22:07:14 +0200

gnumeric (1.2.13-1) unstable; urgency=high

  * New upstream bugfix release.
  * High urgency upload as gnumeric is involved in the cupsys transition for
    sarge.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 23 Jun 2004 19:06:13 +0200

gnumeric (1.2.12-3) unstable; urgency=medium

  * [debian/control] Tightened libgda2-dev and libgnomedb2-dev build
    dependencies.
  * [README,po/ChangeLog,po/it.po,po/de.po] Updated from CVS gnumeric-1-2
    branch.
  * [plugins/xbase/ChangeLog,plugins/xbase/xbase.c] Update from CVS. Don't
    crash on empty .dbf file.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 13 Jun 2004 10:46:31 +0200

gnumeric (1.2.12-2) unstable; urgency=medium

  * [debian/rules] With GNOME 2.6's yelp, don't try to build HTML docs.
  * [debian/control] Removed duplicate build dependency. Tightened all the
    build dependencies needed to produce the core `gnumeric' package to GNOME
    2.6 versions that are in sid. In particular, tightened the libgnomeprint
    build dependency to ensure that a running gnumeric process won't crash due
    to being loaded against both gnutls10 (which GNOME 2.6 uses) and gnutls7
    (which older versions of libgnomeprint2.2-0 used via cupsys). 
    (Closes: #251213).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 31 May 2004 17:13:36 +0200

gnumeric (1.2.12-1) unstable; urgency=medium

  * New upstream bugfix release. Changes include:
    * Fix crash when undoing a cut from a different workbook. (Closes: #243484)
  * [debian/control] Bumped libgsf build dependencies.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu,  6 May 2004 19:57:02 +0200

gnumeric (1.2.11-1) unstable; urgency=medium

  * New upstream bugfix release.
  * Configure with LDFLAGS="-Wl,-O1". This roughly cuts the number of buckets
    in the gnumeric binary (as given by "readlink -I") in half.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 19 Apr 2004 07:58:34 +0200

gnumeric (1.2.10-1) unstable; urgency=medium

  * New upstream bugfix release reverting an incomplete patch to the duration 
    functions that disabled them. (Closes: #243168)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 12 Apr 2004 16:13:48 +0200

gnumeric (1.2.9-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu,  8 Apr 2004 11:19:22 +0200

gnumeric (1.2.8-5) unstable; urgency=medium

  * [configure.in] substitute WARN_CFLAGS as
    src/cut-n-paste-code/foocanvas/libfoocanvas/Makefile references it 
    directly.
  * [aclocal.m4, ltmain.sh, configure] Regenerated using current libtool
    in order to cut down direct dependencies.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat,  3 Apr 2004 20:40:11 +0200

gnumeric (1.2.8-4) unstable; urgency=medium

  * [po/ChangeLog, po/ga.po, po/pt_BR.po] Updated translations from CVS.
  * [plugins/excel/*] Excel import/export fixes from CVS (at upstream's
    recommendation).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 22 Mar 2004 08:00:47 +0100

gnumeric (1.2.8-3) unstable; urgency=medium

  * [po/ChangeLog, po/cs.po, po/es.po, po/hr.po, po/nl.po, po/pt_BR.po,
    po/sv.po] Updated translations from CVS.
  * [src/cut-n-paste-code/goffice/graph/plugins/plot_xy/gog-bubble-prefs.glade]
    Typo fix from CVS.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 21 Mar 2004 11:15:41 +0100

gnumeric (1.2.8-2) unstable; urgency=medium

  * [debian/control] Traded in gnumeric-doc Conflicts: gnumeric (<<
    ${Upstream-Version}) for gnumeric-doc Suggests: gnumeric (>=
    ${Upstream-Version}) to break a dependency loop that forced the removal
    when upgrading. (Closes: #238637).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 18 Mar 2004 18:10:03 +0100

gnumeric (1.2.8-1) unstable; urgency=low

  * New upstream bugfix release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 17 Mar 2004 07:55:22 +0100

gnumeric (1.2.6-3) unstable; urgency=low

  * [src/parse-util.c] Updated from CVS to fix a pretty-print (and thus
    saving) problem with ranges like $B$1:$B1. (Closes: #235120)
  * [src/commands.c] Fixed incorrect string. (Closes: #233089)
  * [po/ChangeLog, po/cs.po, po/en_CA.po, po/es.po, po/ga.po, po/nl.po,
    po/pt_BR.po, po/sv.po] Updates from CVS.
  * [debian/gnumeric.menu] Quoted needs and section values.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu,  4 Mar 2004 18:47:56 +0100

gnumeric (1.2.6-2) unstable; urgency=low

  * [debian/control] Bumped yelp build dependency to ensure the HTML
    documentation links to the DocBook stylesheet images in their current
    location under /usr/share/xml rather than /usr/share/sgml .
  * [debian/control, debian/rules, debian/gnumeric.files,
    debian/gnumeric-common.files] Introduced a gnumeric-common package for
    architecture independent data. (Closes: #233367)
  * [po/ChangeLog, po/el.po, po/hr.po, po/pt_BR.po] Updates from CVS.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 18 Feb 2004 20:42:59 +0100

gnumeric (1.2.6-1) unstable; urgency=medium

  * New upstream bugfix release, bringing roundtrip saving of macros in xls.
  * [debian/rules] Don't configure --enable-iso-c; with gcc 2.95 it breaks the
    build. (Closes: #218710)
  * [debian/rules] No longer change the DTD reference to a local file as
    scrollkeeper 0.3.13 and newer default to not using the network to retrieve
    required DTDs.
  * [debian/rules] Update the link for the docbook images .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri,  6 Feb 2004 15:33:49 +0100

gnumeric (1.2.5-2) unstable; urgency=high

  * [debian/rules] Touch up the generated HTML documentation so references and
    images work. (Closes: #227524)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 20 Jan 2004 15:16:48 +0100

gnumeric (1.2.5-1) unstable; urgency=medium

  * New upstream release.
    Includes some images that were previously missing from the documentation
    and fixes some file references in the documentation. (Closes: #227524)
  * Put documentation under /usr/share/gnome/help so images work; symlink
    to it from /usr/share/gnumeric/*/... so that help buttons in dialogs work. 
    (Closes: #227630)
  * No longer build with bonobo, after consulting upstream. (Closes: #115828)
  * [debian/control] Dropped bonobo build dependencies.
  * [debian/rules, debian/gnumeric.postinst, debian/gnumeric.prerm] Use
    dh_gconf for schema (de)registration.
  * [debian/control] Bumped debhelper build dependency so we have a working
    dh_gconf; use ${misc:Depends}. Replaced intltool build dependency by
    libxml-parser-perl  one.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 19 Jan 2004 08:24:53 +0100

gnumeric (1.2.4-4) unstable; urgency=medium

  * [src/dialogs/dialog-printer-setup.c, src/dialogs/dialog-stf-format-page.c]
    #include <gtk/gtkmenuitem.h> to get a proper declaration of
    gtk_menu_item_new_with_label and thereby fix crashes on 64-bit platforms.
    (Closes: #226382)
  * [debian/control] Versioned the intltool build dependency. (Closes: #226194)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue,  6 Jan 2004 19:03:39 +0100

gnumeric (1.2.4-3) unstable; urgency=medium

  * [debian/rules] Fixed gnome-logo-icon.png link.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri,  2 Jan 2004 23:29:52 +0100

gnumeric (1.2.4-2) unstable; urgency=medium

  * [debian/control] Added build dependency on yelp for yelp-pregenerate.
  * [debian/rules] Simplify things by using dh_link.
  * [debian/rules] Speed up documentation access with yelp by including 
    prerendered HTML in gnumeric-doc. (Closes: #225706)
  * [debian/gnumeric-doc.doc-base] Back; updated.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu,  1 Jan 2004 21:59:03 +0100

gnumeric (1.2.4-1) unstable; urgency=medium

  * New upstream release.
  * [debian/control] Added build dependency on intltool.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 29 Dec 2003 14:33:13 +0100

gnumeric (1.2.3-2) unstable; urgency=medium

  * At upstream's request, applied patch from CVS to fix some problems with
    xls export.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 26 Dec 2003 22:38:12 +0100

gnumeric (1.2.3-1) unstable; urgency=medium

  * New upstream stable release. Changes include:
    * Fixed encoding of the author field in the summary, the lack of which
      cause problems reopening gnumeric files for users with non-ASCII
      characters in their GECOS field. (Closes: #224482)
    * Fixed crashes and leaks with chart values and labels. (Closees: #223402)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 24 Dec 2003 08:48:10 +0100

gnumeric (1.2.2-1) unstable; urgency=medium

  * New stable upstream release. Changes include:
    * Header and footer fonts can now be configured, under File -> Preferences
      -> Font->Footer/Header. (Closes: #210418)
      For now, gnumeric needs to be restarted for changes to take effect.
    * Include several missing images in the documentation. (Closes: #218580)
  * [debian/control] Follow tightended gda, gnomedb, libgnomeprint,
    libgnomeprintui build dependencies.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri,  5 Dec 2003 18:09:37 +0100

gnumeric (1.2.1-3) unstable; urgency=high

  * [debian/rules, debian/control] Keep gnumeric and gnumeric-doc in upstream
    version lock-step to ensure the documentation can be found.
  * [debian/control] Debian GNOME 2.4 transition:
    * Bumped libbonobo2-dev, libbonoboui-dev, libgnome-dev, libgnomeui-dev,
      libgsf-1-dev, libgsf-gnome-1-dev, libgnomedb2-dev, 
      libgnomeprint2.2-dev, libgnomeprintui2.2-dev build dependencies.
    * Dropped bonobo-activation build dependency.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 20 Oct 2003 18:53:32 +0200

gnumeric (1.2.1-2) unstable; urgency=high

  * Upload to unstable now that 1.2.0-1 has entered testing.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 17 Oct 2003 07:56:41 +0200

gnumeric (1.2.1-1) experimental; urgency=low

  * New upstream release.
    * Upload to experimental to give 1.2.0-1 a chance to go into testing RSN.
    * No longer uses gdk_pango_context_get (which in combination with
      -DGDK_MULTIHEAD_SAFE caused segfaults on ia64). (Closes: #198690)
  * [debian/gnumeric-doc.postinst] Have scrollkeeper-update process our OMF
    file only.
  * [debian/gnumeric.install] Include the new ssconvert conversion utility.
  * [debian/gnumeric.manpages] Add ssconvert(1).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu,  9 Oct 2003 10:38:49 +0200

gnumeric (1.2.0-1) unstable; urgency=low

  * New upstream stable release.
    * A dynamic dependencies leak was fixed and the performance when deleting
      multiple sheets at once was improved. (Closes: #194255)
    * An issue with expression relocation with cross sheet references was
      fixed. (Closes: #206873)
    * A check for zero-size files was fixed which results in a more sensible
      behaviour when trying to open an empty file. (Closes: #208345)
    * Data -> Sort now takes along comments. (Closes: #208913)
  * Reorganised binary packages after complaints that they were too granular.
  * [debian/rules, debian/gnumeric-doc.files] Updated now that the 
    documentation is installed in the location where the bonobo-enabled 
    gnumeric looks (/usr/share/gnumeric/*-bonobo/_share_/gnome/help/...),
    so our workaround is no longer needed.
  * [debian/control] gnumeric-doc now Recommends: gnome-desktop-data for
    gnome-logo-icon.png .
  * [debian/control, debian/rules] Build against python 2.3 again.
    (Closes: #209292)
  * [debian/control] Tightened gda build dependency so the gda plugin is built
    again; added build dependency so the gnome-db plugin is built as well.
    Follow configure.in's tightening of GSF dependencies to 1.8.2 to ensure 
    that libole2 based gnumeric-1.0.x can read xls files produced by this 
    version.
  * [debian/rules, debian/*.files, debian/*.install] Switched to dh_install.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 15 Sep 2003 12:29:30 +0200

gnumeric (1.1.20-2) unstable; urgency=low

  * [doc/C/gnumeric.1] Fixed the incorrect section argument which caused it to
    be installed with a bogus filename. (Closes: #207705)
  * [debian/control]
    * Added build dependency on python-gtk2-dev for pygobject so the Python
      plugins are built again. (Closes: #208880)
    * Corrected the description of gnumeric-doc. (Closes: #207423)
    * As yelp is the only reasonable viewer for the DocBook XML format which
      is now used for the documentation, up gnumeric-doc's dependency on it to
      Recommends: .
    * Fixed permissions of the buildinfo file.
    * Updated Standards-Version.
  * [debian/README] Updated.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat,  6 Sep 2003 17:24:31 +0200

gnumeric (1.1.20-1) unstable; urgency=low

  * New upstream release. Fixed issues include
    * Exporting to text mangles Latin1 characters to escape sequence.
      (Closes: #189281)
    * UI behaviour in File -> Page Setup. (Closes: #194951)
    * LaTeX export of German umlauts no longer works. (Closes: #196740)
    * Sheet with apostrophe in name causes Data -> Sort not to work. 
      (Closes: #197036)
  * [debian/control]
    * Finally we don't need gal anymore.
    * Updated Standards-Version.
    * Tightened the gtk2 build dependency to ensure we take advantage of 
      versioned symbols in libpng.
    * Removed docbook-utils, gnome-doc-tools from build dependencies, as 
      there's no more building involved for the documentation.
    * Dropped eog suggestion as gnumeric now uses Gdkpixbuf for images.
  * [debian/rules, debian/control] Use dh_buildinfo .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 22 Aug 2003 09:24:24 +0200

gnumeric (1.1.19-3) unstable; urgency=medium

  * The 'and deliver us from gal' upload.
  * [debian/control] Round and round the GAL treadmill goes.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 11 Aug 2003 23:05:13 +0200

gnumeric (1.1.19-2) unstable; urgency=medium

  * [debian/control, debian/rules] Build against python 2.3.
  * [debian/control] Updated Standards-Version.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 11 Aug 2003 21:10:22 +0200

gnumeric (1.1.19-1) unstable; urgency=medium

  * New upstream release. This is the first GNOME2 release of gnumeric with
    (limited) graph support. Fixed issues include
    * Segfault on opening a gnumeric file. (Closes: #193276)
    * Data->Sort dialog broken. (Closes: #193725)
  * [debian/rules] Clean out generated files containing paths.
  * [debian/control] Updated libgsf build dependencies; added new libart build
    dependency (for graphing).
  * [Makefile.am, src/Makefile.am] Updated from CVS to fix the generated
    files.
  * Removed leftovers from 1.0.x evolution support.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon,  9 Jun 2003 10:42:36 +0200

gnumeric (1.1.17-4) unstable; urgency=medium

  * Redid auto* to get rid of leftover experimental change in sc plugin
    linking.
  * [debian/rules] Build without optimisation on m68k to try to work around an
    ICE on that architecture (see #177840).
  * [debian/control] Round and round the GAL treadmill goes. (Closes: #196331)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri,  6 Jun 2003 20:29:34 +0200

gnumeric (1.1.17-3) unstable; urgency=medium

  * [debian/control]
    * Updated gnumeric-doc's Replaces.
    * Updated Standards-Version.
  * [debian/rules]
    * Hack in a symlink so the documentation contents are found. 
      (Closes: #193637)
    * Add a link for the gnome-logo-icon.png reference as well.
    * Install in debian/tmp first and ensure everything needed gets moved into
      a package.
  * [debian/gnumeric.files] New.
  * [doc/C/gui-elements.xml, doc/C/worksheet.xml] Fixed file references by
    added missing extensions.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 17 May 2003 17:22:06 +0200

gnumeric (1.1.17-2) unstable; urgency=medium

  * [debian/gnumeric-doc.files] Updated locations so the -doc package is fine
    again.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 15 May 2003 07:36:25 +0200

gnumeric (1.1.17-1) unstable; urgency=low

  * New upstream release. Changes include fixes for
    * Crash when doing Paste Special under certain circumstances.
      (Closes: #178810)
    * sum(A1:A2) with cutting and pasting of A1 / A2 doesn't work.
      (Closes: #181059)
  * [debian/control] Updated libgsf build dependencies.
  * Included fixes for some minor issues from CVS HEAD.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 12 May 2003 18:38:14 +0200

gnumeric (1.1.16-7) unstable; urgency=medium

  * [debian/control] Round and round the GAL treadmill goes. (Closes: #191786)
  * [debian/gnumeric.mime] Register as editor for the various MIME types and
    as composer for application/x-gnumeric. (Closes: #190741)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun,  4 May 2003 18:52:24 +0200

gnumeric (1.1.16-6) unstable; urgency=low

  * [debian/control] The great GAL treadmill again. Bah. Build against latest
    GAL. (Closes: #185021)
  * [debian/control] Added gnumeric Conflicts: gnumeric1.0-doc to simplify
    switching (yelp can't handle the DocBook SGML that gnumeric1.0-doc is in).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 18 Mar 2003 07:12:46 +0100

gnumeric (1.1.16-5) unstable; urgency=low

  * Use a local file rather than a URL for the DocBook DTD for proper
    documentation registration; thanks Johannes Rohr. (Closes: #180742)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 15 Feb 2003 17:31:28 +0100

gnumeric (1.1.16-4) unstable; urgency=low

  * [schemas/gnumeric-dialogs.schemas, schemas/gnumeric-general.schemas]:
    specify <list_type> to fix the warnings on schema installation.
    (Closes: #179474)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun,  9 Feb 2003 19:06:37 +0100

gnumeric (1.1.16-3) unstable; urgency=low

  * First upload of gnumeric 1.1.x to sid. While 1.1.x is still a development
    series, it is sufficiently mature in both upstream's and my opinion for
    inclusion in sid. It still lacks graphing capabilities. If you require
    those, use the gnumeric1.0 packages.
  * Many bugs were fixed during 1.1.x development:
    * Signedness issues (Closes: #1628292)
    * Integration into the GNOME object activation framework. 
      (Closes: #128635)
    * Icons when using a light-on-dark theme. (Closes: #106544)
    * Handling of Excel files with 1904 date convention. (Closes: #122365)
    * Overly zealous autocompletion. (Closes: #140988)
    * Checking of errors on write. (Closes: #147093)
    * Hardcoded font descriptor. (Closes: #147797)
    * Warning messages on with euro locale. (Closes: #150860)
    * Loss of monetary data formatting with euros. (Closes: #151520)
    * Locale-dependent decimal point in LaTeX export. (Closes: #152950)
    * Export of italic numbers to LaTeX. (Closes: #154997)
    * Maximum number of columns. (Closes: #156374)
    * Parentheses with summation button. (Closes: #163820)
    * Broken defined name information in Excel export. (Closes: #176025)
    * Window too wide with xinerama. (Closes: #102699)
    * Assertion failures with print preview. (Closes: #150280, #169080)
    * Unfortunate format for result of subtracting dates. (Closes: #150783)
    * Bad user interface design for sheet handling. (Closes: #99815, #112520)
    * Superfluous question when exporting the only sheet. (Closes: #149605)
    * Lack of Lotus 1-2-3 import filter. (Closes: #175427)
  * [debian/control]
    * Added Conflicts, Replaces for the corresponding gnumeric1.0 packages.
    * Dropped guppi-gnumeric, evolution suggestions as the GNOME2 port can't
      take advantage of those (yet).
    * Suggest yelp rather than gnome-help as yelp, unlike gnome-help, handles
      DocBook XML.
  * Fixed some issues noted by Johannes Rohr:
    * [debian/rules] Actually install gnumeric-component.
    * Fixed the path to gnumeric-component in 
      /usr/lib/bonobo/servers/GNOME_Gnumeric.server .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu,  6 Feb 2003 21:58:01 +0100

gnumeric (1.1.16-2) experimental; urgency=low

  * gda 0.10.0 (needed for gnumeric-gda) has been packaged. Updated build 
    dependencies accordingly.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed,  5 Feb 2003 08:36:33 +0100

gnumeric (1.1.16-1) experimental; urgency=low

  * New upstream development release.
  * The new libgda has been released upstream, but isn't available as a
    package yet, so gnumeric-gda remains broken.
  * Updated/changed build dependencies: libgal2.0-dev, libgnomeprint2.2-dev,
    libgsf-1-dev, libgsf-gnome-1-dev, libgtk2.0-dev (>= 2.2.0-1 so the
    functions that bring xinerama support are available).
  * Updated Standards-Version.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 31 Jan 2003 20:18:20 +0100

gnumeric (1.1.15-1) experimental; urgency=low

  * New upstream development release.
  * Updated build dependencies.
  * gnumeric-gda is now broken: this release of gnumeric needs an unreleased 
    and unpackaged version of libgda.
  * [debian/gnome-gnumeric.xpm] Replaced by one that uses the menu system's
    color map.
  * [debian/rules] Configure --libexecdir=/usr/bin .
  * [debian/gnumeric-doc.dirs] Removed HTML dir as the documentation is now
    distributed in DocBook XML.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed,  1 Jan 2003 12:24:38 +0100

gnumeric (1.1.14-1) experimental; urgency=low

  * New upstream development release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 24 Dec 2002 11:20:33 +0100

gnumeric (1.1.13-1) experimental; urgency=low

  * New upstream development release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 15 Nov 2002 13:04:15 +0100

gnumeric (1.1.12-1) experimental; urgency=low

  * New upstream development release.
  * Versioned the build-depends on libgda-dev to deal with broken headers.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 15 Nov 2002 13:04:15 +0100

gnumeric (1.1.11-1) experimental; urgency=low

  * New upstream development release.
  * Rebuild with the current libgal2; updated build dependencies accordingly.
  * [debian/control] Corrected gnumeric-doc's section.
  * [doc/C/keybinding-appendix.xml] Added from CVS.
  * [doc/C/Makefile.am] Updated accordingly.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri,  1 Nov 2002 20:00:03 +0100

gnumeric (1.1.10-1) experimental; urgency=low

  * New upstream development release.
  * [debian/control] Tightened libgsf(-gnome) build dependencies, just in case.
  * [debian/control] Build-depend on scrollkeeper so the OMF file gets 
    installed.
  * [debian/gnumeric-doc.files] Capture the OMF file; removed
    /usr/share/gnome/help/ .
  * [debian/gnumeric-doc.doc-base] Removed as gnumeric-doc no longer contains
    documentation in a format which doc-base knows how to deal with.
    (Closes: #165804)
  * The upstream tarball now includes the figures again, so gnumeric-doc does 
    as well. (Closes: #163768)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 27 Oct 2002 11:57:53 +0100

gnumeric (1.1.9-2) experimental; urgency=low

  * Put /usr/share/gnome/help/gnumeric/*/topic.dat in gnumeric-doc where they
    belong; added corresponding Replaces.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue,  8 Oct 2002 19:05:08 +0200

gnumeric (1.1.9-1) experimental; urgency=low

  * New upstream development release.
  * Implemented policy 3.5.7 .

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed,  2 Oct 2002 03:05:44 +0200

gnumeric (1.1.8-2) experimental; urgency=low

  * Register schemas with gconf, as noted by Marek Habersack.
  * Create /usr/share/doc/gnumeric-doc/html/C so dhelp installation works.
  * Updated description in control file.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 30 Aug 2002 16:08:57 +0200

gnumeric (1.1.8-1) experimental; urgency=low

  * New upstream development release.
  * Reworked build dependencies.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 27 Aug 2002 17:19:57 +0200

gnumeric (1.1.7-1) experimental; urgency=low

  * New upstream development release of gnumeric; GNOME2 version. 
    (Closes: #147632)
    In experimental for now.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 15 Aug 2002 21:19:42 +0200

gnumeric (1.0.6-1) unstable; urgency=high

  * New upstream maintenance release.
  * urgency high to have a chance of getting it into woody; in the current 
    version in woody, multi-line entry is still broken (#140522).

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 14 Apr 2002 17:37:29 +0200

gnumeric (1.0.5-4) unstable; urgency=medium

  * Added icon to the menu entry, courtesy of Ben Burton <benb@acm.org>.
    (Closes: #140869)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed,  3 Apr 2002 20:55:40 +0200

gnumeric (1.0.5-3) unstable; urgency=medium

  * Packaged the GDA plugin now that GDA has gone into main. (Closes: #129056)
  * [plugins/gda/ChangeLog, plugins/gda/plugin-gda.c] Minor changes to get the 
    GDA plugin to build.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 29 Mar 2002 17:01:29 +0100

gnumeric (1.0.5-2) unstable; urgency=medium

  * Moved the OMF file to the -doc package.
  * Handle scrollkeeper documentation (de)registration the right way, i.e. 
    at package (de)installion time rather than at package build time. 
    (Closes: #138079)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 13 Mar 2002 12:18:06 +0100

gnumeric (1.0.5-1) unstable; urgency=medium

  * New upstream release. (Closes: #130224)
  * Don't include SGML sources in the -doc package.
  * Added SGML files from CVS (gnome_1_4 branch) that appear to have been left 
    out of the upstream tarball accidentally.
  * Made the scrollkeeper stuff work.
  * Fixed lintian warnings about python plugins code files being marked
    executable.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 10 Mar 2002 14:57:49 +0100

gnumeric (1.0.4-2) unstable; urgency=medium

  * Actually register as a MIME handler. (Closes: #135178).
  * Added a README.Debian to point to related packages, as many users do not 
    notice Suggests: dependencies.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 22 Feb 2002 14:32:22 +0100

gnumeric (1.0.4-1) unstable; urgency=high

  * New upstream release:
    * "Don't confuse the calling context with the view to save.", i.e.
      don't save to the wrong filename. (Closes: #131561)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 31 Jan 2002 08:18:59 +0100

gnumeric (1.0.3-2) unstable; urgency=high

  * Release manager has frozen libgal's ABI at libgal19 for woody, so link 
    against GAL dynamically again, and bump the build dependency accordingly.
  * Separate copyright file for gnumeric-doc.
  * Include symlinks for IDL files in /usr/share/idl . (Closes: #128629)
  * [debian/gnumeric.mime] Added application/x-applix.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 26 Jan 2002 19:56:18 +0100

gnumeric (1.0.3-1) unstable; urgency=high

  * New upstream release.
  * [debian/rules] Added explanation for why no GDA plugin is built.
  * [src/item-grid.c] Disabled harmless demo warning. (Closes: #130305)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 22 Jan 2002 16:43:51 +0100

gnumeric (1.0.2-1) unstable; urgency=high

  * New upstream release.
  * No longer build -fsigned-char.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 20 Jan 2002 16:53:57 +0100

gnumeric (1.0.1-1) unstable; urgency=high

  * New upstream release:
    * Signedness fixes for architectures where char is unsigned by default.
      (Closes: #127009)
    * GAL requirement bumped. 

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon,  7 Jan 2002 00:21:53 +0100

gnumeric (1.0.0-1) unstable; urgency=high

  * New upstream release, with magic version number.
  * Build -fsigned-char for now, while upstream looks into char (un)signedness
    problems.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 31 Dec 2001 15:29:18 +0100

gnumeric (0.99.1-1) unstable; urgency=high

  * New upstream release.
  * Python 2.2 has been released, so build against that.
  * Verified that links to images in the documentation are fine now that we
    build the docs again. (Closes: #126332)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 29 Dec 2001 14:15:36 +0100

gnumeric (0.99.0-1) unstable; urgency=high

  * New upstream release:
    * currency order when using locales fixed. (Closes: #67301)
  * Reenabled building of documentation which seems to work again.
  * [debian/control]
    * Added build dependency on gnome-doc-tools for the relevant SGML stuff.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 16 Dec 2001 16:51:03 +0100

gnumeric (0.76-4) unstable; urgency=high

  * Explicitly build-depend on a libglib1.2-dev known to contain
    /usr/lib/libgmodule.la to fix ARM build.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun,  9 Dec 2001 11:05:23 +0100

gnumeric (0.76-3) unstable; urgency=high

  * [debian/control] Build-depend on GPL-compatibly licensed python2.1-dev 
    package.
  * Conform to python policy. (Closes: #121761)
  * [debian/rules] Clean out gmo files.
  * gnumeric-python changes by Matthias Klose:
    * Build with python, version 2.1 (Closes: #120181).
    * Add gnumeric-python.{postinst,prerm} files to compile/remove python 
      files.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat,  8 Dec 2001 15:01:20 +0100

gnumeric (0.76-2) unstable; urgency=high

  * The upload of 0.75-1 was rejected, so once again:
    * Acknowledge NMUs. (Closes: #55096,#62429,#62430,#64887,#94017,#96708,#98779,#99639,#99679,#100111,#101059,#102047,#102270,#102406,#103489,#103776,#104031,#104908,#105274,#105344,#106392,#106796,#107115,#107434,#107567,#107661,#107797,#107982,#107988,#108303,#108826,#108988,#109466,#109496,#109827,#110747,#110844,#110992,#111566,#112087,#112251,#112252,#113745,#114793,#114805,#115216,#115237,#117870,#117983,#117985,#118213,#118354,#119514)
    * [debian/control] List plugins in gnumeric-python's description. 
      (Closes: #119817)
  * Applied patch by Karl Eichwalder to correct the German l10n:
    distinguish "tab" into "Reiter" (for tabbed window) and "Tabulator"
    (for "\t"). (Closes: #121233)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 27 Nov 2001 22:48:16 +0100

gnumeric (0.76-1) unstable; urgency=high

  * New upstream release.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 20 Nov 2001 21:18:03 +0100

gnumeric (0.75-1) unstable; urgency=high

  * New maintainer.
  * [debian/control]
    * List plugins in gnumeric-python's description. (Closes: #119817)
    * Reworked gnumeric's description a bit as well.
    * Suggest "guppi-gnumeric" (which the next libguppi13 will provide) for 
      graphing capabilities.
    * Removed temporary explicit build dependency on libfreetype6-dev and 
      bumped libgnomeprint-dev build dependency to a version that declares a 
      dependency on libfreetype6-dev.
  * [configure.in]
    * With the updated libgnomeprint-dev build dependency, printConf.sh takes
      care of including the gdk-pixbuf headers for us.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 19 Nov 2001 20:41:48 +0100

gnumeric (0.75-0.2) unstable; urgency=high

  * [debian/control]
    * If /etc/paper.config isn't available, previewing and printing fails. 
      Added a dependency on a recent enough gnome-libs-data known to include 
      that file to prevent these problems. (Closes: #117983)
    * Tightened the libgnomeprint-dev build dependency as older versions may
      segfault in their postinst, causing build failures with the build 
      daemons.
    * Temporarily added build dependency on libfreetype6-dev which is needed 
      for gnome-print but not yet declared by libgnomeprint-dev.
    * Changed Suggests: evolution-ssl | evolution to Suggests: evolution as
      evolution-ssl now Provides: evolution.
    * Removed the Suggests: guppi as the new version isn't packaged yet and
      packaging changes are expected.
  * [configure.in] Remove es_* from ALL_LINGUAS as their .po files are quite
    incomplete and out of date. (Closes: #119514)
  * [debian/rules] Clean out files that autogen.sh may have updated.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 14 Nov 2001 16:23:01 +0100

gnumeric (0.75-0.1) unstable; urgency=high

  * New upstream release.
    * Tightened the libole2-dev build dependency as per README.
  * Previous upload already fixed compilation problems relating to gdk
    pixbuf's headers. (Closes: #118354)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon,  5 Nov 2001 22:11:54 +0100

gnumeric (0.74-0.1) unstable; urgency=high

  * New upstream release:
    [debian/control] Tightened build dependency on GAL.
  * [configure.in]
    * Updated comments on GAL.
    * Handle new gdk pixbuf headers location.
  * Put the Python(using) plugins in a package of their own to reduce the 
    main gnumeric package's library dependencies. Build them against 
    Python 1.5, which is licensed under a GPL-compatible license.
    (Closes: #117985, #117870, #118213)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun,  4 Nov 2001 20:35:39 +0100

gnumeric (0.72-0.2) unstable; urgency=high

  * Included Evolution-Composer.idl in our sources, and modified debian/rules, 
    configure.in, idl/Makefile.am to use the local copy. Removed build 
    dependencies on Evolution, as it is currently a problematic package to 
    build on some of our architectures, which prevents us from propagating 
    to testing.
  * Extended the motivation of --with(out) feature choices in debian/rules.
  * Do away with the separate call of configure by passing configure flags to
    autogen.sh .
  * Use "install -p" to preserve timestamps. 

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 21 Oct 2001 15:30:55 +0200

gnumeric (0.72-0.1) unstable; urgency=high

  * New upstream release.
  * Updated build dependencies: changed python-dev (which has become a dummy
    package) to python1.5-dev.
  * [configure.in] Honour DEB_BUILD_OPTIONS as per policy.
  * Build in a separate build directory.
  * Suggest guppi.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 20 Oct 2001 09:59:51 +0200

gnumeric (0.71-0.3) unstable; urgency=high

  * The build daemons always seem to pick the first of ORed build dependencies.
    Put evolution-dev before evolution-ssl-dev as it should be available to 
    all.
  * The latest libgnome-dev has been built against the latest liborbit-dev, so
    that liborbit's includes like orb/orbit.h are found again. Updated the
    build dependencies accordingly.
  * Replaced src/parser.y with the CVS version which was changed to deal with 
    the problem with saving large floats that Johann Spies noted. 
    Added build dependency on bison. (Closes: #115216)
  * Clean out more generated files.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 14 Oct 2001 14:14:44 +0200

gnumeric (0.71-0.2) unstable; urgency=medium

  * Use macros/autogen.sh to set up the build stuff.
  * xml-i18n-tools has been replaced by intltool. Updated build dependency and 
    have autogen.sh take care of it. (Closes: #115237)
  * Following upstream's request, added a Suggests: eog which gnumeric can use
    as a component to view images.
  * Tightened bonobo build dependency as per CVS changes ("to fix some 
    crashes in printing and fix some stale docs").
  * Enabled support for sending spreadsheets via Evolution, which seems to work
    fine. Added build dependency on evolution-ssl-dev or evolution-dev and a 
    matching Suggests:.
  * Replaced GNOME_Gnumeric.oaf.in with the CVS version which disables the
    "Embeddable Grid Component Factory" as well.
  * [debian/rules] Documented the reasons why we disable some features.
  * [configure.in] Documented why we link against GAL statically.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 12 Oct 2001 11:55:09 +0200

gnumeric (0.71-0.1) unstable; urgency=high

  * New upstream release:
    * Changes to current cell are now saved. (Closes: #113745)
  * [GNOME_Gnumeric.oaf.in] Disabled "Embeddable Grid Component" as per
    upstream recommendations (http://bugzilla.gnome.org/show_bug.cgi?id=62007).
    (Closes: #114793).
  * [configure.in]
    * Removed plugins/psiconv/Makefile from AC_OUTPUT which broke builds.
    * Permanently leave the GAL red queen's race by linking statically 
      against libgal. (Closes: #114805)
  * [debian/control]
    * Tightened xml-i18n build requirements per README.
    * Loosened GAL requirements.
    * Depend on docbook-utils rather than cygnus-stylesheets which is a dummy
      package nowadays.
  * [debian/rules]
    * Rely on upstream's generated on-line help as we currently don't have
      a gnome-doc-tools package (see #100954) needed to deal with the
      "DTD DocBook PNG Variant V1.0" used for gnumeric's documentation.
    * Call autoheader.
    * Call automake "--add-missing".
    * We back to using 'configure.in' rather than 'configure.ac', so don't
      remove that file, but do clean out a lot of other generated files.
  * [debian/copyright] Refer to AUTHORS file for list of contributors.
  * Fixed some minor compilation problems; see the source's ChangeLog files.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue,  9 Oct 2001 20:55:36 +0200

gnumeric (0.70-0.6) unstable; urgency=high

  * Applied patch from upstream CVS to prevent segfaulting due to Python 
    attempting to directly modify environment strings. (Closes: #112087)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat, 15 Sep 2001 19:35:17 +0200

gnumeric (0.70-0.5) unstable; urgency=high

  * Updated build-dependency on automake (closes: #110992)
  * NMU, authorized by non-maintainer :) 

 -- Martijn van de Streek <martijn@foodfight.org>  Mon,  3 Sep 2001 12:37:28 +0200

gnumeric (0.70-0.4) unstable; urgency=high

  * Fixed run-time help.
  * [debian/copyright] Updated list of contributers from AUTHORS.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun,  2 Sep 2001 16:31:35 +0200

gnumeric (0.70-0.3) unstable; urgency=high

  * Moved documentation under /usr/share/doc so dwww can access it.
    (Closes: #110844)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sat,  1 Sep 2001 13:03:27 +0200

gnumeric (0.70-0.2) unstable; urgency=high

  * Rebuild against latest libgal, which still can't coexist with older
    versions of itself. (Closes: #110747)
  * Bumped gal build dependency to current version in unstable.
  * Tightened build dependencies as per gnumeric CVS:
    * Bumped bonobo dependency.
    * Bumped gnome-print dependency.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Fri, 31 Aug 2001 21:10:24 +0200

gnumeric (0.70-0.1) unstable; urgency=medium

  * New upstream release: "This is a high priority upgrade. 0.69 accidentally
    broke importing MS Excel workbooks containing more than one sheet."
  * [debian/rules] clean: remove Makefile(.in) if generated from Makefile.am;
    remove stamp files in the idl directory.
  * [debian/control] Versioned the build dependency on automake to a version
    that knows about configure.ac. (Closes: #109496)
    Changed the font dependency to "gsfonts" (which is what
    libgnomeprint-data merely recommends).
  * [debian/changelog] Removed log-mailing-address.
 
 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 21 Aug 2001 22:18:23 +0200

gnumeric (0.69-0.3) unstable; urgency=low

  * [debian/control] Build depend on recent autoconf. (Closes: #108988)
  * [debian/rules] clean: remove configure.in as well.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 19 Aug 2001 17:52:16 +0200

gnumeric (0.69-0.2) unstable; urgency=low

  * Added build dependency on libtool. (Closes: #107988)
  * Added dependency on gsfonts-x11 to ensure availability of the standard
    PostScript fonts. (Closes: #107115, #107797, #102406).
  * Cleaned up source diff.
  * [debian/rules] Run automake.
  * [debian/copyright] Really updated.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Tue, 14 Aug 2001 21:26:06 +0200

gnumeric (0.69-0.1) unstable; urgency=low

  * Non-maintainer upload of new upstream release.
  * [debian/docs] Included AUTHORS and MAINTAINERS.
  * [debian/copyright] Updated.
  * [debian/gnumeric.manpages, debian/rules] Upstream now includes a manpage.
  * [configure.ac, debian/rules] Replace unconditional -D_GNU_SOURCE by 
    -D_USE_BSD if needed.
  * [configure.ac] Made --without-evolution work.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon, 13 Aug 2001 17:33:59 +0200

gnumeric (0.68-0.3) unstable; urgency=low

  * New libgal, so it's recompile time again.
  * [configure.in, macros/gnome-guile-checks.m4, debian/rules] Imported 
    changes from gnumeric CVS to make --without-guile work and regenerate
    aclocal.m4 and configure accordingly. (Closes: #107661)
  * [configure.in] Imported CVS changes for alloca as well, as we use
    autoconf 2.52.
  * [debian/control] Added build dependency on automake (for "aclocal").

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Mon,  6 Aug 2001 20:18:16 +0200

gnumeric (0.68-0.2) unstable; urgency=low

  * Another NMU (requested by Ray)
  * The new -doc package now replaces all pre-0.68 gnumeric docs.
  * Cleaned up docbook conversion mess.

 -- Martijn van de Streek <martijn@foodfight.org>  Mon, 30 Jul 2001 10:21:52 +0200 

gnumeric (0.68-0.1) unstable; urgency=low

  * Non-maintainer upload of new upstream release, after conferring with
    Vincent.
  * [debian/*] Redone based on current dh_make template.
  * Split documentation into a separate package. (Closes: #62430)
  * [debian/rules]
    * Explicitly disabled Evolution support.
      It is not mentioned in NEWS or README, so presumably it is not yet ready
      for production use.
    * Removed the plugins' `.la' files: gnumeric's plugins are not public 
      libraries nor do they on libtool's libltdl, so policy does not require
      them to be included. (Closes: #62429)
  * [debian/gnumeric.mime] Added text/comma-separated-values entry; corrected
    nametemplates which had .xls and .gnumeric swapped. (Closes: #101059).
  * [debian/gnumeric-man.sgml] Added a manpage. (Closes: #102047)
  * [debian/control]
    * Updated the description.
    * Added build dependency on docbook-to-man.
    * Added missing build dependency on flex. (Closes: #103776) 
    * Tightened the build dependency on libxml-dev. (Closes: #105344)
    * Updated Standards-Version.
  * [configure.in] Reinstated ja, ko, zh_CN.GB2312, zh_TW.Big5 as their po 
    files were updated and no longer cause problems.
  * Clean up bug reports that are no longer relevant:
    * We build with the latest available libgal. 
      (Closes: #99679, #103489, #104031, #105274)
    * The accidental deletion of HTML documentation was fixed in a previous
      upload. (Closes: #102270)
    * Backspace not working in cells was fixed upstream. (Closes: #106796)
    * Shrinking output in print setup was fixed upstream. (Closes: #55096)
    * Verified that CSV export works fine with this version. (Closes: #100111)
    * Non-ancient versions of Gnumeric have no problems with reading back
      their own file format. (Closes: #98779)

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 29 Jul 2001 19:38:32 +0200

gnumeric (0.67-1) unstable; urgency=low

  * New upstream release.
  * Build this bonobo support since this is now the default.

 -- Vincent Renardias <vincent@debian.org>  Tue, 10 Jul 2001 12:18:37 +0200

gnumeric (0.65-2) unstable; urgency=low

  * New upstream version (Closes: #98189).
  * Compiled against newer libole2-dev/libgal (Closes: #99041).
  * Updated debian/control (Build-Depends).
  * ACK bugs fixed by previous NMU:
    Closes: #94017, #96708, #80016, #51547, #70837, #96863, #96080, #87837.
    Closes: #96062, #96080, #96863.
  * Printing problems should be solved.
    Closes: #80869, #92986, #92849.
  * Integrated NMU work from JHM Dassen:
    - The problem of dsum freezing gnumeric when cells involved were deleted
      was fixed upstream. (Closes: #90875).
    - [configure.in] Removed es_* from ALL_LINGUAS as their .po files are quite
      out of date compared to plain es. (Closes: #89108).
    - [debian/rules] Explicitly disabled GDA for consistency across
      architectures; explicitly enabled warnings.
    - [debian/rules] Compile -D_GNU_SOURCE for various functions and macros,
      like caddr_t and M_PI_2.
    - [debian/control] Added build dependency on xml-i18n-tools; updated build
      dependencies on libgal, libxml1 and libole.

 -- Vincent Renardias <vincent@debian.org>  Mon,  4 Jun 2001 15:06:41 +0200

gnumeric (0.64-1.1) unstable; urgency=low

  * Documentation:
    * Ensure documentation is included. (Closes: #94017, #96708)
    * [debian/gnumeric.doc-base] New, so debhelper registers us with doc-base.
    * [debian/control] Added build dependency on cygnus-stylesheets as we 
      generate the documentation from its SGML source.
  * Menu support:
    * [debian/menu] Added menu hints. (Closes: #80016)
  * MIME support:
    * [debian/mime.gnumeric] Renamed to debian/gnumeric.mime so MIME handler
      registration through debhelper works. (Closes: #51547, #70837)
    * [debian/gnumeric.mime] Register as a handler for application/x-gnumeric 
      as well; added "nametemplate"s.
  * Localisation:
    * [debian/control] Added missing build dependency on gettext.
    * [po/da.po]: corrected charset to ISO 8859-1.
    * [configure.in] Removed ja, ko, zh_CN.GB2312, zh_TW.Big5 from ALL_LINGUAS
      as msgfmt on them fails (with errors like invalid multibyte sequence,
      end-of-line within string, invalid control sequence).
    * [debian/rules] Generate "configure".
    * [debian/control] Added build dependency on autoconf.
  * Other build and dependencies changes:
    * Compiled against current libgal
      (Closes: #96863, #96080)
    * [debian/control] Updated build dependency for libgal. 
    * [debian/control] Added missing build dependency on debhelper.
    * [debian/control] Downgrade dependency on gnome-help to Suggests as GNOME 
      allows configuration of a different help browser. (Closes: #87837).
    * [debian/control] Removed Recommends: python-dev as there's a Depends:
      for it already.
    * [debian/rules] Explicitly disable GB and Guile, so that builds on other 
      architectures will not accidentally get additional dependencies.
    * [debian/rules] Remove generated files po/messages, po/cat-id-tbl.c 
      as part of `clean'.
    * [debian/dirs] We don't need to create usr/X11R6/lib anymore.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Wed, 16 May 2001 20:08:35 +0200

gnumeric (0.64-1) unstable; urgency=low

  * new upstream upgrade.
  * recompile against lastest gnome-print.

 -- Vincent Renardias <vincent@debian.org>  Mon,  9 Apr 2001 17:28:05 +0200

gnumeric (0.63-1) unstable; urgency=low

  * new upstream upgrade (containing many fixes).
  * 'make clean' now really does.
  * Now appears to be fixed (Closes: #77577).
  * Depend on gnome-help (Closes: #62642).
  * Dependancy is now correct (Closes: #67249).
  * Should be fixed (Closes: #71668).
  * Appears to work (Closes: #67305).
  * function-reference.html is back (Closes: #81133).
  * Python support in back (Closes: #41282, #65287).

 -- Vincent Renardias <vincent@debian.org>  Sat, 24 Feb 2001 22:46:07 +0100

gnumeric (0.61-2) unstable; urgency=low

  * Recompile against libgal4 (Closes: #86638, #86003, #86389).
  * Add a Build-depends: line in control (Closes: #75636).
  * already fixed bugs (Closes: #75827).

 -- Vincent Renardias <vincent@debian.org>  Sat, 24 Feb 2001 18:24:15 +0100

gnumeric (0.61-1) unstable; urgency=low

  * New upstrem release.

 -- Vincent Renardias <vincent@debian.org>  Tue, 19 Dec 2000 16:48:51 +0100

gnumeric (0.58-0.1) unstable; urgency=low

  * NMU.
  * New upstrem release (Closes: #75827)

 -- Christian Marillat <marillat@debian.org>  Tue, 14 Nov 2000 13:06:46 +0100

gnumeric (0.56.0-1) unstable; urgency=low

  * New upstream release.
    Recreated tarfile, since the one from ftp.gnome.org and mirrors
    were broken (hence: 0.56.0 instead of 0.56).
  * Now depends on new package 'libole2'.

 -- Vincent Renardias <vincent@debian.org>  Tue, 20 Jun 2000 13:42:10 +0200

gnumeric (0.54-1) unstable; urgency=low

  * New upstream release.

 -- Vincent Renardias <vincent@debian.org>  Wed, 24 May 2000 10:03:25 +0200

gnumeric (0.53-1) unstable; urgency=low

  * New upstream release.

 -- Vincent Renardias <vincent@debian.org>  Thu, 11 May 2000 18:54:14 +0200

gnumeric (0.52-1) unstable; urgency=low

  * New upstream release.
   closes: #61282: Missing gnome-print dependency, bad link to libgnomeprint.so.6.
   closes: #61920: Please do NOT ship the bonobo version of gnumeric.
   closes: #61447: new version has wrong dependency.
   closes: #61897: gnumeric overwrites /usr/bin/graph.
   closes: #62347: gnumeric: Can't build!
   closes: #61319: Duplicate file /usr/bin/graph.
   closes: #55056: gnumeric 0.47-1 reports unknown libglade0 0.11-2 symbol.
   closes: #61241: gnumeric: package overlap with plotutils.

 -- Vincent Renardias <vincent@debian.org>  Fri, 14 Apr 2000 18:31:56 +0200

gnumeric (0.51-2) unstable; urgency=low

  * redisable bonobo support.

 -- Vincent Renardias <vincent@debian.org>  Fri,  7 Apr 2000 12:45:26 +0200

gnumeric (0.51-1) unstable; urgency=low

  * New upstream release.

 -- Vincent Renardias <vincent@debian.org>  Wed, 29 Mar 2000 13:13:02 +0200

gnumeric (0.50-1) unstable; urgency=low

  * New upstream release.
  * Compile with bonobo support.

 -- Vincent Renardias <vincent@debian.org>  Mon, 27 Mar 2000 14:46:53 +0200

gnumeric (0.48-3) unstable; urgency=low

  * Recompile with gnome-print 0.12.

 -- Vincent Renardias <vincent@debian.org>  Mon,  6 Mar 2000 10:42:05 +0100

gnumeric (0.48-1) unstable; urgency=low

  * New upstream version.
  * now built against gtk 1.2.7 (closes GNOME BTS bug #2611)

 -- Vincent Renardias <vincent@debian.org>  Mon, 21 Feb 2000 12:13:47 +0100

gnumeric (0.47-1) unstable; urgency=low

  * New upstream version.

 -- Vincent Renardias <vincent@debian.org>  Mon,  3 Jan 2000 13:28:49 +0100

gnumeric (0.45-1) unstable; urgency=low

  * New upstream version.

 -- Vincent Renardias <vincent@debian.org>  Mon,  6 Dec 1999 13:57:04 +0100

gnumeric (0.44-1) unstable; urgency=low

  * New upstream version.
  * Now depends on a fixed (0.10-3) version of gnome-print.

 -- Vincent Renardias <vincent@debian.org>  Tue, 23 Nov 1999 12:03:00 +0100

gnumeric (0.43-1) unstable; urgency=low

  * New upstream version.

 -- Vincent Renardias <vincent@debian.org>  Fri, 19 Nov 1999 13:07:44 +0100

gnumeric (0.41-1) unstable; urgency=low

  * New upstream version.
    (Third of the week... ;)

 -- Vincent Renardias <vincent@debian.org>  Mon, 25 Oct 1999 11:53:44 +0200

gnumeric (0.40-1) unstable; urgency=low

  * New upstream version.

 -- Vincent Renardias <vincent@debian.org>  Fri, 22 Oct 1999 12:25:44 +0200

gnumeric (0.39-1) unstable; urgency=low

  * New upstream version.

 -- Vincent Renardias <vincent@debian.org>  Wed, 20 Oct 1999 15:27:55 +0200

gnumeric (0.38-3) unstable; urgency=low

  * fix description;
    closes: #46227: gnumeric: package description references non-existent file doc/Design
  * Now replaces zh-trans (<<0.8);
    closes: #45934: gnumeric: Should replace zh-trans
  * Upgrading to gnumeric 0.38-3 and gnome-print 0.9-2 should fix this;
    closes: #46028: gnumeric: /usr/share/fonts/fontmap file is invalid for Gnumeric

 -- Vincent Renardias <vincent@debian.org>  Fri,  1 Oct 1999 14:57:27 +0200

gnumeric (0.38-2) unstable; urgency=low

  * Fix rules file;
    closes: #46361: gnumeric: etc build problem [patch].
  * rebuilt with newer libs.

 -- Vincent Renardias <vincent@debian.org>  Fri,  1 Oct 1999 14:57:17 +0200

gnumeric (0.38-1) unstable; urgency=low

  * New upstream version.
    (Bug fix release)

 -- Vincent Renardias <vincent@debian.org>  Fri, 24 Sep 1999 12:17:05 +0200

gnumeric (0.36-1) unstable; urgency=low

  * New upstream version.
  * 'clean' now cleans better.

 -- Vincent Renardias <vincent@debian.org>  Thu, 23 Sep 1999 12:56:07 +0200

gnumeric (0.32-1) unstable; urgency=low

  * New upstream version.

 -- Vincent Renardias <vincent@debian.org>  Mon, 23 Aug 1999 10:37:49 +0200

gnumeric (0.29-1) unstable; urgency=low

  * New upstream version.

 -- Vincent Renardias <vincent@debian.org>  Mon, 12 Jul 1999 19:05:09 +0200

gnumeric (0.27-1) unstable; urgency=low

  * New upstream version.
  * Recompiled against newer gnome libraries.

 -- Vincent Renardias <vincent@debian.org>  Fri, 25 Jun 1999 12:24:51 +0200

gnumeric (0.25-2) unstable; urgency=low

  * corrected menu file; closes: #38873.

 -- Vincent Renardias <vincent@debian.org>  Thu,  3 Jun 1999 18:48:12 +0200

gnumeric (0.25-1) unstable; urgency=low

  * New upstream version.
  * Recompiled against newer gnome libraries.

 -- Vincent Renardias <vincent@debian.org>  Tue, 18 May 1999 16:14:21 +0200

gnumeric (0.24-1) unstable; urgency=low

  * New upstream version.

 -- Vincent Renardias <vincent@debian.org>  Fri, 23 Apr 1999 13:33:55 +0200

gnumeric (0.15-1) unstable; urgency=low

  * New upstream version.
  * closes: #33547, #33904, #32483, #32728.

 -- Vincent Renardias <vincent@debian.org>  Sat,  6 Mar 1999 12:13:24 +0100

gnumeric (0.7-1) unstable; urgency=low

  * New upstream version.
  * Corrected menu entry (Fix bug #27782,#28119).
  * No longer output an error message regarding python
    (had to disable python plugin, which wouldn't compile anyway)
    (Fix bugs #27783,#28195,#30523,#30760).
  * Recompile with newer GNOME/Gtk+ libs
    (Fix bugs #30526,#29161,#27810).

 -- Vincent Renardias <vincent@waw.com>  Wed, 20 Jan 1999 12:02:30 +0100

gnumeric (0.3-1) unstable; urgency=low

  * New upstream release.

 -- Vincent Renardias <vincent@waw.com>  Wed, 30 Sep 1998 15:26:14 +0200

gnumeric (0.2-1) unstable; urgency=low

  * Initial Release.

 -- Vincent Renardias <vincent@waw.com>  Sat, 26 Sep 1998 17:12:42 +0200