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
|
matplotlib (3.10.1+dfsg1-4) unstable; urgency=medium
[ Dylan Aïssi ]
* Team upload.
* Add pkgconf in Build-Deps, meson requires it to detect freetype2.
[ Nilesh Patra ]
* Add patch to fix FTBFS (Closes: #1106427)
-- Nilesh Patra <nilesh@debian.org> Sat, 31 May 2025 22:52:08 +0530
matplotlib (3.10.1+dfsg1-3) unstable; urgency=medium
[ James Addison ]
* Properly detect python3-gi absence/presence (Closes: #1101565)
-- Alexandre Detiste <tchet@debian.org> Sat, 19 Apr 2025 17:28:04 +0200
matplotlib (3.10.1+dfsg1-2) unstable; urgency=medium
* Release to unstable
-- Alexandre Detiste <tchet@debian.org> Wed, 26 Mar 2025 09:38:56 +0100
matplotlib (3.10.1+dfsg1-1) experimental; urgency=medium
* New upstream version 3.10.1+dfsg1 (Refresh patches)
* Do not force tkagg backend, the detection logic
has improved a lot as pointer by upstream
* Backport upstream commit to fix auto-backend detection case-sensitivity
-- Nilesh Patra <nilesh@debian.org> Sun, 16 Mar 2025 19:33:32 +0530
matplotlib (3.10.0+dfsg1-1~exp2) experimental; urgency=medium
* Add patch to not install pfb (missed patch in previous upload)
-- Nilesh Patra <nilesh@debian.org> Sun, 23 Feb 2025 19:12:55 +0530
matplotlib (3.10.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream version 3.10.0
* d/copyright: Re-pack non-free .pfb files
* d/patches:
+ Refresh patches
+ Reduce precision for test_compressed_suptitle
+ Add patch to drop sphinx exts (not packaged in debian yet)
* d/clean: Cleanup matplotlibrc
* d/control: Update new Build-Deps
* d/rules:
- Prune mplsetup.cfg (removed 3.9.0 release) and use meson opts
- Skip couple of failing tests
-- Nilesh Patra <nilesh@debian.org> Sun, 23 Feb 2025 18:25:55 +0530
matplotlib (3.8.3-7) unstable; urgency=medium
* Also skip autopkgtests *sigh*
-- Nilesh Patra <nilesh@debian.org> Sun, 23 Feb 2025 16:47:22 +0530
matplotlib (3.8.3-6) unstable; urgency=medium
* Ignore more tests failing on 32-bit. Ignore arch-tests again for now
-- Nilesh Patra <nilesh@debian.org> Sun, 23 Feb 2025 16:07:59 +0530
matplotlib (3.8.3-5) unstable; urgency=medium
* Skip more tests (works locally but not on buildd)
-- Nilesh Patra <nilesh@debian.org> Sun, 23 Feb 2025 15:38:21 +0530
matplotlib (3.8.3-4) unstable; urgency=medium
[ Alexandre Detiste ]
* Rebuild with fixed pydata-sphinx-theme (Addresses: #1085259)
* Remove dependency on python3-pkg-resources (Closes: #1083475)
* Remove dependency on python3-sphinx-panels (Addresses: #1065029)
* Add gir1.2-gtk-4.0 to suggests (Closes: #1078759)
* Apply Multi-Arch hint
* Set Rules-Requires-Root: no
* d/copyright:
* vendored py2/3 dateutil is gone
* vendored jquery is gone
* Lintian cannot understand "same as upstream", assign a codename
* d/watch: use v4
* more lintian fixes:
* package-contains-vcs-control-file
* package-contains-eslint-config-file
* renamed-tag
* trailing-whitespace
* unused-override
[ Stuart Prescott ]
* Remove build-dependency on pandas and xarray for build-time tests,
running tests on CI instead.
* Add patch to fix documentation build failure with numpy 2.x (Closes:
#1095355 ).
* Fix d/rules to actually run tests on buildd.
* Skip all tests currently failing on buildd; this should be reverted
in a future upload.
* Run tests in parallel on buildd.
* Silence lots of lintian complaints on test data.
* Update Standards-Version to 4.7.0 (no changes required).
-- Alexandre Detiste <tchet@debian.org> Sun, 10 Nov 2024 13:32:38 +0100
matplotlib (3.8.3-3) unstable; urgency=medium
* Team Upload.
* Release to unstable.
-- Alexandre Detiste <tchet@debian.org> Mon, 22 Jul 2024 10:30:19 +0200
matplotlib (3.8.3-2~exp1) experimental; urgency=medium
* Team upload.
* Reinstate python-matplotlib-doc
- Build-Depends-Indep: python3-ipykernel, python3-sphinx-design,
python3-yaml <!nodoc>
- clean doc/build and doc/fontlist-v*.json
* debian patch manage_docs.patch enables a successful doc build
- skip 3d and Axes gallery examples (can't import new mpl_toolkits
successfully when system package of old version is installed,
see Bug#1074159)
- deactivate copyfile_regex (not available in sphinx_gallery)
- theme-switcher, version-switcher are not available
- add missing README files
* update debian/clean to remove generated files. Closes: #1047769.
* skip build tests if nocheck is set in DEB_BUILD_OPTIONS
-- Drew Parsons <dparsons@debian.org> Mon, 24 Jun 2024 17:59:57 +0200
matplotlib (3.8.3-1) experimental; urgency=medium
[ Alexandre Detiste ]
* adopt package (Closes: #1065325)
* New upstream version 3.8.3
* fix syntax error in Maintainer: field
* remove old Py2+3 boilerplate
* refresh patches
* remove one patch applied upstream
[ cielavenir ]
* use README.md instead of README.rst
* Fix 70_bts720549_try_StayPuft_for_xkcd.patch
* Fix 0008-Increase-test-tollerance.patch
[ Nilesh Patra ]
* Fully migrate to DH 13
* Add install file for python3-matplotlib
* Install README.md as docs
* Add d/clean
* Add myself to uploaders
* Fixup with cme
* Add builddep on pybind11
* d/rules: Build --with python3,numpy3
-- Nilesh Patra <nilesh@debian.org> Sun, 16 Jun 2024 22:21:27 +0530
matplotlib (3.6.3-2) unstable; urgency=medium
* Team upload.
* Add missing autopkgtest depend on python3-all (Closes: #1067139)
-- Timo Röhling <roehling@debian.org> Wed, 24 Apr 2024 11:57:19 +0200
matplotlib (3.6.3-1.1) unstable; urgency=medium
[ Julien Puydt ]
* Drop wrong depends on setuptools-scm-git-archive (Closes: #1050105).
[ Alexandre Detiste ]
* remove extraneous dependency on python3-six (Closes: #1039099)
* remove obsolete build-dep python3-mock
[ Sandro Tosi ]
* orphan
-- Sandro Tosi <morph@debian.org> Sat, 02 Mar 2024 15:21:35 -0500
matplotlib (3.6.3-1) unstable; urgency=medium
* New upstream release
* debian/patches/PR24862.patch
- refresh patch
* debian/copyright
- extend packaging copyright years
-- Sandro Tosi <morph@debian.org> Wed, 18 Jan 2023 21:43:01 -0500
matplotlib (3.6.2-4) unstable; urgency=medium
* debian/rules
- run dh_installdocs on the -data pkg, to unstall changelog;
Closes: #1027049
* debian/patches/PR24862.patch
- Fix argument checking in Axes3D.quiver; Closes: #1027285
-- Sandro Tosi <morph@debian.org> Thu, 05 Jan 2023 23:52:41 -0500
matplotlib (3.6.2-3) unstable; urgency=medium
* upload to unstable
-- Sandro Tosi <morph@debian.org> Sun, 25 Dec 2022 14:49:42 -0500
matplotlib (3.6.2-2) experimental; urgency=medium
* debian/control
- add contourpy to b-d, needed by tests
- add b-d needed by tests: cairo, cm-super-minimal, contourpy, ffmpeg,
fonts-noto-cjk, fonts-wqy-zenhei, imagemagick, pikepdf, texlive-base,
texlive-luatex, texlive-science, texlive-xetex, wxgtk4.0, xarray
- drop XS-Python-Version, no longer needed
* debian/rules
- enable test_contour.py tests
- exclude another test failing with Qt
* debian/tests
- use py3versions --supported
-- Sandro Tosi <morph@debian.org> Fri, 23 Dec 2022 23:24:09 -0500
matplotlib (3.6.2-1) experimental; urgency=medium
[ Stefano Rivera ]
* Revert the temporary inkscape change.
[ Sandro Tosi ]
* New upstream release
* keep inkscrape disabled in b-d
* debian/patches
- refresh patches
* debian/rules
- remove .eggs directory, created by setuptools-scm
- skip failing tests
* Stop building the -doc package; the cost of maintaining the build process
and packaging more and more new packages is no longer sustainable, given the
few users actually installing it.
* debian/control
- add fonttools to b-d, needed by tests
-- Sandro Tosi <morph@debian.org> Mon, 19 Dec 2022 01:56:13 -0500
matplotlib (3.5.2-4) unstable; urgency=medium
* Team upload.
* Move all the <!nodoc> Build-Depends to Build-Depends-Indep (to avoid
indirectly Build-Depending on inkscape, right now).
-- Stefano Rivera <stefanor@debian.org> Sun, 13 Nov 2022 14:38:38 +0200
matplotlib (3.5.2-3) unstable; urgency=medium
* Team upload.
* Build without inkscape, which is currently FTBFS, temporarily.
-- Stefano Rivera <stefanor@debian.org> Sun, 13 Nov 2022 12:55:09 +0200
matplotlib (3.5.2-2) unstable; urgency=medium
* debian/rules, debian/patches/fake-setutools-scm.patch
- remove lib/matplotlib/_version.py in the clean target instead of trying
to mess with it; Closes: #1015081
-- Sandro Tosi <morph@debian.org> Sun, 17 Jul 2022 18:45:39 -0400
matplotlib (3.5.2-1) unstable; urgency=medium
* New upstream release
* debian/patches/
- refresh/drop patches
* debian/control
- add cm-super-minimal to matplotlib Suggests; Closes: #1010216
- bump Standards-Version to 4.6.1 (no changes needed)
[ Laurent Bigonville ]
* debian/control
- Mark python-matplotlib-doc with <!nodoc> build-profile
* debian/rules
- Do not build the doc if the <nodoc> profile is set
-- Sandro Tosi <morph@debian.org> Wed, 22 Jun 2022 20:14:39 -0400
matplotlib (3.5.1-3) unstable; urgency=medium
* debian/control debian/patches/docs-still-use-pydata-theme.patch
- add mpl-mpl-sphinx-theme to b-d, needed for doc, and drop the patch which
disabled it before
-- Sandro Tosi <morph@debian.org> Tue, 21 Jun 2022 14:28:46 -0400
matplotlib (3.5.1-2) unstable; urgency=medium
* debian/rules
- workaround a gcc-11 on mips64* architectures by passing -O3; patch by
YunQiang Su; Closes: #1000435
-- Sandro Tosi <morph@debian.org> Tue, 25 Jan 2022 16:55:24 -0500
matplotlib (3.5.1-1) unstable; urgency=medium
* New upstream release
* debian/python-matplotlib-data.install
- install the entire content of mpl-data for python-matplotlib-data,
including kpsewhich.lua; Closes: #1002923
* re-enable doc building
* debian/copyright
- extend packaging copyright years
* debian/patches
- refresh, drop patches merged upstream
* debian/rules
- use pytest directly when running the test suite
- ignore test_backend_nbagg.py, until nbconvert is made compatible with
mistune 2.x, see #1001283 and #1002372
-- Sandro Tosi <morph@debian.org> Sun, 02 Jan 2022 16:42:00 -0500
matplotlib (3.5.0-5) unstable; urgency=medium
* Comment out sphinx-gallery from b-d, and dont build doc, once again hoping
this will fix the dependency loop currently preventin mpl to be build on
buildds
-- Sandro Tosi <morph@debian.org> Tue, 07 Dec 2021 01:26:30 -0500
matplotlib (3.5.0-4) unstable; urgency=medium
* debian/control
- use source:Upstream-Version when defining Depends on -data, fixing a
FTBFS on buildds due to circular dependencies
-- Sandro Tosi <morph@debian.org> Mon, 06 Dec 2021 23:07:14 -0500
matplotlib (3.5.0-3) unstable; urgency=medium
* debian/control
- move pil.imagetk to Depends, so everyone's happy; Closes: #999533
* debian/patches/PR21686.patch
- add PR 21686, fixing sagemath doc build; Closes: #1001102
-- Sandro Tosi <morph@debian.org> Mon, 06 Dec 2021 00:22:14 -0500
matplotlib (3.5.0-2) unstable; urgency=medium
* debian/control
- add sphinx-panels to b-d, needed by doc
* debian/patches/docs-no-sphinx-panel.patch
- remove, now sphinx-panels is in Debian
-- Sandro Tosi <morph@debian.org> Sat, 27 Nov 2021 02:02:11 -0500
matplotlib (3.5.0-1) unstable; urgency=medium
* New upstream release
* debian/control
- bump b-d on sphinx-gallery to >= 0.10.0
- bump b-d on numpy to >= 1.20.0
- bump Standards-Version to 4.6.0.1 (no changes needed)
* debian/patches
- refresh, remove merged patches
* debian/patches/docs-still-use-pydata-theme.patch
- keep using pydata_sphinx_theme until mpl_sphinx_theme is available
* debian/rules
- no longer manually copy cliboard.js, now that sphinx-copybutton is fixed
* debian/tests/control
- fix autopkgtests but installing pil.imagetk and allowing stderr
* debian/copyright
- simplify and fix afm fonts copyright generation
* debian/TODO.debian
- remove, no longer relevant
-- Sandro Tosi <morph@debian.org> Sun, 21 Nov 2021 00:03:30 -0500
matplotlib (3.5.0~rc1-2) experimental; urgency=medium
* debian/copyright
- remove stanzas for files no longer in upstream tarball
* debian/python-matplotlib-data.install
- install plot_directive in mpl-data, needed by
matplotlib.sphinxext.plot_directive
-- Sandro Tosi <morph@debian.org> Tue, 09 Nov 2021 23:53:58 -0500
matplotlib (3.5.0~rc1-1) experimental; urgency=medium
* New upstream release candidate; Closes: #994533
* debian/patches/
- refresh, remove outdated patches
* debian/patches/fake-setutools-scm.patch
- fake setuptools_scm, creating the same file it would
* debian/control
- add setuptools-scm, setuptools-scm-git-archive to b-d, needed by setup.py
- replace transitional pkg ttf-staypuft with fonts-staypuft; Closes: #987629
- replace obsolete ttf-bitstream-vera with fonts-dejavu-core;
Closes: #985559
- add pil.imagetk to b-d, needed by tests
- add ffmpeg, fonts-comic-neue, fonts-humor-sans, fonttools,
pydata-sphinx-theme to b-d, needed by doc
- drop nose, no longer needed (see #997758)
- add pil.imagetk to python3-matplotlib recommends, needed by TkAgg backend
- set TkAgg as default backend in /etc/matplotlibrc
* rename setup.cfg to the new filename, mplsetup.cfg
* use the system-available libqhull during build
* debian/rules
- skip removing some of upstream config files, setup.cfg and matplotlibrc
- set HOME to a writable location during doc build
- manually copy clipboard.js
* debian/patches/PR21414.patch
- fix doc build with a basedir containing a ~, like in Debian's RC releases
* debian/patches/20_matplotlibrc_path_search_fix.patch
- handle date directory location both during build and at runtime
* debian/patches/docs-no-sphinx-panel.patch
- temporarily remove sphinx-panels extension
* debian/python-matplotlib-data.install
- update locationfor default matplotlibrc location
-- Sandro Tosi <morph@debian.org> Wed, 27 Oct 2021 01:43:15 -0400
matplotlib (3.3.4-2) unstable; urgency=medium
* remove -dbg package; Closes: #994311
-- Sandro Tosi <morph@debian.org> Thu, 30 Sep 2021 20:33:19 -0400
matplotlib (3.3.4-1) unstable; urgency=medium
* New upstream release
* debian/control
- add sphinxdoc:Depends to -doc depends
* debian/rules
- enable hardening flags
-- Sandro Tosi <morph@debian.org> Mon, 01 Feb 2021 23:04:57 -0500
matplotlib (3.3.3-1) unstable; urgency=medium
* New upstream release
* Use the new Debian Python Team contact name and address
* debian/control
- bump Standards-Version to 4.5.1 (no changes needed)
* debian/copyright
- extend packaging copyright years
-- Sandro Tosi <morph@debian.org> Wed, 13 Jan 2021 00:44:26 -0500
matplotlib (3.3.2-2) unstable; urgency=medium
[ Ondřej Nový ]
* d/control: Update Vcs-* fields with new Debian Python Team Salsa
layout.
[ Sandro Tosi ]
* debian/control
- drop basemap, no longer needed and deprecated upstream
-- Sandro Tosi <morph@debian.org> Sun, 18 Oct 2020 19:25:42 -0400
matplotlib (3.3.2-1) unstable; urgency=medium
* New upstream release
* debian/patches/PR17983.patch
- drop, merged upstream
* debian/patches/*
- refresh patches
* debian/control
- add certifi to b-d
-- Sandro Tosi <morph@debian.org> Fri, 18 Sep 2020 00:34:24 -0400
matplotlib (3.3.0-3) unstable; urgency=medium
* debian/patches/PR17983.patch
- undeprecate and update num2epoch/epoch2num
-- Sandro Tosi <morph@debian.org> Wed, 22 Jul 2020 21:54:52 -0400
matplotlib (3.3.0-2) unstable; urgency=medium
* debian/python-matplotlib-data.install
- explicitly install matplotlibrc in /usr/share/matplotlib/mpl-data/;
Closes: #965954
-- Sandro Tosi <morph@debian.org> Tue, 21 Jul 2020 10:46:31 -0400
matplotlib (3.3.0-1) unstable; urgency=medium
* New upstream release
* debian/control
- bump b-d on sphinx-gallery to >= 0.7.0
- add sphinxcontrib.svg2pdfconverter to b-d, needed by doc
- bump Standards-Version to 4.5.0 (no changes needed)
- add fonts-staypuft. optipng, scipy to b-d, needed by doc
* debian/patches/*
- refresh, update, drop patches
* debian/setup.cfg
- use the system-installed freetype library
* debian/rules
- re-enable running unittests at build-time
-- Sandro Tosi <morph@debian.org> Mon, 20 Jul 2020 23:43:12 -0400
matplotlib (3.2.2-1) unstable; urgency=medium
* New upstream release
* debian/patches
- refresh patches
-- Sandro Tosi <morph@debian.org> Sun, 21 Jun 2020 23:35:53 -0400
matplotlib (3.2.1-1) unstable; urgency=medium
* New upstream release
* debian/control
- mark sphinx b-d as nodoc
- mark sphinx-gallery as <!stage1>, avoid a circular depend; Closes: #954071
* debian/patches/*
- refresh, update, drop patches
-- Sandro Tosi <morph@debian.org> Sat, 21 Mar 2020 00:57:12 -0400
matplotlib (3.2.0-1) unstable; urgency=medium
* New upstream release
* debian/control
- replace `ipython` with `python3-ipython`: mpl requires
ipython_console_highlighting to build its doc, which is now in the latter
package; Closes: #943169
- add cm-super-minimal to b-d, needed by doc
* debian/patches
- refresh, drop patches
* debian/patches/setup-py-long-description.patch
- populate long description even when running `setup.py clean`
* debian/copyright
- extend packaging copyright years
- update upstream copyright information
* debian/rules
- properly detect the platform and build doc with xvfb-run
-- Sandro Tosi <morph@debian.org> Sat, 14 Mar 2020 15:04:14 -0400
matplotlib (3.1.2-2) unstable; urgency=medium
* debian/tests/{control, wxagg}
- drop wxagg test; Closes: #950799
-- Sandro Tosi <morph@debian.org> Wed, 12 Feb 2020 21:55:19 -0500
matplotlib (3.1.2-1) unstable; urgency=medium
* New upstream release; Closes: #945169
* debian/copyright
- update copyright for new upstream release
- extend packaging copyright years
* debian/control
- bump Standards-Version to 4.4.1 (no changes needed)
- drop Qt4 from depends; Closes: #941527
- add sphinx-copybutton to b-d, needed by doc
* debian/tests/
- drop python2 tests and test Qt5 instead of Qt4; Closes: #943169
* debian/patches/
- refresh/drop patches as per new upstream code
* debian/rules
- error out in case of a failure during build or install targets; patch by
Matthias Klose; Closes: #942766
- skip tests!! temporary measure due to
https://github.com/matplotlib/matplotlib/issues/15960
* debian/patches/0016-use-packaged-jquery.patch
- use the packaged JQuery and JQuery UI
-- Sandro Tosi <morph@debian.org> Sat, 21 Dec 2019 21:56:14 -0500
matplotlib (3.0.2-2) unstable; urgency=medium
* upload to unstable
* debian/control
- add Breaks+Replaces on python-matplotlib-dbg; Closes: #916140
-- Sandro Tosi <morph@debian.org> Thu, 20 Dec 2018 19:00:46 -0500
matplotlib (3.0.2-1) experimental; urgency=medium
* New upstream release
* drop python2 packages; src:matplotlib will track upstream 3.x releases,
which are only py3k-compatibles
* debian/watch
- only track 3.x releases
* debian/control
- remove dep on python-tz, no longer required upstream
* debian/rules
- use right variable to loop over py3k interpreters in clean target
- select py3k default version
- dont run dh_numpy, this is a py3k-only package now
* debian/patches
- remove merged upstream, refresh patches
* debian/patches/0014-py3k-sphinx.patch
- build doc with py3k sphinx
* debian/control
- add numpydoc to b-d, needed by doc
* debian/patches/0015-disable-sphinx--W.patch
- disable -W option when running sphinx
* debian/python-matplotlib-data.install
- remove lineprops.glade, delete upstream
-- Sandro Tosi <morph@debian.org> Sun, 09 Dec 2018 23:11:16 -0500
matplotlib (2.2.3-2) unstable; urgency=medium
* debian/rules
- more rework to install the modules files in the right locations;
Closes: #915430
-- Sandro Tosi <morph@debian.org> Tue, 04 Dec 2018 19:21:13 -0500
matplotlib (2.2.3-1) unstable; urgency=medium
[ Sandro Tosi ]
* New upstream release
* debian/control
- remove armhf and riscv64 from pandas restrictions in b-d; Closes: #902244
- bump Standards-Version to 4.2.1 (no changes needed)
* debian/patches/*
- refresh, drop
* debian/patches/0013-static-SHA.patch
- define a static (None) SHA value, so not to require git and and actual git
repository during build
* debian/rules
- partial rewrite to avoid implicit parallelism and FTBFS due to multiple
targets overwriting/removing files in parallel
- remove compiled python files
[ Ondřej Nový ]
* Convert git repository from git-dpm to gbp layout
-- Sandro Tosi <morph@debian.org> Sun, 02 Dec 2018 23:10:15 -0500
matplotlib (2.2.2-4) unstable; urgency=medium
* debian/control
- exclude some of the b-d on archs where they are not available; thanks to
Graham Inggs
-- Sandro Tosi <morph@debian.org> Sun, 27 May 2018 18:20:55 -0400
matplotlib (2.2.2-3) unstable; urgency=medium
[ Ondřej Nový ]
* d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
* d/control: Remove ancient X-Python3-Version field
[ Sandro Tosi ]
* debian/control
- add kiwisolver -dbg packages to b-d, needed by tests
- dont install pandas as b-d in armhf; Closes: #898873
* debian/patches/0012-dont-generate-a-test-failure-if-images-are-not-close.patch
- print a warning and not fail the test if the image is not close to the
matplotlib baseline
-- Sandro Tosi <morph@debian.org> Thu, 17 May 2018 20:44:51 -0400
matplotlib (2.2.2-2) unstable; urgency=medium
* debian/control
- make -dbg packages depend on kiwisolver -dbg packages; Closes: #895763
-- Sandro Tosi <morph@debian.org> Sun, 22 Apr 2018 18:34:49 -0400
matplotlib (2.2.2-1) unstable; urgency=medium
[ Ondřej Nový ]
* d/control: Set Vcs-* to salsa.debian.org
* d/copyright: Use https protocol in Format field
* d/control: Deprecating priority extra as per policy 4.0.1
* d/changelog: Remove trailing whitespaces
* d/control: Remove XS-Testsuite field, not needed anymore
[ Sandro Tosi ]
* New upstream release
- requires.txt are now generated empty automagically; Closes: #889151
* debian/control
- add ipywidgets to b-d, needed by doc
- add kiwisolver to b-d, new dependency
- bump Standards-Version to 4.1.4 (no changes needed)
- re-enable pandas b-d
* refresh patches
* debian/patches/0011-remove-distutils.sysconfig.patch
- dont import distutils.sysconfig in matplotlib, as it's meant to be used
for building packages, not in a top-level module; Closes: #894502
* debian/rules
- make doc via Makefile
- set --no-parallel
* debian/README.debian
- update to mention GTK backend is no longer available; Closes: #889137
-- Sandro Tosi <morph@debian.org> Sat, 14 Apr 2018 17:11:41 -0400
matplotlib (2.1.1-2) unstable; urgency=medium
* debian/control
- add backports.functools-lru-cache to depends; Closes: #887964
-- Sandro Tosi <morph@debian.org> Mon, 22 Jan 2018 23:28:44 -0500
matplotlib (2.1.1-1) unstable; urgency=medium
* New upstream release; Closes: #827361, #872261
* debian/control
- replace python-imaging with python-pil; Closes: #866439
- add pytest (tests) and sphinx-gallery, backports.functools-lru-cache,
scipy (doc) to b-d
* debian/rules
- no longer install upstream CHANGELOG, it was removed from the tarball
- install tutorials in the -doc pkg, and dont compress .py files
- pass the right arguments to tests.py, now that it changed
- dont compress HTML files
- now doc cleanup works upstream, so comment the manual cleanup commands
* debian/copyright
- update extern/libqhull copyright and license
- drop delaunay copyright/licence notices, removed upstream
- update packaging copyright years
* debian/patches/0009-dont-show-badgesidebar.html.patch
- dont load badgesidebar.html into documentation webpages, so that we dont
load external resources
* debian/{control, setup.cfg}
- stop building GTK/GTKAgg backends, and hence drop GTK2 dependencies;
Closes: #885511
* debian/patches/0010-disable-intersphinx.patch
- disable intersphinx, so doc wont try to access the network during build
* debian/patches/0011-remove-numpy-scipy-from-reference_url.patch
- remove scipy and numpy from reference_url for sphinx_gallery, avoiding to
access the network during doc build
* debian/patches/20_matplotlibrc_path_search_fix.patch
- update patch to still look at /etc/matplotlibrc with new upstream code;
from https://github.com/QuLogic/matplotlib/commit/69b627b8
-- Sandro Tosi <morph@debian.org> Sun, 21 Jan 2018 13:39:59 -0500
matplotlib (2.0.0+dfsg1-2) unstable; urgency=medium
* debian/rules
- make a failure in the doc build process also fail the package build
* debian/patches/0010-remove-interpolation_none_vs_nearest.py.patch
- remove an example (which uses the removed necked_tensile_specimen.png
image) that made the HTML doc build to fail; Closes: #855029
-- Sandro Tosi <morph@debian.org> Tue, 14 Feb 2017 19:48:20 -0500
matplotlib (2.0.0+dfsg1-1) unstable; urgency=medium
* Import upstream tarball with necked_tensile_specimen.png removed
* exclude necked_tensile_specimen.png from upstream tarball, as that file
contains a non-free color calibration profile; Closes: #854280
* debian/copyright
- add pdfcorefiles license grant
- add copyright notices for all AFM fonts
- add license and copyright notice to TTG BaKoMa fonts files;
Closes: #854279
-- Sandro Tosi <morph@debian.org> Sun, 12 Feb 2017 16:13:26 -0500
matplotlib (2.0.0-3) unstable; urgency=medium
* debian/patches/0009-Add-a-newline-separator-in-fc-list-call.patch
- generate a list of fonts by splitting the output of fc-list by new lines;
Closes: #852060
-- Sandro Tosi <morph@debian.org> Sat, 21 Jan 2017 21:35:45 -0500
matplotlib (2.0.0-2) unstable; urgency=medium
* debian/control
- dont break matplotlib binary package in -data, this pervents mpl to be
built on the buildd network
-- Sandro Tosi <morph@debian.org> Thu, 19 Jan 2017 21:25:45 -0500
matplotlib (2.0.0-1) unstable; urgency=medium
* New upstream release
* debian/rules
- use bakoma fonts shipped with mpl: the fonts from fonts-lyx have been
changed and some math symbols are not rendered correctly using them:
Closes: #843656, #831020
- make sure to maintain the baseline_images dir in tests/ by using a dummy
file (else dh_python* will remove an empty dir); Closes: #838301
* debian/control
- exclude basemap from b-d if build profile is 'stage1', which breaks a
circular dependency loop and will allow to bootstrap a new arch easier;
Closes: #849943
- add breaks to -data for mpl versions before 2.x; Closes: #847468
* debian/copyright
- extend packaging copyright years
-- Sandro Tosi <morph@debian.org> Wed, 18 Jan 2017 20:12:37 -0500
matplotlib (2.0.0~rc2-1) unstable; urgency=medium
* New upstream release candidate for the new version 2.x
* Upload to unstable
-- Sandro Tosi <morph@debian.org> Sun, 18 Dec 2016 19:06:27 -0500
matplotlib (2.0.0~rc1-2) experimental; urgency=medium
* debian/control
- temporary disable b-d on pandas, until it resolves its buildability issues
(see #845734)
-- Sandro Tosi <morph@debian.org> Tue, 13 Dec 2016 06:52:49 -0500
matplotlib (2.0.0~rc1-1) experimental; urgency=medium
* New upstream release candidate for the new version 2.x
* debian/control
- add pandas to b-d, needed for tests
- add subprocess32 to b-d
- use PIL in b-d instead of imaging, needed for docs
* debian/copyright
- update upstream copyright years
-- Sandro Tosi <morph@debian.org> Sun, 11 Dec 2016 12:59:46 -0500
matplotlib (2.0.0~beta4-1) experimental; urgency=medium
* New upstream beta release for the new version 2.x
* debian/watch
- recognize only 2.x releases, and 'b' as a beta release
* debian/control
- add python-functools32 to b-d
- add colorspacious and basemap to b-d, needed by doc
- set version reqs for cycler to be >= 0.10.0
* debian/copyright
- remove refs to six.py, no longer shipped upstream
* debian/rules
- use absolute (not relative) paths when building doc
* debian/python-matplotlib-data.install
- dont install nib files, removed upstream
-- Sandro Tosi <morph@debian.org> Sun, 25 Sep 2016 18:08:39 +0100
matplotlib (1.5.3-1) unstable; urgency=medium
* New upstream candidate
-- Sandro Tosi <morph@debian.org> Sat, 10 Sep 2016 13:55:18 +0100
matplotlib (1.5.2-1) unstable; urgency=medium
* New upstream candidate
* debian/watch
- recognize only 1.x releases
* debian/patches/0008-From-655c513a5e5440014677ee5afb08b0efa39f8e16-Mon-Se.patch
- support PyQt5.7; Closes: #835455
-- Sandro Tosi <morph@debian.org> Thu, 01 Sep 2016 18:52:24 +0100
matplotlib (1.5.2~rc2-1) unstable; urgency=medium
[ Sandro Tosi ]
* New upstream release candidate
* debian/copyright
- update upstream licence text
- add copyright/license for src/_tkmini.h
* debian/control
- bump Standards-Version to 3.9.8 (no changes needed)
[ Ondřej Nový ]
* Fixed VCS URL (https)
-- Sandro Tosi <morph@debian.org> Mon, 30 May 2016 19:36:34 +0100
matplotlib (1.5.1-1) unstable; urgency=medium
[ Julian Taylor ]
* debian/tests/control: test against wxWidgets 3.0
- remove -dbg packages from wxagg test, not available anymore
[ Sandro Tosi ]
* New upstream release
* debian/control
- add ffmpeg to Suggests, Required for the animation module to be save out
put to movie formats
-- Sandro Tosi <morph@debian.org> Sun, 07 Feb 2016 19:36:29 +0000
matplotlib (1.5.1~rc1-1) unstable; urgency=medium
* New upstream release candidate
- initialize correctly the Qt4 backend; Closes: #802600
- install the baseline images, needed to import the 'testing' submodules;
Closes: #779847
* debian/copyright
- extend packaging copyright years
- add/remove stanzas for new upstream code
* debian/rules
- run tests using tests.py, and disable those accessing the network
- increase verbosity of the tests
* Build & install only the HTML version of the doc (no more PDF)
* debian/control
- add ttf-bitstream-vera to -data depends; Closes: #802776
* debian/patches/*bts800803*
- Disable the GitHub "Fork Me" ribbon, the access to the Raleway font
through the Google Fonts API, and the Google Analytics tracking code;
Closes: #800803
-- Sandro Tosi <morph@debian.org> Sat, 09 Jan 2016 18:44:51 +0000
matplotlib (1.5.0~rc2-1) unstable; urgency=medium
* New upstream release candidate
- Lena Söderberg image has been removed; Closes: #794854
- include source for minified JS libraries; Closes: #788730
* debian/rules
- replace JS libraries in all the py3k version of the package; thanks to
Barry Warsaw for the report and patch; Closes: #792310
* debian/copyright
- updated for new upstream code
* debian/patches/*
- refresh/remove patches for new uptream code
* debian/control
- add cycler to b-d (bin pkgs depends are detected by dh_python2)
- add ipython to b-d, ipython_console_highlighting is required to build doc
* debian/patches/10ef9a7e26dc34328b7ec7fd0ed2c2db6104b342.patch
- upstream patch to fix Qt4/Qt5 detection (tests failed)
* debian/patches/9bc518230684b3a8bb69af60e160f90e1091cd0c.patch
- fix encoding for Stéfan van der Walt name, using a single-codepoint
encoding (Matplotlib.pdf creation failed)
-- Sandro Tosi <morph@debian.org> Mon, 05 Oct 2015 20:24:36 +0100
matplotlib (1.4.3-1) experimental; urgency=medium
* New upstream release
* debian/patches/CVE-2013-1424.patch
- dropped, merged upstream
* debian/rules
- remove embedded CXX, this should avoid accidental usage even though we set
to ues the system installed one
- remove the contents of baseline_images, but not the directory itself,
which is required by matplotlib.tests; Closes: #779847
* debian/copyright
- drop copyright for pyparsing, no longer included in upstream tarball
-- Sandro Tosi <morph@debian.org> Sat, 11 Apr 2015 02:22:49 +0100
matplotlib (1.4.3~rc1-1) experimental; urgency=medium
* New upstream release candidate
* debian/copyright
- extend packaging copyright years
* debian/patches/test_backend_with_timeout.patch
- removed, merged upstream
* debian/{control, patches/bts613818_use_system_pycxx.patch}
- use Debian version of PyCXX, instead of the bundled one; thanks to Julian
Taylor for the report and the work on Debian PyCXX side: Closes: #613818
* debian/watch
- download tarball from GitHub
* debian/patches/CVE-2013-1424.patch
- fix a buffer overrun in mplutils Printf(), addressing CVE-2013-1424;
thanks to Matt Giuca for the patch; Closes: #775691
* debian/control
- added locales-all to b-d, needed to ensure en_US.UTF-8 locale is
available, required by test suite
* debian/rules
- fix a FTBFS when building twice in a row
-- Sandro Tosi <morph@debian.org> Sat, 14 Feb 2015 00:08:01 +0000
matplotlib (1.4.2-3) unstable; urgency=medium
* debian/patches/test_backend_with_timeout.patch
- fixed patch to correctly terminating run-away processes during backend
checks; Closes: #767210
-- Sandro Tosi <morph@debian.org> Thu, 30 Oct 2014 23:31:03 +0000
matplotlib (1.4.2-2) unstable; urgency=medium
* debian/patches/1a182a98f76ce8c624bbaf3882e40d799e867338.patch
- fix a possible deadlock when identifying Qt backends; thanks to Julien
Cristau for the report; Closes: #767210
-- Sandro Tosi <morph@debian.org> Wed, 29 Oct 2014 23:18:01 +0000
matplotlib (1.4.2-1) unstable; urgency=medium
* New upstream release
* debian/control
- bump Standards-Version to 3.9.6 (no changes needed)
-- Sandro Tosi <morph@debian.org> Fri, 24 Oct 2014 00:26:25 +0100
matplotlib (1.4.1-1) unstable; urgency=medium
* New upstream release
-- Sandro Tosi <morph@debian.org> Thu, 23 Oct 2014 00:50:50 +0100
matplotlib (1.4.1~rc1-1) unstable; urgency=medium
* New upstream release candidate
* debian/control
- bump deps to WX 3.0; thanks to Olly Betts for the report; Closes: #759094
- uses cairocffi instead of cairo, preferred upstream; thanks to
Jean-Christophe Jaskula for the report; Closes: #764359
- tighten deps on python-six to >= 1.4
- switch me to Maintainer (team to Uploaders)
* debian/tests/backend-base
- help mpl turn off interactive mode
-- Sandro Tosi <morph@debian.org> Thu, 16 Oct 2014 00:17:18 +0100
matplotlib (1.4.0-1) experimental; urgency=medium
[ Sandro Tosi ]
* New upstream release
* Switch to dh_python2
* debian/copyright
- extend packaging copyright years
- updated to new upstream code
* debian/control
- updated b-d to new requirements
- bump Standards-Version to 3.9.5 (no changes needed)
* debian/rules
- export XDG_RUNTIME_DIR to prevent build stuck
- removed TODO installation in -doc package, no longer shipped
* debian/patches/*
- refreshed, removed patches merged upstream
* debian/python-matplotlib-doc.lintian-overrides
- override privacy-breach-piwik error, Piwik is only activated if it's the
main website
* debian/python-matplotlib-data.install
- install stylelib directory
[ Julian Taylor ]
* debian/control:
- update python{,3}-pyparsing dependency to the required version >= 1.5.6
-- Sandro Tosi <morph@debian.org> Fri, 12 Sep 2014 01:09:53 +0100
matplotlib (1.3.1-2) unstable; urgency=low
[ Sandro Tosi ]
* debian/control
- added python3-gi-cairo to Suggest for py3k package; thanks to Arnaud
Gardelein for the report; Closes: #730728
- fix Recommends to python3-pil; thanks to Ryo IGARASHI for the report and
patch; Closes: #743899
* debian/python-matplotlib.preinst
- removed, no longer needed
[ Julian Taylor ]
* debian/patches/fix_infinite_recursion.patch
- fix infinite recursion in units.py with ndarray subclasses
(Closes: #729590)
* debian/patches/gtk3{agg,cairo}_check_no-multiprocessing.patch
- do not use backend_gtk3{cairo,agg}_internal_check with multiprocessing.
Workaround to resolve the deadlock in setup.py
* debian/patches/multiarch-tktcl.patch
- fixed missing tkagg due to absent path to multiarch tktcl
(Closes: #750630)
* debian/{control,rules}
- depend and use packaged jquery instead of shipped minified variants
(Closes: #737438)
* debian/control
- added python{,3}-tk-dbg build depends for debugging enabled tk backend
(Closes: #714948)
- updated build-depends to use tcl/tk 8.6 to match what python-tk is
using (Closes: #752548)
* debian/tests
- added autopkg tests for the basic backends (Closes: #734988)
* debian/rules
- run xvfb-run with the -a flag to allow multiple instances at the same
time
-- Yaroslav Halchenko <debian@onerussian.com> Thu, 10 Jul 2014 15:48:15 -0400
matplotlib (1.3.1-1) unstable; urgency=low
* New upstream release
* Acknowledge NMU, thanks Anton Gladky; Closes: #719065, #719384
* debian/patches/70_fix_UnicodeDecodeError.patch
- removed, merged upstream
* debian/{control, README.debian}
- added nose and tornado to Suggests, needed to require matplotlib with
pkg_resources; thanks to Javi Merino for the report; Closes: #725048
* debian/control
- added ghostscript and inkscape to Suggests (to run tests) and
python-imaging to Recommends (enhance mpl usage); thanks to Tobias Megies
for the report; Closes: #725047
- added python{,3}-tornato to b-d, needed for tests
* debian/{control, patches/70_bts720549_try_StayPuft_for_xkcd.patch}
- try also StayPuft font when using xkcd style function; thanks to Elena
Grandi for the report; Closes: #720549
-- Sandro Tosi <morph@debian.org> Sun, 13 Oct 2013 10:47:22 +0200
matplotlib (1.3.0-1.1) unstable; urgency=low
* Non-maintainer upload.
* Fix error in font_manager.py: UnicodeDecodeError when starting
ipython --pylab. (Closes: #719065)
* Fix AttributeError error where there are no writable directories.
-- Anton Gladky <gladk@debian.org> Sun, 29 Sep 2013 16:10:15 +0200
matplotlib (1.3.0-1) unstable; urgency=low
[ Sandro Tosi ]
* New upstream release; thanks to Julian Taylor for the report;
Closes: #705631
* debian/watch
- switch back to SF for upstream tarballs
* Remove references to Fltk backend, now removed upstream
* debian/control
- add python-numpydoc to b-d, needed to build doc
- add python{,3}-pyparsing, it's no longer bundled in the upstream tarball;
Closes: #531024
- bump Standards-Version to 3.9.4 (no changes needed)
* debian/README.debian
- changed location of user-specific config file
* debian/patches/*
- refreshed and removed merged patch
* debian/copyright
- extend packaging copyright years
- update upstream copyright notice
* debian/rules
- setupegg.py was removed, use setup.py instead
- remove .pyc files from -doc package
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
* Fix typos in README.debian.
-- Sandro Tosi <morph@debian.org> Mon, 05 Aug 2013 22:15:44 +0200
matplotlib (1.2.0-1) experimental; urgency=low
* New upstream release
* debian/{control, rules}
- run tests for python3 module
* debian/{control, README.debian}
- add several missing dependencies (and b-d) for Matplotlib backends
* debian/rules
- no longer set examples.* options in matplotlibrc when building doc (they
are not needed with 1.2.0)
* debian/patches/60_bts691960_reintroduce_examples.directory_rcparam.patch
- reintroduce (removed in 1.2.x series) 'examples.directory' rc parameter,
in order to specify the Debian custom sample_data path; thanks to Julian
Taylor for the report; Closes: #691960
-- Sandro Tosi <morph@debian.org> Sun, 11 Nov 2012 12:17:37 +0100
matplotlib (1.2.0~rc2-2) experimental; urgency=low
* debian/{control, rules}
- provide Python 3 packages, based on the work of Thomas Kluyver (thanks!);
thanks to Yaroslav Halchenko for the report; Closes: #669272
-- Sandro Tosi <morph@debian.org> Tue, 23 Oct 2012 22:55:15 +0200
matplotlib (1.2.0~rc2-1) experimental; urgency=low
* New upstream release candidate
* debian/control
- updated Homepage field to new upstream website location
* debian/copyright
- converted to DEP-5 format
- updated to new upstream code
- extended packaging copyright years
* debian/patches/60_new_syntax_to_load_searchindex.patch
- removed, merged upstream
* debian/watch
- updated to point to github
* debian/patches/30_disable_sample_downloads.patch
- removed, no longer needed
* debian/patches/10_build_fix.patch
- disabled, but not removed in case we'll have to restore it
* debian/python-matplotlib-data.install
- install sampledata from new location (now it's in upstream tarball)
- use matplotlibrc.template to install base matplotlib.conf file
* debian/rules
- set backend and not datapath in matplotlibrc when running tests
- fix broken symlinks to TrueType fonts; thanks to Ian Zimmerman for the
report; Closes: #687674
* debian/{control, rules}
- run tests under 'xvfb-run', needed to run inkscape (which is required to
compare SVG images); adding relevant b-d (xvfb and xauth)
-- Sandro Tosi <morph@debian.org> Tue, 25 Sep 2012 19:44:06 +0200
matplotlib (1.1.1-1) experimental; urgency=low
* New upstream release
- Closes: #680883; thanks to Yannick Roehlly for the report
* debian/control
- add ghostscript and inkscape to b-d, needed to run tests
-- Sandro Tosi <morph@debian.org> Sat, 11 Aug 2012 20:15:53 +0200
matplotlib (1.1.1~rc2-1) unstable; urgency=low
* New upstream release candidate
* debian/control
- remove some unnecessary build-depends; thanks to Michael Droettboom from
upstream for the review of the b-d packages list
- remove Qt3 dependencies, not required since a long time, easying Qt3
removal from Debian; thanks to Ana Guerrero for report; Closes: #673399
- add python-nose to b-d, needed to run tests
* debian/rules
- enable tests at build time
-- Sandro Tosi <morph@debian.org> Sun, 10 Jun 2012 16:21:11 +0200
matplotlib (1.1.1~rc1-2) unstable; urgency=low
* debian/patches/60_new_syntax_to_load_searchindex.patch
- use new Sphinx syntax to load searchindex.js so dh_sphinxdoc is able to
recognize search.html as a valid Sphinx search page
* debian/{control, rules}
- use dh_sphinxdoc
* debian/rules
- set MPLCONFIGDIR to a writable directory; thanks to Lucas Nussbaum for the
report; Closes: #669549
-- Sandro Tosi <morph@debian.org> Sat, 12 May 2012 18:05:15 +0200
matplotlib (1.1.1~rc1-1) unstable; urgency=low
* New upstream (release candidate) release
- provide ipython 0.11 compatibility; thanks to Julian Taylor for the
report; Closes: #636464
* debian/control
- replace ttf-lyx with fonts-lyx (package rename); thanks to Ryo IGARASHI
for the report; Closes: #664048
- bump required numpy version to 1.4 at least
- bump Standards-Version to 3.9.3 (no changes needed)
* debian/{control, rules}
- use dh_numpy
-- Sandro Tosi <morph@debian.org> Sun, 25 Mar 2012 14:45:00 +0200
matplotlib (1.1.0-1) unstable; urgency=low
* New upstream release
* debian/control
- remove Alexandre from Uploaders: thanks for all the work!
* debian/rules
- install debug files where gdb looks for them
- removed some doc files no more present in upstream tarball
- don't install baseline_images dir, contains images only needed for tests
and takes a lot of disk space
* debian/copyright
- updated to new release
* debian/patches/*
- updated/deleted/refreshed as per new code
-- Sandro Tosi <morph@debian.org> Sat, 08 Oct 2011 17:32:16 +0200
matplotlib (1.0.1-3) unstable; urgency=low
* debian/patches/80_fix_tkinter_version_detection.patch
- fix tkinter version detection; Closes: #632963
-- Sandro Tosi <morph@debian.org> Mon, 11 Jul 2011 20:53:08 +0200
matplotlib (1.0.1-2) unstable; urgency=low
* Upload to unstable
- fixed a FTBFS since the failing code (unicode vs byte-string) is rewritten
in 1.0.x branch; thanks to Lucas Nussbaum for the report and to Stefano
Rivera for the analysis; Closes: #625150
* debian/rules
- remove verbose logging for debhelper
- remove compiled python code from documentation
* debian/patches/70_search_new_tkdir.patch
- added patch to look for the updated location of 'tkConfig.sh' script;
thanks to Julian Taylor for the report and patch; Closes: #621700
* debian/control
- bump Standards-Version to 3.9.2 (no changes needed)
- removed XB-P-V/Conflicts/Replaces/Provides, no more needed
-- Sandro Tosi <morph@debian.org> Sat, 07 May 2011 11:14:24 +0200
matplotlib (1.0.1-1) experimental; urgency=low
* New upstream release; Closes: #606116
* debian/patches/{10_build_fix.patch, 20_matplotlibrc_path_search_fix.patch}
- updated to new upstream code
* debian/patches/30_doc_pass_dpi.patch
- removed, merged upstream
* debian/rules
- don't compress objects.inv; thanks to Michael Fladischer for the report;
Closes: #608760
* debian/rules, debian/patches/30_disable_sample_downloads.patch
- bypass examples data download from internet, but use local copy instead
* debian/python-matplotlib-data.install
- install examples sample data
* debian/control
- bump Standards-Version: to 3.9.1 (no changes needed)
- removed DM-U-A flag, no more needed
- added python-xlwt to b-d, needed to build doc examples
- Benjamin Drung removed himself from the Uploaders list
* debian/copyright
- updated debian packaging copyright
* debian/patches/40_bts608939_draw_markers_description.patch
- fix a glitch (missing reference to documentation page) in draw_markers()
description; thanks to Jakub Wilk for report and patch; Closes: #608939
* debian/patches/50_bts608942_spaces_in_param_args.patch
- don't separate param and its argument with a space, new sphinx consider
the first argument as the type; thanks to Jakub Wilk for the report;
Closes: #608942
* debian/patches/60_doc_output_format.patch
- obtain the documentation output format even if the value is a unicode (as
returned by recent sphinx); thanks to Jakub Wilk for the tip on IRC
-- Sandro Tosi <morph@debian.org> Tue, 25 Jan 2011 18:17:56 +0100
matplotlib (0.99.3-1) unstable; urgency=low
* New upstream release
* debian/patches/05-find-tcl-tk-directory.patch
- removed, now merged upstream
* debian/patches/10_build_fix.patch
- adapted to new upstream code
* debian/pycompat
- removed, not needed
* debian/mkcopyright.sh
- removed, not needed anymore
-- Sandro Tosi <morph@debian.org> Tue, 22 Jun 2010 00:32:30 +0200
matplotlib (0.99.1.2-3) unstable; urgency=low
[ Sandro Tosi ]
* debian/control
- Recommends python-tk directly and Suggests all other other Python
bindings (changes from Ubuntu); this way the default backend ('TkAgg')
will work out-of-the-box and the others will need manual bindings
installation; Closes: #563137
[ Benjamin Drung ]
* Bump Standards-Version to 3.8.4 (no changes required).
* Add trailing blank line to debian/NEWS.
* Add platform entry for GNU/Hurd to 10_build_fix.patch; thanks to Pino
Toscano for the patch (Closes: #568599).
-- Benjamin Drung <bdrung@ubuntu.com> Sat, 06 Feb 2010 09:34:01 +0100
matplotlib (0.99.1.2-2) unstable; urgency=low
* Build depend on texlive-latex-recommended instead of latex-ucs to fix FTBFS
(Closes: #562346).
* Bump python-numpy dependency to version 1.3.0 (Closes: #559990).
* Add ${misc:Depends} to Depends.
* Switch to 3.0 (quilt) source format.
* Refresh patches.
-- Benjamin Drung <bdrung@ubuntu.com> Mon, 28 Dec 2009 15:57:32 +0100
matplotlib (0.99.1.2-1) unstable; urgency=low
* New upstream release.
* Fix spelling error in doc-base abstract field.
* Add missing section field to doc-base file.
* Convert patch system back to quilt and use DEP-3 patch tagging guidelines.
-- Benjamin Drung <bdrung@ubuntu.com> Sun, 15 Nov 2009 22:17:31 +0100
matplotlib (0.99.1.1-1) unstable; urgency=low
[ Sandro Tosi ]
* New upstream release
* debian/control
- added python-wxgtk2.8-dbg to b-d (needed to build -dbg package)
- added python-imaging to b-d (needed for -doc package)
- added librsvg2-common to Suggests of python-matplotlib, needed by GTKAgg
backend; thanks to Jonas for the report and suggestion; Closes: #548874
- moved python-excelerator from Depends to Suggests; thanks to W. Martin
Borgert for the report; Closes: #547437
- removed Ondrej from Uploaders: thanks for your work!
* debian/patches/30_doc_pass_dpi.dpatch
- pass DPI when building doc images
* debian/python-matplotlib-doc.doc-base
- added doc-base
[ Benjamin Drung ]
* wrote 05-find-tcl-tk-directory.dpatch
* strip not working parts from 10_build_fix.dpatch
* debian/rules
- refresh clean target
* link to fonts in ttf-lyx to make lintian happy
* Add latex-ucs and texlive-fonts-recommended to Build-Depends
(Closes: #551248).
* Demote GUI toolkits from Depends to Recommends; thanks to Thomas Bechtold
for this hint (Closes: #547437).
* Install lib/matplotlib/mpl-data/lineprops.glade; thanks to Ambrose Andrews
for the report (Closes: #518488).
-- Benjamin Drung <bdrung@ubuntu.com> Sun, 08 Nov 2009 21:58:23 +0100
matplotlib (0.99.0-1) unstable; urgency=low
* New upstream release
- thanks to Michael S. Gilbert for the report; Closes: #541146
* debian/control
- removed Marco Presi from uploaders: thanks for your work!
- bump Standards-Version to 3.8.3 (no changes needed)
-- Sandro Tosi <morph@debian.org> Thu, 17 Sep 2009 12:46:17 +0200
matplotlib (0.98.5.3-2) unstable; urgency=medium
[ Benjamin Drung ]
* Build with tcl/tk8.5 as python-tk was build with tcl/tk8.5; thanks to Lucas
Nussbaum for the report; Closes: #536985 (RC bug, hence urgency=medium)
* Bump Standards-Version to 3.8.2 (no changes).
-- Sandro Tosi <morph@debian.org> Wed, 15 Jul 2009 10:16:45 +0200
matplotlib (0.98.5.3-1) unstable; urgency=low
[ Benjamin Drung ]
* debian/control
- Rename python-enthought-traits to python-traits
- Move python-matplotlib-dbg to section debug
- Build depends on python-qt4
- Update my e-mail address.
- Sort build depends and break depends.
* debian/rules
- In clean target use rm -rf instead dh_clean for removing build directory;
thanks Andrew Straw for the patch
- Let all stamp files end with -stamp for automatically cleaning by dh_clean
- Remove generated doc files in clean target; upstreams doc clean target
only runs svn-clean, which is useless without a repository
* Switch to debhelper 7
* Install egg-info files and add python-setuptools to build depends; thanks to
Gediminas Paulauskas
[ Sandro Tosi ]
* New upstream release (ready to be uploaded in unstable)
- ensure WX examples use version >= 2.8, thanks to giacomo boffi for the
report; Closes: #518150
* debian/control
- removed Vittorio Palmisano from uploaders (mia); thanks for your work!
- bump Standards-Version to 3.8.1 (no changes needed)
* debian/copyright
- completely rewritten to match new upstream code
* debian/{rules, *.lintian-overrides}
- added these lintian overrides:
+ arch-dep-package-has-big-usr-share
. python-matplotlib has large arch-indep with some arch-dep code
+ copyright-should-refer-to-common-license-file-for-lgpl
. false warning, since it greps for LGPL that's in the license text as
example
+ extra-license-file
. license embedded in the documentation, will break links if removed
+ font-in-non-font-package
. we ship fonts, so no need to warning for this
* debian/{control, rules, python-matplotlib.preinst}
- switch to python-support (adding preinst for the migration)
-- Sandro Tosi <morph@debian.org> Fri, 29 May 2009 08:40:48 +0200
matplotlib (0.98.5.2-1) experimental; urgency=low
[ Benjamin Drung ]
* debian/control
- Added python-pkg-resources to build dependency for version detection of
python-enthought-traits
- merged python-tk into GUI Python packages alternative dependency list
- add myself to uploaders
* Move content of debian/patches/setup.cfg.patch to
debian/setup.cfg to set the default backend to TkAgg
[ Sandro Tosi ]
* New upstream release
- Fixed histogram autoscaling bug when bins or range are given
explicitly; Closes: #503148
- fix a FTBFS if built with GCC 4.4; thanks to Martin Michlmayr for the
report and the patch; Closes: #505618
* debian/control
- switch Vcs-Browser field to viewsvn
- removed python from Depends since introduced by python:Depends
- depending on python-all-dbg for -dbg package (to install all dbg
interpreters)
- moved python-tk to the first position of multiple GUI bindings Depends
line
- moved 'dvipng' from Recommends to Suggests (to avoid texlive to be
automatically taken in); Closes: #490992
- bump build-depends in python-sphinx to at least 0.5.1 (upstream doc build
system requires it)
* debian/NEWS
- added to notify users about default backend (TkAgg)
- added note about 'dvipng' not installed automatically anymore
* debian/README.debian
- added information about changing backend
* debian/rules
- merging all "rm" calls into "dh_clean" call
- removed 'API_CHANGES' installation, since removed upstream
- doc building with '--small' option, to reduce doc size (removing hi-res
and pdf gallery images)
* debian/{control,rules,patches/*,README.source}
- moved from quilt to dpatch
* debian/patches/{matplotlibrc.template-typo.patch,
doc_graphviz_errors_fix.patch,bts-498229_axes3d_typo.patch}
- removed since merged upstream
* debian/docs
- removed since not needed (the same files were listed in debian/rules)
-- Sandro Tosi <morph@debian.org> Wed, 14 Jan 2009 22:09:58 +0100
matplotlib (0.98.3-5) unstable; urgency=medium
[ Benjamin Drung ]
* debian/patches/matplotlibrc.template-typo.patch
- fix typo in matplotlibrc.template
[ Sandro Tosi ]
* debian/control
- updated my email address
- replaced python-wxgtk2.6 with python-wxgtk2.8
* debian/patches/setup.cfg.patch
- added to create "setup.cfg" file to guide building (in particular for
"backend" configuration); Closes: #502976
* debian/patches/bts-498229_axes3d_typo.patch
- added to fix a typo when importing "axes3d"; thanks to Tiziano Zito for
the report; Closes: #498229
-- Sandro Tosi <morph@debian.org> Fri, 31 Oct 2008 13:51:20 +0100
matplotlib (0.98.3-4) unstable; urgency=low
[ Sandro Tosi ]
* Release in collaboration with Benjamin Drung, from Ubuntu
* debian/control
- applied Benjamin Drung patch to split dep fields a package per line;
thanks to him; Closes: #495287
- replaced dep on python-dev with python; thanks to Benjamin Drung for the
notice
- depends reorganization: dvipng moved to recommends (optional tex
depends), python-configobj and python-enthought-traits to suggests
(experimental support); Closes: #490992
- added python-matplotlib-dbg package and python-all-dbg, python-numpy-dbg
to build-dep
- removed python-gd depends since no more needed
* debian/README.debian
- removed outdated info, added notice for MATPLOTLIBDATA env variable
* debian/python-matplotlib-data.install
- added matplotlib.conf installation
* debian/patches/matplotlibrc_fix.patch
- refreshed to match new upstream code
* debian/rules
- added build, clean and install for -dbg package
[ Ondrej Certik ]
* debian/patches/build_fix.patch updated thanks to Thiemo Seufer.
Closes: #501618
-- Sandro Tosi <matrixhasu@gmail.com> Mon, 25 Aug 2008 23:28:30 +0200
matplotlib (0.98.3-3) unstable; urgency=medium
* debian/control
- moved depends on libjs-jquery from binary to -doc package; thanks to
Nicolas Évrard for the report; part of #490992 resolution
* debian/rules
- used distutils to retrieve the build directory for matplotlib, needed
for doc generation; thanks to Lucas Nussbaum for the report and to
Piotr for the fix; Closes: #494236
-- Sandro Tosi <matrixhasu@gmail.com> Mon, 11 Aug 2008 20:51:52 +0200
matplotlib (0.98.3-2) unstable; urgency=low
* debian/patches/build_fix.patch
- added kfreebsd7/8 based systems; thanks to Petr Salinger for the patch;
Closes: #493858
-- Sandro Tosi <matrixhasu@gmail.com> Tue, 05 Aug 2008 19:39:18 +0200
matplotlib (0.98.3-1) unstable; urgency=medium
* New upstream release
- fixed memory leaks; Closes: #492735 (RC bug, hence urgency=medium)
* debian/control
- added python-sphinx (versioned to easy Lenny entrance), graphviz,
ipython, texlive-latex-extra build-deps in order to build documentation
- added Suggests on python-scipy; thanks to Chris Walker for the report;
Closes: #488138
- added Vcs-{Browser,Svn} fields
- added depend on libjs-jquery to replace embedded one
* debian/rules
- build and install documentation; Closes: #401629
- symlinked jquery.js from libjs-jquery instead of the embedded one
- added dh_link -i call for indep packages
* debian/watch
- removed comment lines since not needed
* debian/patches/doc_graphviz_errors_fix.patch
- added to fix graphviz errors during doc build (from upstream svn r5962)
* debian/copyright
- shortened some long line (to make lintian happy)
-- Sandro Tosi <matrixhasu@gmail.com> Mon, 04 Aug 2008 21:42:05 +0200
matplotlib (0.98.1-1) unstable; urgency=low
* New upstream release; Closes: #486074
-- Sandro Tosi <matrixhasu@gmail.com> Mon, 23 Jun 2008 21:13:50 +0200
matplotlib (0.98.0-1) experimental; urgency=low
* New upstream release; Closes: #486074
* debian/rules
- changed doc name
* debian/control
- bump build-dep to python-numpy to at least 1.1.0
- added python-excelerator to Depends
* debian/patches/build_fix.patch
- updated to match new upstream source code
-- Sandro Tosi <matrixhasu@gmail.com> Thu, 19 Jun 2008 20:40:43 +0200
matplotlib (0.91.3-1) unstable; urgency=low
* New upstream release; Closes: #485950
* debian/patches/bts-468977_memory_api_usage.patch
- removed since merged upstream
* debian/patches/bts-478237_ftbfs_gcc43.patch
- removed since merged upstream
* debian/patches/build_fix.patch
- updated to match new upstream code
* debian/control
- bump Standards-Version to 3.8.0
- removed build-dep on xbase-clients; it was a lintian error, but the
package works fine without it
- added python-pyparsing, python-cairo and python-glade2 to Depends
* debian/README.source
- added to reflect Policy 3.8.0
-- Sandro Tosi <matrixhasu@gmail.com> Fri, 13 Jun 2008 20:52:01 +0200
matplotlib (0.91.2-2) unstable; urgency=medium
* debian/patches/bts-478237_ftbfs_gcc43.patch
- added (Closes: #478237)
* debian/rules
- removed some files changes during build
* debian/control
- removed Depends on python-numeric-ext, python-numarray-ext (Closes:
#478451)
-- Sandro Tosi <matrixhasu@gmail.com> Tue, 29 Apr 2008 19:09:08 +0200
matplotlib (0.91.2-1) unstable; urgency=low
[ Piotr Ożarowski ]
* Replace libwxgtk2.4-python with python-wxgtk2.6 in Depends
(closes: #466470)
[ Sandro Tosi ]
* New upstream release (Closes: #459200, #474001, #447741, #408955)
* debian/patches/build_fix.patch
- edited to match new code
* debian/rules
- adjusted doc files installation
* debian/docs
- removed since the same files were already in debian/rules
* debian/patches/matplotlibrc_fix.patch
- edited to match new code (sync from Ubuntu)
* debian/control
- added "dvipng, python-configobj, python-enthought-traits (>= 2.0),
python-qt-dev, python-qt4-dev, python-wxgtk2.6" as build-dep (sync from
Ubuntu)
- bump depends on python-numpy (sync from Ubuntu)
- added "python-qt4, dvipng, python-configobj, python-enthought-traits (>=
2.0)" to Depends (sync from Ubuntu)
- merged Recommends into Depends
- removed Depends on python-pypaint since that package is unavailable
- added myself to Uploaders
* debian/patches/bts-468977_memory_api_usage.patch
- fixes Python API memory usage (Closes: #468977)
-- Sandro Tosi <matrixhasu@gmail.com> Wed, 23 Apr 2008 17:37:03 +0200
matplotlib (0.90.1-4) unstable; urgency=low
* Maintainer changed to Debian Python Modules Team
* Vittorio Palmisano and Ondrej Certik added to Uploaders
* "DM-Upload-Allowed: yes" field added
* Standards-Version bumped to 3.7.3
* python-numarray and python-numeric removed from build-depends and
debian/rules fixed to make the package compile
* debian/rules polished
* patches moved under a quilt control
* Package descriptions fixed (python -> Python)
* Homepage field added (and removed from description)
* python-matplotlib-doc package moved to the "doc" Section
* /usr/share/matplotlib/mpl-data/images/*.svg made chmod 644 (i.e. not
executable)
* debian/watch uncommented, as it seems to work (and last line removed)
* python2.3-matplotlib removed from Conflicts/Replaces
-- Ondrej Certik <ondrej@certik.cz> Sun, 09 Mar 2008 20:39:04 +0100
matplotlib (0.90.1-3.1) unstable; urgency=medium
* Non-maintainer upload to fix an RC bug. python-numpy conflicts with
python-matplotlib (<< 0.90.1-3), that's why we use 0.90.1-3.1 instead of
0.90.1-2.1.
* Rebuilt against python-numpy 1:1.0.4-6 (Closes: #467099)
-- Ondrej Certik <ondrej@certik.cz> Sun, 24 Feb 2008 14:36:08 +0100
matplotlib (0.90.1-2) unstable; urgency=low
* Upload to unstable and not experimental (closes: #411709)
* New version can coexist with python-numpy (closes: #426953)
* Removed spurious dependency on python-gst (closes: #422711)
* New package correctly detects numpy, numeric and numarray (closes: #425906)
* applied debian/rules patch for the check that plugins were built (closes: #422475)
* Changed dependency on dvipng to a recommendation (closes: #403198)
* use texlive instead of tetex (closes: #406176)
* added suggests on texlive-latex-extra (closes: #410777)
* reworded the description bit about "publication quality" (closes: #421593)
-- Alexandre Fayolle <afayolle@debian.org> Thu, 19 Jul 2007 11:58:24 +0200
matplotlib (0.90.1-1) experimental; urgency=low
* New upstream release
* updated debian/copyright file
-- Alexandre Fayolle <afayolle@debian.org> Fri, 06 Jul 2007 17:49:05 +0200
matplotlib (0.90.0-2) experimental; urgency=low
* Changed dvipng dependency to a recommends (Closes: #403198)
* Added to suggests tetex-extra | texlive-extra-utils (Closes: 406176)
* Added to suggests texlive-latex-extra (Closes: #410777)
* Changed python-gst dependency to python-gobject
* Already closed bug: (Closes: #396386)
-- Vittorio Palmisano <redclay81@gmail.com> Thu, 26 Apr 2007 11:00:02 +0200
matplotlib (0.90.0-1) experimental; urgency=low
* New upstream release
* Added depend on python-tk (Closes: #408944)
-- Marco Presi (Zufus) <zufus@debian.org> Thu, 1 Mar 2007 22:32:45 +0000
matplotlib (0.87.7-0.2) unstable; urgency=high
* Non-maintainer upload.
* Using patch provided by Mark Hymers <mark@hymers.org.uk>
- Add check to debian/rules to prevent builds silently failing to build
one of the plugins. (Closes: #411925)
-- Martin Zobel-Helas <zobel@ftbfs.de> Wed, 28 Feb 2007 10:39:43 +0100
matplotlib (0.87.7-0.1) unstable; urgency=medium
* Remove build dependency on python-numpy-ext.
* Prefer python-numpy over (python-numeric as a dependency. Closes: #389669.
* Already fixed:
- Build dependency on python-numpy. Closes: #375558.
* Readd dependency on python-gst. Closes: #385590.
* Mention pylab in the package description. Closes: #403723.
-- Matthias Klose <doko@debian.org> Sun, 7 Jan 2007 21:30:23 +0000
matplotlib (0.87.7-0) experimental; urgency=low
* New upstream version (compatible with python-numpy-1.0). Closes: #361181.
* (Build-)depend on python-numpy (>= 1:1.0.1).
* Remove redundant (build-)dependencies.
* Remove references to explicit python versions. Closes: #405611.
-- Matthias Klose <doko@debian.org> Wed, 3 Jan 2007 22:52:34 +0100
matplotlib (0.87.5-2.2) unstable; urgency=low
* Non-maintainer upload.
* Also Depend: on python-dateutil (closes: #396335)
-- Mark Hymers <mark@hymers.org.uk> Tue, 31 Oct 2006 18:05:10 +0000
matplotlib (0.87.5-2.1) unstable; urgency=low
* Non-maintainer upload.
* Build-Depend on python-dateutil so that we don't supply our internal copy.
Closes: #393074.
-- Mark Hymers <mark@hymers.org.uk> Sun, 29 Oct 2006 01:57:17 +0100
matplotlib (0.87.5-2) unstable; urgency=low
* Fixed python-numpy dependency. Closes: #387440
* python-gtk2 includes gobject module and it is an optional dependency for
those who use an X server.
Closes: #382400, #385590
-- Vittorio Palmisano <redclay81@gmail.com> Sat, 16 Sep 2006 18:14:25 +0200
matplotlib (0.87.5-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay81@gmail.com> Fri, 08 Sep 2006 15:46:46 +0200
matplotlib (0.87.4-3) unstable; urgency=low
* Removed wrong "Section: doc" from python-matplotlib-doc package
-- Vittorio Palmisano <redclay81@gmail.com> Wed, 09 Aug 2006 16:15:44 +0200
matplotlib (0.87.4-2) unstable; urgency=low
* Removed pytz files. Closes: #335991, #377275
* Added numpy support. Closes: #353342
* Removed duplicate README.debian. Closes: #380102
-- Vittorio Palmisano <redclay81@gmail.com> Wed, 02 Aug 2006 18:28:22 +0200
matplotlib (0.87.4-1) unstable; urgency=low
* New upstream release
-- Marco Presi (Zufus) <zufus@debian.org> Wed, 12 Jul 2006 09:27:16 +0200
matplotlib (0.87.3-1) unstable; urgency=low
* New upstream version. Closes: #361181
* Added numpy support. Closes: #375558
* Added depends on python-tz. Closes: #376715
-- Marco Presi (Zufus) <zufus@debian.org> Thu, 6 Jul 2006 09:54:55 +0200
matplotlib (0.86.2-6.1) unstable; urgency=low
* Depend on python-tz, remove the pytz files. Closes: #376715.
-- Matthias Klose <doko@debian.org> Fri, 7 Jul 2006 18:38:43 +0000
matplotlib (0.86.2-6) unstable; urgency=low
* Added a note about numeric/numarray deps in README.debian. Closes: #376198
* Added PYVERS to debian/rules (Carlo Segre <segre@iit.edu> patch). Closes: #376239
* Modified Vittorio Palmisano e-mail address.
-- Marco Presi (Zufus) <zufus@debian.org> Tue, 4 Jul 2006 15:35:38 +0200
matplotlib (0.86.2-5) unstable; urgency=low
* Updated to new Python policy (closes: #373462)
* fixed dependency on python-numarray (closes: #373165)
-- Alexandre Fayolle <afayolle@debian.org> Thu, 15 Jun 2006 18:27:18 +0200
matplotlib (0.86.2-4) unstable; urgency=low
* Added Build-Deps on python-setuputils. Closes: #358597
-- Marco Presi (Zufus) <zufus@debian.org> Wed, 29 Mar 2006 16:26:27 +0200
matplotlib (0.86.2-3) unstable; urgency=low
* Fix the previuos BAD Non-maintaner upload. Closes: #357459
-- Marco Presi (Zufus) <zufus@debian.org> Mon, 20 Mar 2006 23:00:38 +0100
matplotlib (0.86.2-2.1) unstable; urgency=high
* Non-maintainer upload.
* Fix FTBFS 'rm: cannot remove ...: No such file ... (Closes: #354370).
-- Luk Claes <luk@debian.org> Thu, 16 Mar 2006 18:52:47 +0100
matplotlib (0.86.2-2) unstable; urgency=low
* Packages now depend both on python-numarray and python-numeric. Closes: #353043
-- Marco Presi (Zufus) <zufus@debian.org> Thu, 16 Feb 2006 19:19:42 +0100
matplotlib (0.86.2-1) unstable; urgency=low
* New upstream release. Closes: #341730
* Added ${shlibs:Depends}. Closes: #345366
* python-matplotlib-doc is suggested by python-matplotlib and enhances it.
Closes: #341610
* Replaced latex dependency with tetex-extra. Closes: #337361
* subplot() behavior fixed. Closes: #346285
* Added users_guide in -doc package. Closes: #341399
-- Vittorio Palmisano <vpalmisano@gmail.com> Sat, 28 Jan 2006 19:29:15 +0100
matplotlib (0.85-1) unstable; urgency=low
* New upstream release. Closes: #341730
* Added ipython among Enhanced packages.
-- Marco Presi (Zufus) <zufus@debian.org> Sat, 10 Dec 2005 22:53:24 -0500
matplotlib (0.82-5) unstable; urgency=low
* Added documentation package. Closes: #338622
* Added python-epydoc dependency for documentation generation.
-- Vittorio Palmisano <vpalmisano@gmail.com> Sat, 12 Nov 2005 21:26:16 +0100
matplotlib (0.82-4) unstable; urgency=low
* Fixed FTBFS on hppa: added patch to build on systems without X server
(autobuilders) also in the clean stage. Closes: 338423.
* The same patch fix the build also on GNU/kFreeBSD. Closes: #336953
-- Marco Presi (Zufus) <zufus@debian.org> Fri, 11 Nov 2005 20:51:08 -0500
matplotlib (0.82-3) unstable; urgency=low
* Fixed deps on python-matplotlib (was depending on 0.82-1)
-- Marco Presi (Zufus) <zufus@debian.org> Thu, 10 Nov 2005 23:46:04 -0500
matplotlib (0.82-2) unstable; urgency=low
[Marco Presi]
* Included patch by Aurelien Jarno <aurel32@debian.org> to fix build on
GNU/kFreeBSD. Closes: #336953
* Added latex as Suggested dependency. Closes: #337361
-- Marco Presi (Zufus) <zufus@debian.org> Sun, 6 Nov 2005 21:49:45 -0500
matplotlib (0.82-1) unstable; urgency=low
* New upstream release
* First Debian release. Closes: #206691
* Removed doc package, added notes in README.debian
* Added dvipng dependency
* Added python2.3-qt3, python2.4-qt3 optional dependency
* Added API_CHANGES, INTERACTIVE, KNOWN_BUGS, NUMARRAY_ISSUES to docs
* Removed import gtk/tk from setup.py for building on systems without X
server (buildd)
* Moved .matplolibrc to /etc/matplolibrc and patched lib/__init__.py in
order to make the package compliant with Debian Policy
-- Vittorio Palmisano <vpalmisano@gmail.com> Sat, 15 Oct 2005 22:42:01 +0200
matplotlib (0.81-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Sat, 11 Jun 2005 13:16:37 +0200
matplotlib (0.80-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Mon, 25 Apr 2005 19:16:59 +0200
matplotlib (0.74-1) unstable; urgency=low
* New upstream release
* Aurelien Jarno:
- python-matplotlib does not need to depends on python-matplotlib-data
- remove README.Debian file
- README and TODO also in python2.3-matplotlib and python2.4-matplotlib
- keep the name matplotlib for the source package only
- remove generation of html docs, using User's Guide pdf
-- Vittorio Palmisano <redclay@email.it> Sun, 10 Apr 2005 09:53:51 +0200
python-matplotlib (0.72-4) unstable; urgency=low
* Added support for different python versions
-- Vittorio Palmisano <redclay@email.it> Sat, 26 Feb 2005 22:05:40 +0100
python-matplotlib (0.72-3) unstable; urgency=low
* Aurelien Jarno:
- fixed find_tcltk() error if X display is not accessible
- changed matlab to Matlab in debian/control file
-- Vittorio Palmisano <redclay@email.it> Wed, 23 Feb 2005 16:17:36 +0100
python-matplotlib (0.72-2) unstable; urgency=low
* Aurelien Jarno:
- Fixed debhelper(>=4.1.67) dependency
- removed debian/postinst and debian/preinst
- removed gunzip of example/data
-- Vittorio Palmisano <redclay@email.it> Sun, 20 Feb 2005 21:44:17 +0100
python-matplotlib (0.72-1) unstable; urgency=low
* New upstream release
* Added python-dev dependency
-- Vittorio Palmisano <redclay@email.it> Fri, 18 Feb 2005 15:16:26 +0100
python-matplotlib (0.71-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Sat, 22 Jan 2005 15:19:56 +0100
python-matplotlib (0.70.1-2) unstable; urgency=low
* Added python-numeric-ext | python-numarray-ext dependency
-- Vittorio Palmisano <redclay@email.it> Mon, 17 Jan 2005 11:16:01 +0100
python-matplotlib (0.70.1-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Sun, 02 Jan 2005 23:35:30 +0100
python-matplotlib (0.65.1-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Thu, 23 Dec 2004 21:58:31 +0100
python-matplotlib (0.65-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Sat, 18 Dec 2004 15:22:58 +0100
python-matplotlib (0.64-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Sat, 13 Nov 2004 22:28:00 +0100
python-matplotlib (0.63.4-3) unstable; urgency=low
* Jochen Voss:
- fix the dependencies and build-dependencies
- remove the Vera*.ttf files and depend on ttf-bitstream-vera instead
* added Recommends: ipython(>=0.6.3)
-- Vittorio Palmisano <redclay@email.it> Sat, 23 Oct 2004 10:48:27 +0200
python-matplotlib (0.63.4-2) unstable; urgency=low
* Updated copyright file (autogenerated)
* Changed Description
* Removed libttf-dev depends (thanks to Jochen Voss)
-- Vittorio Palmisano <redclay@email.it> Sun, 03 Oct 2004 23:05:06 +0200
python-matplotlib (0.63.4-1) unstable; urgency=low
* New upstream release (closes: #206691)
* fixed .svg files perms
* removed Recommends: libwxgtk2.4-python
-- Vittorio Palmisano <redclay@email.it> Fri, 01 Oct 2004 22:31:28 +0200
python-matplotlib (0.62.4-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Mon, 30 Aug 2004 22:30:50 +0200
python-matplotlib (0.61.0-2) unstable; urgency=low
* John Hunter:
- Removed python-ttfquery dependency
-- Vittorio Palmisano <redclay@email.it> Sun, 15 Aug 2004 20:25:00 +0200
python-matplotlib (0.61.0-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Mon, 09 Aug 2004 23:40:44 +0200
python-matplotlib (0.60.2-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Sun, 11 Jul 2004 10:24:01 +0200
python-matplotlib (0.54.2-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Fri, 11 Jun 2004 22:48:50 +0200
python-matplotlib (0.54.1-1) unstable; urgency=low
* New upstream release
* Seo Sanghyeon:
- Fixed python-numeric | python-numarray dependency
- Fixed python-gtk2 dependency
-- Vittorio Palmisano <redclay@email.it> Sun, 30 May 2004 10:14:08 +0200
python-matplotlib (0.54-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Sat, 22 May 2004 22:47:59 +0200
python-matplotlib (0.53.1-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Sat, 1 May 2004 23:19:40 +0200
python-matplotlib (0.53-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Fri, 23 Apr 2004 20:49:25 +0200
python-matplotlib (0.52-2) unstable; urgency=low
* Fixed python-gd dependency
-- Vittorio Palmisano <redclay@email.it> Fri, 26 Mar 2004 11:40:37 +0100
python-matplotlib (0.52-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Sat, 20 Mar 2004 17:40:06 +0100
python-matplotlib (0.51-1) unstable; urgency=low
* New upstream release
-- Vittorio Palmisano <redclay@email.it> Fri, 5 Mar 2004 14:27:08 +0100
python-matplotlib (0.50-2) unstable; urgency=low
* Removed python2.3-numeric-ext dependency
-- Vittorio Palmisano <redclay@email.it> Thu, 26 Feb 2004 15:27:30 +0100
python-matplotlib (0.50-1) unstable; urgency=low
* Initial Release.
-- Vittorio Palmisano <redclay@email.it> Sat, 21 Feb 2004 23:52:10 +0100
|