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
|
postgis (3.5.2+dfsg-1) unstable; urgency=medium
* New upstream release.
* Update copyright file.
-- Bas Couwenberg <sebastic@debian.org> Sun, 19 Jan 2025 07:35:59 +0100
postgis (3.5.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Update copyright file.
-- Bas Couwenberg <sebastic@debian.org> Mon, 23 Dec 2024 06:24:34 +0100
postgis (3.5.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Thu, 26 Sep 2024 04:47:44 +0200
postgis (3.5.0~rc1+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
* Drop create_upgrade.patch, included upstream.
-- Bas Couwenberg <sebastic@debian.org> Mon, 23 Sep 2024 05:39:32 +0200
postgis (3.5.0~beta1+dfsg-1~exp4) experimental; urgency=medium
* Update create_upgrade.pl patch with upstream changes.
-- Bas Couwenberg <sebastic@debian.org> Fri, 20 Sep 2024 17:07:24 +0200
postgis (3.5.0~beta1+dfsg-1~exp3) experimental; urgency=medium
* Update create_upgrade.pl patch to revert 5aba8471.
-- Bas Couwenberg <sebastic@debian.org> Tue, 17 Sep 2024 20:30:59 +0200
postgis (3.5.0~beta1+dfsg-1~exp2) experimental; urgency=medium
* Add patch to fix FTBFS caused by create_upgrade.pl failing.
-- Bas Couwenberg <sebastic@debian.org> Tue, 17 Sep 2024 07:41:08 +0200
postgis (3.5.0~beta1+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
-- Bas Couwenberg <sebastic@debian.org> Tue, 17 Sep 2024 05:03:25 +0200
postgis (3.5.0~alpha2+dfsg-1~exp3) experimental; urgency=medium
* Include changes from 3.4.3+dfsg-2.
-- Bas Couwenberg <sebastic@debian.org> Wed, 11 Sep 2024 20:26:56 +0200
postgis (3.5.0~alpha2+dfsg-1~exp2) experimental; urgency=medium
* Bump Standards-Version to 4.7.0, no changes.
* Update packaging for postgresql-17.
* Ignore test failures on all architectures.
-- Bas Couwenberg <sebastic@debian.org> Wed, 11 Sep 2024 11:54:34 +0200
postgis (3.5.0~alpha2+dfsg-1~exp1) experimental; urgency=medium
* New upstream alpha release.
* Drop patches applied upstream.
-- Bas Couwenberg <sebastic@debian.org> Sat, 06 Jul 2024 17:43:33 +0200
postgis (3.5.0~alpha1+dfsg-1~exp1) experimental; urgency=medium
* New upstream alpha release.
* Update copyright file.
* Refresh patches.
* Add patch to fix FTBFS due to test failures.
* Add patch to fix spelling errors.
-- Bas Couwenberg <sebastic@debian.org> Fri, 05 Jul 2024 06:48:44 +0200
postgis (3.4.3+dfsg-2) unstable; urgency=medium
* Drop support for 32-bit architectures.
* Re-instate SFCGAL support, patched to support CGAL 6.
-- Bas Couwenberg <sebastic@debian.org> Wed, 11 Sep 2024 20:11:28 +0200
postgis (3.4.3+dfsg-2~exp1) unstable; urgency=medium
* Update packaging for postgresql-17.
-- Bas Couwenberg <sebastic@debian.org> Wed, 11 Sep 2024 11:07:57 +0200
postgis (3.4.3+dfsg-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.7.0, no changes.
-- Bas Couwenberg <sebastic@debian.org> Thu, 05 Sep 2024 05:15:08 +0200
postgis (3.4.2+dfsg-2) unstable; urgency=medium
* Drop SFCGAL support, it won't support CGAL 6 any time soon.
https://gitlab.com/sfcgal/SFCGAL/-/issues/267
-- Bas Couwenberg <sebastic@debian.org> Fri, 28 Jun 2024 17:01:34 +0200
postgis (3.4.2+dfsg-1) unstable; urgency=medium
* New upstream release.
* Replace pkg-config build dependency with pkgconf.
-- Bas Couwenberg <sebastic@debian.org> Thu, 08 Feb 2024 18:55:49 +0100
postgis (3.4.1+dfsg-1) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Mon, 20 Nov 2023 20:00:22 +0100
postgis (3.4.1+dfsg-1~exp1) experimental; urgency=medium
* New upstream release.
* Drop delaunaytriangles.patch, fixed upstream.
-- Bas Couwenberg <sebastic@debian.org> Mon, 20 Nov 2023 14:49:29 +0100
postgis (3.4.0+dfsg-4) unstable; urgency=medium
* Add patch to fix FTBFS due to test failure.
-- Bas Couwenberg <sebastic@debian.org> Fri, 17 Nov 2023 16:04:29 +0100
postgis (3.4.0+dfsg-3) unstable; urgency=medium
* Use graphicsmagick instead of imagemagick to fix FTBFS.
(closes: #1054715)
* Update lintian overrides.
-- Bas Couwenberg <sebastic@debian.org> Sat, 28 Oct 2023 08:44:16 +0200
postgis (3.4.0+dfsg-2) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 17 Sep 2023 11:22:54 +0200
postgis (3.4.0+dfsg-2~exp1) experimental; urgency=medium
[ Christoph Berg ]
* debian/pgversions: Bump to 12+.
[ Bas Couwenberg ]
* Update packaging for postgresql-16.
-- Bas Couwenberg <sebastic@debian.org> Sat, 16 Sep 2023 18:43:08 +0200
postgis (3.4.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Wed, 16 Aug 2023 06:15:31 +0200
postgis (3.4.0~rc4+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
* Drop distclean.patch, applied upstream.
-- Bas Couwenberg <sebastic@debian.org> Tue, 15 Aug 2023 05:32:53 +0200
postgis (3.4.0~rc3+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
* Use execute_before instead of override in rules file.
* Drop tzdata build dependency, no longer required.
* Add patch to fix distclean target.
(closes: #1047320)
-- Bas Couwenberg <sebastic@debian.org> Mon, 14 Aug 2023 09:47:30 +0200
postgis (3.4.0~rc2+dfsg-1~exp2) experimental; urgency=medium
* Require tzdata >= 2023c-9 for UTC timezone.
-- Bas Couwenberg <sebastic@debian.org> Sat, 12 Aug 2023 20:21:05 +0200
postgis (3.4.0~rc2+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
-- Bas Couwenberg <sebastic@debian.org> Sat, 12 Aug 2023 09:24:34 +0200
postgis (3.4.0~rc1+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
-- Bas Couwenberg <sebastic@debian.org> Sun, 06 Aug 2023 06:59:43 +0200
postgis (3.4.0~beta2+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Drop patches applied upstream.
* Don't remove postgis & postgis_restore, no longer undocumented.
-- Bas Couwenberg <sebastic@debian.org> Sat, 29 Jul 2023 21:32:13 +0200
postgis (3.4.0~beta1+dfsg-1~exp7) experimental; urgency=medium
* Replace install-upgrade-paths.patch with committed upstream changes.
-- Bas Couwenberg <sebastic@debian.org> Thu, 20 Jul 2023 10:30:44 +0200
postgis (3.4.0~beta1+dfsg-1~exp6) experimental; urgency=medium
* Add upstream patch to create installdirs before install-upgrade-paths.
https://trac.osgeo.org/postgis/ticket/5444
-- Bas Couwenberg <sebastic@debian.org> Thu, 20 Jul 2023 09:40:04 +0200
postgis (3.4.0~beta1+dfsg-1~exp5) experimental; urgency=medium
* Ignore test failure on i386.
https://trac.osgeo.org/postgis/ticket/5448
* Add patch to fix FTBFS on powerpc architectures.
https://trac.osgeo.org/postgis/ticket/5450
-- Bas Couwenberg <sebastic@debian.org> Sun, 16 Jul 2023 08:54:59 +0200
postgis (3.4.0~beta1+dfsg-1~exp4) experimental; urgency=medium
* Drop ${perl:Depends} from -scripts package,
postgis_restore.pl no longer included.
* Add graphicsmagick-imagemagick-compat to Build-Conflicts.
https://trac.osgeo.org/postgis/ticket/5446
-- Bas Couwenberg <sebastic@debian.org> Sun, 16 Jul 2023 06:34:28 +0200
postgis (3.4.0~beta1+dfsg-1~exp3) experimental; urgency=medium
* Add upstream patch to use xlstproc instead of xmllint to extract tags.
https://trac.osgeo.org/postgis/ticket/5446
-- Bas Couwenberg <sebastic@debian.org> Sat, 15 Jul 2023 19:15:40 +0200
postgis (3.4.0~beta1+dfsg-1~exp2) experimental; urgency=medium
* Add libxml2-utils to build dependencies for xmllint.
https://trac.osgeo.org/postgis/ticket/5446
-- Bas Couwenberg <sebastic@debian.org> Sat, 15 Jul 2023 17:45:06 +0200
postgis (3.4.0~beta1+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Update copyright file.
* Refresh patches.
* Add patch to use DESTDIR for pg_sharedir.
https://trac.osgeo.org/postgis/ticket/5444
* Add patch to fix README.postgis installation failure.
https://trac.osgeo.org/postgis/ticket/5445
* Update HTML filename in postgis-doc.install.
* Include usr/bin in postgis package.
* Drop obsolete override for postgis_restore.pl executable bit.
* Don't install undocumented executables.
-- Bas Couwenberg <sebastic@debian.org> Sat, 15 Jul 2023 07:37:42 +0200
postgis (3.3.4+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop PROJ 9.2 & GEOS 3.12 patches, fixed upstream.
Drop powerpc patch, applied upstream.
Refresh remaining patches.
-- Bas Couwenberg <sebastic@debian.org> Fri, 28 Jul 2023 14:40:16 +0200
postgis (3.3.3+dfsg-5) unstable; urgency=medium
* Fix --enable-lto configure option.
-- Bas Couwenberg <sebastic@debian.org> Thu, 27 Jul 2023 10:02:30 +0200
postgis (3.3.3+dfsg-4) unstable; urgency=medium
* Add graphicsmagick-imagemagick-compat to Build-Conflicts.
https://trac.osgeo.org/postgis/ticket/5446
* Ignore test failure on i386.
https://trac.osgeo.org/postgis/ticket/5448
* Add patch to fix FTBFS on powerpc architectures.
https://trac.osgeo.org/postgis/ticket/5450
-- Bas Couwenberg <sebastic@debian.org> Thu, 27 Jul 2023 09:45:35 +0200
postgis (3.3.3+dfsg-3) unstable; urgency=medium
* Add patch to fix FTBFS with GEOS 3.12.
(closes: #1042263)
-- Bas Couwenberg <sebastic@debian.org> Thu, 27 Jul 2023 07:09:44 +0200
postgis (3.3.3+dfsg-2) unstable; urgency=medium
* Bump debhelper compat to 13.
* Add patch to fix FTBFS with PROJ 9.2.
-- Bas Couwenberg <sebastic@debian.org> Tue, 13 Jun 2023 21:01:54 +0200
postgis (3.3.3+dfsg-1) unstable; urgency=medium
* Ignore autopkgtest failure on armel/armhf, sfcgal not available there.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 11 Jun 2023 11:59:00 +0200
postgis (3.3.3+dfsg-1~exp1) experimental; urgency=medium
[ Christoph Berg ]
* Refactor "ignore tests on some architectures" code.
* Sync architectures to skip between debian/rules and debian/tests,
effectively re-enabling tests on arm*.
* Remove obsolete Breaks and Replaces.
[ Bas Couwenberg ]
* New upstream release.
* Add Rules-Requires-Root to control file.
* Bump Standards-Version to 4.6.2, no changes.
* Update URLs to use HTTPS.
* Update copyright file.
-- Bas Couwenberg <sebastic@debian.org> Tue, 30 May 2023 05:36:20 +0200
postgis (3.3.2+dfsg-1) unstable; urgency=medium
* New upstream release.
* Update lintian overrides.
-- Bas Couwenberg <sebastic@debian.org> Sun, 13 Nov 2022 09:03:35 +0100
postgis (3.3.1+dfsg-2) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sat, 15 Oct 2022 21:45:26 +0200
postgis (3.3.1+dfsg-2~exp1) experimental; urgency=medium
* Add metapackages to help upgrade the postgis packages.
* Update packaging for postgresql-15.
-- Bas Couwenberg <sebastic@debian.org> Sat, 15 Oct 2022 08:03:48 +0200
postgis (3.3.1+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Sat, 10 Sep 2022 14:41:00 +0200
postgis (3.3.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sat, 27 Aug 2022 15:08:10 +0200
postgis (3.3.0~rc2+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
-- Bas Couwenberg <sebastic@debian.org> Tue, 23 Aug 2022 05:26:55 +0200
postgis (3.3.0~rc1+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
* Drop basic_test.patch, included upstream.
-- Bas Couwenberg <sebastic@debian.org> Mon, 08 Aug 2022 09:01:27 +0200
postgis (3.3.0~beta2+dfsg-1~exp2) experimental; urgency=medium
* Add upstream patch to fix test failure on i386.
* Don't ignore test failures on i386.
-- Bas Couwenberg <sebastic@debian.org> Sun, 24 Jul 2022 07:27:12 +0200
postgis (3.3.0~beta2+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Ignore test failures on i386.
* Drop pgsql2shp-core.patch, applied upstream.
-- Bas Couwenberg <sebastic@debian.org> Thu, 14 Jul 2022 05:23:29 +0200
postgis (3.3.0~beta1+dfsg-1~exp2) experimental; urgency=medium
* Add patch to fix FTBFS on s390x.
-- Bas Couwenberg <sebastic@debian.org> Mon, 04 Jul 2022 06:04:08 +0200
postgis (3.3.0~beta1+dfsg-1~exp1) experimental; urgency=medium
[ Christoph Berg ]
* Run minimal regression tests from debian/tests/test-extension-creation.
[ Bas Couwenberg ]
* New upstream release.
* Bump Standards-Version to 4.6.1, no changes.
* Drop manpage patch, included upstream.
-- Bas Couwenberg <sebastic@debian.org> Sun, 03 Jul 2022 19:18:18 +0200
postgis (3.3.0~alpha1+dfsg-1~exp1) experimental; urgency=medium
* New upstream alpha release.
* Update pgversions for PostgreSQL 11 or higher requirement.
* Require at least libproj-dev 5.2.0.
* Enable LTO.
* Update copyright file.
* Refresh patches.
* Add pgtopo_import/pgtopo_export manpages.
-- Bas Couwenberg <sebastic@debian.org> Sun, 22 May 2022 07:07:38 +0200
postgis (3.2.3+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Fri, 19 Aug 2022 06:36:53 +0200
postgis (3.2.2+dfsg-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.6.1, no changes.
-- Bas Couwenberg <sebastic@debian.org> Sat, 23 Jul 2022 20:38:23 +0200
postgis (3.2.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Update copyright file.
-- Bas Couwenberg <sebastic@debian.org> Sun, 13 Feb 2022 07:57:40 +0100
postgis (3.2.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sat, 18 Dec 2021 07:27:50 +0100
postgis (3.2.0~rc1+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
-- Bas Couwenberg <sebastic@debian.org> Sat, 11 Dec 2021 16:56:39 +0100
postgis (3.2.0~beta3+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Drop flatgeobuf patch, fixed upstream.
-- Bas Couwenberg <sebastic@debian.org> Sat, 04 Dec 2021 09:21:53 +0100
postgis (3.2.0~beta2+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Switch to pcre2.
(closes: #999986)
* Drop flatgeobuff.patch, doesn't work for autopkgtest.
* Add patch to disable unreliable flageobuf tests.
-- Bas Couwenberg <sebastic@debian.org> Sat, 27 Nov 2021 14:00:25 +0100
postgis (3.2.0~beta1+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Update copyright file.
* Drop patches included upstream.
* Add patch to disable flatgeobuf tests causing FTBFS.
-- Bas Couwenberg <sebastic@debian.org> Sun, 24 Oct 2021 08:01:21 +0200
postgis (3.2.0~alpha1+dfsg-1~exp4) experimental; urgency=medium
* Drop pie rules for xenial.
* Add pkg-config to build dependencies.
* Update packaging for postgresql-14.
* Add upstream patch to fix missing the INSERT statements.
-- Bas Couwenberg <sebastic@debian.org> Tue, 05 Oct 2021 21:41:53 +0200
postgis (3.2.0~alpha1+dfsg-1~exp3) experimental; urgency=medium
* Drop mr58.patch, did not fix FTBFS on i386.
* Add new upstream patch to possibly fix FTBFS on i386.
* Add upstream patch to fix not re-entrant loader tests.
-- Bas Couwenberg <sebastic@debian.org> Tue, 28 Sep 2021 12:54:08 +0200
postgis (3.2.0~alpha1+dfsg-1~exp2) experimental; urgency=medium
* Bump debhelper compat to 12, changes:
- Drop --list-missing from dh_install
* Add upstream patch to possibly fix FTBFS on i386.
-- Bas Couwenberg <sebastic@debian.org> Thu, 23 Sep 2021 05:54:59 +0200
postgis (3.2.0~alpha1+dfsg-1~exp1) experimental; urgency=medium
* New upstream alpha release.
* Bump Standards-Version to 4.6.0, no changes.
* Update copyright file.
-- Bas Couwenberg <sebastic@debian.org> Sat, 11 Sep 2021 07:49:54 +0200
postgis (3.1.4+dfsg-3) unstable; urgency=medium
* Add upstream patch to fix test failures with GEOS 3.10.0.
-- Bas Couwenberg <sebastic@debian.org> Thu, 21 Oct 2021 06:25:59 +0200
postgis (3.1.4+dfsg-2) unstable; urgency=medium
* Bump Standards-Version to 4.6.0, no changes.
* Bump debhelper compat to 12, changes:
- Drop --list-missing from dh_install
* Drop pie rules for xenial.
* Add pkg-config to build dependencies.
* Update packaging for postgresql-14.
* Add upstream patch to fix missing the INSERT statements.
-- Bas Couwenberg <sebastic@debian.org> Fri, 08 Oct 2021 14:37:17 +0200
postgis (3.1.4+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop build dependency on autoconf2.13.
(closes: #992813)
* Update copyright file.
-- Bas Couwenberg <sebastic@debian.org> Sat, 04 Sep 2021 09:26:17 +0200
postgis (3.1.3+dfsg-1) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 15 Aug 2021 12:45:13 +0200
postgis (3.1.3+dfsg-1~exp1) experimental; urgency=medium
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Sat, 03 Jul 2021 05:59:02 +0200
postgis (3.1.2+dfsg-1~exp2) experimental; urgency=medium
* Fix regression tests for older PG versions.
-- Christoph Berg <myon@debian.org> Mon, 31 May 2021 11:48:24 +0200
postgis (3.1.2+dfsg-1~exp1) experimental; urgency=medium
* New upstream release.
(closes: #983256).
-- Bas Couwenberg <sebastic@debian.org> Mon, 24 May 2021 05:46:19 +0200
postgis (3.1.1+dfsg-1) unstable; urgency=medium
[ Christoph Berg ]
* Remove now redundant note on having to install the -scripts package from
the main module package description.
[ Bas Couwenberg ]
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Fri, 29 Jan 2021 06:27:33 +0100
postgis (3.1.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sat, 19 Dec 2020 06:55:38 +0100
postgis (3.1.0~rc1+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
-- Bas Couwenberg <sebastic@debian.org> Mon, 14 Dec 2020 19:42:10 +0100
postgis (3.1.0~beta2+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Update upstream metadata.
-- Bas Couwenberg <sebastic@debian.org> Fri, 11 Dec 2020 19:40:34 +0100
postgis (3.1.0~beta1+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Bump Standards-Version to 4.5.1, no changes.
-- Bas Couwenberg <sebastic@debian.org> Thu, 10 Dec 2020 05:43:06 +0100
postgis (3.1.0~alpha3+dfsg-1~exp2) experimental; urgency=medium
* Update regress autopkgtest for sfcgal.
-- Bas Couwenberg <sebastic@debian.org> Fri, 20 Nov 2020 09:03:25 +0100
postgis (3.1.0~alpha3+dfsg-1~exp1) experimental; urgency=medium
[ Christoph Berg ]
* Have the "postgis" package recommend "postgresql-postgis" instead of a
specific version.
[ Bas Couwenberg ]
* New upstream alpha release.
* Set PG_UPDATECONTROL=yes in rules file.
* Bump watch file version to 4.
* Update copyright file.
-- Bas Couwenberg <sebastic@debian.org> Fri, 20 Nov 2020 06:50:41 +0100
postgis (3.1.0~alpha2+dfsg-1~exp4) experimental; urgency=medium
[ Christoph Berg ]
* debian/tests: Use `pg_buildext installed-versions` to make tests work even
if the set of supported version has changed.
-- Bas Couwenberg <sebastic@debian.org> Thu, 08 Oct 2020 07:32:45 +0200
postgis (3.1.0~alpha2+dfsg-1~exp3) experimental; urgency=medium
[ Christoph Berg ]
* Add build-dependency on libpcre3-dev which was implicit with GTK-2.
[ Bas Couwenberg ]
* Update packaging for postgresql-13.
-- Bas Couwenberg <sebastic@debian.org> Thu, 01 Oct 2020 07:32:19 +0200
postgis (3.1.0~alpha2+dfsg-1~exp2) experimental; urgency=medium
* Drop postgis-gui package, requires GTK-2 which is deprecated.
(closes: #967707)
-- Bas Couwenberg <sebastic@debian.org> Tue, 04 Aug 2020 13:58:28 +0200
postgis (3.1.0~alpha2+dfsg-1~exp1) experimental; urgency=medium
[ Christoph Berg ]
* Remove debian/postgresql-generic-postgis-scripts.preinst.in.
Obsolete, and it was buggy with older dpkg-diversions which didn't have
--no-rename yet.
[ Bas Couwenberg ]
* New upstream alpha release.
* Skip autopkgtests on armel & armhf too.
(closes: #961188)
* Mark autopkgtests as skippable.
Thanks to Stefano Rivera.
* Update copyright file.
* Refresh patches.
* Add patch to fix incorrect-path-for-interpreter issue.
-- Bas Couwenberg <sebastic@debian.org> Sun, 19 Jul 2020 08:07:50 +0200
postgis (3.1.0~alpha1+dfsg-1~exp4) experimental; urgency=medium
* Add patch to fix test failure with PROJ 7.0.1.
(closes: #959563)
-- Bas Couwenberg <sebastic@debian.org> Sun, 03 May 2020 16:00:28 +0200
postgis (3.1.0~alpha1+dfsg-1~exp3) experimental; urgency=medium
* Bump debhelper compat to 10, changes:
- Drop --parallel option, enabled by default
- Don't explicitly enable autoreconf, enabled by default
- Drop dh-autoreconf build dependency
* Add upstream patch to fix FTBFS with GCC 10.
(closes: #957699)
-- Bas Couwenberg <sebastic@debian.org> Fri, 17 Apr 2020 22:05:57 +0200
postgis (3.1.0~alpha1+dfsg-1~exp2) experimental; urgency=medium
[ Christoph Berg ]
* Bump minimum supported PostgreSQL version to 9.6.
* Disable automatic updates of postgis_revision.h.
[ Bas Couwenberg ]
* Add upstream patch to fix FTBFS with PROJ 7.
-- Bas Couwenberg <sebastic@debian.org> Sun, 01 Mar 2020 07:27:46 +0100
postgis (3.1.0~alpha1+dfsg-1~exp1) experimental; urgency=medium
* New upstream alpha release.
(closes: #949426)
* Don't hardcode test exit status for failures.
* Don't bother with autopkgtest on problematic architectures.
(closes: #949026)
* Update update metadata for move to git.
* Bump Standards-Version to 4.5.0, no changes.
* Repack upstream tarball to remove .git directory.
* Update copyright file, changes:
- Add license & copyright for ryu sources.
- Add Kristian Thy to copyright holders
- Update copyright years for Paul Ramsey
-- Bas Couwenberg <sebastic@debian.org> Sun, 02 Feb 2020 19:47:12 +0100
postgis (3.0.0+dfsg-6) unstable; urgency=medium
* Revert postgresql-11 change in control file.
* Re-enable SFCGAL support.
* Drop Name field from upstream metadata.
-- Bas Couwenberg <sebastic@debian.org> Fri, 13 Dec 2019 09:57:13 +0100
postgis (3.0.0+dfsg-5) unstable; urgency=medium
* Disable SFCGAL support in regress autopkgtest too.
-- Bas Couwenberg <sebastic@debian.org> Fri, 06 Dec 2019 14:45:21 +0100
postgis (3.0.0+dfsg-4) unstable; urgency=medium
* Disable SFCGAL support entirely, causes FTBFS.
-- Bas Couwenberg <sebastic@debian.org> Fri, 06 Dec 2019 13:08:37 +0100
postgis (3.0.0+dfsg-3) unstable; urgency=medium
* Disable SFCGAL support on armhf, it FTBFS there.
-- Bas Couwenberg <sebastic@debian.org> Fri, 06 Dec 2019 11:23:34 +0100
postgis (3.0.0+dfsg-2) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Fri, 01 Nov 2019 07:19:47 +0100
postgis (3.0.0+dfsg-2~exp1) experimental; urgency=medium
[ Christoph Berg ]
* Revert chaikin tests failing on ppc64el.
[ Bas Couwenberg ]
* Update packaging for postgresql-12.
* Add dctrl-tools to build dependencies for grep-dctrl.
-- Bas Couwenberg <sebastic@debian.org> Tue, 29 Oct 2019 05:24:36 +0100
postgis (3.0.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 20 Oct 2019 07:56:41 +0200
postgis (3.0.0~rc2+dfsg-1~exp2) experimental; urgency=medium
* Remove the dpkg-diversions of .control files for older PostGIS versions,
using diversions on top of alternatives seems too fragile.
The 2.5 branch has been updated to use alternatives, so we should have
covered most cases in practise.
-- Christoph Berg <myon@debian.org> Tue, 15 Oct 2019 13:30:48 +0200
postgis (3.0.0~rc2+dfsg-1~exp1) experimental; urgency=medium
[ Christoph Berg ]
* regress/run_test.pl: Cherry-pick fix for running on installed packages.
* Disable PIE on Ubuntu xenial again, still causing issues.
[ Bas Couwenberg ]
* Reinstate lsb-release build dependency for PIE on Ubuntu.
* New upstream release candidate.
* Drop run-test-extension patch, included upstream.
-- Bas Couwenberg <sebastic@debian.org> Sun, 13 Oct 2019 08:54:07 +0200
postgis (3.0.0~rc1+dfsg-1~exp1) experimental; urgency=medium
[ Bas Couwenberg ]
* New upstream release candidate.
* Bump Standards-Version to 4.4.1, no changes.
* Drop lsb-release build dependency, no longer used for PIE on Ubuntu.
[ Christoph Berg ]
* debian/tests/regress: Fix sh syntax
* debian/rules: Drop "disable PIE on Ubuntu" code.
-- Bas Couwenberg <sebastic@debian.org> Tue, 08 Oct 2019 09:40:15 +0200
postgis (3.0.0~beta1+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Update copyright for fuzzers sources.
-- Bas Couwenberg <sebastic@debian.org> Sun, 29 Sep 2019 08:00:25 +0200
postgis (3.0.0~alpha4+dfsg-2~exp1) experimental; urgency=medium
[ Christoph Berg ]
* debian/tests: Test postgis_raster extension as well.
* debian/tests/regress: Makefile.in needs some variables from ./configure.
* Instead of conflicting with older postgresql-*-postgis-*-scripts packages,
use the alternatives system for managing the extension/*.control files.
This finally allows us to depend on the -scripts package from the main
extension package.
* Remove unversioned and unused sql files from address standardizer.
-- Bas Couwenberg <sebastic@debian.org> Mon, 16 Sep 2019 15:21:59 +0200
postgis (3.0.0~alpha4+dfsg-1) experimental; urgency=medium
* New upstream alpha release.
* Drop cppflags patch, applied upstream.
-- Bas Couwenberg <sebastic@debian.org> Sun, 11 Aug 2019 09:46:58 +0200
postgis (3.0.0~alpha3+dfsg-1~exp2) experimental; urgency=medium
[ Christoph Berg ]
* debian/tests/control: Tests don't need root, but support running as root.
* debian/.gitlab-ci.yml: Disable reprotest until clang understands
-ffile-prefix-map.
* Add CPPFLAGS where missing. Spotted by blhc.
[ Bas Couwenberg ]
* Update gbp.conf to use --source-only-changes by default.
* Bump Standards-Version to 4.4.0, no changes.
* Update PIE hardening conditional, trusty is EOL.
* Merge -arch & -indep targets.
(closes: #932833)
-- Bas Couwenberg <sebastic@debian.org> Tue, 23 Jul 2019 21:51:42 +0200
postgis (3.0.0~alpha3+dfsg-1~exp1) experimental; urgency=medium
[ Christoph Berg ]
* debian/tests: Run core and sfcgal regression tests.
* Add debian/.gitlab-ci.yml.
[ Bas Couwenberg ]
* New upstream alpha release.
* Update copyright file, changes:
- Update copyright years for Paul Ramsey
- Add license & copyright for lookup3.c
-- Bas Couwenberg <sebastic@debian.org> Mon, 01 Jul 2019 21:02:32 +0200
postgis (3.0.0~alpha2+dfsg-1~exp1) experimental; urgency=medium
* New upstream alpha release.
-- Bas Couwenberg <sebastic@debian.org> Sun, 02 Jun 2019 06:59:58 +0200
postgis (3.0.0~alpha1+dfsg-1~exp2) experimental; urgency=medium
* Update dh_install -a override to use --list-missing.
* Move binaries to postgis binary package.
* Remove README files before dh_install.
* Bump GEOS build dependency to 3.6.
* Bump pgversions to 9.5+.
* Require at least libsfcgal-dev 1.3.1.
* Drop preloading liblwgeom in test target.
* Drop postgis minor version from package name to match extension name.
* Update Conflicts for 2.5 packages.
-- Bas Couwenberg <sebastic@debian.org> Mon, 27 May 2019 16:24:15 +0200
postgis (3.0.0~alpha1+dfsg-1~exp1) experimental; urgency=medium
* New upstream alpha release.
* Drop link-liblwgeom patch, refresh remaining patch.
* Drop liblwgeom packages, no longer built.
* Update copyright file, changes:
- Update copyright years for existing copyright holders
- Add new copyright holders
- Add license & copyright for uthash & wagyu
-- Bas Couwenberg <sebastic@debian.org> Sun, 26 May 2019 17:38:38 +0200
postgis (2.5.3+dfsg-3) UNRELEASED; urgency=medium
* Disable failing raster test.
-- Christoph Berg <myon@debian.org> Sat, 19 Oct 2019 20:59:16 +0200
postgis (2.5.3+dfsg-2) unstable; urgency=medium
* Instead of conflicting with older postgresql-*-postgis-*-scripts packages,
use the alternatives system for managing the extension/*.control files.
This finally allows us to depend on the -scripts package from the main
extension package.
* debian/tests: Run regression tests.
* regress: Backport fix for oriented-envelope test to be less sensitive.
* topology: Backport regression test update for geos 3.8 compatibility.
* Add debian/.gitlab-ci.yml.
-- Christoph Berg <myon@debian.org> Tue, 15 Oct 2019 13:26:11 +0200
postgis (2.5.3+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Sun, 11 Aug 2019 09:18:54 +0200
postgis (2.5.2+dfsg-2) unstable; urgency=medium
* Merge -arch & -indep targets.
(closes: #932833)
* Update PIE hardening conditional, trusty is EOL.
* Explicitly remove liblwgeom.la before dh_install.
* Bump Standards-Version to 4.4.0, no changes.
-- Bas Couwenberg <sebastic@debian.org> Tue, 23 Jul 2019 21:51:23 +0200
postgis (2.5.2+dfsg-1) unstable; urgency=medium
* Update gbp.conf to use --source-only-changes by default.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 07 Jul 2019 13:12:25 +0200
postgis (2.5.2+dfsg-1~exp1) experimental; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.3.0, no changes.
-- Bas Couwenberg <sebastic@debian.org> Tue, 12 Mar 2019 06:59:37 +0100
postgis (2.5.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Add Build-Depends-Package field to symbols file.
-- Bas Couwenberg <sebastic@debian.org> Thu, 22 Nov 2018 06:52:52 +0100
postgis (2.5.0+dfsg-2) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 14 Oct 2018 09:04:35 +0200
postgis (2.5.0+dfsg-2~exp1) experimental; urgency=medium
* Strip trailing comma from Uploaders.
* Reorder Breaks/Provides/Replaces fields.
* Update packaging for postgresql-11.
-- Bas Couwenberg <sebastic@debian.org> Fri, 05 Oct 2018 17:05:37 +0200
postgis (2.5.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Mon, 24 Sep 2018 07:30:53 +0200
postgis (2.5.0~rc2+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
* Bump Standards-Version to 4.2.1, no changes.
-- Bas Couwenberg <sebastic@debian.org> Mon, 17 Sep 2018 07:27:59 +0200
postgis (2.5.0~rc1+dfsg-1~exp1) experimental; urgency=medium
[ Christoph Berg ]
* Provide postgresql-PGVERSION-postgis{,-scripts} so pgrouting can depend on
us without an explicit postgis version.
[ Bas Couwenberg ]
* New upstream release candidate.
-- Bas Couwenberg <sebastic@debian.org> Mon, 20 Aug 2018 08:42:48 +0200
postgis (2.5.0~beta2+dfsg-1~exp1) experimental; urgency=medium
[ Bas Couwenberg ]
* New upstream beta release.
* Don't quote filter string to fix match of first and last items.
* Bump Standards-Version to 4.2.0, no changes.
* Update copyright years for Paul Ramsey.
* Drop rt_gdalwarp.patch, worked around by upstream.
* Drop unused override for hardening-no-fortify-functions.
* Separate test restrictions with a comma.
[ Christoph Berg ]
* Re-enable tests on arm64 armel armhf i386 ppc64el, fixed upstream.
* Use make check RUNTESTFLAGS="-v" instead of cat'ing the failed results
from /tmp. Suggested by Darafei Praliaskouski, thanks!
* Provide postgresql-postgis and postgresql-postgis-scripts, so we can
depend on them in autopkgtests in other packages.
* Drop transitional postgresql-*-postgis-scripts package. The PG 9.6 variant
was already transitional in stretch, and the PG 10 variant was never in a
stable release.
-- Bas Couwenberg <sebastic@debian.org> Sat, 11 Aug 2018 13:15:01 +0200
postgis (2.5.0~beta1+dfsg-1~exp2) experimental; urgency=medium
[ Bas Couwenberg ]
* Bump Standards-Version to 4.1.5, no changes.
* Skip tests on arm64 & ppc64el too.
* Drop parallel patches, fixed upstream.
[ Christoph Berg ]
* debian/pgversions: Bump to 9.4+, 9.3 is no longer supported.
* Bump required GEOS version to 3.5.
* Work around failure in building the postgis_tiger_geocoder extension.
* debian/rules: Ignore test failures instead of disabling tests completely
on specific architectures; ignore tests on i386.
* Don't run tests in -indep builds.
* debian/rules: Import architecture from /usr/share/dpkg/architecture.mk.
* Re-enable tests on Ubuntu.
* Add myself to Uploaders.
-- Christoph Berg <myon@debian.org> Mon, 16 Jul 2018 22:46:26 +0200
postgis (2.5.0~beta1+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Re-enable SFCGAL support, FTBFS with CGAL 4.12 is fixed.
* Disable PIE only on older Ubuntu releases.
* Update copyright file, add copyright holders, update copyright years.
* Refresh patches.
* Disable parallel patches, may be fixed upstream.
* Update Conflicts for postgis-2.4.
* Update lintian override for address_standardizer.
* Update symbols for 2.5.0~beta1.
-- Bas Couwenberg <sebastic@debian.org> Wed, 04 Jul 2018 07:51:44 +0200
postgis (2.4.4+dfsg-4) unstable; urgency=medium
* Add patches to fix parallel build of other extensions.
-- Bas Couwenberg <sebastic@debian.org> Sun, 10 Jun 2018 00:28:43 +0200
postgis (2.4.4+dfsg-3) unstable; urgency=medium
* Add patch to fix parallel build of postgis_tiger_geocoder extension.
-- Bas Couwenberg <sebastic@debian.org> Sat, 09 Jun 2018 21:39:17 +0200
postgis (2.4.4+dfsg-2) unstable; urgency=medium
* Drop unnecessary get-orig-source target from rules file.
* Bump Standards-Version to 4.1.4, changes: get-orig-source target.
* Enable parallel builds.
* Don't use parallel for doc, docs-install & man-install targets.
* Strip trailing whitespace from changelog & control files.
* Add patch to fix expected test output with GDAL 2.3.0 & PROJ 5.1.0.
(closes: #901158)
-- Bas Couwenberg <sebastic@debian.org> Sat, 09 Jun 2018 19:11:01 +0200
postgis (2.4.4+dfsg-1) unstable; urgency=medium
* New upstream release.
* Update Vcs-* URLs for Salsa.
* Drop pkg-config patch, applied upstream.
* Strip trailing whitespace from README.Debian.
-- Bas Couwenberg <sebastic@debian.org> Fri, 06 Apr 2018 09:40:25 +0200
postgis (2.4.3+dfsg-4) unstable; urgency=medium
* Update watch file to use HTTPS.
* Drop patch to fix FTBFS with proj 5.0.0, fixed in proj 5.0.0-rc4.
* Build-Depend on postgresql-all in control.in too.
-- Bas Couwenberg <sebastic@debian.org> Thu, 22 Feb 2018 22:47:48 +0100
postgis (2.4.3+dfsg-3) unstable; urgency=medium
* Fix deprecated source override location.
* Add patch to fix FTBFS with proj 5.0.0.
(closes: #889981)
* Strip trailing whitespace from changelog file.
-- Bas Couwenberg <sebastic@debian.org> Sat, 17 Feb 2018 12:24:27 +0100
postgis (2.4.3+dfsg-2) unstable; urgency=medium
[ Bas Couwenberg ]
* Merge changes from Christoph Berg.
[ Christoph Berg ]
* Build-Depend on postgresql-all, we need server packages for testing.
* Tests: Install fuzzystrmatch dependency explicitly, not all PostgreSQL
versions feature CREATE EXTENSION CASCADE yet.
-- Bas Couwenberg <sebastic@debian.org> Tue, 16 Jan 2018 16:41:25 +0100
postgis (2.4.3+dfsg-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.1.3, no changes.
* Add patch for autotools-pkg-config-macro-not-cross-compilation-safe
lintian issue.
* Update copyright-format URL to use HTTPS.
-- Bas Couwenberg <sebastic@debian.org> Tue, 16 Jan 2018 15:23:39 +0100
postgis (2.4.2+dfsg-3) unstable; urgency=medium
[ Bas Couwenberg ]
* Use postgresql-all instead of postgresql-contrib-9.6 in tests/control.
(closes: #883608)
* Drop unused lintian overrides.
* Bump Standards-Version to 4.1.2, no changes.
[ Christoph Berg ]
* Test all extensions, not just postgis.
-- Bas Couwenberg <sebastic@debian.org> Wed, 06 Dec 2017 07:28:09 +0100
postgis (2.4.2+dfsg-2) unstable; urgency=medium
* Disable SFCGAL support, FTBFS with CGAL 4.11. (see: #876521)
* Add lintian overrides for spelling-error-in-binary false positives.
-- Bas Couwenberg <sebastic@debian.org> Thu, 30 Nov 2017 21:14:37 +0100
postgis (2.4.2+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
* Strip trailing whitespace from changelog.
* Drop deprecated autotools_dev helper.
-- Bas Couwenberg <sebastic@debian.org> Wed, 15 Nov 2017 21:05:04 +0100
postgis (2.4.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop postgresql-contrib-10 from Recommends, no longer a separate package
and provided by postgresql-10 now.
* Skip tests on powerpc, not a release architecture.
* Add lintian override for debian-watch-uses-insecure-uri.
* Mark postgis-doc & -scripts package as Multi-Arch: foreign.
* Update dh_autoreconf override to run autogen.sh instead of autoconf.
* Update symbols for 2.4.1.
* Drop license & copyright for autotools files.
-- Bas Couwenberg <sebastic@debian.org> Wed, 18 Oct 2017 21:36:00 +0200
postgis (2.4.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Skip tests on s390x, has issues with rounding.
* Bump Standards-Version to 4.1.1, no changes.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sat, 30 Sep 2017 10:49:27 +0200
postgis (2.4.0~rc3+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
-- Bas Couwenberg <sebastic@debian.org> Wed, 27 Sep 2017 09:11:26 +0200
postgis (2.4.0~rc2+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
* Change priority from extra to optional.
* Bump Standards-Version to 4.1.0, changes: priority.
* Update packaging for postgresql-10.
* Update symbols for 2.4.0~rc2.
-- Bas Couwenberg <sebastic@debian.org> Sun, 24 Sep 2017 22:32:29 +0200
postgis (2.4.0~rc1+dfsg-1~exp1) experimental; urgency=medium
[ Christoph Berg ]
* debian/pgversions: Bump to 9.3+, 9.2 is no longer supported.
* debian/control(.in): Bump GEOS build-dependency to 3.4.
* Include program names in postgis and postgis-gui descriptions.
* Clarify -scripts package description; the SQL files are also necessary for
the initial installation.
* debian/rules: Fix rdfind invocation to find SQL file duplicates properly.
* Declare Conflicts: -2.3-scripts in -2.4-scripts.
(closes: #875811)
[ Bas Couwenberg ]
* New upstream release candidate.
* Update symbols for 2.4.0~rc1.
-- Bas Couwenberg <sebastic@debian.org> Fri, 15 Sep 2017 22:00:13 +0200
postgis (2.4.0~beta1+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Update copyright file, changes:
- Update copyright years for copyright holders
- Add new copyright holders
- Add license & copyright for fuzzers sources
- Add license & copyright for protobuf files
- Add license & copyright for uthash.h
- Change license shortname from MIT to Expat
* Rename packages for new PostGIS minor version (2.3 -> 2.4).
* Drop avoid-bashisms.patch, applied upstream.
* Update symbols for 2.4.0~beta1.
* Drop unused overrides for hardening-no-pie.
* Add build dependencies for protobuf support.
-- Bas Couwenberg <sebastic@debian.org> Sat, 02 Sep 2017 20:28:29 +0200
postgis (2.3.3+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
-- Bas Couwenberg <sebastic@debian.org> Sat, 01 Jul 2017 20:50:54 +0200
postgis (2.3.2+dfsg-2) unstable; urgency=medium
* Enable PIE hardening flags.
(closes: #865775)
* Disable PIE on Ubuntu where it's still problematic.
* Bump Standards-Version to 4.0.0, no changes.
* Use pkg-info.mk variables instead of dpkg-parsechangelog output.
-- Bas Couwenberg <sebastic@debian.org> Sun, 25 Jun 2017 10:06:51 +0200
postgis (2.3.2+dfsg-1) unstable; urgency=medium
[ Markus Wanner ]
* Add a trivial autopkgtest to check creation of the extension.
[ Bas Couwenberg ]
* Fix test-extension-creation autopkgtest name in control file.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Sun, 18 Jun 2017 17:09:12 +0200
postgis (2.3.2+dfsg-1~exp2) experimental; urgency=medium
* Add patch avoid-bashisms.patch to fix the generated sql files.
Closes: #858610.
-- Markus Wanner <markus@bluegap.ch> Fri, 24 Mar 2017 19:46:04 +0100
postgis (2.3.2+dfsg-1~exp1) experimental; urgency=medium
* New upstream release.
* Fix cleanup of generated .install files.
-- Bas Couwenberg <sebastic@debian.org> Tue, 31 Jan 2017 08:21:43 +0100
postgis (2.3.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Use dh_install -a instead of deprecated -s option.
-- Bas Couwenberg <sebastic@debian.org> Tue, 29 Nov 2016 00:32:50 +0100
postgis (2.3.0+dfsg-3) unstable; urgency=medium
* Restructure control file with cme.
* Reorder (build) dependencies.
* Drop explicit liblwgeom-2.3-0 dependency from -postgis-2.3 package,
already set via ${shlibs:Depends}.
* Rewrite rules file to use dh sequencer.
* Rely on dpkg-buildflags instead of including buildflags.mk.
* Use DEB_BUILD_ARCH instead of DEB_HOST_ARCH.
* Fix unused substitution variable ${perl:Depends} for -scripts package.
-- Bas Couwenberg <sebastic@debian.org> Mon, 10 Oct 2016 15:32:04 +0200
postgis (2.3.0+dfsg-2) unstable; urgency=medium
* Update pgversions to require PostgreSQL 9.2 or newer.
* Run tests against all supported PostgreSQL versions.
* Downgrade the dependency from the extension package to the
scripts package to a recommendation, so the former becomes
co-installable with older versions, again. Closes: #839182.
-- Markus Wanner <markus@bluegap.ch> Fri, 30 Sep 2016 16:36:08 +0200
postgis (2.3.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Mon, 26 Sep 2016 21:00:23 +0200
postgis (2.3.0~rc1+dfsg-1~exp2) experimental; urgency=medium
* Update packaging for postgresql-9.6.
-- Bas Couwenberg <sebastic@debian.org> Sat, 24 Sep 2016 19:23:01 +0200
postgis (2.3.0~rc1+dfsg-1~exp1) experimental; urgency=medium
* New upstream release candidate.
* Add Conficts on postgresql-9.5-postgis-2.2-scripts to 2.3-scripts package.
(closes: #837294)
* Drop run_test-INC.patch, applied upstream. Refresh remaining patches.
* Add license & copyright for debian/* in copyright file.
* Update symbols for 2.3.0~rc1.
-- Bas Couwenberg <sebastic@debian.org> Mon, 19 Sep 2016 11:33:41 +0200
postgis (2.3.0~beta1+dfsg-1~exp1) experimental; urgency=medium
* New upstream beta release.
* Update copyright file, changes:
- Update copright years for various copyright holders
- Drop config.rpath from Files section, removed upstream
* Rename packages from 2.2 to 2.3.
* Update patches, changes:
- Drop hicolor-icons.patch, applied upstream
- Drop disable-tests.patch, only added to not block proj 4.9.3 transition
- Refresh remaining patches
* Drop custom icon installation, included upstream.
* Add patch to add . to @INC if removed for CVE-2016-1238.
-{pre,post}.pl scripts not executed by run_test.pl otherwise.
* Update symbols for 2.3.0~beta1.
-- Bas Couwenberg <sebastic@debian.org> Tue, 06 Sep 2016 15:59:10 +0200
postgis (2.2.2+dfsg-5) unstable; urgency=medium
* Skip tests on sparc64, not a release architecture.
* Add patch to disable tests failing on several architectures.
-- Bas Couwenberg <sebastic@debian.org> Tue, 06 Sep 2016 02:21:46 +0200
postgis (2.2.2+dfsg-4) unstable; urgency=medium
* Don't include desktop file & application icons in scripts package.
* Skip tests on alpha, has issues with sfcgal support.
* Drop unneeded build dependency on libssl-dev.
(closes: #828509)
* Disable interrupt tests, hang indefinitely.
-- Bas Couwenberg <sebastic@debian.org> Tue, 05 Jul 2016 01:41:48 +0200
postgis (2.2.2+dfsg-3) unstable; urgency=medium
[ Bas Couwenberg ]
* Disable tests on ppc64, fails to change owner and permissions.
* Install desktop file and application icons for shp2pgsql-gui.
[ Markus Wanner ]
* Re-rename the -scripts package to include the postgis version
for easier upgrading.
* Remove the postgis major.minor version from the generic file
and add the version from d/rules.
* Update README.Debian to reflect the renaming.
-- Markus Wanner <markus@bluegap.ch> Fri, 24 Jun 2016 22:11:56 +0200
postgis (2.2.2+dfsg-2) unstable; urgency=medium
* Disable tests on Ubuntu (and derivatives), hanging on their buildds.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Mon, 23 May 2016 19:30:19 +0200
postgis (2.2.2+dfsg-2~exp1) experimental; urgency=medium
* Bump Standards-Version to 3.9.8, no changes.
* Fix duplicate words in copyright file.
* Move GUI binaries to separate postgis-gui package.
-- Bas Couwenberg <sebastic@debian.org> Mon, 16 May 2016 20:27:09 +0200
postgis (2.2.2+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop patches applied upstream.
* Drop hppa.patch, fixed upstream.
* Update copyright years for Regina Obe & Sandro Santilli.
* Enable all hardening buildflags except PIE (causes build failure).
-- Bas Couwenberg <sebastic@debian.org> Wed, 23 Mar 2016 22:09:17 +0100
postgis (2.2.1+dfsg-3) unstable; urgency=medium
* Update Vcs-Git URL to use HTTPS.
* Skip tests on hppa, fails the tickets and wkb tests because of different
NaN representations.
(closes: #813846)
* Add patches for various typos.
* Bump Standards-Version to 3.9.7, no changes.
-- Bas Couwenberg <sebastic@debian.org> Wed, 02 Mar 2016 20:20:28 +0100
postgis (2.2.1+dfsg-2) unstable; urgency=medium
[ Bas Couwenberg ]
* Add patch by Helge Deller to fix wkb_output test failure on hppa & mips.
(closes: #810859)
* Add patch by Sandro Santilli to fix test failure on various architectures.
* Re-enable tests on arm64, powerpc, ppc64el & s390x.
* Skip tests on kfreebsd-i386 & mips64el, not release architectures.
[ Markus Wanner ]
* Add patch relax-test-timing-constraints.patch to increase chances of
tests passing on the pgapt infrastructure.
-- Bas Couwenberg <sebastic@debian.org> Thu, 21 Jan 2016 23:16:46 +0100
postgis (2.2.1+dfsg-1) unstable; urgency=medium
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Tue, 12 Jan 2016 20:59:04 +0100
postgis (2.2.1+dfsg-1~exp3) experimental; urgency=medium
* Disable tests on arm64, powerpc, ppc64el & s390x.
* Mark SFCGAL symbols as not available on armel.
-- Bas Couwenberg <sebastic@debian.org> Sun, 10 Jan 2016 23:01:12 +0100
postgis (2.2.1+dfsg-1~exp2) experimental; urgency=medium
* Rename packages for PostgreSQL 9.5.
-- Bas Couwenberg <sebastic@debian.org> Fri, 08 Jan 2016 10:20:38 +0100
postgis (2.2.1+dfsg-1~exp1) experimental; urgency=medium
* New upstream release.
* Drop typo patches, applied upstream.
* Rename liblwgeom package for SONAME bump.
* Fix liblwgeom LD_PRELOAD for the renamed library.
-- Bas Couwenberg <sebastic@debian.org> Thu, 07 Jan 2016 08:46:03 +0100
postgis (2.2.0+dfsg-3) unstable; urgency=medium
* Fix build with `dpkg-buildpackage -A`. Add dependency on build-arch-stamp
target to make build-indep-stamp target succeed.
(closes: #809123)
* Add patches for new typos.
-- Bas Couwenberg <sebastic@debian.org> Sun, 27 Dec 2015 16:10:27 +0100
postgis (2.2.0+dfsg-2) unstable; urgency=medium
* Don't build depend on sfcgal on armel, cgal not available.
* Disable tests on armel, no sfcgal support and fails interrupt_buffer test.
* Document libpostgis-java move to postgis-java in README.Debian.
-- Bas Couwenberg <sebastic@debian.org> Sun, 20 Dec 2015 00:56:07 +0100
postgis (2.2.0+dfsg-1) unstable; urgency=medium
* Update symbols for 2.2.0.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Wed, 09 Dec 2015 21:30:54 +0100
postgis (2.2.0+dfsg-1~exp1) experimental; urgency=medium
* New upstream release.
* Drop patches applied upstream.
* Rename liblwgeom package to liblwgeom-2.2-2 to match new SONAME.
* Set executable bit for postgis_restore.pl to fix lintian warning.
-- Bas Couwenberg <sebastic@debian.org> Thu, 08 Oct 2015 21:09:52 +0200
postgis (2.2.0~rc1+dfsg-1~exp3) experimental; urgency=medium
* Add patches to fix mapalgebra test failure on big endian architectures.
-- Bas Couwenberg <sebastic@debian.org> Mon, 05 Oct 2015 21:47:42 +0200
postgis (2.2.0~rc1+dfsg-1~exp2) experimental; urgency=medium
[ Markus Wanner ]
* Drop the transitional postgresql-X.Y-postgis-2.0-script package.
* Rename NEWS.Debian to NEWS to make it actually work. Add a warning
notifying the user to upgrade his databases.
[ Bas Couwenberg ]
* Drop add-lm-for-liblwgeom.patch, fixed upstream.
* Add patch to fix test failures on big endian architectures.
-- Bas Couwenberg <sebastic@debian.org> Sun, 04 Oct 2015 18:11:02 +0200
postgis (2.2.0~rc1+dfsg-1~exp1) experimental; urgency=medium
[ Markus Wanner ]
* New upstream version
* Update package names, control, and rules for the new version 2.2.
* Refresh patches to apply, again.
* Adjust pgversions: 2.2 now needs at least PostgreSQL 9.1 to work.
* Drop old deprecation warnings for 2.0 and the transitional
package postgresql-9.4-postgis-2.1-scripts.
* Drop all Java related things, including the patches use-debian-maven
and strip-invalid-whitespace-in-pom.patch.
* Update copyright information.
[ Bas Couwenberg ]
* Add build dependency on libsfcgal-dev.
* Fix symbols version for pre-releases.
* Update copyright file, changes:
- Update copyright years
- Add copyright holders for new files
- Add license & copyright for address_standardizer extension
- Add license & copyright for bytebuffer files
- Drop license & copyright for java/* (separate project now)
* Drop patches for java bindings, refresh remaining patches.
* Update make commands for *_upgrade.sql files.
* Rename liblwgeom package to match SONAME.
* Update symbols for sfcgal & version 2.2.0 RC1.
* Update fix-spelling patch for additional typos.
* Reorder rules targets in order of execution.
* Fix liblwgeom LD_PRELOAD for regression tests.
* Drop unused postgis 2.0 debconf templates & translations.
-- Bas Couwenberg <sebastic@debian.org> Sat, 26 Sep 2015 15:29:26 +0200
postgis (2.1.8+dfsg-4) unstable; urgency=medium
* Bump minimum required libgdal-dev to 1.11.2+dfsg-3~ for spatialite
with liblwgeom rebuild.
-- Bas Couwenberg <sebastic@debian.org> Fri, 28 Aug 2015 11:20:39 +0200
postgis (2.1.8+dfsg-3) unstable; urgency=medium
* Bump minimum required libgdal-dev to 1.11.2+dfsg-2~ for circular
dependency change.
* Rebuild for geos transition.
-- Bas Couwenberg <sebastic@debian.org> Thu, 27 Aug 2015 17:33:48 +0200
postgis (2.1.8+dfsg-2) unstable; urgency=medium
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update copyright file, group files by path & license.
-- Bas Couwenberg <sebastic@debian.org> Sun, 23 Aug 2015 12:25:28 +0200
postgis (2.1.8+dfsg-1) unstable; urgency=medium
[ Markus Wanner ]
* New upstream version.
* Re-add libmaven-compiler-plugin-java to the B-D as an alternative, so
this package remains backward compatible.
[ Bas Couwenberg ]
* Update copyright years for autotools files.
* Update liblwgeom package name for 2.1.8 version.
-- Markus Wanner <markus@bluegap.ch> Fri, 10 Jul 2015 12:51:42 +0200
postgis (2.1.7+dfsg-2) unstable; urgency=medium
* Apply patch from Ubuntu to depend on libmaven-compiler-plugin-2.5-java,
fixes build failure with maven-compiler-plugin 3.x.
(closes: #788761)
* Update copyright file, changes:
- Drop .0 from GPL license shortnames
- Align copyright holders
- Group files & copyright by license
-- Bas Couwenberg <sebastic@debian.org> Sun, 14 Jun 2015 21:55:36 +0200
postgis (2.1.7+dfsg-1) unstable; urgency=medium
* Restore get-orig-source target, but use uscan instead of custom script.
* Move from experimental to unstable.
-- Bas Couwenberg <sebastic@debian.org> Fri, 01 May 2015 20:10:33 +0200
postgis (2.1.7+dfsg-1~exp1) experimental; urgency=medium
[ Bas Couwenberg ]
* Drop get-orig-source target, script removed in favor of uscan.
[ Markus Wanner ]
* New upstream release.
-- Markus Wanner <markus@bluegap.ch> Mon, 30 Mar 2015 19:51:02 +0200
postgis (2.1.6+dfsg-1~exp1) experimental; urgency=medium
* New upstream release.
* Skip tests on mipsel too, due to persistent buildd issues.
* Use uscan repacking to exclude CITE tests from upstream source.
* Update patches for new upstream release.
* Generate pom.xml before running maven.
* Update symbols for liblwgeom-2.1.6.
-- Bas Couwenberg <sebastic@debian.org> Sat, 21 Mar 2015 15:49:02 +0100
postgis (2.1.5+dfsg-1~exp2) experimental; urgency=medium
* Update symbols for liblwgeom-2.1.5.
* Update Homepage URL from postgis.refractions.net to postgis.net.
* Update my email to use @debian.org address.
* Add build dependency on openjdk-7-jdk | java7-sdk required to build
libpostgis-java. OpenJDK 7 is not yet available on GNU/Hurd.
* GNU/Hurd doesn't implement semaphores; skip regress tests on hurd-*.
-- Bas Couwenberg <sebastic@debian.org> Sun, 08 Feb 2015 21:41:31 +0100
postgis (2.1.5+dfsg-1~exp1) experimental; urgency=medium
[ Markus Wanner ]
* Downgrade the recommends on postgis to a suggestion, so we don't ever
recommend all the way through to another PostgreSQL major version,
when installing a specific postgresql-X.Y-postgis-2.1 package.
[ Bas Couwenberg ]
* New upstream release.
* Add upstream metadata.
* Add Brazilian translation by José de Figueiredo. Closes: #771782.
* Fix get-orig-source path in watch file.
* Update copyright file, changes:
- Update copyright years
- Change config.{sub,guess} license to GPL-3+ with Autoconf exception
- Remove {extensions,raster}/Makefile, no longer included.
* Drop enable-ppc64el.patch, applied upstream. Refresh remaining patches.
-- Bas Couwenberg <sebastic@xs4all.nl> Wed, 24 Dec 2014 14:49:02 +0100
postgis (2.1.4+dfsg-2) unstable; urgency=medium
* Add Dutch translation by Frans Spiesschaert. Closes: #765409.
* Bump S-V: no changes required.
-- Markus Wanner <markus@bluegap.ch> Wed, 15 Oct 2014 10:58:52 +0200
postgis (2.1.4+dfsg-1) unstable; urgency=medium
[ Paulo Flabiano Smorigo ]
* add -lm for liblwgeom to avoid linkage problem.
* enable ppc64el.
(closes: #759505)
[ Bas Couwenberg ]
* Add Swedish translation by Martin Bagge. Closes: #761975.
* Add strip-invalid-whitespace-in-pom.patch to fix mh_cleanpom failure.
* Update copyright file.
* Add patch to fix FTBFS on hurd-i386.
[ Markus Wanner ]
* New upstream release, 2.1.4. Adapt packaging to the new version.
* Drop patches debian-versions, fix-armel, use-json-c, and
postgresql-9.4-fixes.patch, these should be fixed upstream.
* Refresh patches use-debian-maven, honor-build-flags, and
enable-ppc64el.patch.
* Add patch correct-java-version.patch.
-- Markus Wanner <markus@bluegap.ch> Sun, 21 Sep 2014 19:39:46 +0200
postgis (2.1.3+dfsg-4) unstable; urgency=low
[ Bas Couwenberg ]
* Add Czech translation by Michal Šimůnek. Closes: 751426.
* Add Japanese translation by victory. Closes: 756718.
* Add Danish translation by Joe Dalton. Closes: 757653.
* Update for PostgreSQL 9.4.
[ Jérémy Lal ]
* Switch Build-Deps back to default-jdk instead of openjdk 7 | 8,
as gcj-jdk does work now.
* Backport upstream commits fixing test results with PostgreSQL 9.4.
[ Markus Wanner ]
* Let postgis recommend the (most up to date) extension, rather than
only suggesting it.
-- Markus Wanner <markus@bluegap.ch> Thu, 14 Aug 2014 13:40:03 +0200
postgis (2.1.3+dfsg-3) unstable; urgency=high
* In patch use-debian-maven: Also drop the version requirement for the
maven-javadoc-plugin.
* Add Breaks & Replaces against liblwgeom-2.1.2, which shipped
liblwgeom-2.1.3.so in a package named liblwgeom-2.1.2 due to the
attempted quick security fix. Closes: #749015.
-- Markus Wanner <markus@bluegap.ch> Thu, 22 May 2014 17:59:05 +0200
postgis (2.1.3+dfsg-2) unstable; urgency=high
[ Bas Couwenberg ]
* Bump liblwgeom package name from 2.1.2 to 2.1.3.
(closes: #748756)
[ Markus Wanner ]
* Add NEWS.Debian to warn about a possibly breaking change.
* Correct patch use-json-c. Drop explicit dependencies, but rely on
shlibs:Depends, instead. Closes: #748332.
* Revert parts of the patch use-debian-maven to actually build the
javadocs. Add a libpostgis-java-doc package carrying the docs.
-- Markus Wanner <markus@bluegap.ch> Wed, 21 May 2014 10:15:57 +0200
postgis (2.1.3+dfsg-1) unstable; urgency=high
* New upstream release, 2.1.3: strengthens the code to forbid database
users to trigger opening of arbitrary files or network connections by
the system user running the PostgreSQL server process.
* Add B-D-I libmaven-javadoc-plugin-java to support a new plugin in the
jdbc pom file - supposedly generating java documentation.
* Adjust the following patches to the new release: debian-versions, and
use-debian-maven.
* Refresh line numbers on: honor-build-flags, use-json-c.
* Drop obsolete patch: java-version-fix.
-- Markus Wanner <markus@bluegap.ch> Wed, 14 May 2014 13:55:46 +0200
postgis (2.1.2+dfsg-3) unstable; urgency=low
* Also use dh-autoreconf to update libtool.m4. Closes: #744648. Move
that and dh_autotools-dev above the copying step.
* Update B-D on libjson-c-dev. Add patch use-josn-c to not only detect,
but actually use the new directory for its include files.
Closes: #745010.
* Allow translations of the debconf notice for postgis-2.0 deprecation.
* Add a German translation.
* Add a Russian translation by Yuri Kozlov. Closes: #744268.
* Add a French translation by Julien Patriarca. Closes: #744749.
* Add a Polish translation by Michał Kułach. Closes: #745068.
* Add a Portuguese translation by Américo Monteiro. Closes: #745148.
* Add a Spanish translation by Matias A. Bellone. Closes: #745785.
* Add a Italian translation by Beatrice Torracca. Closes: #747587.
-- Markus Wanner <markus@bluegap.ch> Mon, 12 May 2014 18:53:55 +0200
postgis (2.1.2+dfsg-2) unstable; urgency=medium
* Fix arch-only builds by moving the maven-repo-helper dependency from
B-D-I to B-D.
-- Markus Wanner <markus@bluegap.ch> Mon, 07 Apr 2014 16:36:07 +0200
postgis (2.1.2+dfsg-1) unstable; urgency=medium
* Add myself to Uploaders.
* Update copyright file using copyright-format 1.0.
* Repack upstream tarball, remove OGC test cases with unclear license.
(closes: #743489)
* Add gbp.conf to use pristine-tar by default.
* Add man page for raster2pgsql.
(closes: #717307)
* Bump Debhelper compatibility to 9.
* Add partial German translation for documentation.
Thanks to Chris Leick for the patch.
(closes: #729284)
-- Bas Couwenberg <sebastic@xs4all.nl> Fri, 04 Apr 2014 20:16:30 +0200
postgis (2.1.2-1) unstable; urgency=low
* New upstream release, 2.1.1. Closes: #728724.
* Adapt liblwgeom package name and dependencies to match the new release
version number.
* Add a suggestion for postgis-doc. Closes: #737497.
* Refresh patches debian-versions, honor-build-flags, and
java-version-fix.
* Drop patches fix-kfreebsd, fix-big-endian, joinsel-issue2543, and
doc-resources - these got applied upstream.
* Add upstream issue number to patch fix-armel - that one hasn't been
applied upstream, yet.
-- Markus Wanner <markus@bluegap.ch> Mon, 31 Mar 2014 13:07:07 +0200
postgis (2.1.1-6) unstable; urgency=low
* Recommend postgresql-contrib-M.N for the fuzzystrmatch
extension, which postgis_tiger_decoder depends on.
* Update README.Debian, make sure the sql scripts are included in the
-scripts package for the newest Postgres version as well.
Closes: #724626.
* Correct java-version-fix, so the jar-version becomes 2.1.1 rather than
some rc. Closes: #721721.
* Deduplicate highly redundant .sql files in *-postgis-scripts.
* Drop the ored dependency on openjdk-6-jdk.
* Add a couple more files to the extend-diff-ignore.
-- Markus Wanner <markus@bluegap.ch> Wed, 19 Mar 2014 10:16:41 +0100
postgis (2.1.1-5) unstable; urgency=low
* Use dh-autoreconf for up-to-date config.guess and config.sub.
Closes: #727945.
-- Markus Wanner <markus@bluegap.ch> Mon, 27 Jan 2014 21:10:42 +0100
postgis (2.1.1-4) unstable; urgency=low
* Drop an unneeded fixmakedoc patch.
* Add style.css and images to postgis-doc. Closes: #649352.
-- Markus Wanner <markus@bluegap.ch> Sun, 19 Jan 2014 15:48:48 +0100
postgis (2.1.1-3) unstable; urgency=low
* Fix FTBFS on at least powerpc and mips by commenting out a few tests
that check against a serialized representation, which is architecture
dependent.
* Apply (experimental) upstream patch preventing against selectivity
estimates bigger than 1.0.
-- Markus Wanner <markus@bluegap.ch> Tue, 14 Jan 2014 22:18:56 +0100
postgis (2.1.1-2) unstable; urgency=medium
* Fix FTBFS on armel, maybe others, with yet another patch.
* debian/control: bumped Standard-Versions to 3.9.5, no changes needed.
-- Markus Wanner <markus@bluegap.ch> Thu, 09 Jan 2014 20:00:54 +0100
postgis (2.1.1-1) unstable; urgency=low
* New upstream release
* Drop patches upstream-r11979, upstream-r11983, upstream-r11990, and
minor-r11979-correction; these are included in this release.
* control, rules, liblwgeom-2.1.*.{install,symbols}: adapt to new liblwgeom
version.
* Adjust patch debian-versions: in doc/Makefile.comments, refer to
Postgres 9.3, as that's now default. Set POSTGIS_LIBXML2_VERSION to
2.9.1, as currently shipped.
* Adjust line numbers in patches honor-build-flags and link-liblwgeom
-- Markus Wanner <markus@bluegap.ch> Thu, 12 Dec 2013 20:38:27 +0100
postgis (2.1.0-4) unstable; urgency=low
* Rename pg-X.Y-postgis-2.1-scripts package to exclude PostGIS version
number.
* Add transitional postgis-2.0-scripts packages for all Postgres
versions supported by the old *and* new PostGIS version. These
effectively remove scripts and the postgis.control file prior to
installing a newer *-postgis-scripts package, which Breaks+Replaces
the old one. Add appropriate notification messages on upgrade.
* Add patches upstream-r11983 and upstream-r11990 to try some more
big-endian fixes.
-- Markus Wanner <markus@bluegap.ch> Sun, 20 Oct 2013 20:34:51 +0200
postgis (2.1.0-3) unstable; urgency=low
* Update patch upstream-r11934 to cover rev 11979, instead. It seems to
be a more thorough fix. Add minor-r11979-correction patch to account
for some new WARNINGs, that didn't appear, before.
-- Markus Wanner <markus@bluegap.ch> Thu, 26 Sep 2013 15:36:22 +0200
postgis (2.1.0-2) unstable; urgency=low
* Correct generation of debian/control: drop an unnecessary grep in
debian/pgversions. I broke it when changing to '9.0+'.
* Copy binaries for the common binary package 'postgis' from the newest
version, rather than hardcoding 9.1.
* Add experimental patch from upstream to increase pass rate on
non-Intel architectures (upstream-r11934).
* Add a description and some tags to patch fix-manpage.
-- Markus Wanner <markus@bluegap.ch> Tue, 10 Sep 2013 21:53:57 +0200
postgis (2.1.0-1) unstable; urgency=low
* New upstream release
* Update pgversions, use '9.0+' feature of pg-common >= 148.
* Adjust liblwgeom version and symbols for new version.
* Update build dependencies according to README.postgis (FIXME: prefer
geos-3.4)
* Adapt patches debian-versions, java-version-fix, link-liblwgeom,
honor-build-flags.
* Refresh line numbers on patches: fixmakedoc, fix-spelling.
* Drop patches: fix-manpages, fix-test-case-for-i386,
fix-tests-on-big-endian: applied upstream.
* shp2pgsql-gui.1 is now provided upstream. Drop the debian variant. Add
a patch stripping an initial UTF-8 marker from the upstream file.
-- Markus Wanner <markus@bluegap.ch> Mon, 26 Aug 2013 22:02:22 +0200
postgis (2.0.3-8) unstable; urgency=low
* Don't err out when setting JAVA_HOME, but only later in
build-indep. So arch-only builds that don't have (nor need) the java
cruft available can succeed.
-- Markus Wanner <markus@bluegap.ch> Wed, 07 Aug 2013 22:10:02 +0200
postgis (2.0.3-7) unstable; urgency=low
* Let rules check for different OpenJDK versions supported and set
JAVA_HOME accordingly.
* Use a simple rm rather than invoking maven. Allows us to move all java
related Build-Depends back to Build-Depends-Indep.
-- Markus Wanner <markus@bluegap.ch> Wed, 07 Aug 2013 13:12:25 +0200
postgis (2.0.3-6) unstable; urgency=low
* Cleanup check target, reduce duplication.
* Re-add postgis_restore.pl from the utils directory. Closes: #718358.
* Add patch fix-tests-on-big-endian to fix unit tests on big
endian. Closes: #718749.
-- Markus Wanner <markus@bluegap.ch> Wed, 06 Aug 2013 20:29:42 +0200
postgis (2.0.3-5) unstable; urgency=low
* Build-Deps: rather than default-jdk, depend on openjdk 6 or 7, as the
gcj-jdk didn't work.
* Add patch fix-kfreebsd to get rid of a compilation error on kFreeBSD.
* rules: if 'make check' fails, print all the diffs of failing tests on
stdout.
-- Markus Wanner <markus@bluegap.ch> Thu, 25 Jul 2013 21:45:17 +0200
postgis (2.0.3-4) unstable; urgency=low
* Build-Deps: also make libmaven-clean-plugin-java and
libmaven-jar-plugin-java a full build dependency. Fixes another FTBFS.
-- Markus Wanner <markus@bluegap.ch> Tue, 23 Jul 2013 09:40:35 +0200
postgis (2.0.3-3) unstable; urgency=low
[Mònica Ramírez Arceda]
* Add a manpage for shp2pgsql-gui. Closes: #656012.
[Markus Wanner]
* Add fix-test-case-for-i386 patch, back-ported from upstream's
r10642. Fixes tests on i386 (and possibly other non-amd64
architectures).
-- Markus Wanner <markus@bluegap.ch> Fri, 19 Jul 2013 10:59:47 +0200
postgis (2.0.3-2) unstable; urgency=low
* Correct dependency on libgdal-dev, allowing the old, now transitional
libgdal1-dev to satisfy it as well.
* Build-Deps: correct libgeos-dev version requirement, depend on
libpostgresql-jdbc-java instead of (transitional) libpg-java.
* Tweak extend-diff-ignore to save us a copying dance in
debian/rules. Cleanup the 'clean' target a bit.
* Make maven2 a full build-dep (not just B-D-Indep). Closes: #714712.
* Pass an LD_PRELOAD to postgres when running 'make check', so the
postgis library being loaded can find liblwgeom (and doesn't try to
use a pre-installed one).
* Add postgresql-common build dependency, as the above needs a relatively
new pg_createcluster feature.
* Drop libpostgresql-jdbc-java from B-D-I, it's already in B-D.
-- Markus Wanner <markus@bluegap.ch> Thu, 18 Jul 2013 20:29:41 +0200
postgis (2.0.3-1) unstable; urgency=low
[Markus Wanner]
* Team upload
* New upstream release, 2.0.3
* Drop Build-Dep on postgresql server binaries.
* Downgrade postgresql-9.1-postgis dependency on postgis to a
recommendation. Downgrade several conflicts to breaks.
* Upgrade postgresql-9.1-java misc-depends from suggestion to dependency.
* Add patch fix-spelling: fixes a common spelling error in
liblwgeom/lwout_wkt.c.
* Ignore changes of some auto-updated files (via source/options). Let
debian/rules cleanup some more generated files.
* rules: use a separate build directory per Postgres version, swap
dh_makeshlibs and dh_installdeb, build in the appropriate build targets,
let install only install pre-built stuff.
* Compile the postgis jdbc java library again, using maven directly. Add
required Build-Depends-Indeps.
* Separate large SQL scripts and perl utils. Put them in their own
architecture independent indepentend package (..-scripts).
* Separate PostGIS documentation into a postgis-doc package, register its
contents with doc-base.
* Append the PostGIS version to postgresql-9.1-postgis, so multiple
versions of it can be co-installed. Required to keep systems working
after an upgrade.
* Represent the fact that lwgeom isn't backward compatible by renaming
liblwgeom2 to liblwgeom-2.0.3.
* Add patch java-version-fix: Corrects java jdbc jar version.
* Policy updated to 3.9.4. No changes.
* Add pgversions and allow generation of debian/control and various
install files based on it.
* Update debian/copyright a bit.
* Update and improve watchfile.
[Stephen Frost]
* Split out liblwgeom2 and liblwgeom-dev from postgis.
* Add patches debian-versions and link-liblwgeom.
* Let postgis install under /usr/lib/postgresql rather than under
/usr/lib/postgis plus symlink in the former directory.
* debian/rules: improve cleanup target.
* Simplify and tweak build rules.
[Jerome Villeneuve Larouche]
* Removed old patches (generator, html_doc_resources, install)
* Added patch fixmakedoc for doc/Makefile.comments.
-- Markus Wanner <markus@bluegap.ch> Wed, 05 Jun 2013 23:12:35 +0200
postgis (1.5.3-2) unstable; urgency=low
* Moved pgsql2shp/shp2pgsql under conventional /usr/bin path.
(closes: #648176)
* New patch html_doc_resourcesi added: now installing HTML documentation.
Thanks Andrew Harvey.
(closes: #649352)
-- Francesco Paolo Lovergine <frankie@debian.org> Mon, 21 Nov 2011 15:43:23 +0100
postgis (1.5.3-1) unstable; urgency=low
* New upstream minor release, with fix for PostgreSQL 9.1.
* Repository moved to git and changed Vcs-* fields in debian/control.
* Removed obsolete debian/*_lenny.
* Policy bumped to 3.9.2. No changes.
* Moved to source format 3.0 with quilt support.
* Dehelper compatibility level set to 8.
* Updated README to reflect current location of template SQL files.
(closes: #575622)
* Postrm was assigned to the wrong package (postgis), which caused
unexpected behavior on purging. Now each purge of postgresql-*-postgis will
cause extension removal.
(closes: #596663)
* Added PostgreSQL 9.1 support.
(closes: #633111)
* Dropped PostgreSQL 8.4 support, as required for wheezy.
(closes: #639474,#642356)
* Fixed (again) README.Debian for paths.
(closes: #575622)
-- Francesco Paolo Lovergine <frankie@debian.org> Thu, 15 Sep 2011 15:14:57 +0200
postgis (1.5.2-1) unstable; urgency=low
* New upstream release, with a few bug fixes.
* Added shp2pgsql-gui binary.
* Removed patches, applied upstream: getopt.
-- Alan Boudreault <aboudreault@mapgears.com> Wed, 29 Sep 2010 09:16:10 -0400
postgis (1.5.1-5) unstable; urgency=high
* This version requires geos >= 3.1.1, debian/control updated.
(closes: #580462)
* Moved libpostgis-java to java section.
* README.Debian has been fixed for old lwpostgis.sql since ages. Just ack.
(closes: #575622)
-- Francesco Paolo Lovergine <frankie@debian.org> Mon, 24 May 2010 09:40:32 +0200
postgis (1.5.1-4) unstable; urgency=high
* [PATCH] getopt.dpatch added to avoid var collisions among Postgis getopt
and glibc one. That solves a FTBS on mips/mipsel.
-- Francesco Paolo Lovergine <frankie@debian.org> Sat, 22 May 2010 19:03:39 +0200
postgis (1.5.1-3) unstable; urgency=medium
* Removed custom CFLAGS which probably caused FTBS on mips/mipsel archs.
-- Francesco Paolo Lovergine <frankie@debian.org> Sat, 22 May 2010 11:20:44 +0200
postgis (1.5.1-2) unstable; urgency=low
* Added generator.dpatch to avoid a buffer overflow on alpha due to
a too narrow buffer apparently.
-- Francesco Paolo Lovergine <frankie@debian.org> Mon, 17 May 2010 14:21:37 +0200
postgis (1.5.1-1) unstable; urgency=low
* New upstream release, with a few bug fixes.
-- Alan Boudreault <aboudreault@mapgears.com> Sun, 16 May 2010 14:42:21 -0400
postgis (1.5.0-1) unstable; urgency=low
* New upstream major release, with many enhancements.
* Policy bumped to 3.8.4, no changes.
* Added libxml2-dev as new build-dep.
-- Francesco Paolo Lovergine <frankie@debian.org> Wed, 10 Mar 2010 09:32:20 +0100
postgis (1.4.0-2) unstable; urgency=low
* Upload to unstable.
* Better parameterized debian/rules against postgis $(VERSION).
* Added dblatex and libcunit1-dev among build-deps.
* Added postgis_comments.sql to contrib/ SQL templates.
* Dropping 8.3 support, no more supported for squeeze.
(closes: #559587)
* Do not stop on error in postrm if the target dir does not exist.
(closes: #560409)
-- Francesco Paolo Lovergine <frankie@debian.org> Fri, 11 Dec 2009 13:10:34 +0100
postgis (1.4.0-1) experimental; urgency=low
* New upstream release.
* Updated configure arguments now obsolete/changed.
* Required some new var initialization for installing in debian/ its trees.
* The liblwgeom solib is now named postgis, so changed a few things around.
* Updated build-dep: proj -> libproj-dev.
* Policy bumped to 3.8.3. No changes.
* Debhelper level set to 7.
* Added ${misc:Depends}.
* Now postgresql >= 8.3, geos >= 3 and proj >= 4.5 are required. This is
reflected in debian/control for safety.
* Added PostgreSQL 8.4 support, the 8.3 version will be dropped when
required. Now the .in template for postrm changed for multiversioning.
* Now build-dep on default-jdk which is DFSG-safe.
* Removed Fabio Tranchitella among Uploaders because retired from DebianGis.
* Now build-dep on imagemagick because doc generation requires convert tool.
* Added patch install.dpatch to manage minor inconsistencies in the java
inatallation scripts.
* stamp files are now auto-cleaned.
* Cleaned debian/rules to be idempotent.
-- Francesco Paolo Lovergine <frankie@debian.org> Mon, 14 Sep 2009 11:58:45 +0200
postgis (1.3.5-1) unstable; urgency=low
* New upstream release.
* debian/control: bumped Standard-Versions to 3.8.0, no changes needed.
* debian/rules: copy utils/*.pl to the binary package. (Closes: #491154)
-- Fabio Tranchitella <kobold@debian.org> Thu, 05 Mar 2009 22:47:15 +0100
postgis (1.3.3-3) unstable; urgency=low
* Added Vcs-* fields in debian/control.
* Fixed download URL in debian/copyright.
* Now it installs the shared lib in a private postgis path and makes a
hard link in the postgres library path at configure time. That would
allow coexistence of different flavors of the library which could be
used by different DBs at run-time and allowing soft/hard-upgrade scripts
working. (closes: #441794, #441797)
-- Francesco Paolo Lovergine <frankie@debian.org> Mon, 09 Jun 2008 13:03:04 +0200
postgis (1.3.3-2) unstable; urgency=high
* Dropped postgresql 8.2 support due to removal in Lenny.
(closes: #474287)
-- Francesco Paolo Lovergine <frankie@debian.org> Fri, 06 Jun 2008 23:57:45 +0200
postgis (1.3.3-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Tue, 15 Apr 2008 09:01:58 +0200
postgis (1.3.2-2) unstable; urgency=low
* Add support for postgresql-8.3. (Closes: #466417, #471689)
-- Fabio Tranchitella <kobold@debian.org> Wed, 19 Mar 2008 19:23:00 +0100
postgis (1.3.2-1) unstable; urgency=low
[ Francesco Paolo Lovergine ]
* Added Homepage field in debian/control
* Fixed lintian warning: debian-rules-ignores-make-clean-error
[ Fabio Tranchitella ]
* New upstream release.
* Updated Standard-Version to 3.7.3.
-- Fabio Tranchitella <kobold@debian.org> Mon, 31 Dec 2007 10:57:12 +0100
postgis (1.3.1-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Mon, 10 Sep 2007 10:36:30 +0200
postgis (1.2.1-2) unstable; urgency=low
* Added build-dep from libjts-java 1.7
(closes: #425919)
* Added me among uploaders.
-- Francesco Paolo Lovergine <frankie@debian.org> Sat, 16 Jun 2007 01:00:49 +0200
postgis (1.2.1-1) unstable; urgency=low
* New upstream release.
* Migrate to PostgreSQL 8.2-only (Closes: #419297)
* Remove busted templategis from the build (new in 1.2.1 anyway).
(Currently attempts to install files in /etc/default, doesn't
respect $DESTDIR and overall looks like a godawful mess)
-- Stephen Frost <sfrost@debian.org> Fri, 13 Apr 2007 09:19:18 +0200
postgis (1.1.6-2) unstable; urgency=low
* debian/README.Debian: added documentation for the new users on how to use
postgis and how to enable it for new or existent databases.
-- Fabio Tranchitella <kobold@debian.org> Mon, 18 Dec 2006 17:19:27 +0100
postgis (1.1.6-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Tue, 7 Nov 2006 09:47:00 +0100
postgis (1.1.5-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Tue, 31 Oct 2006 21:56:32 +0100
postgis (1.1.4-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Fri, 6 Oct 2006 10:51:51 +0200
postgis (1.1.3-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Sun, 16 Jul 2006 22:19:25 +0200
postgis (1.1.2-1) unstable; urgency=low
- Fabio Tranchitella <kobold@debian.org>
* New upstream release. (Closes: #314854)
* Renamed packages to follow the actual naming conventions.
(Closes: #312675)
* Re-packaging, let's try to have postgis in etch. (Closes: #309528, #310094)
* Fixed several FTBFS and uninstallable bugs.
(Closes: #316519, #335631, #363946, #323120)
* Fixed libpostgis-java package FTBFS. (Closes: #308848)
* Move to the new postgresql infrastructure. (Closes: #321913, #312676)
* Team maintainership, added myself as uploader.
- Stephen Frost <sfrost@debian.org>
* Added myself as uploader
* Removed Alex from uploaders (for now at least)
* Cleaned up doc/html/postgis.html handling
* Renamed postgis-common -> postgis
* Made postgis package Arch: any
* Moved PostGIS binaries into base postgis package
* Changed postgis package to only suggest server packages (could very
reasonably be installed on a non-server machine for the PostGIS
binaries)
* Dropped extra extraneous linking (previously the server module and
the binaries were linking to everything the Postgres server linked
to, unnecessary and potentially dangerous)
* Dropped support for 7.4, after discussion with Martin Pitt and others
it's clear that there isn't any need for a 7.4 version of PostGIS in
etch.
* New upstream release Closes: #311732
-- Stephen Frost <sfrost@debian.org> Wed, 31 May 2006 16:33:48 -0400
postgis (1.1.0-7) unstable; urgency=low
* postgresql-postgis-common should depend on postgresql-common | postgresql,
not the other way.
-- Alex Bodnaru <alexbodn@012.net.il> Tue, 21 Mar 2006 03:13:04 +0200
postgis (1.1.0-6) unstable; urgency=low
* Closes: #312675
postgresql-postgis-utils is the only utils package, replacing the
previous postgresql-pg_version-postgis-utils. a further elimination
of older method reminiscence.
-- Alex Bodnaru <alexbodn@012.net.il> Sat, 18 Mar 2006 23:13:04 +0200
postgis (1.1.0-5) unstable; urgency=low
* Closes: #312675
postgresql-postgis-utils is the only utils package, replacing the
previous postgresql-pg_version-postgis-utils.
* Closes: 335631
Depends on libgeos which passed c2 ABI transition.
* Uses /usr/share/postgresql-common/supported-versions to dynamically
detect postgresql supported versions. thanks martin.
-- Alex Bodnaru <alexbodn@012.net.il> Thu, 9 Mar 2006 04:26:05 +0200
postgis (1.1.0-4) unstable; urgency=low
* made invariable control file to match standards. the control file
may be made automatically by calling 'debian/rules maintainer-configure'
* the supported postgresql versions may be filtered, by filling
'debian/_supported.postgresql'.
* the postgis binary packages have been renamed, to obey the postgresql
standard for extension packages: now their name allways begins with
'postgresql', eventually followed by the postgresql major and minor
version, if a specific one is needed.
'libpostgis' has become 'postgis'.
-- Alex Bodnaru <alexbodn@012.net.il> Mon, 27 Feb 2006 03:26:15 +0200
postgis (1.1.0-3) unstable; urgency=low
* minor bug fixes
* recompilation
-- Alex Bodnaru <alexbodn@012.net.il> Sun, 26 Feb 2006 05:16:09 +0200
postgis (1.1.0-2) unstable; urgency=low
* minor bug fixes
* the package builds again on systems without multiclustering postgresql.
-- Alex Bodnaru <alexbodn@012.net.il> Wed, 28 Dec 2005 07:11:39 +0200
postgis (1.1.0-1) unstable; urgency=low
* Automatic upstream version tracking.
-- Alex Bodnaru <alexbodn@012.net.il> Wed, 21 Dec 2005 05:15:37 +0200
postgis (1.0.4-2) unstable; urgency=low
* Closes: #321913 Closes: #312676
Support of multiple postgis installations on the same postgresql server.
Please note:
- The template database will be template_gis#SONAME#,
- The famous (lw)?postgis.sql file will be postgis#SONAME#.sql,
where #SONAME# is roughly the major upstream postgis version.
* Closes: #323120
The building process is autodetecting the appropriate postgresql-dev.
* README.Debian updated to support multiversion postgresql architecture.
* Closes: #314854
Newer upstream version.
* Minor improvements to make the build process more quiet.
* Default variables are being kept in configuration files. Thus, the same
package diff will serve for postgis-0.9 and 1.0.
* Closes: #310100
The template database is no longer been installed/removed with every
installation/remove/upgrade of postgis. It should have received finer
grained parameters, anyway .
-- Alex Bodnaru <alexbodn@012.net.il> Sun, 16 Oct 2005 03:31:03 +0200
postgis (0.9.2-1) unstable; urgency=low
* Basic support for libpostgis0.
The only package(s) made are the library and examples one(s), so that
postgis-0.9.2 databases can be created and used, while not clashing with
files and utilities for postgis-1.0.
-- Alex Bodnaru <alexbodn@012.net.il> Sun, 9 Oct 2005 09:49:04 +0200
postgis (1.0.4-1) unstable; urgency=low
* Automatic upstream version tracking.
* Closes: #316519
Changed the dependencies in control file to work with multiversion
postgresql.
-- Alex Bodnaru <alexbodn@012.net.il> Sat, 1 Oct 2005 18:07:37 +0300
postgis (1.0.3-1) unstable; urgency=low
* Automatic upstream version tracking.
* Adapted regress/test_index_concurrency to createdb.postgis method.
-- Alex Bodnaru <alexbodn@012.net.il> Thu, 1 Sep 2005 04:27:26 +0300
postgis (1.0.1-1) unstable; urgency=low
* Automatic upstream version tracking.
* Closes: #309528
binary-all has been separated from binary-arch
* Closes: #311732
upstream fix: problem with ' char in field names.
* Closes: #310094
all warnings have been clarified and/or the issues have been fixed
* libpostgis-java-debug has been split from libpostgis-java
* bug #308728 has been reassigned to postgresql
-- Alex Bodnaru <alexbodn@012.net.il> Fri, 27 May 2005 17:17:06 +0300
postgis (1.0.0-2) unstable; urgency=low
* Closes: #308848
gcj has been specifically set as the required java compiler, although other
java compilers would do as well
* Closes: #310101
createdb.postgis documentation updated
-- Alex Bodnaru <alexbodn@012.net.il> Fri, 27 May 2005 05:02:45 +0300
postgis (1.0.0-1) unstable; urgency=low
* First official release for the Debian archive.
* Corrected build-depends.
-- Alex Bodnaru <alexbodn@012.net.il> Thu, 5 May 2005 10:02:45 +0200
postgis (1.0.0RELEASE-4) unstable; urgency=low
* example wkb_reader now compiles generically. tested with i386 and ppc.
-- Alex Bodnaru <alexbodn@012.net.il> Thu, 5 May 2005 05:14:02 +0300
postgis (1.0.0RELEASE-3) unstable; urgency=low
* mktemplate_gis and rmtemplate_gis work on dash.
-- Alex Bodnaru <alexbodn@012.net.il> Sat, 30 Apr 2005 17:34:02 +0300
postgis (1.0.0RELEASE-2) unstable; urgency=low
* Fixed minor typos in manual pages.
* Documented the special debian usage of the ogc_test_suite.
* Fixed bug in automatic upstream version tracking.
-- Alex Bodnaru <alexbodn@012.net.il> Sat, 30 Apr 2005 16:25:22 +0300
postgis (1.0.0RELEASE-1) unstable; urgency=low
* Automatic upstream version tracking.
-- Alex Bodnaru <alexbodn@012.net.il> Sat, 30 Apr 2005 15:33:00 +0300
postgis (1.0.0RELEASE-1) unstable; urgency=low
* Automatic upstream version tracking.
* added libpostgisjava replacement directive.
* improved automatic upstream version sensing: adding RELEASE for clean
upstream versions.
-- Alex Bodnaru <alexbodn@012.net.il> Sun, 24 Apr 2005 20:04:36 +0300
postgis (1.0.0RC6-6) unstable; urgency=low
* renamed libpostgisjava to libpostgis-java
* specified libgeos2 version 2.1.1 and above as a dependency.
upstream authors will be warned to document this too.
-- Alex Bodnaru <alexbodn@012.net.il> Fri, 22 Apr 2005 18:49:01 +0200
postgis (1.0.0RC6-5) unstable; urgency=low
* Cleaned up removal of .cvsignore files, so it will not be imposed on upstream.
* Added optional usage of postgresql-dev installed at custom location.
* NOTICE: Since manpages have been added and constantly updated after 1.0.0rc6
was released, please copy them from postgis-cvs to the orig directory, or
use orig file uploaded with this package
* Improved the dependencies system, following suggestions from
Markus Schaber <markus@schabi.de>
-- Alex Bodnaru <alexbodn@012.net.il> Fri, 15 Apr 2005 14:49:01 +0200
postgis (1.0.0RC6-4) unstable; urgency=low
* Adjusted useless i386-linux-gcc to gcc (existent for postgresql 7.4 only), thanks to comments from
Giuseppe Sacco <giuseppe@eppesuigoccas.homedns.org>
-- Alex Bodnaru <alexbodn@012.net.il> Tue, 12 Apr 2005 04:12:01 +0200
postgis (1.0.0RC6-3) unstable; urgency=low
* Improved build-depends, thanks to comments from
Giuseppe Sacco <giuseppe@eppesuigoccas.homedns.org>
-- Alex Bodnaru <alexbodn@012.net.il> Mon, 11 Apr 2005 05:15:01 +0200
postgis (1.0.0RC6-2) unstable; urgency=low
* Improved mktemplate_gis, and renamed from mktemplate_gis.sh.
* Updated man pages.
* Using createdb.postgis as the main method of creating gis enambled databases.
* Updated upstream testing scripts to use createdb.postgis.
* Fixind problem: postgres should be able to call mktemplate_gis.
-- Alex Bodnaru <alexbodn@012.net.il> Thu, 31 Mar 2005 05:05:41 +0200
postgis (1.0.0RC6-1) unstable; urgency=low
* Automatic upstream version tracking.
-- Alex Bodnaru <alexbodn@012.net.il> Thu, 31 Mar 2005 05:05:41 +0200
postgis (1.0.0RC4-2) unstable; urgency=low
* Minor bugfix in debian/rules
* Removed need for executable files in ./debian. rules is the only executable.
* Improvement for mktemplate_gis: now it may be run to grant full privileges to any user as argument.
-- Alex Bodnaru <alexbodn@012.net.il> Tue, 22 Mar 2005 03:51:20 +0200
postgis (1.0.0RC4-1) unstable; urgency=low
* Automatic upstream version tracking.
-- Alex Bodnaru <alexbodn@012.net.il> Sun, 6 Mar 2005 05:06:51 +0200
postgis (1.0.0RC3-1) unstable; urgency=low
* Automatic upstream version tracking.
-- Alex Bodnaru <alexbodn@012.net.il> Thu, 3 Mar 2005 04:30:58 +0200
postgis (1.0.0RC2-1) unstable; urgency=low
* Automatic upstream version tracking.
-- Alex Bodnaru <alexbodn@012.net.il> Sun, 30 Jan 2005 05:18:50 +0200
postgis (0.9.0-1) unstable; urgency=low
* Initial Release.
-- Alex Bodnaru <alexbodn@012.net.il> Sun, 7 Nov 2004 23:39:53 +0200
|