1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684
|
python2.6 (2.6.6-8+deb6u3) squeeze-lts; urgency=low
* platform-linux3.diff: consider linux 3.x to be linux2
(Closes: #757776).
-- Raphael Geissert <geissert@debian.org> Mon, 11 Aug 2014 15:12:01 +0200
python2.6 (2.6.6-8+deb6u2) squeeze-lts; urgency=low
* Restore the conditional definition of "urandom" from os.py
Fixes an upgrade case where the new os.py is used with a python
binary without a built-in "urandom" implementation.
-- Raphael Geissert <geissert@debian.org> Mon, 04 Aug 2014 10:00:13 +0200
python2.6 (2.6.6-8+deb6u1) squeeze-lts; urgency=low
* Incorporate patches from Moritz Mühlenhoff:
+ CVE-2012-1150.diff
+ CVE-2012-0845.diff
+ CVE-2011-4944.diff
+ CVE-2011-1015.diff
+ CVE-2011-1521.diff
+ CVE-2011-4940.diff
* Fix CVE-2013-4238: incorrect handling of NUL bytes in certificate
hostnames.
* Fix CVE-2014-1912: buffer overflow in socket.recvfrom_into.
-- Raphael Geissert <geissert@debian.org> Wed, 04 Jun 2014 15:17:57 +0200
python2.6 (2.6.6-8) unstable; urgency=low
* Disable the profiled builds on m68k and sparc. Closes: #606091.
-- Matthias Klose <doko@debian.org> Sun, 12 Dec 2010 11:30:16 +0100
python2.6 (2.6.6-7) unstable; urgency=low
* Add python-boost* conflicts (versions in lenny can't handle
the upgrade to python2.6).
-- Matthias Klose <doko@debian.org> Sun, 28 Nov 2010 17:50:25 +0100
python2.6 (2.6.6-6) unstable; urgency=low
* Lib/locale.py: Update locale aliases from the py3k branch (patch
lost with the conversion to quilt), remove obsolete old dpatch files.
* python2.6: Set priority to `standard'.
-- Matthias Klose <doko@debian.org> Sat, 09 Oct 2010 12:24:06 +0200
python2.6 (2.6.6-5) unstable; urgency=low
* Provide Lib/plat-gnukfreebsd[78] (Jakub Wilk). Closes: #593818.
* Try harder on issue #7356: ctypes.util: Make parsing of ldconfig output
independent of the locale. Set LC_ALL=C too. Closes: #595692.
-- Matthias Klose <doko@debian.org> Wed, 15 Sep 2010 16:32:39 +0200
python2.6 (2.6.6-4) unstable; urgency=low
* Add copyright information for expat, libffi and zlib. Addresses: #596276.
* Apply proposed fix for issue 9054, configure --with-system-expat.
* Fix issue #9729, Unconnected SSLSocket.{send,recv} raises TypeError
(Andrew Bennetts). LP: #637821.
-- Matthias Klose <doko@debian.org> Tue, 14 Sep 2010 10:24:06 +0200
python2.6 (2.6.6-3) unstable; urgency=low
* Disable more tests on hppa and hurd-i386, which fail on the buildds.
-- Matthias Klose <doko@debian.org> Sun, 29 Aug 2010 14:10:36 +0200
python2.6 (2.6.6-2) unstable; urgency=low
* Add breaks to packages which don't byte-compile with python2.6 in
lenny (Jakub Wilk): pitivi, python-freevo, python-gadfly, python-nevow,
python-scientific, qmtest, aap, bkchem, python-mpmath, python-plwm,
python-pydoctor, python-pyscript, python-scapy, python-sympy, pythoncad,
rawdog, python-pmock, polgen, doclifter, fvwm-crystal, gforge-web-apache2,
mftrace. Closes: #590138.
* Disable some test cases which fail on the buildds.
-- Matthias Klose <doko@debian.org> Fri, 27 Aug 2010 21:21:19 +0200
python2.6 (2.6.6-1) unstable; urgency=low
* Python 2.6.6 final release.
- Files removed: Lib/profile.py, Lib/pstats.py, PC/icons/source.xar.
* Fixed in previous 2.6 uploads: Multiple integer overflows in audioop.c
in the audioop module (CVE-2010-1634).
* Backport fix for issue #7609, but don't configure --with-system-expat,
because the test_pyexpat segfault the interpreter.
-- Matthias Klose <doko@debian.org> Tue, 24 Aug 2010 17:12:28 +0200
python2.6 (2.6.6~rc2-1) unstable; urgency=low
* Python 2.6.6 release candidate 2.
- Fix issue #8688: Revert regression introduced in 2.6.6rc1 (making
Distutils recalculate MANIFEST every time).
- Fix issue #9543: Fix regression in socket.py introduced in
Python 2.6.6 rc1 in r83624. LP: #615240.
- Fix issue #7567: Don't call `setupterm' twice.
* Update README for python2.6-minimal. Closes: #593391.
-- Matthias Klose <doko@debian.org> Wed, 18 Aug 2010 08:06:48 +0200
python2.6 (2.6.6~rc1-1) unstable; urgency=low
* Python 2.6.6 release candidate 1.
- Fix issue #4108: In urllib.robotparser, if there are multiple
'User-agent: *' entries, consider the first one.
- Fix issue #9354: Provide getsockopt() in asyncore's file_wrapper.
- Fix issue #8417: Raise an OverflowError when an integer larger than
sys.maxsize is passed to bytearray.
- Fix issue #2944: asyncore doesn't handle connection refused correctly.
- Fix ssue #8447: Make distutils.sysconfig follow symlinks in the path to
the interpreter executable. This fixes a failure of test_httpservers
on OS X.
- Fix issue #7092: Fix the DeprecationWarnings emitted by the standard
library when using the -3 flag.
- Fix issue #7395: Fix tracebacks in pstats interactive browser.
- Fix issue #1713: Fix os.path.ismount(), which returned true for
symbolic links across devices.
- Fix issue #8826: Properly load old-style "expires" attribute in
http.cookies.
- Fix issue #1690103: Fix initial namespace for code run with trace.main().
- Fix isssue #5294: Fix the behavior of pdb's "continue" command when called
in the top-level debugged frame.
- Fix issue #5727: Restore the ability to use readline when calling into pdb
in doctests.
- Fix issue #6719: In pdb, do not stop somewhere in the encodings machinery
if the source file to be debugged is in a non-builtin encoding.
- Fix issue #8048: Prevent doctests from failing when sys.displayhook has
been reassigned.
- Fix issue #8015: In pdb, do not crash when an empty line is entered as
a breakpoint command.
- Fix issue #7909: Do not touch paths with the special prefixes ``\\.\``
or ``\\?\`` in ntpath.normpath().
- Fix issue #5146: Handle UID THREAD command correctly in imaplib.
- Fix issue #5147: Fix the header generated for cookie files written by
http.cookiejar.MozillaCookieJar.
- Fix issue #8198: In pydoc, output all help text to the correct stream
when sys.stdout is reassigned.
- Fix issue #1019882: Fix IndexError when loading certain hotshot stats.
- Fix issue #8471: In doctest, properly reset the output stream to an empty
string when Unicode was previously output.
- Fix issue #8397: Raise an error when attempting to mix iteration
and regular reads on a BZ2File object, rather than returning
incorrect results.
- Fix issue #8620: when a Cmd is fed input that reaches EOF without a final
newline, it no longer truncates the last character of the last command
line.
- Fix issue #7066: archive_util.make_archive now restores the cwd
if an error is raised.
- Fix memory leak in ssl._ssl._test_decode_cert.
- Fix issue #9255: Document that the 'test' package is for internal
Python use only.
* Fix detection of ffi.h header file. Closes: #591408.
* Move '/usr/local/.../dist-packages' before '/usr/lib/.../dist-packages'
in sys.path. Closes: #588342.
* python2-6-dev: Depend on libssl-dev. LP: #611845.
* Disable the profiled build on sparc64. Closes: #591720.
-- Matthias Klose <doko@debian.org> Thu, 05 Aug 2010 17:46:59 +0200
python2.6 (2.6.5+20100730-1) unstable; urgency=low
* Update to 20100730, taken from the 2.6 release branch (r83307).
- Fix issue #9422: Fix memory leak when re-initializing a
struct.Struct object.
- Fix issue #5006: Better handling of unicode byte-order marks (BOM)
in the io library.
- Fix issue #6213: Implement getstate() and setstate() methods
of utf-8-sig and utf-16 incremental encoders.
- Fix issue #3704: cookielib was not properly handling URLs with
a / in the parameters.
- Fix issue #4629: getopt raises an error if an argument ends
with = whereas getopt doesn't except a value.
- Fix issue #5395: check that array.fromfile() re-raises an IOError
instead of replacing it with EOFError.
- Fix issue #9277: Struct module: standard bool packing was incorrect
if char is unsigned.
- Fix issue #1555570: correctly handle a \r\n that is split
by the read buffer.
- Fix issue #7846: limit fnmatch pattern cache to _MAXCACHE=100 entries.
- Fix Decimal speed issue; backport from 2.7.
* Fix issue #7567: PyCurses_setupterm: Don't call `setupterm' twice.
Closes: #586433.
* Move '/usr/local/.../dist-packages' before '/usr/lib/.../dist-packages'
in sys.path. Closes: #588342.
-- Matthias Klose <doko@debian.org> Fri, 30 Jul 2010 23:47:42 +0200
python2.6 (2.6.5+20100706-1) unstable; urgency=medium
* Update to 20100706, taken from the 2.6 release branch (r82604).
- Issue #7673: Fix security vulnerability (CVE-2010-2089) in the
audioop module.
* Fix documentation title in the python devhelp index.
-- Matthias Klose <doko@debian.org> Tue, 06 Jul 2010 13:30:29 +0200
python2.6 (2.6.5+20100703-1) unstable; urgency=medium
* Update to 20100703, taken from the 2.6 release branch (r82479).
* python2.6-minimal: Break python-central (<< 0.6.14). Closes: #586917.
-- Matthias Klose <doko@debian.org> Sat, 03 Jul 2010 11:24:55 +0200
python2.6 (2.6.5+20100630-2) unstable; urgency=high
* Move the shutil module to python2.6-minimal. Closes: #587628.
-- Matthias Klose <doko@debian.org> Wed, 30 Jun 2010 15:41:52 +0200
python2.6 (2.6.5+20100630-1) unstable; urgency=low
* Update to 20100630, taken from the 2.6 release branch (r82382).
* Don't include modified Lib/plat-linux2 files in the Debian diff.
-- Matthias Klose <doko@debian.org> Wed, 30 Jun 2010 02:01:54 +0200
python2.6 (2.6.5+20100628-2) unstable; urgency=low
* Fix applying plat-linux2* patches. Closes: #587273.
* Use the profiled build on armel, sparc and sparc64.
-- Matthias Klose <doko@debian.org> Tue, 29 Jun 2010 12:39:00 +0200
python2.6 (2.6.5+20100628-1) unstable; urgency=low
* Update to 20100614, taken from the 2.6 release branch (r82337).
* Apply plat-linux2-<arch> patch for alpha, hppa, mips, mipsel, sparc
and sparc64.
-- Matthias Klose <doko@debian.org> Mon, 28 Jun 2010 21:26:43 +0200
python2.6 (2.6.5+20100626-1) unstable; urgency=low
* Update to 20100614, taken from the 2.6 release branch (r82245).
* Update libpython symbols files. Closes: #587012.
* Move the logging package and the runpy module to python2.6-minimal.
-- Matthias Klose <doko@debian.org> Sat, 26 Jun 2010 14:29:41 +0200
python2.6 (2.6.5+20100616-1) unstable; urgency=medium
* Update to 20100614, taken from the 2.6 release branch (r81601).
* Reapply the backport for issue #8233, lost in the conversion to
quilt.
* Disable the profiled build on alpha.
* Make pydoc more robust not to fail on exceptions other than import
exceptions.
* posixmodule: Add flags for statvfs.f_flag to constant list.
-- Matthias Klose <doko@debian.org> Wed, 16 Jun 2010 07:56:40 +0200
python2.6 (2.6.5+20100529-1) unstable; urgency=low
* Update to 20100529, taken from the 2.6 release branch (r81601).
- Fix issue #5753, CVE-2008-5983 python: untrusted python modules
search path. Closes: #572010.
* Convert internal dpatch system to quilt.
* Build the ossaudio extension on GNU/kFreeBSD. Closes: #574696.
-- Matthias Klose <doko@debian.org> Sat, 29 May 2010 15:07:51 +0200
python2.6 (2.6.5-2) unstable; urgency=low
* Update libpython symbols files.
* debian/patches/issue8032.dpatch: Update to version from the
trunk.
* Fix issue #8329: Don't return the same lists from select.select
when no fds are changed.
* Fix issue #8310: Allow dis to examine new style classes.
* Fix issues #8279: Fix test_gdb failures.
* Fix issue #8233: When run as a script, py_compile.py optionally
takes a single argument `-`.
* Apply proposed patch for issue #7332, segfaults in
PyMarshal_ReadLastObjectFromFile in import_submodule.
* Don't build-depend on locales on avr32. Closes: #575144.
-- Matthias Klose <doko@debian.org> Tue, 20 Apr 2010 19:41:36 +0200
python2.6 (2.6.5-1ubuntu6) lucid; urgency=low
* Fix applying patch for issue #8310.
-- Matthias Klose <doko@ubuntu.com> Fri, 16 Apr 2010 14:20:35 +0200
python2.6 (2.6.5-1ubuntu5) lucid; urgency=low
* Fix issue #8329: Don't return the same lists from select.select
when no fds are changed.
* Fix issue #8310: Allow dis to examine new style classes.
-- Matthias Klose <doko@ubuntu.com> Thu, 15 Apr 2010 01:21:07 +0200
python2.6 (2.6.5-1ubuntu4) lucid; urgency=low
* debian/patches/issue8032.dpatch: Update to version from the
trunk. Upload for beta2 to avoid apport errors.
- Handle PyFrameObject's: LP: #543624, #548723.
- Detect cycles in object reference graph and add extra
protection: LP: #544823, LP: #552356.
-- Matthias Klose <doko@ubuntu.com> Thu, 01 Apr 2010 22:53:06 +0200
python2.6 (2.6.5-1ubuntu3) lucid; urgency=low
* debian/patches/issue8140.dpatch: Incomplete patch; regenerate.
* debian/patches/issue8032.dpatch: Update to v4:
- Add support for PySetObject (set/frozenset).
- Add support for PyBaseExceptionObject (BaseException).
- Fix a signed vs unsigned char issue that led to exceptions
in gdb for PyStringObject instances.
- Handle the case of loops in the object reference graph.
- Unit tests for all of the above.
-- Matthias Klose <doko@ubuntu.com> Wed, 31 Mar 2010 18:52:32 +0200
python2.6 (2.6.5-1ubuntu2) lucid; urgency=low
* Disable profiled build on powerpc.
-- Matthias Klose <doko@ubuntu.com> Sat, 20 Mar 2010 15:17:18 +0100
python2.6 (2.6.5-1ubuntu1) lucid; urgency=low
* Merge with Debian (2.6.5-1).
-- Matthias Klose <doko@ubuntu.com> Sat, 20 Mar 2010 03:57:17 +0100
python2.6 (2.6.5-1) unstable; urgency=low
* Python 2.6.5 final release.
* Fix issue #4961: Inconsistent/wrong result of askyesno function in
tkMessageBox with Tcl8.5. LP: #462950.
* Issue #8154, fix segfault with os.execlp('true'). LP: #418848.
* Apply proposed patch for issue #8032, gdb7 hooks for debugging.
-- Matthias Klose <doko@debian.org> Fri, 19 Mar 2010 00:12:55 +0100
python2.6 (2.6.5~rc2-2) unstable; urgency=low
* Add copyright notices for the readline and _ssl extensions.
Closes: #573866.
* Backport issue #8140: Extend compileall to compile single files.
Add -i option.
* Backport issue #6949, build _bsddb extension with db-4.8.x.
-- Matthias Klose <doko@debian.org> Tue, 16 Mar 2010 03:02:21 +0100
python2.6 (2.6.5~rc2-1) unstable; urgency=low
* Python 2.6.5 release candidate 2.
- Replace the Monty Python audio test file. Closes: #568674.
* Fix build failure on sparc64. Closes: #570845.
-- Matthias Klose <doko@debian.org> Thu, 11 Mar 2010 16:50:03 +0100
python2.6 (2.6.5~rc2-0ubuntu1) lucid; urgency=low
* Python 2.6.5 release candidate 2.
-- Matthias Klose <doko@ubuntu.com> Thu, 11 Mar 2010 13:30:19 +0100
python2.6 (2.6.4-6ubuntu1) lucid; urgency=low
* Merge with Debian (2.6.4-6).
-- Matthias Klose <doko@ubuntu.com> Tue, 16 Feb 2010 01:08:50 +0100
python2.6 (2.6.4-6) unstable; urgency=low
* Update to 20100215, taken from the 2.6 release branch.
* python2.6-minimal: Skip moving syssite contents to new location, if
/usr/local/lib/python2.6 cannot be written. Closes: #569532. LP: #338227.
* libpython2.6: Fix symlink in /usr/lib/python2.6/config. LP: #521050.
-- Matthias Klose <doko@debian.org> Mon, 15 Feb 2010 22:12:18 +0100
python2.6 (2.6.4-5ubuntu1) lucid; urgency=low
* Merge with Debian (2.6.4-5).
-- Matthias Klose <doko@ubuntu.com> Sun, 31 Jan 2010 22:31:41 +0100
python2.6 (2.6.4-5) unstable; urgency=low
* Update to 20100131, taken from the 2.6 release branch.
- Fix typo in os.execvp docstring. Closes: #558764.
* distutils.sysconfig.get_python_lib(): Only return ".../dist-packages" if
prefix is the default prefix and if PYTHONUSERBASE is not set in the
environment and if --user option is not present. LP: #476005.
* distutils install: Don't install into /usr/local/local, if option
--prefix=/usr/local is present, without changing the install prefix.
LP: #510211.
-- Matthias Klose <doko@debian.org> Sun, 31 Jan 2010 21:16:51 +0100
python2.6 (2.6.4-4ubuntu1) lucid; urgency=low
* Update to 20100122, taken from the 2.6 release branch.
- Fix DoS via XML document with malformed UTF-8 sequences (CVE_2009_3560).
Closes: #566233.
- Fix typo in os.execvp docstring. Closes: #558764.
* python2.6-doc: Fix searching in local documentation. LP: #456025.
* Update locale module from the trunk. LP: #223281.
* Merge with Debian (2.6.4-4).
-- Matthias Klose <doko@ubuntu.com> Fri, 22 Jan 2010 11:37:29 +0100
python2.6 (2.6.4-4) unstable; urgency=low
* Update to 20100122, taken from the 2.6 release branch.
- Fix DoS via XML document with malformed UTF-8 sequences (CVE_2009_3560).
Closes: #566233.
* Hurd fixes (Pino Toscano). Closes: #565693:
- hurd-broken-poll.dpatch: ported from 2.5.
- hurd-disable-nonworking-constants.dpatch: disable a few constants from
the public API whose C counterparts are not implemented, so using them
either always blocks or always fails (caused issues in the test suite).
- Exclude the profiled build for hurd.
- Disable four blocking tests from the test suite.
-- Matthias Klose <doko@debian.org> Fri, 22 Jan 2010 11:10:41 +0100
python2.6 (2.6.4-3) unstable; urgency=low
* Disable the profiled build on s390, mips, mipsel.
* Fix symbol files for kfreebsd-amd64 and sparc64.
-- Matthias Klose <doko@debian.org> Sat, 16 Jan 2010 16:12:17 +0100
python2.6 (2.6.4-2) unstable; urgency=low
* Update to 20100116, taken from the 2.6 release branch.
* Fix bashism in makesetup shell script. Closes: #530170, #530171.
* Fix build issues on avr (Bradley Smith). Closes: #528439.
- Configure --without-ffi.
- Don't run lengthly tests.
* locale.py: Update locale aliases from the 2.7 branch.
-- Matthias Klose <doko@debian.org> Sat, 16 Jan 2010 11:05:12 +0100
python2.6 (2.6.4-1ubuntu1) lucid; urgency=low
* Build _hashlib as an extension again.
-- Matthias Klose <doko@ubuntu.com> Tue, 27 Oct 2009 13:08:21 +0100
python2.6 (2.6.4-0ubuntu1) karmic-proposed; urgency=low
* Python 2.6.4 final release.
- No changes compared to the release candidate 2.
* distutils install: Don't install into /usr/local/local, if option
--prefix=/usr/local is present. LP: #456917.
-- Matthias Klose <doko@ubuntu.com> Tue, 27 Oct 2009 12:33:03 +0100
python2.6 (2.6.4~rc2-0ubuntu1) karmic; urgency=low
* Python 2.6.4 release candidate 2.
- Issue #7120: logging: Removed import of multiprocessing which is causing
crash in GAE.
- Issue #7149: fix exception in urllib when detecting proxy settings
on OSX.
-- Matthias Klose <doko@ubuntu.com> Mon, 19 Oct 2009 23:29:42 +0200
python2.6 (2.6.4~rc1-1ubuntu1) karmic; urgency=low
* Build _hashlib as an extension, not a builtin. Work around a bug
in several packages linking extensions with LOCALMODLIBS, which
is used to link the python binary only.
-- Matthias Klose <doko@ubuntu.com> Tue, 13 Oct 2009 18:44:13 +0200
python2.6 (2.6.4~rc1-1) experimental; urgency=low
* Python 2.6.4 release candidate 1.
- Issue #7052: Removed nonexisting NullHandler from logging.__all__.
- Issue #7039: Fixed distutils.tests.test_sysconfig when running on
installation with no build.
- Issue #7019: Raise ValueError when unmarshalling bad long data, instead
of producing internally inconsistent Python longs.
- Issue #7068: Fixed the partial renaming that occured in r72594.
- Issue #7042: Fix test_signal (test_itimer_virtual) failure on OS X 10.6.
* Remove the conflict with python-setuptools (fixed in issue #7068).
* Build _hashlib as a builtin.
* python2.6-doc: Don't compress the sphinx inventory.
* python2.6-doc: Fix jquery.js symlink.
-- Matthias Klose <doko@debian.org> Sat, 10 Oct 2009 10:21:02 +0200
python2.6 (2.6.4~rc1-0ubuntu2) karmic; urgency=low
* Update from the 2.6 release branch.
- Issue #7115: Fixed the extension module builds that is failing when
using paths in the extension name instead of dotted names. LP: #449734.
- Issue #6894: Fixed the issue urllib2 doesn't respect "no_proxy"
environment.
-- Matthias Klose <doko@ubuntu.com> Tue, 13 Oct 2009 08:23:31 +0200
python2.6 (2.6.4~rc1-0ubuntu1) karmic; urgency=low
* Python 2.6.4 release candidate 1.
- Issue #7068: Fixed the partial renaming that occured in r72594.
- Issue #7042: Fix test_signal (test_itimer_virtual) failure on OS X 10.6.
* Remove the conflict with python-setuptools (fixed in issue #7068).
* Build _hashlib as a builtin. LP: #445530.
* python2.6-doc: Don't compress the sphinx inventory.
* python2.6-doc: Fix jquery.js symlink. LP: #447370.
-- Matthias Klose <doko@ubuntu.com> Fri, 09 Oct 2009 23:07:54 +0200
python2.6 (2.6.3-0ubuntu2) karmic; urgency=low
* Update from the 2.6 release branch.
- Issue #7052: Removed nonexisting NullHandler from logging.__all__.
- Issue #7039: Fixed distutils.tests.test_sysconfig when running on
installation with no build.
- Issue #7019: Raise ValueError when unmarshalling bad long data, instead
of producing internally inconsistent Python longs.
-- Matthias Klose <doko@ubuntu.com> Sun, 04 Oct 2009 21:28:36 +0200
python2.6 (2.6.3-0ubuntu1) karmic; urgency=low
* Final Python 2.6.3 release.
- Issue #5329: Fix os.popen* regression from 2.5 with commands as a
sequence running through the shell.
- Issue #6990: Fix threading.local subclasses leaving old state around
after a reference cycle GC which could be recycled by new locals.
- Issue #6790: Make it possible again to pass an `array.array` to
`httplib.HTTPConnection.send`.
* python2.6-dbg: Don't create debug subdirectory in /usr/local. No
separate debug directory needed anymore. LP: #421270.
* Run the benchmark with -C 2 -n 5 -w 4 on all architectures.
* Build-depend on the versioned db4.x-dev to avoid unexpected updates
for anydbm databases.
-- Matthias Klose <doko@ubuntu.com> Sat, 03 Oct 2009 12:03:05 +0200
python2.6 (2.6.2-3ubuntu1) karmic; urgency=low
* Update to 20090923, taken from the 2.6 release branch.
- Issue #6922: Fix an infinite loop when trying to decode an invalid
UTF-32 stream with a non-raising error handler like "replace" or
"ignore".
- Issue #1590864: Fix potential deadlock when mixing threads and fork().
- Issue #6844: Do not emit DeprecationWarnings when accessing a "message"
attribute on exceptions that was set explicitly.
- Issue #6236, #6348: Fix various failures in the `io` module under AIX
and other platforms, when using a non-gcc compiler. Patch by egreen.
- Issue #6851: Fix urllib.urlopen crash on secondairy threads on OSX 10.6
- Issue #6947: Fix distutils test on windows. Patch by Hirokazu Yamamoto.
- Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...)
does now always result in NULL.
- Issue #5042: ctypes Structure sub-subclass does now initialize
correctly with base class positional arguments.
- Issue #6938: Fix a TypeError in string formatting of a multiprocessing
debug message.
- Issue #6944: Fix a SystemError when socket.getnameinfo() was called
with something other than a tuple as first argument.
- Issue #6980: Fix ctypes build failure on armel-linux-gnueabi with
-mfloat-abi=softfp.
* Rebuild with fixed libffi on armel.
* Run the benchmark with -C 2 -n 5 -w 4 on slow architectures.
-- Matthias Klose <doko@ubuntu.com> Wed, 23 Sep 2009 20:35:03 +0200
python2.6 (2.6.2-3) experimental; urgency=low
* Update to 20090919, taken from the 2.6 release branch.
* Add a conflict to python-setuptools (<< 0.6c9-3), C extension
builds broken.
* Add new symbols for update from the branch.
-- Matthias Klose <doko@debian.org> Sat, 19 Sep 2009 10:36:34 +0200
python2.6 (2.6.2-2) experimental; urgency=low
* Symbol _Py_force_double@Base is i386 only. Closes: #534208.
-- Matthias Klose <doko@debian.org> Tue, 23 Jun 2009 06:14:40 +0200
python2.6 (2.6.2-1) experimental; urgency=low
* Final Python 2.6.2 release.
- Update Doc/tools/sphinxext/download.html. Closes: #526797.
* Update to 20090621, taken from the 2.6 release branch.
* Address issues when working with PYTHONUSERBASE and non standard prefix
(pointed out by Larry Hastings):
- distutils.sysconfig.get_python_lib(): Only return ".../dist-packages" if
prefix is the default prefix and if PYTHONUSERBASE is not set in the
environment.
- site.addusersitepackages(): Add USER_BASE/.../dist-packages to sys.path.
* Always use the `unix_prefix' scheme for setup.py install in a virtualenv
setup. LP: #339904.
* Don't make the setup.py install options --install-layout=deb and --prefix
conflict with each other.
* distutils: Always install into `/usr/local/lib/python2.6/dist-packages'
if an option `--prefix=/usr/local' is present (except for virtualenv
and PYTHONUSERBASE installations). LP: #362570.
* Always use `site-packages' as site directory name in virtualenv.
* Do not add /usr/lib/pythonXY.zip on sys.path.
* Add symbols files for libpython2.6 and python2.6-dbg, don't include symbols
from builtins, which can either be built as builtins or extensions.
* Keep an empty lib-dynload in python2.6-minimal to avoid a warning on
startup.
* Build a shared library configured --with-pydebug. LP: #322580.
* Fix some lintian warnings.
* Use the information in /etc/lsb-release for platform.dist(). LP: #196526.
* Move the bdist_wininst files into the -dev package (only needed to build
windows installers).
* Document changes to the site directory name in the installation manual.
* Fix issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add
`do { ... } while (0)' to avoid compiler warnings. Closes: #516956.
* debian/pyhtml2devhelp.py: update for python 2.6 (Marc Deslauriers).
* debian/rules: re-enable documentation files for devhelp. LP: #338791.
* python2.6-doc: Depend on libjs-jquery, use jquery.js from this package.
Closes: #523482.
-- Matthias Klose <doko@debian.org> Sun, 21 Jun 2009 16:12:15 +0200
python2.6 (2.6.2-0ubuntu6) karmic; urgency=low
* Update to 20090913, taken from the 2.6 release branch.
- Fix issue #6635: Fix profiler printing usage message. LP: #361318.
* Fix reference to the pdb documentation in pdb(1). LP: #408215.
-- Matthias Klose <doko@ubuntu.com> Sun, 13 Sep 2009 16:46:59 +0200
python2.6 (2.6.2-0ubuntu5) karmic; urgency=low
* Update to 20090909, taken from the 2.6 release branch.
* Disable the profiled build on architectures amd64, i386, ia64, lpia.
-- Matthias Klose <doko@ubuntu.com> Wed, 09 Sep 2009 14:16:42 +0200
python2.6 (2.6.2-0ubuntu4) karmic; urgency=low
* Update to 20090825, taken from the 2.6 release branch.
- Remove debian/patches/issue6418.dpatch.
* Build-depend on libreadline6-dev.
-- Matthias Klose <doko@ubuntu.com> Tue, 25 Aug 2009 12:14:01 +0200
python2.6 (2.6.2-0ubuntu4) karmic; urgency=low
* Update to 20090825, taken from the 2.6 release branch.
- Remove debian/patches/issue6418.dpatch.
* Build-depend on libreadline6-dev.
-- Matthias Klose <doko@ubuntu.com> Tue, 25 Aug 2009 12:14:01 +0200
python2.6 (2.6.2-0ubuntu3) karmic; urgency=low
* Add debian/patches/issue6418.dpatch taken from the 2.6 release branch
to fix problems with other test runners. (LP: #389942)
-- James Westby <james.westby@ubuntu.com> Fri, 24 Jul 2009 11:24:35 +0200
python2.6 (2.6.2-0ubuntu2) karmic; urgency=low
* Update to 20090619, taken from the 2.6 release branch.
* distutils: Always install into `/usr/local/lib/python2.6/dist-packages'
if an option `--prefix=/usr/local' is present (except for virtualenv
and PYTHONUSERBASE installations). LP: #362570.
-- Matthias Klose <doko@ubuntu.com> Fri, 19 Jun 2009 14:40:09 +0200
python2.6 (2.6.2-0ubuntu1) jaunty; urgency=low
* Final Python 2.6.2 release (no code changes compared to last upload).
* Always use `site-packages' as site directory name in virtualenv.
-- Matthias Klose <doko@ubuntu.com> Wed, 15 Apr 2009 14:18:36 +0200
python2.6 (2.6.2~rc1-0ubuntu2) jaunty; urgency=low
* Update to 20090414, taken from the 2.6 release branch.
- No numbered table of contents for the docs, not in sphinx-0.5.
- Fix issues #5731, #5741.
* Revert the change to interpret an unexpanded prefix in get_python_lib().
* Fix build failure on ia64.
* Move the bdist_wininst files into the -dev package (only needed to build
windows installers).
* Document changes to the site directory name in the installation manual.
-- Matthias Klose <doko@ubuntu.com> Tue, 14 Apr 2009 08:09:24 +0200
python2.6 (2.6.2~rc1-0ubuntu1) jaunty; urgency=low
* Update to the 2.6.2 release candidate.
* Work around an automake m4 expansion bug ('${prefix}' and '${exec_prefix}'
are passed unexpanded to get_python_lib()). Assume in this case, that the
expansion is '/usr/local', it's not safe to assume '/usr' in this case.
This is really, really ugly, just hoping that the automake maintainers are
punished for this bug by one hell level deeper than me for this hack.
LP: #350016.
-- Matthias Klose <doko@ubuntu.com> Wed, 08 Apr 2009 02:29:05 +0200
python2.6 (2.6.1-1ubuntu11) jaunty; urgency=low
* Update to 20090405, taken from the 2.6 release branch.
- Fix issue #1651995, _convert_ref for non-ASCII characters. LP: #240929.
- Fix issue #3845, in PyRun_SimpleFileExFlags avoid invalid memory access
with short file names. LP: #234798.
- Fix issues #5190, #5444, #5471, #5615, #5617, #5631, #1326077, #1726172.
- Fix documentation issues #3427, #4411, #4882, #5018, #5298, #5370,
#5432, #5563, #5580, #5598, #5601, #5618, #5635, #5642, #5655, #1096310,
#1530012, #1675026, #1718017, #1742837,
* Fix issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add
`do { ... } while (0)' to avoid compiler warnings. Closes: #516956.
-- Matthias Klose <doko@ubuntu.com> Mon, 06 Apr 2009 00:36:01 +0200
python2.6 (2.6.1-1ubuntu10) jaunty; urgency=low
[Matthias Klose]
* Always use the `unix_prefix' scheme for setup.py install in a virtualenv
setup. LP: #339904.
[Marc Deslauriers]
* debian/pyhtml2devhelp.py: Update parsing logic.
-- Matthias Klose <doko@ubuntu.com> Sat, 04 Apr 2009 11:11:32 +0200
python2.6 (2.6.1-1ubuntu9) jaunty; urgency=low
* debian/control.in:
Add conflict with the intrepid version of python-central
to ensure clean upgrades (LP: #354228).
* debian/PVER-minimal.postinst.in:
- Run the rtinstall scripts again for versions less than
2.6.1-1ubuntu8 to ensure the byte compiliation is done
for all python packages.
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 03 Apr 2009 10:41:02 +0200
python2.6 (2.6.1-1ubuntu8) jaunty; urgency=low
[Matthias Klose]
* Update to 20090402, taken from the 2.6 release branch.
- Fix issues #2625, #5068, #5387, #5536, #5561, #5619, #5632.
* Address issues when working with PYTHONUSERBASE and non standard prefix
(pointed out by Larry Hastings):
- distutils.sysconfig.get_python_lib(): Only return ".../dist-packages" if
prefix is the default prefix and if PYTHONUSERBASE is not set in the
environment.
- site.addusersitepackages(): Add USER_BASE/.../dist-packages to sys.path.
* Do not add /usr/lib/pythonXY.zip on sys.path.
[Marc Deslauriers]
* debian/pyhtml2devhelp.py: update for python 2.6
* debian/rules: re-enable documentation files for devhelp. LP: #338791.
[Michael Vogt]
* Fix missing rtinstall calls by inverting the supported/unsupported
check. LP: #353251.
-- Matthias Klose <doko@ubuntu.com> Thu, 02 Apr 2009 17:34:21 +0200
python2.6 (2.6.1-1ubuntu7) jaunty; urgency=low
* Fix symbols file for 64bit architectures.
-- Matthias Klose <doko@ubuntu.com> Sat, 28 Mar 2009 16:05:37 +0100
python2.6 (2.6.1-1ubuntu6) jaunty; urgency=low
* Configure with --enable-unicode=ucs4, accidentially removed in
2.6.1-1ubuntu5.
* Add symbols files for libpython2.6 and python2.6-dbg, don't include symbols
from builtins, which can either be built as builtins or extensions.
* Keep an empty lib-dynload in python2.6-minimal to avoid a warning on
startup.
* Revert changes from 2.6.1-1ubuntu5.1.
-- Matthias Klose <doko@ubuntu.com> Fri, 27 Mar 2009 19:47:17 +0100
python2.6 (2.6.1-1ubuntu5.1) jaunty; urgency=low
* revert to 2.6.1-1ubuntu4 because the -1ubuntu5 upload breaks
the entire pygtk and makes important apps like update-manager
no longer start (LP: #349467)
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 27 Mar 2009 11:26:41 +0100
python2.6 (2.6.1-1ubuntu5) jaunty; urgency=low
* Update to 20090322, taken from the 2.6 release branch.
- Fix issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.
- Fix comment macro in python manpage.
* Build a shared library configured --with-pydebug. LP: #322580.
* Fix some lintian warnings.
-- Matthias Klose <doko@ubuntu.com> Sun, 22 Mar 2009 14:27:24 +0100
python2.6 (2.6.1-1ubuntu4) jaunty; urgency=low
* Don't make the setup.py install options --install-layout=deb and --prefix
conflict with each other.
-- Matthias Klose <doko@ubuntu.com> Thu, 19 Mar 2009 14:00:12 +0100
python2.6 (2.6.1-1ubuntu3) jaunty; urgency=low
* Use the information in /etc/lsb-release for platform.dist(). LP: #196526.
* Fix typo in installation scheme, introduced in previous upload.
-- Matthias Klose <doko@ubuntu.com> Wed, 18 Mar 2009 19:44:34 +0100
python2.6 (2.6.1-1ubuntu2) jaunty; urgency=low
* Update installation schemes: LP: #338395.
- When the --prefix option is used for setup.py install, Use the
`unix_prefix' scheme.
- Use the `deb_system' scheme if --install-layout=deb is specified.
- Use the the `unix_local' scheme if neither --install-layout=deb
nor --prefix is specified.
- The options --install-layout=deb and --prefix are exclusive.
* Don't fail installation/removal if directories in /usr/local cannot
be created. LP: #338227.
-- Matthias Klose <doko@ubuntu.com> Wed, 18 Mar 2009 12:12:34 +0100
python2.6 (2.6.1-1ubuntu1) jaunty; urgency=low
* Update to 20090302, taken from the 2.6 release branch.
* Move libpython2.6.a into the python2.6-dev package.
* Move idlelib into the idle-python2.6 package.
-- Matthias Klose <doko@ubuntu.com> Wed, 25 Feb 2009 18:42:19 +0100
python2.6 (2.6.1-1) experimental; urgency=low
* New upstream version, upload to experimental.
* Update to 20090225, taken from the 2.6 release branch.
* Don't build-depend on locales on armel, hppa, ia64 and mipsel; package is
currently not installable.
-- Matthias Klose <doko@debian.org> Wed, 25 Feb 2009 18:42:19 +0100
python2.6 (2.6.1-0ubuntu9) jaunty; urgency=low
* Don't build pyexpat, _elementtree and _ctypes as builtin extensions,
third party packages make too many assumptions about these not built
as builtins.
-- Matthias Klose <doko@ubuntu.com> Tue, 24 Feb 2009 16:34:27 +0100
python2.6 (2.6.1-0ubuntu8) jaunty; urgency=low
* Link the shared libpython with $(MODLIBS).
-- Matthias Klose <doko@ubuntu.com> Sun, 22 Feb 2009 16:38:49 +0100
python2.6 (2.6.1-0ubuntu7) jaunty; urgency=low
* Update to 20090222, taken from the 2.6 release branch.
-- Matthias Klose <doko@ubuntu.com> Sun, 22 Feb 2009 10:35:29 +0100
python2.6 (2.6.1-0ubuntu6) jaunty; urgency=low
* Don't build the gdbm extension from the python2.6 source.
* Build the dbm extension using libdb.
* Don't build-depend on locales on sparc (currently not installable), only
needed by the testsuite.
* Update to 20090219, taken from the 2.6 release branch.
-- Matthias Klose <doko@ubuntu.com> Thu, 19 Feb 2009 12:43:20 +0100
python2.6 (2.6.1-0ubuntu5) jaunty; urgency=low
* Add build dependency on libdb-dev.
-- Matthias Klose <doko@ubuntu.com> Mon, 16 Feb 2009 13:34:41 +0100
python2.6 (2.6.1-0ubuntu4) jaunty; urgency=low
* Disable the profiled build on all architectures.
-- Matthias Klose <doko@ubuntu.com> Mon, 16 Feb 2009 11:18:51 +0100
python2.6 (2.6.1-0ubuntu3) jaunty; urgency=low
* Disable the profiled build on armel as well.
-- Matthias Klose <doko@ubuntu.com> Sun, 15 Feb 2009 10:38:02 +0100
python2.6 (2.6.1-0ubuntu2) jaunty; urgency=low
* Don't use the profiled build on amd64, lpia and sparc (GCC
PR profile/38292).
-- Matthias Klose <doko@ubuntu.com> Sat, 14 Feb 2009 14:09:34 +0100
python2.6 (2.6.1-0ubuntu1) jaunty; urgency=low
* Update to 20090211, taken from the 2.6 release branch.
-- Matthias Klose <doko@ubuntu.com> Fri, 13 Feb 2009 12:51:00 +0100
python2.6 (2.6.1-0ubuntu1~ppa1) jaunty; urgency=low
* Python 2.6.1 release.
* Update to 20081206, taken from the 2.6 release branch.
* Ensure that all extensions from the -minimal package are statically
linked into the interpreter.
* Include expat, _elementtree, datetime, bisect, _bytesio, _locale,
_fileio in -minimal to link these extensions statically.
-- Matthias Klose <doko@ubuntu.com> Fri, 05 Dec 2008 20:43:51 +0100
python2.6 (2.6-0ubuntu1~ppa5) intrepid; urgency=low
* Test build
-- Matthias Klose <doko@ubuntu.com> Fri, 14 Nov 2008 10:14:38 +0100
python2.6 (2.6-0ubuntu1~ppa4) intrepid; urgency=low
* Do not build the bsddb3 module from this source, but recommend the
python-bsddb3 package (will be a dependency after python-bsddb3 is in
the archive).
* For locally installed packages, create a directory
/usr/local/lib/python2.6/dist-packages. This is the default for
installations done with distutils and setuptools. Third party stuff
packaged within the distribution goes to /usr/lib/python2.6/dist-packages.
There is no /usr/lib/python2.6/site-packages in the file system and
on sys.path. No package within the distribution must not install
anything in this location.
* Place the gdbm extension into the python2.6 package.
* distutils: Add an option --install-layout=deb, which
- installs into $prefix/dist-packages instead of $prefix/site-packages.
- doesn't encode the python version into the egg name.
-- Matthias Klose <doko@ubuntu.com> Sat, 25 Oct 2008 11:12:24 +0000
python2.6 (2.6-0ubuntu1~ppa3) intrepid; urgency=low
* Build-depend on libdb4.6-dev, instead of libdb-dev (4.7). Test suite
hangs in the bsddb tests.
-- Matthias Klose <doko@ubuntu.com> Wed, 22 Oct 2008 11:05:13 +0200
python2.6 (2.6-0ubuntu1~ppa2) intrepid; urgency=low
* Update to 20081021, taken from the 2.6 release branch.
* Fix typos and section names in doc-base files. LP: #273344.
* Build a new package libpython2.6.
* For locally installed packages, create a directory
/usr/local/lib/python2.6/system-site-packages, which is symlinked
from /usr/lib/python2.6/site-packages. Third party stuff packaged
within the distribution goes to /usr/lib/python2.6/dist-packages.
-- Matthias Klose <doko@ubuntu.com> Tue, 21 Oct 2008 18:09:31 +0200
python2.6 (2.6-0ubuntu1~ppa1) intrepid; urgency=low
* Python 2.6 release.
* Update to current branch 20081009.
-- Matthias Klose <doko@ubuntu.com> Thu, 09 Oct 2008 14:28:26 +0200
python2.6 (2.6~b3-0ubuntu1~ppa1) intrepid; urgency=low
* Python 2.6 beta3 release.
-- Matthias Klose <doko@ubuntu.com> Sun, 24 Aug 2008 01:34:54 +0000
python2.6 (2.6~b2-0ubuntu1~ppa1) intrepid; urgency=low
* Python 2.6 beta2 release.
-- Matthias Klose <doko@ubuntu.com> Thu, 07 Aug 2008 16:45:56 +0200
python2.6 (2.6~b1-0ubuntu1~ppa1) intrepid; urgency=low
* Python 2.6 beta1 release.
-- Matthias Klose <doko@ubuntu.com> Tue, 15 Jul 2008 12:57:20 +0000
python2.6 (2.6~a3-0ubuntu1~ppa2) hardy; urgency=low
* Test build
-- Matthias Klose <doko@ubuntu.com> Thu, 29 May 2008 18:08:48 +0200
python2.6 (2.6~a3-0ubuntu1~ppa1) hardy; urgency=low
* Python 2.6 alpha3 release.
* Update to current trunk 20080523.
-- Matthias Klose <doko@ubuntu.com> Thu, 22 May 2008 17:37:46 +0200
python2.5 (2.5.2-5) unstable; urgency=low
* Backport new function signal.set_wakeup_fd from the trunk.
Background: http://bugzilla.gnome.org/show_bug.cgi?id=481569
-- Matthias Klose <doko@debian.org> Wed, 30 Apr 2008 12:05:10 +0000
python2.5 (2.5.2-4) unstable; urgency=low
* Update to 20080427, taken from the 2.5 release branch.
- Fix issues #2670, #2682.
* Disable running pybench on the hppa buildd (ftbfs).
* Allow setting BASECFLAGS, OPT and EXTRA_LDFLAGS (like, CC, CXX, CPP,
CFLAGS, CPPFLAGS, CCSHARED, LDSHARED) from the environment.
* Support parallel=<n> in DEB_BUILD_OPTIONS (see #209008).
-- Matthias Klose <doko@debian.org> Sun, 27 Apr 2008 10:40:51 +0200
python2.5 (2.5.2-3) unstable; urgency=medium
* Update to 20080416, taken from the 2.5 release branch.
- Fix CVE-2008-1721, integer signedness error in the zlib extension module.
- Fix urllib2 file descriptor happens byte-at-a-time, reverting
a fix for excessively large memory allocations when calling .read()
on a socket object wrapped with makefile().
* Disable some regression tests on some architectures:
- arm: test_compiler, test_ctypes.
- armel: test_compiler.
- hppa: test_fork1, test_wait3.
- m68k: test_bsddb3, test_compiler.
* Build-depend on libffi-dev instead of libffi4-dev.
* Fix CVE-2008-1679, integer overflows in the imageop module.
-- Matthias Klose <doko@debian.org> Wed, 16 Apr 2008 23:37:46 +0200
python2.5 (2.5.2-2) unstable; urgency=low
* Use site.addsitedir() to add directories in /usr/local to sys.path.
Addresses: #469157, #469818.
-- Matthias Klose <doko@debian.org> Sat, 08 Mar 2008 16:11:23 +0100
python2.5 (2.5.2-1) unstable; urgency=low
* Python 2.5.2 release.
* Merge from Ubuntu:
- Move site customization into sitecustomize.py, don't make site.py
a config file. Addresses: #309719, #413172, #457361.
- Move site.py to python2.4-minimal, remove `addbuilddir' from site.py,
which is unnecessary for installed builds.
- python2.5-dev: Recommend libc-dev instead of suggesting it. LP: #164909.
- Fix issue 961805, Tk Text.edit_modified() fails. LP: #84720.
-- Matthias Klose <doko@debian.org> Thu, 28 Feb 2008 23:18:52 +0100
python2.5 (2.5.1-7) unstable; urgency=low
* Update to 20080209, taken from the 2.5 release branch.
* Build the _bsddb extension with db-4.5 again; 4.6 is seriously
broken when used with the _bsddb extension.
* Do not run pybench on arm and armel.
* python2.5: Provide python2.5-wsgiref.
* Fix a pseudo RC report with duplicated attributes in the control
file. Closes: #464307.
-- Matthias Klose <doko@debian.org> Sun, 10 Feb 2008 00:22:57 +0100
python2.5 (2.5.1-6) unstable; urgency=low
* Update to 20080102, taken from the 2.5 release branch.
- Only define _BSD_SOURCE on OpenBSD systems. Closes: #455400.
* Fix handling of packages in linecache.py (Kevin Goodsell). LP: #70902.
* Bump debhelper to v5.
* Register binfmt for .py[co] files.
* Use absolute paths when byte-compiling files. Addresses: #453346.
Closes: #413566, LP: #177722.
* CVE-2007-4965, http://bugs.python.org/issue1179:
Multiple integer overflows in the imageop module in Python 2.5.1 and
earlier allow context-dependent attackers to cause a denial of service
(application crash) and possibly obtain sensitive information (memory
contents) via crafted arguments to (1) the tovideo method, and unspecified
other vectors related to (2) imageop.c, (3) rbgimgmodule.c, and other
files, which trigger heap-based buffer overflows.
Patch prepared by Stephan Herrmann. Closes: #443333, LP: #163845.
* Register info docs when doing source only uploads. LP: #174786.
* Remove deprecated value from categories in desktop file. LP: #172874.
* python2.5-dbg: Don't include the gdbm and _tkinter extensions, now provided
in separate packages.
* Provide a symlink changelog -> NEWS. Closes: #439271.
* Fix build failure on hurd, working around poll() on systems on which it
returns an error on invalid FDs. Closes: #438914.
* Configure --with-system-ffi on all architectures. Closes: #448520.
* Fix version numbers in copyright and README files (Dan O'Huiginn).
Closes: #446682.
* Move some documents from python2.5 to python2.5-dev.
-- Matthias Klose <doko@debian.org> Wed, 02 Jan 2008 22:22:19 +0100
python2.5 (2.5.1-5) unstable; urgency=low
* Build the _bsddb extension with db-4.6.
-- Matthias Klose <doko@debian.org> Fri, 17 Aug 2007 00:39:35 +0200
python2.5 (2.5.1-4) unstable; urgency=low
* Update to 20070813, taken from the 2.5 release branch.
* Include plat-mac/plistlib.py (plat-mac is not in sys.path by default.
Closes: #435826.
* Use emacs22 to build the documentation in info format. Closes: #434969.
* Build-depend on db-dev (>= 4.6). Closes: #434965.
-- Matthias Klose <doko@debian.org> Mon, 13 Aug 2007 22:22:44 +0200
python2.5 (2.5.1-3) unstable; urgency=high
* Support mixed-endian IEEE floating point, as found in the ARM old-ABI
(Aurelien Jarno). Closes: #434905.
-- Matthias Klose <doko@debian.org> Fri, 27 Jul 2007 20:01:35 +0200
python2.5 (2.5.1-2) unstable; urgency=low
* Update to 20070717, taken from the 2.5 release branch.
* Fix reference count for sys.pydebug variable. Addresses: #431393.
* Build depend on libbluetooth-dev instead of libbluetooth2-dev.
-- Matthias Klose <doko@debian.org> Tue, 17 Jul 2007 14:09:47 +0200
python2.5 (2.5.1-1) unstable; urgency=low
* Python-2.5.1 release.
* Build-depend on gcc-4.1 (>= 4.1.2-4) on alpha, powerpc, s390, sparc.
* Merge from Ubuntu:
- Add debian/patches/subprocess-eintr-safety.dpatch (LP: #87292):
- Create and use wrappers around read(), write(), and os.waitpid() in the
subprocess module which retry the operation on an EINTR (which happens
if e. g. an alarm was raised while the system call was in progress).
It is incredibly hard and inconvenient to sensibly handle this in
applications, so let's fix this at the right level.
- Patch based on original proposal of Peter <C3><85>strand
in http://python.org/sf/1068268.
- Add two test cases.
- Change the interpreter to build and install python extensions
built with the python-dbg interpreter with a different name into
the same path (by appending `_d' to the extension name). The debug build
of the interpreter tries to first load a foo_d.so or foomodule_d.so
extension, then tries again with the normal name.
- When trying to import the profile and pstats modules, don't
exit, add a hint to the exception pointing to the python-profiler
package, don't exit.
- Keep the module version in the .egg-info name, only remove the
python version.
- python2.5-dbg: Install Misc/SpecialBuilds.txt, document the
debug changes in README.debug.
* Update to 20070425, taken from the 2.5 release branch.
-- Matthias Klose <doko@debian.org> Wed, 25 Apr 2007 22:12:50 +0200
python2.5 (2.5-6) unstable; urgency=medium
* webbrowser.py: Recognize other browsers: www-browser, x-www-browser,
iceweasel, iceape.
* Move pyconfig.h from the python2.5-dev into the python2.5 package;
required by builds for pure python modules without having python2.5-dev
installed (matching the functionality in python2.4).
* Move the unicodedata module into python2.5-minimal; allows byte compilation
of UTF8 encoded files.
* Do not install anymore outdated debhelper sample scripts.
* Install Misc/SpecialBuilds.txt as python2.5-dbg document.
-- Matthias Klose <doko@debian.org> Wed, 21 Feb 2007 01:17:12 +0100
python2.5 (2.5-5) unstable; urgency=high
* Do not run the python benchmark on m68k. Timer problems.
Fixes FTBFS on m68k.
* Update to 20061209, taken from the 2.5 release branch.
- Fixes building the library reference in info format.
-- Matthias Klose <doko@debian.org> Sat, 9 Dec 2006 13:40:48 +0100
python2.5 (2.5-4) unstable; urgency=medium
* Update to 20061203, taken from the 2.5 release branch.
- Fixes build failures on knetfreebsd and the hurd. Closes: #397000.
* Clarify README about distutils. Closes: #396394.
* Move python2.5-config to python2.5-dev. Closes: #401451.
* Cleanup build-conflicts. Addresses: #394512.
-- Matthias Klose <doko@debian.org> Sun, 3 Dec 2006 18:22:49 +0100
python2.5 (2.5-3.1) unstable; urgency=low
* Non-maintainer upload.
* python2.5-minimal depends on python-minimal (>= 2.4.4-1) because it's the
first version which lists python2.5 as an unsupported runtime (ie a
runtime that is available but for which modules are not auto-compiled).
And being listed there is required for python-central to accept the
installation of python2.5-minimal. Closes: #397006
-- Raphael Hertzog <hertzog@debian.org> Wed, 22 Nov 2006 15:41:06 +0100
python2.5 (2.5-3) unstable; urgency=medium
* Update to 20061029 (2.4.4 was released on 20061019), taken from
the 2.5 release branch. We do not want to have regressions in
2.5 compared to the 2.4.4 release.
* Don't run pybench on m68k, fails in the calibration loop. Closes: #391030.
* Run the installation/removal hooks. Closes: #383292, #391036.
-- Matthias Klose <doko@debian.org> Sun, 29 Oct 2006 11:35:19 +0100
python2.5 (2.5-2) unstable; urgency=medium
* Update to 20061003, taken from the 2.5 release branch.
* On arm and m68k, don't run the pybench in debug mode.
* Fix building the source within exec_prefix (Alexander Wirt).
Closes: #385336.
-- Matthias Klose <doko@debian.org> Tue, 3 Oct 2006 10:08:36 +0200
python2.5 (2.5-1) unstable; urgency=low
* Python 2.5 release.
* Update to 20060926, taken from the 2.5 release branch.
* Run the Python benchmark during the build, compare the results
of the static and shared builds.
* Fix invalid html in python2.5.devhelp.gz.
* Add a python2.5 console entry to the menu (hidden by default).
* python2.5: Suggest python-profiler.
-- Matthias Klose <doko@debian.org> Tue, 26 Sep 2006 02:36:11 +0200
python2.5 (2.5~c1-1) unstable; urgency=low
* Python 2.5 release candidate 1.
* Update to trunk 20060818.
-- Matthias Klose <doko@debian.org> Sat, 19 Aug 2006 19:21:05 +0200
python2.5 (2.5~b3-1) unstable; urgency=low
* Build the _ctypes module for m68k-linux.
-- Matthias Klose <doko@debian.org> Fri, 11 Aug 2006 18:19:19 +0000
python2.5 (2.5~b3-0ubuntu1) edgy; urgency=low
* Python 2.5 beta3 release.
* Update to trunk 20060811.
* Rebuild the documentation.
* Fix value of sys.exec_prefix in the debug build.
* Do not build the library reference in info format; fails to build.
* Link the interpreter against the shared runtime library. With
gcc-4.1 the difference in the pystones benchmark dropped from about
12% to about 6%.
* Install the statically linked version of the interpreter as
python2.5-static for now.
* Link the shared libpython with -O1.
-- Matthias Klose <doko@ubuntu.com> Thu, 10 Aug 2006 14:04:48 +0000
python2.5 (2.4.3+2.5b2-3) unstable; urgency=low
* Disable the testsuite on s390; don't care about "minimally configured"
buildd's.
-- Matthias Klose <doko@debian.org> Sun, 23 Jul 2006 11:45:03 +0200
python2.5 (2.4.3+2.5b2-2) unstable; urgency=low
* Update to trunk 20060722.
* Merge idle-lib from idle-python2.5 into python2.5.
* Merge lib-tk from python-tk into python2.5.
* Tkinter.py: Suggest installation of python-tk package on failed
import of the _tkinter extension.
* Don't run the testsuite for the debug build on alpha.
* Don't run the test_compiler test on m68k. Just takes too long.
* Disable building ctypes on m68k (requires support for closures).
-- Matthias Klose <doko@debian.org> Sat, 22 Jul 2006 22:26:42 +0200
python2.5 (2.4.3+2.5b2-1) unstable; urgency=low
* Python 2.5 beta2 release.
* Update to trunk 20060716.
* When built on a buildd, do not run the following test which try to
access the network: test_codecmaps_cn, test_codecmaps_hk, test_codecmaps_jp,
test_codecmaps_kr, test_codecmaps_tw, test_normalization.
* When built on a buildd, do not run tests requiring missing write permissions:
test_ossaudiodev.
-- Matthias Klose <doko@debian.org> Sun, 16 Jul 2006 02:53:50 +0000
python2.5 (2.4.3+2.5b2-0ubuntu1) edgy; urgency=low
* Python 2.5 beta2 release.
-- Matthias Klose <doko@ubuntu.com> Thu, 13 Jul 2006 17:16:52 +0000
python2.5 (2.4.3+2.5b1-1ubuntu2) edgy; urgency=low
* Fix python-dev dependencies.
* Update to trunk 20060709.
-- Matthias Klose <doko@ubuntu.com> Sun, 9 Jul 2006 18:50:32 +0200
python2.5 (2.4.3+2.5b1-1ubuntu1) edgy; urgency=low
* Python 2.5 beta1 release.
* Update to trunk 20060623.
* Merge changes from the python2.4 packages.
* python2.5-minimal: Add _struct.
-- Matthias Klose <doko@ubuntu.com> Fri, 23 Jun 2006 16:04:46 +0200
python2.5 (2.4.3+2.5a1-1) experimental; urgency=low
* Update to trunk 20060409.
* Run testsuite for debug build as well.
* Build-depend on gcc-4.1.
-- Matthias Klose <doko@debian.org> Sun, 9 Apr 2006 22:27:05 +0200
python2.5 (2.4.3+2.5a1-0ubuntu1) dapper; urgency=low
* Python 2.5 alpha1 release.
* Drop integrated patches.
* Add build dependencies on libsqlite3-dev and libffi4-dev.
* Add (build-)dependency on mime-support, libgpmg1 (test suite).
* Build using the system FFI.
* python2.5 provides python2.5-ctypes and python2.5-pysqlite2,
python2.5-elementtree.
* Move hashlib.py to python-minimal.
* Lib/hotshot/pstats.py: Error out on missing profile/pstats modules.
-- Matthias Klose <doko@ubuntu.com> Wed, 5 Apr 2006 14:56:15 +0200
python2.4 (2.4.3-8ubuntu1) edgy; urgency=low
* Resynchronize with Debian unstable. Remaining changes:
- Apply langpack-gettext patch.
- diff.gz contains pregenerated html and info docs.
- Build the -doc package from this source.
-- Matthias Klose <doko@ubuntu.com> Thu, 22 Jun 2006 18:39:57 +0200
python2.4 (2.4.3-8) unstable; urgency=low
* Remove python2.4's dependency on python-central. On installation of
the runtime, call hooks /usr/share/python/runtime.d/*.rtinstall.
On removal, call hooks /usr/share/python/runtime.d/*.rtremove.
Addresses: #372658.
* Call the rtinstall hooks only, if it's a new installation, or the first
installation using the hooks. Adresses: #373677.
-- Matthias Klose <doko@debian.org> Sun, 18 Jun 2006 00:56:13 +0200
python2.4 (2.4.3-7) unstable; urgency=medium
* Reupload, depend on python-central (>= 0.4.15).
* Add build-conflict on python-xml.
-- Matthias Klose <doko@debian.org> Wed, 14 Jun 2006 18:56:57 +0200
python2.4 (2.4.3-6) medium; urgency=low
* idle-python2.4: Remove the old postinst and prerm scripts.
* Name the runtime correctly in python2.4-minimal's installation
scripts.
-- Matthias Klose <doko@debian.org> Mon, 12 Jun 2006 17:39:56 +0000
python2.4 (2.4.3-5) unstable; urgency=low
* python2.4-prerm: Handle the case, when python-central is not installed.
* idle-python2.4: Depend on python-tk instead of python2.4-tk.
-- Matthias Klose <doko@debian.org> Fri, 9 Jun 2006 05:17:17 +0200
python2.4 (2.4.3-4) unstable; urgency=low
* SVN update up to 2006-06-07
* Use python-central.
* Don't build the -tk and -gdbm packages from this source; now built
from the python-stdlib-extensions source.
* Remove leftover build dependency on libgmp3-dev.
* Do not build-depend on libbluetooth1-dev and libgpmg1-dev on
hurd-i386, kfreebsd-i386, kfreebsd-amd64. Closes: #365830.
* Do not run the test_tcl test; hangs for unknown reasons on at least
the following buildds: vivaldi(m68k), goedel (alpha), mayer (mipsel).
And no virtual package to file bug reports for the buildds ...
Closes: #364419.
* Move the Makefile from python2.4-dev to python2.4. Closes: #366473.
* Fix typo in pdb(1). Closes: #365772.
* New autoconf likes the mandir in /usr/share instead of /usr; work
with both locations. Closes: #367618.
-- Matthias Klose <doko@debian.org> Wed, 7 Jun 2006 21:37:20 +0200
python2.4 (2.4.3-3) unstable; urgency=low
* SVN update up to 2006-04-21
* Update locale aliases from /usr/share/X11/locale/locale.alias.
* Start idle with option -n from the desktop menu, so that the program
can be started in parallel.
* Testsuite related changes only:
- Add build dependencies mime-support, libgpmg1 (needed by test cases).
- Run the testsuite with bsddb, audio and curses resources enabled.
- Re-run the failed tests in verbose mode.
- Run the test suite for the debug build as well.
- Build depend on netbase, needed by test_socketmodule.
- Build depend on libgpmg1, needed by test_curses.
- On the buildds do not run the tests needing the network resource.
* Update python logo.
* Check for the availability of the profile and pstats modules when
importing hotshot.pstats. Closes: #334067.
* Don't build the -doc package from the python2.4 source.
* Set OPT in the installed Makefile to -O2.
-- Matthias Klose <doko@debian.org> Fri, 21 Apr 2006 19:58:43 +0200
python2.4 (2.4.3-2) unstable; urgency=low
* Add (build-)dependency on mime-support.
-- Matthias Klose <doko@ubuntu.com> Tue, 4 Apr 2006 22:21:41 +0200
python2.4 (2.4.3-1) unstable; urgency=low
* Python 2.4.3 release.
-- Matthias Klose <doko@debian.org> Thu, 30 Mar 2006 23:42:37 +0200
python2.4 (2.4.3-0ubuntu1) dapper; urgency=low
* Python 2.4.3 release.
- Fixed a bug that the gb18030 codec raises RuntimeError on encoding
surrogate pair area on UCS4 build. Ubuntu: #29289.
-- Matthias Klose <doko@ubuntu.com> Thu, 30 Mar 2006 10:57:32 +0200
python2.4 (2.4.2+2.4.3c1-0ubuntu1) dapper; urgency=low
* SVN update up to 2006-03-25 (2.4.3 candidate 1).
- Regenerate the documentation.
-- Matthias Klose <doko@ubuntu.com> Mon, 27 Mar 2006 12:03:05 +0000
python2.4 (2.4.2-1ubuntu3) dapper; urgency=low
* SVN update up to 2006-03-04
- Regenerate the documentation.
- map.mmap(-1, size, ...) can return anonymous memory again on Unix.
Ubuntu #26201.
* Build-depend on libncursesw5-dev, ncursesw5 is preferred for linking.
Provides UTF-8 compliant curses bindings.
* Fix difflib where certain patterns of differences were making difflib
touch the recursion limit.
-- Matthias Klose <doko@ubuntu.com> Sat, 4 Mar 2006 21:38:24 +0000
python2.4 (2.4.2-1ubuntu2) dapper; urgency=low
* SVN update up to 2006-01-17
- pwd is now a builtin module, remove it from python-minimal.
- Regenerate the documentation.
* python2.4-tk: Suggest tix instead of tix8.1.
* Move config/Makefile from the -dev package into the runtime package
to be able to use the bdist_wininst distutils command. Closes: #348335.
-- Matthias Klose <doko@ubuntu.com> Tue, 17 Jan 2006 11:02:24 +0000
python2.4 (2.4.2-1ubuntu1) dapper; urgency=low
* Temporarily remove build dependency on lsb-release.
-- Matthias Klose <doko@ubuntu.com> Sun, 20 Nov 2005 17:40:18 +0100
python2.4 (2.4.2-1build1) dapper; urgency=low
* Rebuild (openssl-0.9.8).
-- Matthias Klose <doko@ubuntu.com> Sun, 20 Nov 2005 15:27:24 +0000
python2.4 (2.4.2-1) unstable; urgency=low
* Python 2.4.2 release.
-- Matthias Klose <doko@debian.org> Thu, 29 Sep 2005 01:49:28 +0200
python2.4 (2.4.1+2.4.2rc1-1) unstable; urgency=low
* Python 2.4.2 release candidate 1.
* Fix "Fatal Python error" from cStringIO's writelines.
Patch by Andrew Bennetts.
-- Matthias Klose <doko@debian.org> Thu, 22 Sep 2005 10:33:22 +0200
python2.4 (2.4.1-5) unstable; urgency=low
* CVS update up to 2005-09-14
- Regenerate the html and info docs.
* Add some more locale aliases.
* Fix substitution pf python version in README.python2.4-minimal.
Closes: #327487.
* On m68k, build using -O2 (closes: #326903).
* On Debian, don't configure --with-fpectl, which stopped working with
glibc-2.3.5.
-- Matthias Klose <doko@debian.org> Wed, 14 Sep 2005 17:32:56 +0200
python2.4 (2.4.1-4) unstable; urgency=low
* CVS update up to 2005-09-04
- teTeX 3.0 related fixes (closes: #322407).
- Regenerate the html and info docs.
* Add entry for IDLE in the Gnome menus.
* Don't build-depend on libbluetooth-dev on the Hurd (closes: #307037).
* Reenable the cthreads patch for the Hurd (closes: #307052).
-- Matthias Klose <doko@debian.org> Sun, 4 Sep 2005 18:31:42 +0200
python2.4 (2.4.1-3) unstable; urgency=low
* Synchronise with Ubuntu:
- Build a python2.4-minimal package.
-- Matthias Klose <doko@debian.org> Tue, 12 Jul 2005 00:23:10 +0000
python2.4 (2.4.1-2ubuntu3) breezy; urgency=low
* CVS update up to 2005-07-07
* Regenerate the documentation.
-- Matthias Klose <doko@ubuntu.com> Thu, 7 Jul 2005 09:21:28 +0200
python2.4 (2.4.1-2ubuntu2) breezy; urgency=low
* CVS update up to 2005-06-15
* Regenerate the documentation.
* Synchronize with Debian. Ubuntu 10485.
* idle-python2.4 enhances python2.4. Ubuntu 11562.
* README.Debian: Fix reference to the doc directory (closes: #311677).
-- Matthias Klose <doko@debian.org> Wed, 15 Jun 2005 08:56:57 +0200
python2.4 (2.4.1-2ubuntu1) breezy; urgency=low
* Update build dependencies:
db4.2-dev -> db4.3-dev,
libreadline4-dev -> libreadline5-dev.
* python2.4-dev: Add missing templates to generate HTML docs. Ubuntu 11531.
-- Matthias Klose <doko@ubuntu.com> Sun, 29 May 2005 00:01:05 +0200
python2.4 (2.4.1-2) unstable; urgency=low
* Add the debug symbols for the python2.4, python2.4-gdbm
and python2.4-tk packages to the python2.4-dbg package.
* Add gdbinit example to doc directory.
-- Matthias Klose <doko@debian.org> Thu, 5 May 2005 11:12:32 +0200
python2.4 (2.4.1-1ubuntu2) breezy; urgency=low
* Add the debug symbols for the python2.4, python2.4-minimal, python2.4-gdbm
and python2.4-tk packages to the python2.4-dbg package. Ubuntu 10261,
* Add gdbinit example to doc directory.
* For os.utime, use utimes(2), correctly working with glibc-2.3.5.
Ubuntu 10294.
-- Matthias Klose <doko@ubuntu.com> Thu, 5 May 2005 09:06:07 +0200
python2.4 (2.4.1-1ubuntu1) breezy; urgency=low
* Reupload as 2.4.1-1ubuntu1.
-- Matthias Klose <doko@ubuntu.com> Thu, 14 Apr 2005 10:46:32 +0200
python2.4 (2.4.1-1) unstable; urgency=low
* Python 2.4.1 release.
* Fix noise in python-doc installation/removal.
* New Python section for the info docs.
-- Matthias Klose <doko@debian.org> Wed, 30 Mar 2005 19:42:03 +0200
python2.4 (2.4.1-0) hoary; urgency=low
* Python 2.4.1 release.
* Fix noise in python-doc installation/removal.
* New Python section for the info docs.
-- Matthias Klose <doko@ubuntu.com> Wed, 30 Mar 2005 16:35:34 +0200
python2.4 (2.4+2.4.1rc2-2) unstable; urgency=low
* Add the valgrind support file to /etc/python2.4
* Build the -dbg package with -DPy_USING_MEMORY_DEBUGGER.
* Lib/locale.py:
- correctly parse LANGUAGE as a colon separated list of languages.
- prefer LC_ALL, LC_CTYPE and LANG over LANGUAGE to get the correct
encoding.
- Don't map 'utf8', 'utf-8' to 'utf', which is not a known encoding
for glibc.
* Fix two typos in python(1). Addresses: #300124.
-- Matthias Klose <doko@debian.org> Sat, 19 Mar 2005 21:50:14 +0100
python2.4 (2.4+2.4.1rc2-1) unstable; urgency=low
* Python 2.4.1 release candidate 2.
* Build-depend on libbluetooth1-dev.
-- Matthias Klose <doko@debian.org> Sat, 19 Mar 2005 00:57:14 +0100
python2.4 (2.4dfsg-2) unstable; urgency=low
* CVS update up to 2005-03-03
-- Matthias Klose <doko@debian.org> Thu, 3 Mar 2005 22:22:16 +0100
python2.4 (2.4dfsg-1ubuntu4) hoary; urgency=medium
* Move exception finalisation later in the shutdown process - this
fixes the crash seen in bug #1165761, taken from CVS.
* codecs.StreamReader: Reset codec when seeking. Ubuntu #6972.
* Apply fix for SF1124295, fixing an obscure bit of Zope's security machinery.
* distutils: Don't add standard library dirs to library_dirs
and runtime_library_dirs. On amd64, runtime paths pointing to /usr/lib64
aren't recognized by dpkg-shlibdeps, and the packages containing these
libraries aren't added to ${shlibs:Depends}.
* Lib/locale.py:
- correctly parse LANGUAGE as a colon separated list of languages.
- prefer LC_ALL, LC_CTYPE and LANG over LANGUAGE to get the correct
encoding.
- Don't map 'utf8', 'utf-8' to 'utf', which is not a known encoding
for glibc.
* os.py: Avoid using items() in environ.update(). Fixes #1124513.
* Python/pythonrun.c:
* Build depend on locales, generate the locales needed for the
testsuite.
* Add build dependency on libbluetooth1-dev, adding some bluetooth
functionality to the socket module.
* Lib/test/test_sundry.py: Don't fail on import of profile & pstats,
which are separated out to the python-profiler package.
* Fix typos in manpage.
-- Matthias Klose <doko@ubuntu.com> Tue, 29 Mar 2005 13:35:53 +0200
python2.4 (2.4dfsg-1ubuntu3) hoary; urgency=low
* debian/patches/langpack-gettext.dpatch:
- langpack support for python-gettext added
-- Michael Vogt <michael.vogt@ubuntu.com> Tue, 1 Mar 2005 13:13:36 +0100
python2.4 (2.4dfsg-1ubuntu2) hoary; urgency=low
* Revert 'essential' status on python2.4-minimal. This status on
on python-minimal is sufficient (Ubuntu #6392).
-- Matthias Klose <doko@ubuntu.com> Wed, 9 Feb 2005 23:09:42 +0100
python2.4 (2.4dfsg-1ubuntu1) hoary; urgency=low
* Resyncronise with Debian.
* Mark the python2.4-minimal package as 'essential'.
-- Matthias Klose <doko@ubuntu.com> Wed, 9 Feb 2005 13:31:09 +0100
python2.4 (2.4dfsg-1) unstable; urgency=medium
* Add licenses and acknowledgements for incorporated software in the
debian/copyright file (addresses: #293932).
* Replace md5 implementation with one having a DFSG conforming license.
* Remove the profile.py and pstats.py modules from the source package,
not having a DFSG conforming license. The modules can be found in
the python2.x-profile package in the non-free section.
Addresses: #293932.
* Add missing norwegian locales (Tollef Fog Heen).
* CVS updates of the release24-maint branch upto 2005-02-08 (date of
the Python 2.3.5 release).
-- Matthias Klose <doko@debian.org> Tue, 8 Feb 2005 19:13:10 +0100
python2.4 (2.4-7ubuntu1) hoary; urgency=low
* Fix the name of the python-dbg man page.
* Resyncronise with Debian.
* Move more modules to -minimal (new code in copy.py requires these):
dis, inspect, opcode, token, tokenize.
-- Matthias Klose <doko@ubuntu.com> Tue, 8 Feb 2005 19:13:10 +0100
python2.4 (2.4-7) unstable; urgency=medium
* Add licenses and acknowledgements for incorporated software in the
debian/copyright file (addresses: #293932).
* Replace md5 implementation with one having a DFSG conforming license.
* Add missing norwegian locales (Tollef Fog Heen).
* CVS updates of the release24-maint branch upto 2005-02-08 (date of
the Python 2.3.5 release).
-- Matthias Klose <doko@debian.org> Tue, 8 Feb 2005 19:13:10 +0100
python2.4 (2.4-6) unstable; urgency=low
* Build a python2.4-dbg package using --with-pydebug. Add a debug
directory <prefix>/lib-dynload/debug to sys.path instead of
<prefix>/lib-dynload und install the extension modules of the
debug build in this directory.
Change the module load path to load extension modules from other
site-packages/debug directories (for further details see the
README in the python2.4-dbg package). Closes: #5415.
* Apply the pydebug-path patch. The package was already built in -5.
-- Matthias Klose <doko@debian.org> Fri, 4 Feb 2005 22:15:13 +0100
python2.4 (2.4-5) unstable; urgency=high
* Fix a flaw in SimpleXMLRPCServerthat can affect any XML-RPC servers.
This affects any programs have been written that allow remote
untrusted users to do unrestricted traversal and can allow them to
access or change function internals using the im_* and func_* attributes.
References: CAN-2005-0089.
* CVS updates of the release24-maint branch upto 2005-02-04.
-- Matthias Klose <doko@debian.org> Fri, 4 Feb 2005 08:12:10 +0100
python2.4 (2.4-4) unstable; urgency=medium
* Update debian/copyright to the 2.4 license text (closes: #290898).
* Remove /usr/bin/smtpd.py (closes: #291049).
-- Matthias Klose <doko@debian.org> Mon, 17 Jan 2005 23:54:37 +0100
python2.4 (2.4-3ubuntu6) hoary; urgency=low
* Use old-style dpatches instead of dpatch-run.
-- Tollef Fog Heen <tfheen@canonical.com> Mon, 7 Feb 2005 15:58:05 +0100
python2.4 (2.4-3ubuntu5) hoary; urgency=low
* Actually apply the patch as well (add to list of patches in
debian/rules)
-- Tollef Fog Heen <tfheen@canonical.com> Sun, 6 Feb 2005 15:12:58 +0100
python2.4 (2.4-3ubuntu4) hoary; urgency=low
* Add nb_NO and nn_NO locales to Lib/locale.py
-- Tollef Fog Heen <tfheen@canonical.com> Sun, 6 Feb 2005 14:33:05 +0100
python2.4 (2.4-3ubuntu3) hoary; urgency=low
* Fix a flaw in SimpleXMLRPCServerthat can affect any XML-RPC servers.
This affects any programs have been written that allow remote
untrusted users to do unrestricted traversal and can allow them to
access or change function internals using the im_* and func_* attributes.
References: CAN-2005-0089.
-- Matthias Klose <doko@ubuntu.com> Wed, 2 Feb 2005 09:08:20 +0000
python2.4 (2.4-3ubuntu2) hoary; urgency=low
* Build a python2.4-dbg package using --with-pydebug. Add a debug
directory <prefix>/lib-dynload/debug to sys.path instead of
<prefix>/lib-dynload und install the extension modules of the
debug build in this directory.
Change the module load path to load extension modules from other
site-packages/debug directories (for further details see the
README in the python2.4-dbg package). Closes: #5415.
* Update debian/copyright to the 2.4 license text (closes: #290898).
* Add operator and copy to the -minimal package.
-- Matthias Klose <m@klose.in-berlin.de> Mon, 17 Jan 2005 23:19:47 +0100
python2.4 (2.4-3ubuntu1) hoary; urgency=low
* Resynchronise with Debian.
* python2.4: Depend on the very same version of python2.4-minimal.
* Docment, that time.strptime currently cannot be used, if the
python-minimal package is installed without the python package.
-- Matthias Klose <m@klose.in-berlin.de> Sun, 9 Jan 2005 19:35:48 +0100
python2.4 (2.4-3) unstable; urgency=medium
* Build the fpectl module.
* Updated to CVS release24-maint 20050107.
-- Matthias Klose <doko@debian.org> Sat, 8 Jan 2005 19:05:21 +0100
python2.4 (2.4-2ubuntu5) hoary; urgency=low
* Updated to CVS release24-maint 20050102.
* python-minimal:
- os.py: Use dict instead of UserDict, remove UserDict from -minimal.
- add pickle, threading, needed for subprocess module.
- optparse.py: conditionally import gettext, if not available,
define _ as the identity function. Patch taken from the trunk.
Avoids import of _locale, locale, gettext, copy, repr, itertools,
collections, token, tokenize.
- Add a build check to make sure that the minimal module list is
closed under dependency.
* Fix lintian warnings.
-- Matthias Klose <m@klose.in-berlin.de> Sun, 2 Jan 2005 22:00:14 +0100
python2.4 (2.4-2ubuntu4) hoary; urgency=low
* Add UserDict.py to the -minimal package, since os.py needs it.
-- Colin Watson <cjwatson@canonical.com> Thu, 30 Dec 2004 20:41:28 +0000
python2.4 (2.4-2ubuntu3) hoary; urgency=low
* Add os.py and traceback.py to the -minimal package, get the list
of modules from the README.
-- Matthias Klose <m@klose.in-berlin.de> Mon, 27 Dec 2004 08:20:45 +0100
python2.4 (2.4-2ubuntu2) hoary; urgency=low
* Add compileall.py and py_compile.py to the -minimal package, not
just to the README ...
-- Matthias Klose <m@klose.in-berlin.de> Sat, 25 Dec 2004 22:24:56 +0100
python2.4 (2.4-2ubuntu1) hoary; urgency=low
* Separate the interpreter and a minimal subset of modules into
a python2.4-minimal package. See the README.Debian.gz in this
package.
* Move site.py to python2.4-minimal as well.
* Add documentation files for devhelp.
-- Matthias Klose <m@klose.in-berlin.de> Sun, 19 Dec 2004 22:47:32 +0100
python2.4 (2.4-2) unstable; urgency=medium
* Updated patch for #283108. Thanks to Jim Meyering.
-- Matthias Klose <doko@debian.org> Fri, 3 Dec 2004 17:00:16 +0100
python2.4 (2.4-1) unstable; urgency=low
* Final 2.4 release.
* Flush stdout/stderr if closed (SF #1074011).
-- Matthias Klose <doko@debian.org> Wed, 1 Dec 2004 07:54:34 +0100
python2.4 (2.3.97-2) unstable; urgency=low
* Don't run test_tcl, hanging on the buildds.
-- Matthias Klose <doko@debian.org> Fri, 19 Nov 2004 23:48:42 +0100
python2.4 (2.3.97-1) unstable; urgency=low
* Python 2.4 Release Candidate 1.
-- Matthias Klose <doko@debian.org> Fri, 19 Nov 2004 21:27:02 +0100
python2.4 (2.3.96-1) experimental; urgency=low
* Updated to CVS release24-maint 20041113.
* Build the docs in info format again.
-- Matthias Klose <doko@debian.org> Sat, 13 Nov 2004 21:21:10 +0100
python2.4 (2.3.95-2) experimental; urgency=low
* Move distutils package from the python2.4-dev into the python2.4
package.
-- Matthias Klose <doko@debian.org> Thu, 11 Nov 2004 22:56:14 +0100
python2.4 (2.3.95-1) experimental; urgency=low
* Python 2.4 beta2 release.
-- Matthias Klose <doko@debian.org> Thu, 4 Nov 2004 23:43:47 +0100
python2.4 (2.3.94-1) experimental; urgency=low
* Python 2.4 beta1 release.
-- Matthias Klose <doko@debian.org> Sat, 16 Oct 2004 08:33:57 +0200
python2.4 (2.3.93-1) experimental; urgency=low
* Python 2.4 alpha3 release.
-- Matthias Klose <doko@debian.org> Fri, 3 Sep 2004 21:53:47 +0200
python2.4 (2.3.92-1) experimental; urgency=low
* Python 2.4 alpha2 release.
-- Matthias Klose <doko@debian.org> Thu, 5 Aug 2004 23:53:18 +0200
python2.4 (2.3.91-1) experimental; urgency=low
* Python 2.4 alpha1 release.
Highlights: http://www.python.org/2.4/highlights.html
-- Matthias Klose <doko@debian.org> Fri, 9 Jul 2004 17:38:54 +0200
python2.4 (2.3.90-1) experimental; urgency=low
* Package HEAD branch (pre alpha ..).
-- Matthias Klose <doko@debian.org> Mon, 14 Jun 2004 23:19:57 +0200
python2.3 (2.3.4-1) unstable; urgency=medium
* Final Python 2.3.4 Release.
* In the API docs, fix signature of PyModule_AddIntConstant (closes: #250826).
* locale.getdefaultlocale: don't fail with empty environment variables.
Closes: #249816.
* Include distutils/command/wininst.exe in -dev package (closes: #249006).
* Disable cthreads on the Hurd (Michael Banck). Closes: #247211.
* Add a note to pygettext(1), that this program is deprecated in favour
of xgettext, which now includes support for Python as well.
Closes: #246332.
-- Matthias Klose <doko@debian.org> Fri, 28 May 2004 22:59:42 +0200
python2.3 (2.3.3.91-1) unstable; urgency=low
* Python 2.3.4 Release Candidate 1.
* Do not use the default namespace for attributes. Patch taken from the
2.3 maintenance branch.
The xmllib module is obsolete. Use xml.sax instead.
* http://python.org/sf/945642 - fix nonblocking i/o with ssl socket.
-- Matthias Klose <doko@debian.org> Thu, 13 May 2004 21:24:52 +0200
python2.3 (2.3.3-7) unstable; urgency=low
* Add a workaround for GNU libc nl_langinfo()'s returning NULL.
Closes: #239237.
Patch taken from 2.3 maintenance branch.
* threading.py: Remove calls to currentThread() in _Condition methods that
were side-effect. Side-effects were deemed unnecessary and were causing
problems at shutdown time when threads were catching exceptions at start
time and then triggering exceptions trying to call currentThread() after
gc'ed. Masked the initial exception which was deemed bad.
Closes: #195812.
* Properly support normalization of empty unicode strings. Closes: #239986.
Patch taken from 2.3 maintenance branch.
* README.maintainers: Add section where to find the documentation tools.
* Fix crash in pyexpat module (closes: #229281).
* For the Hurd, set the interpreters recursion limit to 930.
* Do not try to byte-compile the test files on installation; this
currently breaks the Hurd install.
-- Matthias Klose <doko@debian.org> Sat, 1 May 2004 07:50:46 +0200
python2.3 (2.3.3-6) unstable; urgency=low
* Don't build the unversioned python{,-*} packages anymore. Now
built from the python-defaults package.
* Update to the proposed python-policy: byte-compile using -E.
* Remove python-elisp's dependency on emacs20 (closes: #232785).
* Don't build python-elisp from the python2.3 source anymore,
get it from python-mode.sf.net as a separate source package.
* python2.3-dev suggests libc-dev (closes: #231091).
* get LDSHARED and CCSHARED (like, CC, CXX, CPP, CFLAGS) from
the environment
* Set CXX in installed config/Makefile (closes: #230273).
-- Matthias Klose <doko@debian.org> Tue, 24 Feb 2004 07:07:51 +0100
python2.3 (2.3.3-5) unstable; urgency=low
* Build-depend on libdb4.2-dev, instead of libdb4.1-dev. According
to the docs the file format is compatible.
-- Matthias Klose <doko@debian.org> Mon, 12 Jan 2004 10:37:45 +0100
python2.3 (2.3.3-4) unstable; urgency=low
* Fix broken _bsddb module. setup.py picked up the wrong library.
-- Matthias Klose <doko@debian.org> Sun, 4 Jan 2004 11:30:00 +0100
python2.3 (2.3.3-3) unstable; urgency=low
* Fix typo in patch (closes: #224797, #226064).
-- Matthias Klose <doko@debian.org> Sun, 4 Jan 2004 09:23:21 +0100
python2.3 (2.3.3-2) unstable; urgency=medium
* Lib/email/Charset: use locale unaware function to lower case of locale
name (closes: #224797).
* Update python-mode to version from python-mode.sf.net. Fixes highlighting
problems (closes: #223520).
* Backport from mainline: Add IPV6_ socket options from RFCs 3493 and 3542.
-- Matthias Klose <doko@debian.org> Fri, 2 Jan 2004 14:03:26 +0100
python2.3 (2.3.3-1) unstable; urgency=low
* New upstream release.
* Copy the templates, tools and scripts from the Doc dir in the source
to /usr/share/lib/python2.3/doc in the python2.3-dev package. Needed
for packages building documentation like python does (closes: #207337).
-- Matthias Klose <doko@debian.org> Fri, 19 Dec 2003 10:57:39 +0100
python2.3 (2.3.2.91-1) unstable; urgency=low
* New upstream version (2.3.3 release candidate).
* Update python-mode.el (closes: #158811, #159630).
Closing unreproducible report (closes: #159628).
-- Matthias Klose <doko@debian.org> Sat, 6 Dec 2003 14:41:14 +0100
python2.3 (2.3.2-7) unstable; urgency=low
* Put the conflict in the correct direction. python2.3 (2.3.2-6) doesn't
conflict with python (<= 2.3.2-5) but python (2.3.2-6) conflicts with
python2.3 (<= 2.3.2-5) (thanks to Brian May). Really closes #221791.
-- Matthias Klose <doko@debian.org> Fri, 21 Nov 2003 00:20:02 +0100
python2.3 (2.3.2-6) unstable; urgency=low
* Add conflicts with older python{,2.3} packages to fix overwrite
errors (closes: #221791).
-- Matthias Klose <doko@debian.org> Thu, 20 Nov 2003 07:24:36 +0100
python2.3 (2.3.2-5) unstable; urgency=low
* Updated to CVS release23-maint 20031119.
* Re-upgrade the dependency of python2.3 on python (>= 2.3) to
a dependency (closes: #221523).
-- Matthias Klose <doko@debian.org> Wed, 19 Nov 2003 00:30:27 +0100
python2.3 (2.3.2-4) unstable; urgency=low
* Don't build-depend on latex2html (moved to non-free), but keep
the prebuilt docs in debian/patches (closes: #221347).
* Fix typos in the library reference (closes: #220510, #220954).
* Fix typo in python-elisp's autoloading code (closes: #220308).
* Update proposed python policy: private modules can be installed
into /usr/lib/<module> (arch dependent) and into /usr/share/<module>
(arch independent).
-- Matthias Klose <doko@debian.org> Tue, 18 Nov 2003 00:41:39 +0100
python2.3 (2.3.2-3) unstable; urgency=low
* Downgrade the dependency of python2.3 on python (>= 2.3) to
a recommendation.
* Fix path to interpreter in binfmt file.
* Fix segfault in unicodedata module (closes: #218697).
* Adjust python-elisp autoload code (closes: #219821).
-- Matthias Klose <doko@debian.org> Sun, 9 Nov 2003 19:43:37 +0100
python2.3 (2.3.2-2) unstable; urgency=medium
* Fix broken doc link (closes: #214217).
* Disable wrongly detected large file support for GNU/Hurd.
* Really fix the FTBFS for the binary-indep target (closes: #214303).
-- Matthias Klose <doko@debian.org> Mon, 6 Oct 2003 07:54:58 +0200
python2.3 (2.3.2-1) unstable; urgency=low
* New upstream version.
* Fix a FTBFS for the binary-indep target.
-- Matthias Klose <doko@debian.org> Sat, 4 Oct 2003 10:20:15 +0200
python2.3 (2.3.1-3) unstable; urgency=low
* Fix names of codec packages in recommends.
* On alpha compile using -mieee (see #212912).
-- Matthias Klose <doko@debian.org> Sun, 28 Sep 2003 10:48:12 +0200
python2.3 (2.3.1-2) unstable; urgency=low
* Update python policy draft (closes: #128911, #163785).
* Re-add os.fsync function (closes: #212672).
* Let python2.3-doc conflict with older python2.3 versions (closes: #211882).
* Add recommends for pythonX.Y-japanese-codecs, pythonX.Y-iconvcodec,
pythonX.Y-cjkcodecs, pythonX.Y-korean-codecs (closes: #207161).
* Generate binfmt file (closes: #208005).
* Add IPPROTO_IPV6 option to the socketmodule (closes: #206569).
* Bugs reported against python2.2 and fixed in python2.3:
- Crashes in idle (closes: #186887, #200084).
-- Matthias Klose <doko@debian.org> Sat, 27 Sep 2003 11:21:47 +0200
python2.3 (2.3.1-1) unstable; urgency=low
* New upstream version (bug fix release).
-- Matthias Klose <doko@debian.org> Wed, 24 Sep 2003 11:27:43 +0200
python2.3 (2.3-4) unstable; urgency=high
* Disable check for utimes function, which is broken in glibc-2.3.2.
Packages using distutils had '1970/01/01-01:00:01' timestamps in files.
* Bugs fixed by making python2.3 the default python version:
- Canvas.scan_dragto() takes a 3rd optional parmeter "gain".
Closes: #158168.
- New command line parsing module (closes: #38628).
- compileall.py allows compiling single files (closes: #139971).
* Bugs reported for 2.2 and fixed in 2.3:
- Idle does save files with ASCII characters (closes: #179313).
- imaplib support for prefix-quoted strings (closes: #150485).
- posixpath includes getctime (closes: #173827).
- pydoc has support for keywords (closes: #186775).
* Bugs reported for 2.1 and fixed in 2.3:
- Fix handling of "#anchor" URLs in urlparse (closes: #147844).
- Fix readline if C stdin is not a tty, even if sys.stdin is.
Closes: #131810.
* Updated to CVS release23-maint 20030810 (fixing memory leaks in
array and socket modules).
* pydoc's usage output uses the basename of the script.
* Don't explicitely remove /etc/python2.3 on purge (closes: #202864).
* python conflicts with python-xmlbase (closes: #204773).
* Add dependency python (>= 2.3) to python2.3, so make sure the
unversioned names can be used.
-- Matthias Klose <doko@debian.org> Sun, 10 Aug 2003 09:27:52 +0200
python2.3 (2.3-3) unstable; urgency=medium
* Fix shlibs file.
-- Matthias Klose <doko@debian.org> Fri, 8 Aug 2003 08:45:12 +0200
python2.3 (2.3-2) unstable; urgency=medium
* Make python2.3 the default python version.
-- Matthias Klose <doko@debian.org> Tue, 5 Aug 2003 22:13:22 +0200
python2.3 (2.3-1) unstable; urgency=low
* Python 2.3 final release.
-- Matthias Klose <doko@debian.org> Wed, 30 Jul 2003 08:12:28 +0200
python2.3 (2.2.107-1rc2) unstable; urgency=medium
* Python 2.3 release candidate 2.
* Don't compress .txt files referenced by the html docs (closes: #200298).
* Include the email/_compat* files (closes: #200349).
-- Matthias Klose <doko@debian.org> Fri, 25 Jul 2003 07:08:09 +0200
python2.3 (2.2.106-2beta2) unstable; urgency=medium
* Python 2.3 beta2 release, updated to CVS 20030704.
- Fixes AssertionError in httplib (closed: #192452).
- Fixes uncaught division by zero in difflib.py (closed: #199287).
* Detect presence of setgroups(2) at configure time (closes: #199839).
* Use default gcc on arm as well.
-- Matthias Klose <doko@debian.org> Sat, 5 Jul 2003 10:21:33 +0200
python2.3 (2.2.105-1beta2) unstable; urgency=low
* Python 2.3 beta2 release.
- Includes merged idle fork.
- Fixed socket.setdefaulttimeout(). Closes: #189380.
- socket.ssl works with _socketobj. Closes: #196082.
* Do not link libtix to the _tkinter module. It's loaded via
'package require tix' at runtime. python2.3-tkinter now
suggests tix8.1 instead.
* On arm, use gcc-3.2 to build.
* Add -fno-strict-aliasing rules to OPT to avoid warnings
"dereferencing type-punned pointer will break strict-aliasing rules",
when building with gcc-3.3.
-- Matthias Klose <doko@debian.org> Mon, 30 Jun 2003 00:19:32 +0200
python2.3 (2.2.104-1beta1.1) unstable; urgency=low
* Non-maintainer upload with maintainer consent.
* debian/control (Build-Depends): s/libgdbmg1-dev/libgdbm-dev/.
-- James Troup <james@nocrew.org> Wed, 4 Jun 2003 02:24:27 +0100
python2.3 (2.2.104-1beta1) unstable; urgency=low
* Python 2.3 beta1 release, updated to CVS 20030514.
- build the current documentation.
* Reenable Tix support.
-- Matthias Klose <doko@debian.org> Wed, 14 May 2003 07:38:57 +0200
python2.3 (2.2.103-1beta1) unstable; urgency=low
* Python 2.3 beta1 release, updated to CVS 20030506.
- updated due to build problems on mips/mipsel.
- keep the 2.3b1 documentation (doc build problems with cvs).
-- Matthias Klose <doko@debian.org> Wed, 7 May 2003 06:26:39 +0200
python2.3 (2.2.102-1beta1) unstable; urgency=low
* Python 2.3 beta1 release.
-- Matthias Klose <doko@debian.org> Sat, 3 May 2003 22:45:16 +0200
python2.3 (2.2.101-1exp1) unstable; urgency=medium
* Python 2.3 alpha2 release, updated to CVS 20030321.
* Tkinter: Catch exceptions thrown for undefined substitutions in
events (needed for tk 8.4.2).
-- Matthias Klose <doko@debian.org> Fri, 21 Mar 2003 21:32:14 +0100
python2.3 (2.2.100-1exp1) unstable; urgency=low
* Python 2.3 alpha2 release, updated to CVS 20030221.
-- Matthias Klose <doko@debian.org> Fri, 21 Feb 2003 19:37:17 +0100
python2.3 (2.2.99-1exp1) unstable; urgency=low
* Python 2.3 alpha1 release updated to CVS 20030123.
- should fix the testsuite (and package build) failure on alpha.
* Remove build dependency on libexpat1-dev. Merge the python2.3-xmlbase
package into python2.3 (closes: #177739).
-- Matthias Klose <doko@debian.org> Thu, 23 Jan 2003 22:48:12 +0100
python2.3 (2.2.98-1exp1) unstable; urgency=low
* Python 2.3 alpha1 release updated to CVS 20030117.
* Build using libdb4.1.
-- Matthias Klose <doko@debian.org> Sat, 18 Jan 2003 00:14:01 +0100
python2.3 (2.2.97-1exp1) unstable; urgency=low
* Python 2.3 alpha1 release updated to CVS 20030109.
* Build-Depend on g++ (>= 3:3.2).
* Python package maintainers: please wait uploading python dependent
packages until python2.2 and python2.1 are compiled using gcc-3.2.
-- Matthias Klose <doko@debian.org> Thu, 9 Jan 2003 23:56:42 +0100
python2.3 (2.2.96-1exp1) unstable; urgency=low
* Python 2.3 alpha1 release (not exactly the tarball, but taken from
CVS 20030101).
- Includes support for linking with threaded tk8.4 (closes: #172714).
* Install and register whatsnew document (closes: #173859).
* Properly unregister info documentation.
-- Matthias Klose <doko@debian.org> Wed, 1 Jan 2003 17:38:54 +0100
python2.3 (2.2.95-1exp1) unstable; urgency=low
* Experimental packages from CVS 021212.
- data in unicodedate module is up to date (closes: #171061).
* Fix idle packaging (closes: #170394).
* Configure using unicode UCS-4 (closes: #171062).
This change breaks compatibility with binary modules, but what do you
expect from experimental packages ... Please recompile dependent packages.
* Don't strip binaries for now.
-- Matthias Klose <doko@debian.org> Thu, 12 Dec 2002 21:42:27 +0100
python2.3 (2.2.94-1exp1) unstable; urgency=low
* Experimental packages from CVS 021120.
* Remove outdated README.dbm.
* Depend on tk8.4.
* python-elisp: Install emacsen install file with mode 644 (closes: #167718).
-- Matthias Klose <doko@debian.org> Thu, 21 Nov 2002 01:04:51 +0100
python2.3 (2.2.93-1exp1) unstable; urgency=medium
* Experimental packages from CVS 021015.
* Build a static library libpython2.3-pic.a.
* Enable large file support for the Hurd (closes: #164602).
-- Matthias Klose <doko@debian.org> Tue, 15 Oct 2002 21:06:27 +0200
python2.3 (2.2.92-1exp1) unstable; urgency=low
* Experimental packages from CVS 020922.
* Fix build error on ia64 (closes: #161234).
* Build depend on gcc-3.2-3.2.1-0pre2 to fix build error on arm.
-- Matthias Klose <doko@debian.org> Sun, 22 Sep 2002 18:30:28 +0200
python2.3 (2.2.91-1exp1) unstable; urgency=low
* Experimental packages from CVS 020906.
* idle-python2.3: Fix conflict (closes: #159267).
* Fix location of python-mode.el (closes: #159564, #159619).
* Use tix8.1.
* Apply fix for distutils/ccompiler problem (closes: #159288).
-- Matthias Klose <doko@debian.org> Sat, 7 Sep 2002 09:55:07 +0200
python2.3 (2.2.90-1exp1) unstable; urgency=low
* Experimental packages from CVS 020820.
* Don't build python2.3-elisp, but put the latest version into
python-elisp.
-- Matthias Klose <doko@debian.org> Thu, 22 Aug 2002 21:52:04 +0200
python2.2 (2.2.1-6) unstable; urgency=low
* CVS updates of the release22-maint branch upto 2002-07-23.
* Enable IPv6 support (closes: #152543).
* Add python2.2-tk suggestion for python2.2 (pydoc -g).
* Fix from SF patch #527518: proxy config with user+pass authentication.
* Point pydoc to the correct location of the docs (closes: #147579).
* Remove '*.py[co]' files, when removing the python package,
not when purging (closes: #147130).
* Update to new py2texi.el version (Milan Zamazal).
-- Matthias Klose <doko@debian.org> Mon, 29 Jul 2002 23:11:32 +0200
python2.2 (2.2.1-5) unstable; urgency=low
* CVS updates of the release22-maint branch upto 2002-05-03.
* Build the info docs (closes: #145653).
-- Matthias Klose <doko@debian.org> Fri, 3 May 2002 22:35:46 +0200
python2.2 (2.2.1-4) unstable; urgency=high
* Fix indentation errors introduced in last upload (closes: #143809).
-- Matthias Klose <doko@debian.org> Sun, 21 Apr 2002 01:00:14 +0200
python2.2 (2.2.1-3) unstable; urgency=high
* Add Build-Conflicts: tcl8.0-dev, tk8.0-dev, tcl8.2-dev, tk8.2-dev.
Closes: #143534 (build a working _tkinter module, on machines, where
8.0's tk.h gets included).
* CVS updates of the release22-maint branch upto 2002-04-20.
-- Matthias Klose <doko@debian.org> Sat, 20 Apr 2002 09:22:37 +0200
python2.2 (2.2.1-2) unstable; urgency=low
* Forgot to copy the dlmodule patch from the 2.1.3 package. Really
closes: #141681.
-- Matthias Klose <doko@debian.org> Sat, 13 Apr 2002 01:28:05 +0200
python2.2 (2.2.1-1) unstable; urgency=high
* Final 2.2.1 release.
* According to report #131813, the python interpreter is much faster on some
architectures, when beeing linked statically with the python library (25%).
Gregor and me tested on i386, m68k and alpha, but we could not reproduce
such a speedup (generally between 5% and 10%). But we are linking the
python executable now statically ...
* Build info docs from the tex source, merge the python-doc-info
package into the python-doc package.
* Always build the dl module. Failure in case of
sizeof(int)!=sizeof(long)!=sizeof(void*)
is delayed until dl.open is called. Closes: #141681.
-- Matthias Klose <doko@debian.org> Thu, 11 Apr 2002 00:19:19 +0200
python2.2 (2.2.0.92-0) unstable; urgency=low
* Package CVS sources, omit cvs-updates.dpatch (closes: #140977).
-- Matthias Klose <doko@debian.org> Wed, 3 Apr 2002 08:20:52 +0200
python2.2 (2.2-6) unstable; urgency=medium
* Update to python-2.2.1 release candidate 2 (final release scheduled
for April 10).
* Enable dl module (closes: #138992).
* Build doc files with python binary from package (closes: #139657).
* Build _tkinter module with BLT and Tix support.
* python2.2-elisp: Conflict with python2-elisp (closes: #138970).
* string.split docs updated in python-2.2.1 (closes: #129272).
-- Matthias Klose <doko@debian.org> Mon, 1 Apr 2002 13:52:36 +0200
python2.2 (2.2-5) unstable; urgency=low
* CVS updates of the release22-maint branch upto 20020310 (aproaching
the first 2.2.1 release candidate).
* Stolen from HEAD: check argument of locale.nl_langinfo (closes: #137371).
-- Matthias Klose <doko@debian.org> Fri, 15 Mar 2002 01:05:59 +0100
python2.2 (2.2-4) unstable; urgency=medium
* Include test/{__init__.py,README,pystone.py} in package (closes: #129013).
* Fix python-elisp conflict (closes: #129046).
* Don't compress stylesheets (closes: #133179).
* CVS updates of the release22-maint branch upto 20020310.
-- Matthias Klose <doko@debian.org> Sun, 10 Mar 2002 23:32:28 +0100
python2.2 (2.2-3) unstable; urgency=medium
* Updates from the CVS python22-maint branch up to 20020107.
webbrowser.py: properly escape url's.
* The Hurd does not have large file support: disabled.
-- Matthias Klose <doko@debian.org> Mon, 7 Jan 2002 21:55:57 +0100
python2.2 (2.2-2) unstable; urgency=medium
* CVS updates of the release22-maint branch upto 20011229. Fixes:
- Include TCP_CORK flag in plat-linux2 headers (fixes: #84340).
- Update CDROM.py module (fixes: #125785).
* Add missing chunk of the GNU/Hurd patch (therefore urgency medium).
* Send anonymous password when using anonftp (closes: #126814).
-- Matthias Klose <doko@debian.org> Sat, 29 Dec 2001 20:18:26 +0100
python2.2 (2.2-1) unstable; urgency=low
* New upstream version: 2.2.
* Bugs fixed upstream:
- Docs for os.kill reference the signal module for constants.
- Documentation strings in the tutorial end with a period (closes: #94770).
- Tk: grid_location method moved from Grid to Misc (closes: #98338).
- mhlib.SubMessage.getbodytext takes decode parameter (closes: #31876).
- Strings in modules are locale aware (closes: #51444).
- Printable 8-bit characters in strings are correctly printed
(closes: #64354).
- Dictionary can be updated with abstract mapping object (closes: #46566).
* Make site.py a config files.
-- Matthias Klose <doko@debian.org> Sat, 22 Dec 2001 00:51:46 +0100
python2.2 (2.1.99c1-1) unstable; urgency=low
* New upstream version: 2.2c1 (release candidate).
* Do not provide python2.2-base anymore.
* Install correct README.Debian for python2.2 package. Include hint
where to find Makefile.pre.in.
* Suggest installation of python-ssl.
* Remove idle config files on purge.
* Remove empty /usr/lib/python2.2 directory on purge.
-- Matthias Klose <doko@debian.org> Sat, 15 Dec 2001 17:56:27 +0100
python2.2 (2.1.99beta2-1) unstable; urgency=high
* debian/rules: Reflect removal of regrtest package (closes: #122278).
Resulted in build failures on all architectures.
* Build -doc package from source.
-- Matthias Klose <doko@debian.org> Sat, 8 Dec 2001 00:38:41 +0100
python2.2 (2.1.99beta2-0.1) unstable; urgency=low
* Non maintainer upload.
* New upstream version (this is 2.2beta2).
* Do not build the python-regrtest package anymore; keep the test framework
components test/regrtest.py and test/test_support.py in the python
package (closes: #119408).
-- Gregor Hoffleit <flight@debian.org> Tue, 27 Nov 2001 09:53:26 +0100
python2.2 (2.1.99beta1-4) unstable; urgency=low
* Configure with --with-fpectl (closes: #118125).
* setup.py: Remove broken check for _curses_panel module (#116081).
* idle: Move config-* files to /etc and mark as conffiles (#106390).
* Move idle packages to section `devel'.
-- Matthias Klose <doko@debian.org> Wed, 31 Oct 2001 10:56:45 +0100
python2.2 (2.1.99beta1-3) unstable; urgency=low
* Fix shlibs file (was still referring to 2.1). Closes: #116810.
* README.Debian: point to draft of python-policy in the python package.
-- Matthias Klose <doko@debian.org> Wed, 31 Oct 2001 10:56:45 +0100
python2.2 (2.1.99beta1-2) unstable; urgency=medium
* Fix shlibs file (was still referring to 2.1). Closes: #116810.
* Rename package python2.2-base to python2.2.
-- Matthias Klose <doko@debian.org> Wed, 24 Oct 2001 23:00:50 +0200
python2.2 (2.1.99beta1-1) unstable; urgency=low
* New upstream version (beta). Call the package version 2.1.99beta1-1.
* New maintainer until the final 2.2 release.
* Updated the debian patches.
-- Matthias Klose <doko@debian.org> Sat, 20 Oct 2001 18:56:26 +0200
python2.1 (2.1.1-1.2) unstable; urgency=low
* Really remove the python alternative.
-- Matthias Klose <doko@debian.org> Sat, 20 Oct 2001 15:16:56 +0200
python2.1 (2.1.1-1.1) unstable; urgency=low
* README FOR PACKAGE MAINTAINERS: It is planned to remove the python2-XXX
packages from unstable and move on to python2.1.
If you repackage/adapt your modules for python2.1, don't build
python2-XXX and python2.1-XXX packages from the same source package,
so that the python2-XXX package can be removed without influencing the
python2.1-XXX package.
See the debian-python mailing list at http://lists.debian.org/devel.html
for details and the current discussion and a draft for a debian-python
policy (August to October 2001).
* Remove alternative for /usr/bin/python. The python-base package now
provides the default python version.
* Regenerate control file to fix build dependencies (closes: #116190).
* Remove alternative for /usr/bin/{python,pydoc}.
* Provide a libpython2.1.so symlink in /usr/lib/python2.1/config,
so that the shared library is found when -L/usr/lib/python2.1/config
is specified.
* Conflict with old package versions, where /usr/bin/python is a real
program (closes: #115943).
* python2.1-elisp conflicts with python-elisp (closes: #115895).
* We now have 2.1 (closes: #96851, #107849, #110243).
-- Matthias Klose <doko@debian.org> Fri, 19 Oct 2001 17:34:41 +0200
python2.1 (2.1.1-1) unstable; urgency=low
* Incorporated Matthias' modifications.
-- Gregor Hoffleit <flight@debian.org> Thu, 11 Oct 2001 00:16:42 +0200
python2.1 (2.1.1-0.2) unstable; urgency=low
* New upstream 2.1.1.
* GPL compatible licence (fixes #84080, #102949, #110643).
* Fixed upstream (closes: #99692, #111340).
* Build in separate build directory.
* Split Debian patches into debian/patches directory.
* Build dependencies: Add libgmp3-dev, libexpat1-dev, tighten
debhelper dependency.
* debian/rules: Updated a "bit".
* python-elisp: Remove custom dependency (closes: #87783),
fix emacs path (closes: #89712), remove emacs19 dependency (#82694).
* Mention distutils in python-dev package description (closes: #108170).
* Update README.Debian (closes: #85430).
* Run versioned python in postinsts (closes: #113349).
* debian/sample.{postinst,prerm}: Change to version independent scripts.
* Use '/usr/bin/env python2.1' as interpreter for all python scripts.
* Add libssl-dev to Build-Conflicts.
* python-elisp: Add support for emacs21 (closes: #98635).
* Do not compress .py files in doc directories.
* Don't link explicitely with libc.
-- Matthias Klose <doko@debian.org> Wed, 3 Oct 2001 09:53:08 +0200
python2.1 (2.1.1-0.1) unstable; urgency=low
* New upstream version (CVS branch release21-maint, will become 2.1.1):
This CVS branch will be released as 2.1.1 under a GPL compatible
license.
-- Gregor Hoffleit <flight@debian.org> Wed, 27 Jun 2001 22:47:58 +0200
python2 (2.1-0.1) unstable; urgency=low
* Fixed Makefile.pre.in.
* Fixed the postinst files in order to use 2.1 (instead of 2.0).
* Mention the immanent release of 2.0.1 and 2.1.1, with a GPL
compatible license.
-- Gregor Hoffleit <flight@debian.org> Sun, 17 Jun 2001 21:05:25 +0200
python2 (2.1-0) unstable; urgency=low
* New upstream version.
* Experimental packages.
-- Gregor Hoffleit <flight@debian.org> Thu, 10 May 2001 00:20:04 +0200
python2 (2.0-7) unstable; urgency=low
* Rebuilt with recent tcl8.3-dev/tk8.3-dev in order to fix a
dependency problem with python2-tk (closes: #87793, #92962).
* Change postinst to create and update /usr/local/lib/python2.0 and
site-python with permissions and owner as mandated by policy:
2775 and root:staff (closes: #89047).
* Fix to compileall.py: A superfluous argument made compileall without
options fail (cf. #92990 for python).
* Move the distutils module into python2-dev. It needs Makefile.pre.in
in order to work (closes: #89900).
* Remove build-dependency on libgdbm2-dev (which isn't built anyway).
* Add a build-dependency on libdb2-dev (cf. #90220 for python).
-- Gregor Hoffleit <flight@debian.org> Sat, 14 Apr 2001 21:07:51 +0200
python2 (2.0-6) unstable; urgency=low
* Remove python-zlib package; merge it into python-base.
* Mark that README.python2 is not yet updated.
-- Gregor Hoffleit <flight@debian.org> Wed, 21 Feb 2001 12:34:18 +0100
python2 (2.0-5) unstable; urgency=low
* Recompile with tcl/tk8.3 (closes: #82088).
* Modifications to README.why-python2 (closes: #82116).
* Add menu hint to idle2 menu entry.
* idle2 is renamed idle-python2 and now build correctly (closes: #82218).
* Add build-dependency on autoconf (closes: #85339).
* Build bsddbmodule as shared module (Modules/Setup.config.in),
and link libpython2.so with -lm in Makefile (closes: #86027).
* various cleanups in debian/rules, e.g. removing dh_suidregister.
* Make pdb available as /usr/bin/pdb-python2 in python2-dev
(cf. #79870 in python-base).
* Remove libgmp3 from build-dependencies, since we currently can't
build the mpzmodule for Python2 due to license problems.
-- Gregor Hoffleit <flight@debian.org> Sun, 18 Feb 2001 00:12:17 +0100
python2 (2.0-4) unstable; urgency=low
* control: make python2-elisp conflict with python-elisp (it doesn't
make sense to have both of them installed, does it ?)
* include build-depend on libxmltok1-dev.
* again, build with tcl/tk8.0.
-- Gregor Hoffleit <flight@debian.org> Wed, 10 Jan 2001 23:37:01 +0100
python2 (2.0-3) unstable; urgency=low
* Modules/Setup.in: Added a missing \ that made _tkinter be built
incorrectly.
* rules: on the fly, change all '#!' python scripts to use python2.
-- Gregor Hoffleit <flight@debian.org> Wed, 13 Dec 2000 20:07:24 +0100
python2 (2.0-2) unstable; urgency=low
* Aaargh. Remove conflicts/provides/replaces on python-base to make
parallel installation of python-base and python2-base possible.
* Install examples into /usr/share/doc/python2 (not python) and fix
symlink to python2.0 (thanks to Rick Younie <younie@home.com> for
pointing out this).
* Rename man page to python2.1.
-- Gregor Hoffleit <flight@debian.org> Wed, 13 Dec 2000 09:31:05 +0100
python2 (2.0-1) unstable; urgency=low
* New upstream version. Initial release for python2.
-- Gregor Hoffleit <flight@debian.org> Mon, 11 Dec 2000 22:39:46 +0100
|