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
|
sphinx (8.1.3-5) unstable; urgency=medium
* Switch from MathJax 2 to MathJax 3.
* Sort Build-Depends with wrap-and-sort from devscripts ≥ 2.24.8.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 31 Jan 2025 13:28:15 +0300
sphinx (8.1.3-4) unstable; urgency=medium
* No-change reupload with 2025 in changelog (closes: #1091951).
-- Dmitry Shachnev <mitya57@debian.org> Tue, 07 Jan 2025 23:53:26 +0300
sphinx (8.1.3-3) unstable; urgency=medium
* Do not perform any timezone conversions if SOURCE_DATE_EPOCH is set
(closes: #1090724).
-- Dmitry Shachnev <mitya57@debian.org> Sun, 22 Dec 2024 19:51:52 +0300
sphinx (8.1.3-2) unstable; urgency=medium
* Switch from imagemagick-6.q16 to unversioned imagemagick.
* Move dh-python and pybuild-plugin-pyproject from Build-Depends-Indep
to Build-Depends, as they are needed for source build.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 11 Dec 2024 13:50:42 +0300
sphinx (8.1.3-1) experimental; urgency=medium
* New upstream release.
* Drop deterministic_toctree.diff, included in the new release.
* Refresh and rebase other patches.
* Bump required version for searchtools.js in debian/dh-sphinxdoc/index.
* Update numbers in debian/jstest/run-tests.
* Make blhc ignore "compiling catalogue" lines.
* Add a patch to fix failure in test_format_date_timezone().
* Add a patch to update broken_argparse check for Debian.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 17 Nov 2024 14:13:18 +0300
sphinx (7.4.7-4) unstable; urgency=medium
* Backport upstream patch to ensure deterministic resolution of toctree
(closes: #1050693).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 25 Oct 2024 21:53:47 +0300
sphinx (7.4.7-3) unstable; urgency=medium
* Team Upload
* Remove Build-Depends: and Suggests: on deprecated python3-lib2to3.
-- Alexandre Detiste <tchet@debian.org> Fri, 23 Aug 2024 08:32:51 +0200
sphinx (7.4.7-2) unstable; urgency=medium
* Merge 7.3.7-4 upload from unstable.
* Drop docutils_manpage_macros.diff, no longer needed.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 05 Aug 2024 15:08:07 +0300
sphinx (7.4.7-1) experimental; urgency=medium
* New upstream release.
* Drop patches, included in the new release:
- python_3.12.4.diff
- data_uris.diff
* Refresh and rebase other patches.
* Bump dependency versions according to pyproject.toml.
* Add python3-typing-extensions to tests dependencies.
* Update for renaming *.css_t to *.css.jinja.
* Override new false positive Lintian errors.
* Update numbers in debian/jstest/run-tests.
* Bump required version for searchtools.js in debian/dh-sphinxdoc/index.
* Suggest texlive-fonts-extra (for fontawesome5 package).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 20 Jul 2024 19:09:09 +0300
sphinx (7.3.7-4) unstable; urgency=medium
[ Miriam España Acebal ]
* dh_sphinxdoc: Add quantifier for capture group (?:="defer")
(closes: #1076969, LP: #2074525).
-- Dmitry Shachnev <mitya57@debian.org> Tue, 30 Jul 2024 12:04:38 +0300
sphinx (7.3.7-3) unstable; urgency=medium
* Backport upstream patch to fix support for data: URIs in builders that
do not support them natively (closes: #1073500).
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 03 Jul 2024 10:18:22 +0300
sphinx (7.3.7-2) experimental; urgency=medium
* Make python3-sphinx depend on python3-defusedxml, needed by
sphinx.testing.util module.
* Remove no longer needed test dependencies (thanks Piotr Ożarowski):
- python3-sphinxcontrib.websupport
- python3-sqlalchemy
- python3-whoosh
- python3-xapian
* Backport upstream patch to fix tests with Python 3.12.4.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 13 Jun 2024 20:51:07 +0300
sphinx (7.3.7-1) experimental; urgency=medium
* New upstream release.
* Drop patches, included in the new release:
- python_3.11.7.diff
- python_3.12.3.diff
- reproducible_searchindex.diff
* Drop skip_tests_network.diff (closes: #1069774).
* Drop support_old_search_indexes.diff. Bookworm has Sphinx 5.3, so it
does not make sense to support older indexes anymore.
* Refresh other patches.
* Update path of ignored test file in debian/rules.
* Bump required python3-alabaster version to 0.7.14.
* Add dvisvgm to test dependencies and Suggests.
* Add cython3, gcc and python3-all-dev to test dependencies.
* Add python3-defusedxml to test dependencies.
* dh_sphinxdoc: Support loading searchindex.js with defer="defer".
* Install AUTHORS and CHANGES files with .rst extension.
* Remove debian/python3-sphinx.preinst, no longer needed.
* Update numbers in debian/jstest/run-tests.
* Update debian/copyright.
* dh_sphinxdoc: Bump minimum dependency version for searchtools.js.
* Update the command to replace links to docutils documentation.
* Bump Standards-Version to 4.7.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 05 Jun 2024 16:35:21 +0300
sphinx (7.2.6-8) unstable; urgency=medium
* Backport upstream patch to make searchindex.js deterministic (closes:
#1071719).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 24 May 2024 16:08:24 +0300
sphinx (7.2.6-7) unstable; urgency=medium
* Backport upstream patch to fix test failure with Python 3.12.3.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 10 May 2024 21:42:01 +0300
sphinx (7.2.6-6) unstable; urgency=medium
* Break old versions of python-flask-restful-doc and python-pylatex-doc
(closes: #1067424).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 22 Mar 2024 00:19:02 +0300
sphinx (7.2.6-5) unstable; urgency=medium
* Remove unused python3-distutils dependency (closes: #1065959).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 11 Mar 2024 11:29:30 +0300
sphinx (7.2.6-4) unstable; urgency=medium
* dh_sphinxdoc: Support zzzeeksphinx’ new way of setting content_root.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 11 Feb 2024 20:08:39 +0300
sphinx (7.2.6-3) unstable; urgency=medium
* Add a patch to fix build with Python 3.11.7+ (closes: #1058303).
-- Dmitry Shachnev <mitya57@debian.org> Tue, 19 Dec 2023 13:34:25 +0300
sphinx (7.2.6-2) unstable; urgency=medium
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 05 Nov 2023 15:54:03 +0300
sphinx (7.2.6-1) experimental; urgency=medium
* New upstream release.
* Refresh patches.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 16 Sep 2023 16:57:25 +0300
sphinx (7.2.5-1) experimental; urgency=medium
* New upstream release.
* Drop patches, applied upstream:
- timegm.diff
- include_normalize_path.diff
-- Dmitry Shachnev <mitya57@debian.org> Sat, 02 Sep 2023 20:41:15 +0300
sphinx (7.2.3-1) experimental; urgency=medium
* New upstream release.
* Drop patches, included in the new release:
- highlight_search_terms.diff
- dont_hardcode_checksum.diff
- deterministic_default.diff
* Refresh and rebase other patches.
* Bump required python3-pygments version to 2.14.
* dh_sphinxdoc: Look for content_root data attribute, not url_root.
* Bump minimum versions in debian/dh-sphinxdoc/index.
* Update numbers in debian/jstest/run-tests.
* Amend support_old_search_indexes.diff to also support old search.html
templates which don't have data-content_root.
* Add a patch to use calendar.timegm() to convert UTC time to UNIX epoch.
* Add a patch to make tests pass when run from /tmp.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 26 Aug 2023 23:45:20 +0300
sphinx (7.1.2-2) experimental; urgency=medium
* Merge 5.3.0-7 upload from unstable.
* debian/tests/sphinx-doc: Remove no longer needed "export GTK_A11Y=none".
* Update highlight_search_terms.diff to version which was applied upstream.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 13 Aug 2023 12:55:53 +0300
sphinx (7.1.2-1) experimental; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 03 Aug 2023 12:46:26 +0300
sphinx (7.1.1-1) experimental; urgency=medium
* New upstream release.
* Update debian/watch:
- Support lowercase file name of the tarball.
- Stop validating signature, PyPI no longer supports them.
* Refresh patches for the new release.
* Add a patch to not hardcode expected JS/CSS checksums in tests.
* Backport upstream patch to avoid using builddir-based path as a default
value of a function argument (closes: #1025801).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 29 Jul 2023 20:21:49 +0300
sphinx (7.0.1-1) experimental; urgency=medium
* New upstream release.
* Drop patches:
- disable_js_version_check.diff (no longer needed)
- pygments_2.14.diff (included in the new release)
* Refresh and rebase other patches.
* Bump required versions: docutils to 0.18.1, requests to 2.25.
* Update debian/copyright.
* Remove references to no longer shipped jquery.js and underscore.js.
* Depend on python3-filelock for tests.
* Mark python3-html5lib and python3-pytest build-deps as <!nocheck>.
* dh_sphinxdoc: Generate direct dependencies on libjs-jquery and
libjs-underscore for packages shipping jquery.js or underscore.js.
* debian/jstest:
- Switch from jQuery to native JavaScript API.
- Update numbers for the new release.
- Port from WebKitGTK to Qt WebEngine. This will allow us to run tests
on Debian infrastructure again, as Qt WebEngine does not require
isolation-machine.
* Break old versions of sphinx-rtd-theme.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 21 May 2023 19:14:25 +0300
sphinx (5.3.0-7) unstable; urgency=medium
* Backport upstream patch to fix bad relative path generated by imgmath
(closes: #1043267).
* Disable sphinx-doc test on arm64 and armhf.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 12 Aug 2023 00:33:27 +0300
sphinx (5.3.0-6) unstable; urgency=medium
* Update highlight_search_terms.diff to highlight terms synchronously,
to make the jstest more stable.
* Limit sphinx-doc test to architectures where Qt WebEngine is available.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 05 Aug 2023 18:43:13 +0300
sphinx (5.3.0-5) unstable; urgency=medium
* Add a patch to make test_build_manpage pass with docutils 0.19+dfsg-7.
* debian/jstest: Port from WebKitGTK to Qt WebEngine. This will allow us
to run tests on Debian infrastructure again, as Qt WebEngine does not
require isolation-machine.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 05 Aug 2023 00:07:27 +0300
sphinx (5.3.0-4) unstable; urgency=medium
[ Dmitry Shachnev ]
* Update highlight_search_terms.diff to fix race condition affecting jstest:
- Highlight all occurrences, not just the first one.
- Stop using the old search query from localstorage.
* Port jstest to the new API from webkit2gtk 2.40 (closes: #1033635,
LP: #2013095).
[ Jeremy Bicha ]
* Set isolation-machine for sphinx-doc autopkgtest. This is needed for web
process sandbox, which is now mandatory.
* debian/tests/sphinx-doc: Set export GTK_A11Y=none.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 29 Mar 2023 11:31:27 +0300
sphinx (5.3.0-3) unstable; urgency=medium
* Backport upstream patch to update tests for Pygments 2.14
(closes: #1028621).
* Bump Standards-Version to 4.6.2, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 14 Jan 2023 14:04:03 +0400
sphinx (5.3.0-2) unstable; urgency=medium
* Build with pybuild-plugin-pyproject (closes: #1025398).
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 05 Dec 2022 21:41:01 +0300
sphinx (5.3.0-1) experimental; urgency=medium
* New upstream release.
* Rebase patches for the new release.
* Build-depend on flit.
* Let flit install scripts to /usr/bin and reverse symlinks.
* Update debian/dh-sphinxdoc/index.
* Remove sphinx/locale/.tx directory from python3-sphinx.
* Add a patch to highlight all search terms on search results page.
* Update numbers in debian/jstest/run-tests.
* Port jstest to GTK 4.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 25 Oct 2022 17:29:19 +0300
sphinx (5.1.1-1) experimental; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 30 Jul 2022 10:45:51 +0300
sphinx (5.1.0-1) experimental; urgency=medium
* New upstream release.
* Remove python3-importlib-metadata dependency again.
No longer needed because Debian dropped support for Python 3.9.
* Drop no_external_image.diff, indexsidebar.html has been removed.
* Refresh other patches.
* Update debian/source/lintian-overrides for Lintian pointed hints.
* Remove copyright section for no longer shipped porter.py.
* Update numbers in debian/jstest/run-tests.
* Bump python3-sphinx-tabs broken version to << 3.4.0.
* Add Adam Turner's key to debian/upstream/signing-key.asc.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 24 Jul 2022 18:35:01 +0300
sphinx (5.0.2-1) experimental; urgency=medium
* New upstream release.
* Refresh patches for the new release.
- Drop definfoenclose.diff, included in the new release.
* Use utils/babel_runner.py for compiling the translation files.
* Update debian/dh-sphinxdoc/index for the new version:
- Add _sphinx_javascript_frameworks_compat.js.
- Bump min-version to 5.0 for JS files that changed significantly.
* Parse the whole Search.setIndex argument as JSON.
* Add Sphinx.egg-info/entry_points.txt to debian/clean.
* Run JS tests with a real GTK window. Searchtools.js relies on setTimeout
to load every new search result, and WebKitGTK sets timeout to 1 second
after 5th request when the page is invisible. We have many search results,
so we get a timeout error unless we make it visible.
* Update numbers in debian/jstest/run-tests.
* Update debian/copyright.
* Bump Standards-Version to 4.6.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 16 Jun 2022 20:56:55 +0300
sphinx (4.5.0-4) unstable; urgency=medium
[ Dmitry Shachnev ]
* Backport upstream patch to stop using @definfoenclose texinfo command
(closes: #996151).
* Update jstest to use WebKit2 4.1.
[ Simon Chopin ]
* Use full JSON unescaping in file names
-- Dmitry Shachnev <mitya57@debian.org> Thu, 16 Jun 2022 19:37:25 +0300
sphinx (4.5.0-3) unstable; urgency=medium
* Hotfix: move python3-importlib-metadata from Suggests to Depends.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 15 Apr 2022 19:31:16 +0300
sphinx (4.5.0-2) unstable; urgency=medium
* Depend on python3-importlib-metadata, needed because we still support
Python 3.9 (closes: #1009382, #1009434, #1009445).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 15 Apr 2022 14:21:33 +0300
sphinx (4.5.0-1) unstable; urgency=medium
* New upstream release.
* Refresh patches for the new release.
* dh_sphinxdoc: Unescape unicode in file names (closes: #1008504).
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 02 Apr 2022 16:32:51 +0300
sphinx (4.4.0-1) experimental; urgency=medium
* New upstream release.
* Remove debian/py3dist-overrides. Sphinx no longer uses pkg_resources.
* Amend intersphinx_local.diff to remove cross-references to ReadTheDocs.
* Refresh other patches.
* Update numbers in debian/jstest/run-tests.
* Add python3-setuptools to tests dependencies.
* Bump upstream copyright years in debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 18 Jan 2022 14:17:46 +0300
sphinx (4.3.2-1) unstable; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 19 Dec 2021 15:55:13 +0300
sphinx (4.3.1-2) unstable; urgency=medium
* dh_sphinxdoc:
- Stop taking Python 2 version of alabaster into account.
- Generate dependency on libjs-sphinxdoc ≥ 4.3 for searchtools.js.
- Loosen regex to detect searchindex.js loading (closes: #1001521).
* Add a patch to make searchtools.js support pre-4.3 search indexes
(closes: #1001509).
* Add Sphinx.egg-info/requires.txt and .mo files to debian/clean.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 12 Dec 2021 21:44:32 +0300
sphinx (4.3.1-1) unstable; urgency=medium
* New upstream release.
* Drop reproducible_restify.diff, applied in the new release.
* Refresh debian/patches/skip_tests_jsmath.diff.
* Update numbers in debian/jstest/run-tests.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 27 Nov 2021 19:22:23 +0300
sphinx (4.2.0-5) unstable; urgency=medium
* Remove Built-Using field from sphinx-doc. We do not incorporate any parts
of other source packages during sphinx-doc build.
* Run wrap-and-sort.
* Add a patch to make util.typing.restify sanitize unreproducible output
(closes: #996948). Thanks Chris Lamb!
* Update debian/source/lintian-overrides for Lintian 2.109.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 23 Oct 2021 14:21:42 +0300
sphinx (4.2.0-4) unstable; urgency=medium
* Team upload.
* Add new breaks on sphinx-tabs << 3.2.0
-- Michael R. Crusoe <crusoe@debian.org> Sun, 10 Oct 2021 13:20:27 +0200
sphinx (4.2.0-3) unstable; urgency=medium
* Team upload.
* Add new breaks on nbsphinx << 0.8.7
* d/control: make use of ${perl:Depends} in sphinx-common and
${sphinxdoc:Built-Using} in sphinx-doc
* Add salsa-ci file (routine-update)
-- Michael R. Crusoe <crusoe@debian.org> Sat, 09 Oct 2021 09:21:02 +0200
sphinx (4.2.0-2) unstable; urgency=medium
* Upload to unstable (closes: #994114).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 25 Sep 2021 21:33:30 +0300
sphinx (4.2.0-1) experimental; urgency=medium
* New upstream release.
* Refresh debian/patches/remove_contrib_references.diff.
* Update numbers in debian/jstest/run-tests for the new release.
* Bump Standards-Version to 4.6.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 12 Sep 2021 15:43:21 +0300
sphinx (4.1.2-1) experimental; urgency=medium
* New upstream release.
* Refresh debian/patches/skip_tests_network.diff.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 27 Jul 2021 20:24:27 +0300
sphinx (4.1.1-1) experimental; urgency=medium
* New upstream release.
* Refresh patches for the new release.
* debian/jstest/run-tests: Update number of highlights for “examples”.
* Break python3-sphinxcontrib.serializinghtml < 1.1.5.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 15 Jul 2021 13:59:17 +0300
sphinx (4.0.3-1) experimental; urgency=medium
* New upstream release.
* dh_sphinxdoc: Use the last definition of DOCUMENTATION_OPTIONS, if
there are several of them.
* Refresh move_sphinxcontrib_to_extras_require.diff.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 10 Jul 2021 13:35:22 +0300
sphinx (4.0.2-1) experimental; urgency=medium
* New upstream release.
* Refresh move_sphinxcontrib_to_extras_require.diff.
* Revert the old build path in debian/sphinx-common.manpages.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 21 May 2021 20:15:43 +0300
sphinx (4.0.1-1) experimental; urgency=medium
* New upstream release.
* Refresh patches for the new release.
* Bump required python3-docutils version to 0.14.
* Add tex-gyre to Build-Depends, Suggests and autopkgtest dependencies.
* Update debian/sphinx-common.manpages for the new build path.
* Update numbers in debian/jstest/run-tests for the new release.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 10 May 2021 21:35:39 +0300
sphinx (3.5.4-2) unstable; urgency=medium
* dh_sphinxdoc: Use the last definition of DOCUMENTATION_OPTIONS, if
there are several of them.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 21 Aug 2021 22:05:35 +0300
sphinx (3.5.4-1) experimental; urgency=medium
* New upstream release.
* Refresh patches for the new release.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 13 Apr 2021 15:16:49 +0300
sphinx (3.5.3-1) experimental; urgency=medium
* New upstream release.
* Merge 3.4.3-2 upload from unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 20 Mar 2021 21:17:18 +0300
sphinx (3.5.2-1) experimental; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 06 Mar 2021 20:10:53 +0300
sphinx (3.5.1-2) experimental; urgency=medium
* Move the minified stemmer JS files to the correct location.
* Document the license of stemmer JS files in debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 23 Feb 2021 20:08:47 +0300
sphinx (3.5.1-1) experimental; urgency=medium
* New upstream release.
* Refresh patches for the new release.
* Override Lintian source-is-missing warnings about stemmer JS files.
* Add debian/upstream/metadata file.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 16 Feb 2021 20:11:51 +0300
sphinx (3.4.3-2) unstable; urgency=medium
* dh_sphinxdoc: Fix the script tag regex used in singlehtml detection
(closes: #983858).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 08 Mar 2021 21:40:25 +0300
sphinx (3.4.3-1) unstable; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 08 Jan 2021 20:11:19 +0300
sphinx (3.4.2-1) unstable; urgency=medium
* New upstream release.
* Bump upstream copyright years in debian/copyright.
* Update debian/watch to version 4.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 04 Jan 2021 20:17:45 +0300
sphinx (3.4.1-1) unstable; urgency=medium
* New upstream release.
* Update debian/copyright.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 26 Dec 2020 11:47:43 +0300
sphinx (3.4.0-1) experimental; urgency=medium
* New upstream release.
* Rebase patches for the new release.
* Use packaged inventory from python-requests-doc.
* Stop exporting http_proxy for the python3-sphinx autopkgtest.
It breaks linkcheck tests which start a local HTTP server thread.
- Do not skip test_raises_for_invalid_status anymore.
- Skip test_build_sphinx_return_nonzero_status. It fails if trying to
access localhost.unexistentdomain results in 503 Server Error from
the proxy server.
* Bump Standards-Version to 4.5.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 22 Dec 2020 15:16:26 +0300
sphinx (3.3.1-1) unstable; urgency=medium
* New upstream release.
* Drop pygments_2.7.diff, included in the new release.
* Refresh other patches.
* Remove python3-sphinx.lintian-overrides, not needed with Lintian 2.92.
* Add test_raises_for_invalid_status to skip_tests_network.diff.
* Replace no_require_setuptools.diff with a debian/py3dist-overrides file.
That is a more compact way to specify that we do not need setuptools.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 12 Nov 2020 20:05:30 +0300
sphinx (3.2.1-2) unstable; urgency=medium
[ Dmitry Shachnev ]
* Drop no_snowballstemmer.diff and use python3-snowballstemmer as
upstream does, now that it is properly packaged.
* Backport upstream commit to make the tests pass with Pygments 2.7.
[ Ondřej Nový ]
* d/control: Update Maintainer field with new Debian Python Team
contact address.
* d/control: Update Vcs-* fields with new Debian Python Team Salsa
layout.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 10 Oct 2020 20:13:16 +0300
sphinx (3.2.1-1) unstable; urgency=medium
* New upstream release.
- Fixes crashes when documenting extension modules (closes: #966983).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 14 Aug 2020 14:06:07 +0300
sphinx (3.2.0-1) unstable; urgency=medium
[ Debian Janitor ]
* Set field Upstream-Name in debian/copyright.
* Fix day-of-week for changelog entry 0.6.1-1.
[ Dmitry Shachnev ]
* Merge 2.4.3-5 upload from unstable.
* Make dh_sphinxdoc generate stricter dependencies on libjs-sphinxdoc.
* New upstream release.
* Refresh patches for the new release.
* Update numbers in debian/jstest/run-tests for the new release.
* Remove python3-typed-ast from Build-Depends and tests dependencies,
now that we no longer need to test with Python 3.7.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 09 Aug 2020 14:41:55 +0300
sphinx (3.1.2-1) experimental; urgency=medium
* Bump python3-breathe Breaks to 4.15 (closes: #963653).
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 06 Jul 2020 21:57:28 +0300
sphinx (3.1.1-1) experimental; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 21 Jun 2020 14:26:39 +0300
sphinx (3.1.0-1) experimental; urgency=medium
* New upstream release.
* Refresh patches for the new release.
* Specify Rules-Requires-Root: no.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 09 Jun 2020 20:27:18 +0300
sphinx (3.0.4-1) experimental; urgency=medium
* New upstream release.
* Drop patches, included in the new release:
- html5_docs.diff
- no_evaluate_debug.diff
- no_debug.diff
- autodoc_skip_mocked.diff
* Refresh and rebase other patches.
* Update numbers in debian/jstest/run-tests for the new release.
* Update the package description.
- Recommend build-depending on the new sphinx virtual package.
* Add a patch to use packaged intersphinx inventory for Python API.
- Also make sphinx-doc depend on python3-doc.
* Update to debhelper compat level 13.
* Stop excluding test_websupport.py which no longer exists.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 02 Jun 2020 13:08:36 +0300
sphinx (2.4.3-5) unstable; urgency=medium
* dh_sphinxdoc improvements:
- Make defer attribute of searchindex.js optional (closes: #966979).
- Allow for trailing whitespace in script src attribute, it is allowed
by the HTML specification.
- Add support for symlinking language_data.js for English (see #964013).
-- Dmitry Shachnev <mitya57@debian.org> Tue, 04 Aug 2020 21:52:28 +0300
sphinx (2.4.3-4) unstable; urgency=medium
* Update autodoc_skip_mocked.diff to use safe_getattr instead of plain
getattr (based on upstream PR #7520). See #959558.
* Update the package description.
- Recommend build-depending on the new sphinx virtual package.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 03 Jun 2020 11:32:20 +0300
sphinx (2.4.3-3) unstable; urgency=medium
* Break python3-sphinx-celery < 2.0.0 (closes: #958985).
* Export http_proxy=http://127.0.0.1:9/ when running the autopkgtest.
* Make autodoc skip mocked objects (closes: #959558).
* Stop using alternatives, ship /usr/bin/sphinx-* symlinks directly.
* Make python3-sphinx provide sphinx virtual package (see #961206).
-- Dmitry Shachnev <mitya57@debian.org> Thu, 28 May 2020 11:51:15 +0300
sphinx (2.4.3-2) unstable; urgency=medium
* Simplify debian/patches/html5_docs.diff for the new release.
* Break python3-breathe < 4.13 (closes: #955569).
* Backport two upstream patches to fix performance issues because of
debug calls.
* Clean up debian/clean, remove files no longer present upstream.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 13 Apr 2020 16:07:18 +0300
sphinx (2.4.3-1) experimental; urgency=medium
* New upstream release.
* Update to debhelper compat level 12.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 26 Feb 2020 12:03:03 +0300
sphinx (2.4.1-1) experimental; urgency=medium
[ Dmitry Shachnev ]
* New upstream release.
* Refresh patches for the new release.
* Depend on python3-typed-ast to make the tests pass with Python 3.7.
* dh_sphinxdoc: Add support for script tags without type="text/javascript".
* dh_sphinxdoc: Do not warn about sidebar.js file.
* Update numbers in debian/jstest/run-tests for the new release.
[ Michael R. Crusoe ]
* Mark the -doc and -common binary packages as Multi-Arch: foreign.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 17 Feb 2020 11:59:57 +0300
sphinx (2.3.1-1) experimental; urgency=medium
[ Christoph Berg ]
* New upstream version 2.2.0.
* Remove obsolete patches: no_require_websupport.diff,
python2_test_get_module_source.diff, reproducible_download.diff,
docutils_0.15.diff, remove_websupport_assets.diff.
[ Dmitry Shachnev ]
* New upstream version 2.3.1 (closes: #944913).
* Drop no_spaces_in_hyphenated_words.diff, applied in the new release.
* Drop debian/patches/python2_tests_import_hack.diff, this version of
Sphinx no longer supports Python 2.
* Refresh other patches.
* Drop Python 2 support from packaging.
* Update dependencies according to upstream setup.py:
- Bump required docutils version to 0.12.
- Bump required requests version to 2.5.0.
- Remove six from dependencies.
- Remove mock from tests dependencies.
* Patch out references to sphinxcontrib modules.
* Skip tests that require sphinxcontrib.jsmath module.
* Update dh_sphinxdoc for the new searchindex.js loading scheme.
* Use packaged MathJax for sphinx-doc.
* Build-Depend on and suggest fonts-freefont. The LaTeX writer now uses
this font for xelatex and lualatex.
* Update numbers in debian/jstest/run-tests for the new release.
* Skip tests that require sphinxcontrib.serializinghtml module (they were
run only during autopkgtest).
* Move sphinxcontrib modules to extras_require.
* Move python3-lib2to3 from Depends to Suggests.
* Update the Homepage field to use https.
* Bump Standards-Version to 4.5.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 07 Feb 2020 14:15:40 +0300
sphinx (1.8.5-9) unstable; urgency=medium
* Drop two python2 patches, no longer needed.
* jstest: Enable writing console messages to stdout.
* Make Sphinx' documentation use HTML 5 instead of XHTML, to fix WebKitGTK
parsing errors with shared-mime-info ≥ 0.11 (LP: #1871610).
-- Dmitry Shachnev <mitya57@debian.org> Thu, 09 Apr 2020 15:36:45 +0300
sphinx (1.8.5-8) unstable; urgency=medium
* Drop Python 2 support; Closes: #938528
-- Sandro Tosi <morph@debian.org> Fri, 27 Mar 2020 12:40:09 -0400
sphinx (1.8.5-7) unstable; urgency=medium
* Make the autopkgtest depend on python3-all, and use py3versions -s
instead of -i.
* Update to debhelper compat level 12.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 20 Mar 2020 14:33:53 +0300
sphinx (1.8.5-6) unstable; urgency=medium
* Update dh_sphinxdoc for the new searchindex.js loading scheme
(closes: #953567).
* Bump Standards-Version to 4.5.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 14 Mar 2020 12:11:42 +0300
sphinx (1.8.5-5) unstable; urgency=medium
* Make sphinx-common provide dh-sequence-sphinxdoc (closes: #946899).
* Drop python-sphinxcontrib.websupport from autopkgtest dependencies,
to allow for its removal.
* Backport upstream patch to fix crashes with docutils 0.16.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 12 Jan 2020 17:01:00 +0300
sphinx (1.8.5-4) unstable; urgency=medium
* Remove extra underscore character from debian/sphinx-doc.doc-base.
* Run sphinx-doc autopkgtest on all architectures again (bug #931807 has
been fixed).
* Stop installing static files for websupport. These files are already
shipped by python[3]-sphinxcontrib.websupport, and there is no need to
have them in all -doc packages that do not use websupport.
* Backport upstream patch to fix spaces being added to hyphenated words
with text writer (closes: #944331).
* Add some generated files to debian/clean.
* Bump Standards-Version to 4.4.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 05 Dec 2019 14:18:02 +0300
sphinx (1.8.5-3) unstable; urgency=medium
[ Ondřej Nový ]
* Use debhelper-compat instead of debian/compat.
[ Dmitry Shachnev ]
* Suggest texlive-plain-generic instead of texlive-generic-extra.
The latter package is no longer built, and iftex.sty is now shipped by
the former package.
* Backport upstream patch to fix test failure with docutils 0.15.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 16 Aug 2019 22:08:42 +0300
sphinx (1.8.5-2) unstable; urgency=medium
* Update debian/.gitlab-ci.yml to use salsa-pipeline.
* Add a patch to make generated download links reproducible.
* Skip sphinx-doc autopkgtest on ppc64el and s390x (because of #931807).
Based on a change applied by Dimitri John Ledkov in Ubuntu.
* Bump Standards-Version to 4.4.0, no changes needed.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 14 Jul 2019 17:40:25 +0300
sphinx (1.8.5-1) experimental; urgency=medium
* New upstream release.
* Drop reproducible_graphviz.diff, a better fix was applied upstream.
* Refresh skip_tests_network.diff.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 10 Mar 2019 18:40:56 +0300
sphinx (1.8.4-1) unstable; urgency=medium
* New upstream release.
* Ensure the graphviz filenames are reproducible (closes: #921513).
* Bump year in debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 16 Feb 2019 16:55:01 +0300
sphinx (1.8.3-2) unstable; urgency=medium
* Bump Standards-Version to 4.3.0, no changes needed.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 26 Jan 2019 12:42:25 +0300
sphinx (1.8.3-1) experimental; urgency=medium
* New upstream release.
* Drop language_data.js.diff, applied upstream.
* Refresh skip_tests_network.diff.
* Add a patch to make test_get_module_source() pass on Python 2.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 09 Jan 2019 19:36:31 +0300
sphinx (1.8.2-1) experimental; urgency=medium
* New upstream release.
* Drop mathjax_on_demand.diff, applied upstream.
* Backport upstream patch to make search work with custom templates, by
moving language data into a separate JS file (language_data.js.diff).
* Adapt dh_sphinxdoc for the introduction of language_data.js.
* Override Lintian false positive warning about todo.py extension.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 11 Nov 2018 14:53:05 +0300
sphinx (1.8.1-1) experimental; urgency=medium
* New upstream release.
* Drop patches, applied upstream:
- 0005-Fix-testsuite-to-not-rely-on-return-types.patch
- 0007-Fix-spelling-error-in-manpage.patch
- 0008-Call-object_description-recursively-for-dict-keys-an.patch
- 0009-Ensure-the-set-object-description-is-reproducible.patch
* Refresh and rebase the other patches.
* Drop numbers from the remaining patches, use consistent naming.
* Do not copy .doctrees/ during docs build, it is now in source tree.
* Make test_math_compat pass with Python 2, by adding sphinx.ext.mathbase
toplevel import (python2_tests_import_hack.diff).
* Add a patch to load MathJax.js only on demand (mathjax_on_demand.diff).
* Update debian/clean to clean .doctrees, .pytest_cache and tests/build.
* dh_sphinxdoc:
- Remove mention of “non-English searchtools.js”, all language-specific
stuff is now in documentation_options.js.
- Warn about missing SEARCH_LANGUAGE_STOP_WORDS.
* Update numbers in debian/jstest/run-tests for the new release.
* Remove obsolete section from debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 29 Oct 2018 16:41:33 +0300
sphinx (1.7.9-1) unstable; urgency=medium
* New upstream bugfix release.
* Drop 0012-Make-generated-texinfo-files-reproducible-by-sorting.patch,
applied upstream.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 06 Sep 2018 13:11:38 +0300
sphinx (1.7.8-1) unstable; urgency=medium
* New upstream bugfix release.
* Refresh 0009-Ensure-the-set-object-description-is-reproducible.patch.
* Make generated texinfo files reproducible (closes: #907352).
* Bump Standards-Version to 4.2.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 31 Aug 2018 14:31:03 +0300
sphinx (1.7.7-1) unstable; urgency=medium
* New upstream bugfix release.
* Refresh patches for the new release.
* Directly use PyStemmer for non-English search (without the wrapper).
* Bump Standards-Version to 4.2.0.
* Pass --verbose to pytest, as now required by Policy §4.9.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 25 Aug 2018 11:14:54 +0300
sphinx (1.7.6-1) unstable; urgency=medium
* New upstream bugfix release.
* Drop patches, applied upstream:
- 0011-Fix-5022-latex-crashed-with-docutils-package-provide.patch
- 0012-Fix-5048-crashed-with-numbered-toctree.patch
* Refresh other patches.
* Run “wrap-and-sort”.
* Recommend make (closes: #903260).
* Add back PYTHONWARNINGS=d, the pytest warnings have been fixed.
* Add a patch to remove use of external image from img.shields.io in
the documentation template.
* Bump Standards-Version to 4.1.5, no changes needed.
* Rely on dh_python{2,3} for generating most of package dependencies.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 08 Jul 2018 16:22:44 +0300
sphinx (1.7.5-6) unstable; urgency=medium
* Export LC_ALL=C.UTF-8 to make the build pass on the buildds.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 05 Jul 2018 14:26:07 +0300
sphinx (1.7.5-5) unstable; urgency=medium
* dh_sphinxdoc: Generate versioned dependencies on sphinx-rtd-theme-common.
* Switch to dh sequencer and pybuild buildsystem.
* Stop setting PYTHONWARNINGS=d. There are too many deprecation warnings
coming from pytest.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 05 Jul 2018 13:00:27 +0300
sphinx (1.7.5-4) experimental; urgency=medium
* Use the alternatives mechanism for managing scripts.
* Prefer Python 3 versions of the scripts (closes: #898009).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 23 Jun 2018 00:45:15 +0300
sphinx (1.7.5-3) unstable; urgency=medium
* Backport upstream patch to fix crash with numbered toctrees
(closes: #901769, thanks Robin Jarry for the bug report).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 18 Jun 2018 15:28:44 +0300
sphinx (1.7.5-2) unstable; urgency=medium
* dh_sphinxdoc: Fix for templates that do not use documentation_options.js
(closes: #901662, thanks Rebecca N. Palmer for the bug report).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 16 Jun 2018 21:54:03 +0300
sphinx (1.7.5-1) unstable; urgency=medium
[ Ondřej Nový ]
* d/control: Remove ancient X-Python-Version field
* d/control: Remove ancient X-Python3-Version field
[ Dmitry Shachnev ]
* New upstream bugfix release.
* Backport upstream patch to support standalone roman module.
* dh_sphinxdoc: Support url_root in the new data-url_root attribute.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 15 Jun 2018 17:45:33 +0300
sphinx (1.7.4-1) unstable; urgency=medium
* New upstream bugfix release.
- Fixed crash with duplicated objects (closes: #896897).
-- Dmitry Shachnev <mitya57@debian.org> Wed, 25 Apr 2018 20:47:00 +0300
sphinx (1.7.3-1) unstable; urgency=medium
* New upstream bugfix release.
* Refresh debian/patches/0003-skip_tests_network.diff.
* Set PYTHONPATH to $(CURDIR) when building our own documentation,
to make sure we are using the local version of Sphinx code.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 23 Apr 2018 11:09:06 +0300
sphinx (1.7.2-4) unstable; urgency=medium
[ Ondřej Nový ]
* d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
[ Dmitry Shachnev ]
* Update autopkgtests to work with Sphinx 1.7 (closes: #895854).
-- Dmitry Shachnev <mitya57@debian.org> Wed, 18 Apr 2018 17:35:47 +0300
sphinx (1.7.2-3) unstable; urgency=medium
* Remove setuptools from install_requires, it is not needed on Debian
(closes: #895738).
-- Dmitry Shachnev <mitya57@debian.org> Sun, 15 Apr 2018 21:43:18 +0300
sphinx (1.7.2-2) unstable; urgency=medium
* Make python-sphinx depend on python-typing (closes: #895727).
-- Dmitry Shachnev <mitya57@debian.org> Sun, 15 Apr 2018 13:08:26 +0300
sphinx (1.7.2-1) unstable; urgency=medium
[ Chris Lamb ]
* New upstream release.
* Pass -vv to pytest when running the testsuite.
* Patches:
- Apply patch series from https://github.com/sphinx-doc/sphinx/pull/4834 to
make the set output reproducible. (Closes: #895553)
- Don't use Google Fonts to avoid privacy breach.
- Fix "arbitary" spelling error in sphinx-quickstart(1) manpage.
- Fix testsuite to not rely on return types.
- Refresh and renumber all patches.
* Bump Standards-Version to 4.1.4.
* Add myself to Uploaders.
[ Dmitry Shachnev ]
* Merge 1.6.7-2 upload from experimental to unstable.
-- Chris Lamb <lamby@debian.org> Sat, 14 Apr 2018 19:32:39 +0100
sphinx (1.7.1-1) experimental; urgency=medium
* New upstream release (closes: #890581).
- No longer bundles a copy of pgen2 (closes: #609485).
* Drop reproducible_epub.diff and text_section_numbering.diff, applied
in the new release.
* Refresh and rebase other patches.
* Build-depend and depend on python[3]-packaging.
* Update commands to build docs and run tests.
* All scripts are now setuptools entrypoints, update the code accordingly.
* Update debian/copyright.
* dh_sphinxdoc: Support standalone documentation_options.js files.
* Update numbers in debian/jstest/run-tests for the new release.
* Use upstream sphinx-autogen(1) manpage.
* Set PYTHONPATH to current directory when running the tests.
* Set PYTHONPATH when running the install-js script.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 04 Mar 2018 12:20:20 +0300
sphinx (1.6.7-2) unstable; urgency=medium
* Make python3-sphinx depend on python3-distutils (closes: #893620).
-- Dmitry Shachnev <mitya57@debian.org> Thu, 22 Mar 2018 18:07:32 +0300
sphinx (1.6.7-1) unstable; urgency=medium
* New upstream bugfix release.
* Update Vcs fields for migration to salsa.debian.org.
* Update debhelper compat level to 11.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 11 Feb 2018 22:08:38 +0300
sphinx (1.6.6-2) unstable; urgency=medium
* Backport upstream patch to add optional section numbering in plain
text output (closes: #872868).
-- Dmitry Shachnev <mitya57@debian.org> Wed, 24 Jan 2018 21:51:28 +0300
sphinx (1.6.6-1) unstable; urgency=medium
* New upstream release (closes: #881923).
* Drop reproducible_dicts.diff and reproducible_htmlhelp.diff, applied
in the new release.
* Refresh other patches.
* Remove trailing whitespace from debian/control and debian/rules.
* Rewrite debian/copyright using the machine-readable format 1.0.
* Bump Standards-Version to 4.1.3, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 11 Jan 2018 16:07:07 +0300
sphinx (1.6.5-4) unstable; urgency=medium
* Change python3.6-2to3 dependencies to python3-lib2to3.
* Backport upstream reproducibility fix for htmlhelp and qthelp builders
(reproducible_htmlhelp.diff; closes: #884010).
-- Dmitry Shachnev <mitya57@debian.org> Thu, 28 Dec 2017 14:04:30 +0300
sphinx (1.6.5-3) unstable; urgency=medium
* Make python3-sphinx depend on python3.6-2to3, where lib2to3 is shipped
since python3.6 3.6.4~rc1-2. It will be replaced with a more generic
dependency later.
* Also build-depend on python3.6-2to3, to make the tests pass.
* Bump Standards-Version to 4.1.2, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 15 Dec 2017 17:03:53 +0300
sphinx (1.6.5-2) unstable; urgency=medium
* Backport two upstream patches to improve builds reproducibility:
- reproducible_dicts.diff to sort dictionary keys (closes: #877637).
- reproducible_epub.diff to make EPUB generation reproducible.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 29 Oct 2017 19:12:40 +0300
sphinx (1.6.5-1) unstable; urgency=medium
* New upstream release.
* Drop cpp_no_assert and sourcelink_suffix_fallback.diff, applied in the
new release.
* dh_sphinxdoc: In singlehtml check, consider only HTML files that use
doctools.js (closes: #872863).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 23 Oct 2017 12:21:59 +0300
sphinx (1.6.4-2) unstable; urgency=medium
* Add a note that dh_sphinxdoc does not actually build the documentation
to its manpage.
* Backport upstream patch to fix wrong AssertionError in C++ domain
(cpp_no_assert.diff; closes: #877014).
* Backport upstream patch to make searchtools.js work with pre-Sphinx 1.5
templates (sourcelink_suffix_fallback.diff).
* Update dh_sphinxdoc for the above change: there is no more need to error
about missing SOURCELINK_SUFFIX.
* Bump Standards-Version to 4.1.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 04 Oct 2017 11:53:44 +0700
sphinx (1.6.4-1) unstable; urgency=medium
* New upstream release.
- Fixes incorrect return status in sphinx-build (closes: #876048).
* Drop upstream_fix_crash_on_parallel_build.diff, applied upstream.
* dh_sphinxdoc: Turn warning about missing SOURCELINK_SUFFIX to an error.
* Change sphinx-common trigger from interest to interest-noawait.
* Bump Standards-Version to 4.1.0, no changes needed.
* Use pkg-info.mk to retrieve the upstream version number.
* Use python3 to build our own documentation.
* Add support for nodoc build profile.
* Add python3-sphinxcontrib.websupport to build-dependencies for docs.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 26 Sep 2017 17:47:54 +0300
sphinx (1.6.3-2) unstable; urgency=medium
* Move sphinxcontrib-websupport from requirements to extras_require
in setuptools metadata (no_require_websupport.diff).
* Backport upstream patch to fix crash with new python2.7
(upstream_fix_crash_on_parallel_build.diff; closes: #869098).
* dh_sphinxdoc: Add support for singlehtml builds (closes: #872863).
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 17 Sep 2017 20:52:27 +0300
sphinx (1.6.3-1) experimental; urgency=medium
* New upstream release (closes: #866789).
* Update dependencies for the new release.
- Drop python[3]-whoosh and python[3]-sqlalchemy build-dependencies.
They were only needed for websupport tests, now skipped (see below).
- Add build-dependency on python-typing (Python 2 only).
- Add suggestion on latexmk, it is now used for LaTeX builds.
- Add build-dependency and suggestion on imagemagick-6.q16 and
librsvg2-bin, needed for imgconverter extension.
* Update autopkgtest dependencies.
- Add python[3]-sphinxcontrib.websupport.
- Add python[3]-sqlalchemy.
* Disable one more test that needs network in skip_tests_network.diff.
* Move libjs-sphinxdoc package to javascript section.
* Update numbers in debian/jstest/run-tests for the new release.
* Update debian/copyright from upstream LICENSE and AUTHORS files.
* Skip running websupport tests during build, to avoid build-dependency
loop with sphinxcontrib-websupport.
* Remove useless FIXME comment from debian/rules.
* Do not run tests with --verbose flag during build, to make the output
easier to read.
* Document the new --imported-members option in sphinx-autogen manpage.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 06 Aug 2017 15:13:24 +0300
sphinx (1.5.6-2) unstable; urgency=medium
* Drop Patch-Name headers, not needed with gbp-pq.
* Bump Standards-Version to 4.0.0, no changes needed.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 09 Jul 2017 12:05:28 +0300
sphinx (1.5.6-1) experimental; urgency=medium
* New upstream bugfix release.
* Update jstests for compatibility with WebKitGTK+ 2.16.2.
Now the title property can be no longer than 1000 characters, so we
cannot fetch the whole page using it. Instead, we compute the needed
numbers with JavaScript and then fetch them using the title property.
* Update debian/copyright for upstream LICENSE change.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 15 May 2017 11:31:42 +0300
sphinx (1.5.5-1) experimental; urgency=medium
* New upstream release.
* dh_sphinxdoc: Use a better message for missing sourcelink_suffix, and
downgrade this error to a warning.
* Clean some files which erroneously got into the upstream tarball.
* Sync debian/copyright with upstream AUTHORS file.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 06 Apr 2017 23:27:29 +0300
sphinx (1.5.3-1) experimental; urgency=medium
* New upstream release.
* Build-depend on texlive-luatex, to make xetex tests not be skipped.
* Convert from git-dpm to patches unapplied format.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 15 Mar 2017 12:37:21 +0300
sphinx (1.5.2-2) experimental; urgency=medium
* dh_sphinxdoc: Properly detect sourcelink_suffix and use it when looking
for source and HTML files.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 24 Jan 2017 12:42:06 +0300
sphinx (1.5.2-1) experimental; urgency=medium
* New upstream release.
- Drop fix_xapian_search.diff, applied upstream.
- Rebase other patches for test system changes to pytest.
* Bump python[3]-requests dependency to 2.4.0.
* Switch from nose to pytest, following upstream.
* Update one number in debian/jstest/run-tests for the new release.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 22 Jan 2017 19:45:18 +0300
sphinx (1.5.1-1) experimental; urgency=medium
* New upstream release.
* Drop docutils_0.13.diff, applied upstream.
* Rebase other patches.
* Bump X-Python-Version to 2.7 and X-Python3-Version to 3.4, following
upstream.
* Depend on python[3]-requests and build-depend on python[3]-html5lib.
* Build-depend and recommend python-enum34 (for autodoc extension).
* Drop texlive-generic-extra dependency, iftex is no longer used.
* Stop unbundling fncychap.sty (no longer bundled), iftex.sty and
newfloat.sty (no longer used).
* Skip test_meta_keys_are_handled_for_language_de, fails without snowball.
* Backport upstream change to fix Xapian search adapter crashes
(fix_xapian_search.diff).
* Skip tests that require internet access (skip_tests_network.diff).
* Update dh_sphinxdoc for upstream changes to document extensions.
* Update numbers in debian/jstest/run-tests for the new release.
* Move the new templates directory to sphinx-common package.
* Move the non-minified JS files to sphinx-common package.
* Add allow-stderr restriction for the sphinx-doc autopkgtest.
* Clean and do not install the sphinx/locale/.tx/config file.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 23 Dec 2016 11:34:31 +0300
sphinx (1.4.9-2) unstable; urgency=medium
* Backport upstream patch to add compatibility with docutils 0.13
(docutils_0.13.diff).
-- Dmitry Shachnev <mitya57@debian.org> Sun, 11 Dec 2016 11:42:43 +0300
sphinx (1.4.9-1) unstable; urgency=medium
* New upstream bugfix release (closes: #846149).
* Drop fix_autodoc_new_python.diff, applied upstream.
* Remove unwanted file sphinx/locale/.DS_Store in clean target.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 29 Nov 2016 13:37:31 +0300
sphinx (1.4.8-2) unstable; urgency=medium
* Relax the check in dh_sphinxdoc to allow different locations of
searchindex.js file (closes: #841141).
* Sort $(scripts) variable in Makefile, to fix a reproducibility issue.
* Backport upstream patch to fix autodoc failures with new Python 3.5
and Python 3.6 snapshots (fix_autodoc_new_python.diff). Fixes FTBFS.
* Drop build-dependencies on python[3]-xapian (closes: #842903).
* Add more tests dependencies to the autopkgtests.
* Update dh_sphinxdoc manpage for the latest changes (closes: #836248).
-- Dmitry Shachnev <mitya57@debian.org> Thu, 17 Nov 2016 21:10:30 +0300
sphinx (1.4.8-1) unstable; urgency=medium
* New upstream bugfix release.
* Stop running jstest during build (but still run it in the autopkgtest).
* Update debian/watch to track only stable versions.
* Make dh_sphinxdoc generate ${sphinxdoc:Built-Using} substvar (closes:
#836248).
* Call dh_strip_nondeterminism during build.
* Build-depend on python3-xapian again, now it is in unstable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 03 Oct 2016 17:24:50 +0300
sphinx (1.4.6-1) unstable; urgency=medium
* New upstream bugfix release (closes: #835026).
* Bump python[3]-six dependency to 1.5, following upstream.
* dh_sphinxdoc: Include the list of packages in the error message about
documentation not found (closes: #833799).
-- Dmitry Shachnev <mitya57@debian.org> Wed, 24 Aug 2016 21:04:54 +0300
sphinx (1.4.5-1) unstable; urgency=medium
* New upstream bugfix release.
* Drop upstream patches:
- fix_ltz_utcoffset.diff
- latex_code_robust.diff
-- Dmitry Shachnev <mitya57@debian.org> Wed, 13 Jul 2016 22:56:54 +0300
sphinx (1.4.4-3) unstable; urgency=medium
* Backport upstream patch (latex_code_robust.diff) to fix the \code
command in generated LaTeX files (closes: #829118).
-- Dmitry Shachnev <mitya57@debian.org> Fri, 01 Jul 2016 20:59:46 +0300
sphinx (1.4.4-2) unstable; urgency=medium
* Update Python 2 autopkgtest to not run tests that require Python 3.
* Add a patch to fix return type of LocalTimeZone.utcoffset when
SOURCE_DATE_EPOCH is set (fix_ltz_utcoffset.diff).
-- Dmitry Shachnev <mitya57@debian.org> Tue, 21 Jun 2016 17:33:28 +0300
sphinx (1.4.4-1) unstable; urgency=medium
* New upstream bugfix release.
- Autodoc now removes all memory addresses (closes: #822197).
* Drop python3-xapian build-dependency for unstable upload: it is not
yet available in unstable.
* Build-depend on graphviz so that the corresponding tests are not
skipped.
* Do not install the bundled TeX files from texinput directory:
- fncychap.sty (available in texlive-latex-extra)
- iftex.sty (available in texlive-generic-extra)
- needspace.sty (available in texlive-latex-extra)
- newfloat.sty (available in texlive-latex-recommended)
* Suggest texlive-generic-extra instead (the other packages are already in
the Suggests list).
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 17 Jun 2016 18:42:56 +0300
sphinx (1.4.3-1) experimental; urgency=medium
* New upstream bugfix release.
* Drop the following patches, applied upstream:
- 0004-Extend-SOURCE_DATE_EPOCH-support.patch
- 0005-Adapt-to-typing-private-API-change-in-Python-3.5.2.patch
- 0006-Make-custom-compile_catalog-command-work-with-Babel-.patch
- 0007-Load-compatibility-patch-for-LuaTeX-0.85.patch
- 0008-Make-Xapian-search-work-with-Python-3.patch
* Add Takeshi KOMIYA’s signing key to debian/upstream/signing-key.asc.
* Bump version number in sphinx-autogen manpage.
* Build-depend on texlive-generic-extra (for iftex package).
-- Dmitry Shachnev <mitya57@debian.org> Mon, 06 Jun 2016 19:47:32 +0300
sphinx (1.4.1-2) experimental; urgency=medium
* Add a patch to make Xapian search tests pass with Python 3.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 26 May 2016 13:45:43 +0300
sphinx (1.4.1-1) experimental; urgency=medium
* New upstream release (closes: #824375).
* Drop the following patches, applied upstream:
- disable_distribute_setup.diff
- source_date_epoch.diff
- reproducible_grammar.diff
- reproducible_inventory.diff
- reproducible_js_locale.diff
- reproducible_searchindex.diff
* Refresh and rebase other patches.
* Update debian/watch to correctly mangle upstream alpha releases.
* Demote sphinx-rtd-theme to Suggests, it has become optional.
* Add dependency on python[3]-imagesize packages.
* Bump Pygments build- and test dependencies to 2.1.1.
* Demote python-sphinx recommendation of sphinx-doc to a suggestion.
* Refactor the command to run tests to better match upstream.
* Build-depend on dvipng to get the pngmath test run.
* Update numbers in jstest/run-tests for the new version.
* Add a patch from Alexis Bienvenüe to extend SOURCE_DATE_EPOCH support
(closes: #820895).
* Add a patch to fix a typing-related test failure with Python 3.5.2.
* Update debian/copyright based on upstream LICENSE and AUTHORS files.
* Add a patch to make compile_catalog code work with python-babel 2.3.
* Add a patch to support LuaTeX 0.85.
* Build-depend on texlive-luatex for tests.
* Adapt dh-sphinxdoc/install-js for doctools.js changes.
* Update sphinx-autogen manpage.
* Bump Standards-Version to 3.9.8, no changes needed.
* Build-depend on python3-xapian (closes: #649488).
-- Dmitry Shachnev <mitya57@debian.org> Tue, 17 May 2016 18:57:02 +0300
sphinx (1.3.6-2) unstable; urgency=medium
* Use implementation of jstest from Iain Lane in hope it succeeds on
buildds.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 03 Mar 2016 20:17:15 +0300
sphinx (1.3.6-1) unstable; urgency=medium
* New upstream bugfix release.
* Port jstest to WebKit2 (closes: #814909).
* Remove the now obsolete debian/TODO file.
* Update debian/source/lintian-overrides for new Lintian versions.
* Use https in Vcs-Git field.
* Bump Standards-Version to 3.9.7, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 02 Mar 2016 10:24:30 +0300
sphinx (1.3.5-1) unstable; urgency=medium
* New upstream bugfix release.
* Build-depend on Pygments 2.1, the testsuite now requires it.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 26 Jan 2016 12:57:34 +0300
sphinx (1.3.4-1) unstable; urgency=medium
* New upstream bugfix release.
* Clean and ignore auto-generated files.
* jstest.py: Add gi.require_version() calls to fix warnings from PyGI.
* Bump version number in sphinx-autogen manpage.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 14 Jan 2016 19:01:44 +0300
sphinx (1.3.3-1) unstable; urgency=medium
* New upstream bugfix release.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 03 Dec 2015 18:35:09 +0300
sphinx (1.3.2-1) unstable; urgency=medium
* New upstream release.
* Drop the following patches, applied upstream:
- py35compat.diff
- no_theme_rename_warning.diff
- addto_only_babel.diff
- print_help.diff
- compat_css.diff
* Refresh and rebase other patches.
* Stop exporting SOURCE_DATE_EPOCH in debian/rules.
Debhelper does it automatically since version 9.20151004.
* Update sphinx-autogen.1 man page.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 30 Nov 2015 18:31:36 +0300
sphinx (1.3.1-8) unstable; urgency=medium
* Do not fail on removing SOURCES.txt file when it does not exist.
Fixes build with dh-python ≥ 2.20151103.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 08 Nov 2015 16:13:14 +0300
sphinx (1.3.1-7) unstable; urgency=medium
* Make libjs-sphinxdoc depend on libjs-jquery ≥ 1.11.1 and libjs-underscore
≥ 1.3.1, as these are the versions used by upstream.
* Fix command in autopkgtests to make them pass.
* Update Vcs fields for Git migration.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 18 Oct 2015 18:38:38 +0300
sphinx (1.3.1-6) unstable; urgency=medium
* Update reproducibility patches to the latest version from Val Lorentz:
- Update reproducible_grammar.diff.
- Make searchindex generation deterministic (reproducible_searchindex.diff).
-- Dmitry Shachnev <mitya57@debian.org> Thu, 03 Sep 2015 16:54:07 +0300
sphinx (1.3.1-5) unstable; urgency=medium
* Fix remaining reproducibility issues (closes: #795976):
- Export SOURCE_DATE_EPOCH in debian/rules.
- Set PYTHONHASHSEED=0 when generating grammar files.
- Make grammar generation deterministic (reproducible_grammar.diff).
- Make inventory generation deterministic (reproducible_inventory.diff).
- Make JavaScript locales deterministic (reproducible_js_locale.diff).
Many thanks to Val Lorentz for the patches.
* Drop XS-Testsuite header, no longer needed with dpkg ≥ 1.17.11.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 20 Aug 2015 11:56:56 +0300
sphinx (1.3.1-4) unstable; urgency=medium
* Fix message when calling sphinx-build without arguments
(print_help.diff; closes: #792715).
* Add compatibility default.css file (compat_css.diff).
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 15 Aug 2015 18:04:49 +0300
sphinx (1.3.1-3) experimental; urgency=medium
* Update debian/TODO with the actual information.
* Backport upstream patch to disable warning about renamed default theme
(no_theme_rename_warning.diff).
* Backport upstream patch to not insert babel-specific code to generated
LaTeX files when babel is not in use (addto_only_babel.diff).
* Add support for $SOURCE_DATE_EPOCH environment variable, to make
the documentation builds reproducible (source_date_epoch.diff).
* dh_sphinxdoc: Symlink css3-mediaqueries.js, thanks to Jakub Wilk
for the patch (closes: #793045).
* dh_sphinxdoc: Add support for symlinking files specific to the RTD
theme (closes: #781849).
* Bump version number in sphinx-autogen manpage.
* Drop initialize_autodoc.diff, the bug seems to be fixed differently
upstream.
* Update bug URL in a comment in debian/rules for move to GitHub.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 28 Jul 2015 22:19:39 +0300
sphinx (1.3.1-2) experimental; urgency=medium
[ Dmitry Shachnev ]
* debian/patches/no_snowballstemmer.diff: Exclude snowballstemmer
from setup.py and egg-info requirements.
* Move the signing keys to debian/upstream/signing-key.asc.
[ Barry Warsaw ]
* debian/patches/py35compat.diff: Python 3.5 compatibility.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 30 Jun 2015 21:02:36 +0300
sphinx (1.3.1-1) experimental; urgency=medium
[ Helmut Grohne ]
* Mark libjs-sphinxdoc Multi-Arch: foreign (closes: #779458).
[ Dmitry Shachnev ]
* New upstream release.
- The codebase now works with Python 3 with no need to run 2to3.
- Output is now reproducible (closes: #776443).
* Remove patches:
- python3_test_build_dir.diff (no longer needed)
- parallel_2to3.diff (no longer needed)
- fix_latex_hlines.diff (applied upstream)
* Bump required versions of python, docutils and pygments.
* Build-depend and depend on:
- python[3]-six
- python[3]-babel
- python[3]-sphinx-rtd-theme
- python[3]-alabaster
* Add python[3]-mock to build-dependencies and test dependencies.
* Use upstream tarball, which now contains non-minified versions of
jquery.js and underscore.js.
* Update debian/watch to use pypi.debian.net redirector.
* Simplify debian/rules:
- Adjust for using upstream tarballs.
- Do not mention site-packages anymore.
* Update JS tests for the new version.
* Add a patch to skip JS libraries versions check.
* Drop 2to3 call from debian/tests/python3-sphinx.
* Properly clean up after running tests.
* Bring debian/copyright in sync with upstream AUTHORS file.
* Disable snowballstemmer-based search until upstream implements
it correctly (without JS blobs) and we get snowballstemmer packaged.
* Bump Standards-Version to 3.9.6, no changes needed.
* Override lintian false positive warnings about missing sources for
minified files (jquery.js, underscore.js, and css3-mediaqueries.js).
* debian/dh-sphinxdoc/install-js: Update list of files to be installed.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 02 May 2015 22:18:56 +0300
sphinx (1.2.3+dfsg-1) unstable; urgency=medium
* New upstream bugfix release.
* Drop websupport_todo.diff, applied upstream.
* Update date and version in sphinx-autogen.1.
* Add Takayuki Shimizukawa’s signing key to upstream-signing-key.pgp.
* Replace links to online docutils docs with links to packaged
docutils docs.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 12 Sep 2014 11:49:40 +0400
sphinx (1.2.2+dfsg-4) unstable; urgency=medium
* Build-depend on python3-whoosh, now when it is available.
* Drop sphinxcontrib_namespace.diff, all sphinxcontrib packages
are using dh_python2 now. Break old versions of issuetracker and
spelling packages.
* Update my e-mail address.
* Override false-positive Lintian errors about sourceless files.
* Generate compiled translations using compile_catalog command.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 08 Sep 2014 12:58:18 +0400
sphinx (1.2.2+dfsg-3) unstable; urgency=medium
* Remove obsolete Recommends: on python-simplejson and Suggests:
on jsmath.
* debian/patches/websupport_todo.diff: Make websupport work with
todolist directives (closes: #754408).
-- Dmitry Shachnev <mitya57@gmail.com> Mon, 25 Aug 2014 13:50:20 +0400
sphinx (1.2.2+dfsg-2) unstable; urgency=medium
* Downgrade error about documentation not found to a warning
(closes: #745690).
* Cleanup dh_compress arguments.
* Export NO_PKG_MANGLE, needed to build on Ubuntu.
* Update version number and URL in sphinx-autogen man page.
-- Dmitry Shachnev <mitya57@gmail.com> Sun, 18 May 2014 15:13:18 +0400
sphinx (1.2.2+dfsg-1) unstable; urgency=low
* New upstream bugfix release.
* Drop html_logo_path_fix.diff, applied upstream.
* Refresh and rebase other patches.
* Update numbers in jstest/run-tests to match docs updates in the new
version.
* Bump debhelper compatibility level to 9.
* Backport upstream patch to fix writing table hlines in LaTeX writer
(closes: #732585).
-- Dmitry Shachnev <mitya57@gmail.com> Mon, 03 Mar 2014 20:28:04 +0400
sphinx (1.2.1+dfsg-3) unstable; urgency=medium
* Add html_logo_path_fix.diff to fix path check for HTML logo,
backported from upstream hg (thanks James Cowgill, closes: #738741).
* Add missing xauth depencency for sphinx-doc autopkgtest.
-- Dmitry Shachnev <mitya57@gmail.com> Thu, 13 Feb 2014 12:54:23 +0400
sphinx (1.2.1+dfsg-2) unstable; urgency=medium
* Move Grammar files to /usr/share/sphinx, the code still expects
that thay are in that location (closes: #736239).
-- Dmitry Shachnev <mitya57@gmail.com> Tue, 21 Jan 2014 19:47:34 +0400
sphinx (1.2.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop fix_jinja_recursion.diff, applied upstream.
* Drop unversioned_grammar_pickle.diff, a different fix was applied
upstream.
* No longer move Grammar.txt and Grammar.pickle to shared location,
upstream is now shipping different versions of grammar for Python 2
and Python 3.
-- Dmitry Shachnev <mitya57@gmail.com> Mon, 20 Jan 2014 18:28:47 +0400
sphinx (1.2+dfsg-2) unstable; urgency=medium
* Backport upstream patch (fix_jinja_recursion.diff) to fix infinite
recursion when building python-numpy docs.
* Add explicit build-dependency on dh-python.
* JS tests: use WebView.load_uri() instead of deprecated open().
-- Dmitry Shachnev <mitya57@gmail.com> Sun, 12 Jan 2014 13:00:20 +0400
sphinx (1.2+dfsg-1) unstable; urgency=low
* Upload to unstable.
* New upstream stable release.
* Drop fix_setup_command_test.diff, applied upstream.
* Refresh sphinxcontrib_namespace.diff.
* Fix package names in Recommends: python(3)-imaging → python(3)-pil.
* Bump Standards-Version to 3.9.5, no changes needed.
* Bump python-all build-dependency to 2.6.6-3~.
* Verify upstream PGP signature in debian/watch.
-- Dmitry Shachnev <mitya57@gmail.com> Wed, 18 Dec 2013 17:25:19 +0400
sphinx (1.2~b3+dfsg-2) experimental; urgency=low
* Really switch from dh_pysupport to dh_python2.
* Remove unwanted files from python-sphinx package (closes: #726754).
* Remove useless imports in jstest/jstest.py.
-- Dmitry Shachnev <mitya57@gmail.com> Mon, 21 Oct 2013 20:55:27 +0400
sphinx (1.2~b3+dfsg-1) experimental; urgency=low
[ Dmitry Shachnev ]
* New upstream beta release.
- Correctly handles errors when repr()-ing objects (closes: #706581).
* Drop upstream patches.
* Refresh and rebase other patches.
* Add a patch to make sure setup_command tests can import sphinx module.
* Switch debian/watch to use HTTPS.
* JS tests:
- Port from deprecated static bindings and Python 2 to PyGI and
Python 3. Update the dependencies accordingly.
- Do not use web server, instead set a WebKit option that will allow
us to access files directly. Now the pages should load faster
(closes: #724472).
* Switch from deprecated dh_pysupport to dh_python2 (closes: #659196).
* Add XS-Testsuite header, and replace XS-Python-Version with preferred
X-Python-Version (closes: #685508).
* Add myself to Uploaders.
[ Jakub Wilk ]
* Remove myself from Uploaders.
-- Dmitry Shachnev <mitya57@gmail.com> Sat, 05 Oct 2013 19:29:41 +0400
sphinx (1.2~b1+dfsg-2) experimental; urgency=low
* Export http_proxy=http://127.0.0.1:9/ in debian/rules to prevent Internet
access at build time.
* Use canonical URIs for Vcs-* fields.
* Add texinfo to Build-Depends.
* Add patch (fix_copying_imgs_singlehtml_builder.diff) to fix copying images
in the singlehtml builder (closes: #706563).
* Add patch (fix_globaltoc_and_hidden_toctree.diff) to fix combination of
globaltoc and hidden toctree causing an exception (closes: #706586).
* Add patch (fix_missing_citation_target_assert.diff) to fix missing
citation target causing AssertionError (closes: #706565).
* Rename skiptest_latex.diff as skiptest.diff; fix more cases when a missing
tool was silently ignored.
* Set Debian Python Modules Team as Maintainer; move myself to Uploaders.
-- Jakub Wilk <jwilk@debian.org> Tue, 04 Jun 2013 23:57:47 +0200
sphinx (1.2~b1+dfsg-1) experimental; urgency=low
* New upstream beta release.
+ Drop fix_nepali_po.diff; applied upstream.
+ Drop fix_shorthandoff.diff; different fix applied upstream.
+ Drop l10n_fixes.diff; applied upstream.
+ Drop manpage_writer_docutils_0.10_api.diff; applied upstream.
+ Drop pygments_byte_strings.diff; different fix applied upstream.
+ Drop show_more_stack_frames.diff; an option to show full traceback (-T)
is now available.
+ Drop sort_stopwords.diff; applied upstream.
+ Drop support_python_3.3.diff; applied upstream.
+ Drop test_build_html_rb.diff; applied upstream.
+ Refresh other patches.
+ Update integration tests for the JavaScript code.
+ Update debian/copyright.
+ Update debian/*.docs to take into account that README was renamed as
REAMDE.rst.
+ Update version in sphinx-autogen manpage.
+ This release fixes parsing C++11 “static constexpr” declarations
(closes: #693066). Thanks to Alexandre Duret-Lutz for the bug report and
the patch.
* Run tests under LC_ALL=C.UTF-8 to work around test failures.
* Make it impossible to accidentally build the source package with an
.orig.tar that includes jquery.js or underscore.js.
* Refactor debian/rules.
* When building our own documentation, run sphinx-build with the -T option.
* Use a dedicated script to extract JavaScript code for libjs-sphinxdoc.
* Add no_external_css.diff: don't use CSS files hosted on external sites.
-- Jakub Wilk <jwilk@debian.org> Mon, 29 Apr 2013 23:37:06 +0200
sphinx (1.1.3+dfsg-7) experimental; urgency=low
* Backport upstream patch for fix compatibility with Docutils 0.10.
* Run 2to3 in parallel.
* Add DEP-8 tests for the documentation package.
-- Jakub Wilk <jwilk@debian.org> Wed, 19 Dec 2012 10:53:51 +0100
sphinx (1.1.3+dfsg-6) experimental; urgency=low
[ Jakub Wilk ]
* DEP-8 tests: remove “Features: no-build-needed”; it's the default now.
* Bump standards version to 3.9.4; no changes needed.
* Pass -a to xvfb-run, so that it tries to get a free server number.
* Rebuild MO files from source.
+ Update debian/rules.
+ Add the rebuilt files to extend-diff-ignore.
* Make synopses in the patch header start with a lowercase latter and not
end with a full stop.
[ Dmitry Shachnev ]
* debian/patches/l10n_fixes.diff: fix crashes and not working external
links in l10n mode (closes: #691719).
* debian/patches/sort_stopwords.diff: mark as applied upstream.
-- Jakub Wilk <jwilk@debian.org> Sat, 08 Dec 2012 14:38:19 +0100
sphinx (1.1.3+dfsg-5) experimental; urgency=low
[ Jakub Wilk ]
* DEP-8 tests: use $ADTTMP.
* dh_sphinxdoc: ignore comments when analysing HTML files (closes: #682850).
Thanks to Dmitry Shachnev for the bug report.
* Add dvipng to Suggests (closes: #687273). Thanks to Matthias Klose for the
bug report.
* Set PYTHONHASHSEED=random in debian/rules and in DEP-8 tests.
* Backport upstream patch to fix encoding issues in test_build_html. Now
that this is fixed, stop running Python 3 tests under LC_ALL=C.
* Make “debian/rules binary-arch” no-op.
* Update version number in the sphinx-autogen manpage.
* Improve dh_sphinxdoc:
+ Fix the --tmpdir option. Thanks to Andriy Senkovych for the bug report.
+ Ignore references to JavaScript code that start with an URI scheme.
Thanks to Dmitry Shachnev for the bug report.
+ Strip query (?...) and fragment (#...) components from JavaScript
references. Thanks to Dmitry Shachnev for the bug report.
* Sort stopwords in searchtools.js. Thanks to Dmitry Shachnev for the bug
report.
* Fix compatibility with Python 3.3. Thanks to Dmitry Shachnev for the bug
report and hunting down the upstream patch.
[ Dmitry Shachnev ]
* Update Homepage field to point to http://sphinx-doc.org/.
* Build-depend of python3-all instead of python3.
-- Jakub Wilk <jwilk@debian.org> Thu, 08 Nov 2012 16:28:23 +0100
sphinx (1.1.3+dfsg-4) unstable; urgency=low
* Add DEP-8 tests.
* LaTeX writer: fix generation of \shorthandoff (closes: #672586,
LP: #997891). Thanks to Melissa Draper for the bug report and the initial
patch.
-- Jakub Wilk <jwilk@debian.org> Thu, 24 May 2012 18:53:29 +0200
sphinx (1.1.3+dfsg-3) unstable; urgency=low
* Validate *.po files at build time. Add gettext to Build-Depends.
* Add fix_nepali_po.diff: remove Nepali translations that must have been
wrong.
* Add pygments_byte_strings.diff: fix Unicode issues in
PygmentsBridge.highlight_block (closes: #660930). Thanks to Anton Gladky
for the bug report and the initial patch.
* Fix a typo in a patch description.
-- Jakub Wilk <jwilk@debian.org> Mon, 02 Apr 2012 22:17:49 +0200
sphinx (1.1.3+dfsg-2) unstable; urgency=low
* Upload to unstable.
* Add skiptest_latex.diff: if LaTeX (or a required LaTeX package) is not
found when running test_build_latex, raise SkipTest instead of just
printing a message to stderr.
-- Jakub Wilk <jwilk@debian.org> Wed, 14 Mar 2012 20:31:19 +0100
sphinx (1.1.3+dfsg-1) experimental; urgency=low
* New upstream release.
+ Drop python3_test_syspath.diff, applied upstream.
+ Update integration tests for the JavaScript code.
* Bump standards version to 3.9.3 (no changes needed).
-- Jakub Wilk <jwilk@debian.org> Mon, 12 Mar 2012 12:18:37 +0100
sphinx (1.1.2+dfsg-5) unstable; urgency=low
* Don't run ‘python setup.py clean’ in the clean target (we nuke the whole
build subdirectory anyway).
* Move python-all and python-setuptools from Build-Depends to
Build-Depends-Indep, as it's not needed in the clean target anymore.
* Don't run dh_testroot in the clean target. There's a good chance that root
privileges are not needed (e.g. because binary target was run under
fakeroot), and even if they are actually needed, the target will fail
quickly.
* Run tests against Python 3:
+ Add build-dependency on python3-nose, python3-docutils,
python3-pygments, python3-jinja2, python3-sqlalchemy.
+ Add python3_test_syspath.diff to fix Python 3 sys.path for the test
runner.
+ Add python3_test_build_dir.diff to hardcode Python 3 build directory in
the test runner to the one that the package uses.
+ Add test running code debian/rules. Don't use --no-skip for the moment,
as some required packages don't exist yet (see #647441, #647439). Set
LC_ALL=C.UTF-8 to work around failures under LC_ALL=C (see
<http://deb.li/H8ED> and <http://deb.li/3Rw0z>).
-- Jakub Wilk <jwilk@debian.org> Tue, 14 Feb 2012 00:13:35 +0100
sphinx (1.1.2+dfsg-4) unstable; urgency=low
* Make the build actually fail if integration tests for the JavaScript
code fail.
* Don't remove *.egg-info in the clean target; add it to extend-diff-ignore
instead.
* Pass --no-guessing-deps to dh_python3.
-- Jakub Wilk <jwilk@debian.org> Sun, 05 Feb 2012 19:33:59 +0100
sphinx (1.1.2+dfsg-3) unstable; urgency=low
* Upload to unstable (closes: #655637).
* Use xargs to iterate over all Python versions.
* Make sphinx-autogen initialize the sphinx.ext.autodoc module (hopefully
closes: #611078).
-- Jakub Wilk <jwilk@debian.org> Sun, 05 Feb 2012 17:59:55 +0100
sphinx (1.1.2+dfsg-2) experimental; urgency=low
* Add sphinxcontrib_namespace.diff: create namespace package
‘sphinxcontrib’. This allows python-sphinxcontrib.* packages, both those
using dh_python2 and those using python-support, to be co-importable.
* Add various texlive-* and libjs-mathjax to Suggests.
* Don't install SOURCES.txt into binary packages.
* dh_sphinxdoc: produce different diagnostic message when unknown JavaScript
script is being ignored than when it's a fatal error. Thanks to Sandro
Tosi for the bug report.
* Make the get-orig-source script create temporary files in /tmp (or
$TMPDIR).
* Revert all the changes to manual pages that accumulated over the years.
* Document that symlinking translations.js and non-English searchtools.js is
not supported (see bug #658238).
* Don't include websupport.js in libjs-jquery. Make dh_sphinxdoc remove this
file from binary package.
* dh_sphinxdoc: -X<item> should now exclude a file if <item> exists anywhere
in the path, so it can be used e.g. to exclude whole directories.
* Fix a typo in dh_sphinxdoc manual page.
-- Jakub Wilk <jwilk@debian.org> Fri, 03 Feb 2012 13:52:49 +0100
sphinx (1.1.2+dfsg-1) experimental; urgency=low
* New upstream release (closes: #649048).
+ Drop autosummary_1.0.6.patch for the time being (reopens: #611078).
+ Drop docstring_parse.diff, applied upstream.
+ Rename disable_ez_setup.diff to disable_distribute_setup.diff.
+ Drop move_static_files_outside_site-packages.patch. Most of it was
applied upstream, the remaining bits are now taken care of in
debian/rules.
+ Refresh other patches.
+ Update integration tests for the JavaScript code.
+ Bump minimum required versions:
- python-docutils to >= 0.7;
- python-pygments to >= 1.2;
- python-jinja2 to >= 2.3.
- python to >= 2.5.
+ Add code to install also JavaScript files that are generated at build
time. Add websupport.js to dh_sphinxdoc index.
+ Update debian/copyright.
* Texinfo output format is now supported (closes: #586747).
* Update version numbers in the manual pages. Add a build-time warning to be
emitted if they ever get out of date again.
* Build manual pages (except for sphinx-autogen.1) from reStructuredText
sources.
* Rephrase short package description, so that it's... shorter.
* New binary package: sphinx-common, containing manual pages, templates,
translations and other data files.
* New binary package: sphinx-doc, containing documentation.
+ Conflict with previous versions python-sphinx.
+ /usr/share/doc/python-sphinx/html used to be a directory, but is now a
symlink. Conflict with older versions of python-docutils, so that dpkg
can replace one with the other. Add lintian override.
* New binary package: python3-sphinx.
+ Both python-sphinx and python3-sphinx provide sphinx-* scripts. The
scripts have:
#!/usr/bin/python3 shebang if only python3-sphinx is installed;
#!/usr/bin/python shebang otherwise.
+ /usr/bin/sphinx-* are now symlinks and are managed by docutils-common
postinst/postrm maintainer scripts.
+ Make sphinx-common conflict with older versions of python-sphinx that
were shipping /usr/bin/sphinx-* scripts. Add lintian override for
conflicts-with-version.
+ Add build-dependency on python3 (needed for dh_python3) and
python3-setuptools.
+ Add X-Python3-Version field.
* Improve debian/rules:
+ Run dh_install with --fail-missing.
+ Refactor the code responsible for moving data into a private directory.
Rename some variables to make them lowercase. Don't use CURDIR where
it's not necessary.
+ Make it possible to rebuild the package without running clean target.
+ Remove unneeded mkdir calls.
+ Use a for loop in debian/rules to install all sphinx-* scripts.
+ Run nosetests with --verbose --no-skip.
* Add build-dependency on the following packages (needed for the test
suite): python-sqlalchemy, python-whoosh, python-xapian.
* Use XS-Python-Version instead of debian/pyversions.
-- Jakub Wilk <jwilk@debian.org> Sun, 20 Nov 2011 15:56:50 +0100
sphinx (1.0.8+dfsg-2) unstable; urgency=low
* Upload to unstable.
-- Jakub Wilk <jwilk@debian.org> Wed, 12 Oct 2011 00:34:20 +0200
sphinx (1.0.8+dfsg-1) experimental; urgency=low
* New upstream release.
+ Drop fix_jquery_1.5_incompatibility.diff, applied upstream.
+ Drop fix_test_build_latex.diff, applied upstream.
+ Refresh other patches.
* Export PYTHONWARNINGS=d in debian/rules to enable all warnings in Python
code.
-- Jakub Wilk <jwilk@debian.org> Wed, 28 Sep 2011 17:20:22 +0200
sphinx (1.0.7+dfsg-2) unstable; urgency=low
* JavaScript test suite: don't hang if get_title() returns None. Thanks to
Ansgar Burchardt for the bug report.
* dh_sphinxdoc:
+ Fix a typo in the manual page.
+ Don't check for existence of source files if HAS_SOURCE is false
(closes: #641710). Thanks to Raphaël Hertzog for the bug report.
* Disable use of ez_setup in setup.py.
* Set myself as maintainer. Thanks to Mikhail Gusarov for his past work!
-- Jakub Wilk <jwilk@debian.org> Thu, 15 Sep 2011 13:53:16 +0200
sphinx (1.0.7+dfsg-1) unstable; urgency=medium
* Strip jQuery and Underscore.js from the upstream tarball (closes:
#631535).
+ Add get-orig-source target.
+ Remove them from debian/copyright.
+ Add build-dependency on libjs-underscore,
+ Update watch file to deal with the +dfsg suffix.
* Unify multiple calls to dh_link.
* Use build/html as build directory for documentation.
* Add integration tests for the JavaScript code. They should allow us to
avoid bugs like #625208 or #628642 in the future.
+ Build-depend on xvfb, xauth, python-webkit, libjs-jquery and
libjs-underscore.
* Add build-arch and build-indep targets to debian/rules.
* Add new tool, dh_sphinxdoc that aids shipping Sphinx-generated
documentation in Debian packages.
+ Update debian/rules, debian/control and debian/*.links to use
dh_sphinxdoc.
+ Use pod2man to generate manpage. Add dependency on perl. Update
debian/manpages and debian/clean.
* Move all JavaScript code into a separate package, libjs-sphinxdoc.
* Fix test_build_latex to not fail in a directory with special characters.
* Use debian/clean rather than listing files to clean directly in
debian/rules.
-- Jakub Wilk <jwilk@debian.org> Sun, 10 Jul 2011 22:43:16 +0200
sphinx (1.0.7-5) unstable; urgency=low
[ Jakub Wilk ]
* Bump standards version to 3.9.2 (no changes needed).
* Bump minimum required version of jQuery to 1.4.
* Use python (>= 2.6.6-14~) as an alternative build-dependency to
python-simplejson. The latter package is only needed for python2.5, and
python-defaults 2.6.6-14 doesn't support it anymore.
* Include jQuery source (closes: #630973).
+ Check at build time if versions of both jQuery copies match.
[ Nikolaus Rath ]
* Backport upstream changesets a8b0ef275438 and de340a6098c7 to allow
extraction of function signature from docstring for extension modules.
(closes: #630409). The feature is disabled by default for the moment.
-- Jakub Wilk <jwilk@debian.org> Sun, 19 Jun 2011 14:44:49 +0200
sphinx (1.0.7-4) unstable; urgency=low
* When Sphinx crashes, show 10 stack frames (instead of a single one).
* Backport upstream patch to fix incompatibility with jQuery >= 1.5
(closes: #625208). Thanks to Tshepang Lekhonkhobe for the bug report.
-- Jakub Wilk <jwilk@debian.org> Thu, 19 May 2011 11:59:00 +0200
sphinx (1.0.7-3) unstable; urgency=low
[ Mikhail Gusarov ]
* Change my email address.
[ Jakub Wilk ]
* New upstream release (closes: #613207).
+ Refresh patches.
+ Revert changes to the autosummary extension introduced in 1.0.7
(closes: #611078).
* Don't compress objects.inv. Thanks to Michael Fladischer for the bug
report.
* Remove *.egg-info in the clean target.
* Move pycode/Grammar.txt and ext/autosummary/templates/* out of
/usr/share/pyshared/ (closes: #609486).
* Stop embedding Python version in filename of grammar pickle.
* Ship grammar pickle in the binary package (closes: #613412). Thanks to
Frederic-Emmanuel Picca for the bug report.
* Drop preinst script to remove python-central leftovers; not needed
anymore.
* New upstream release.
* Update and significantly rewrite manual pages (closes: #593623).
* Switch to source format 3.0 (quilt).
+ Drop README.source.
+ Refresh patches.
+ Update debian/rules.
+ Drop quilt from build-depends.
* Update debian/copyright.
* Use DEP-3 format for patch headers.
* Run tests at build time.
+ Add python-nose, python-simplejson and
texlive-{latex-{recommended,extra},fonts-recommended} to
Build-Depends-Indep.
+ Patch test runner to import modules correctly and prevent it from
reading files in /usr/share/sphinx.
+ Update debian/rules.
* Bump standards version to 3.9.1 (no changes needed).
* Add ‘set -e’ to a for loop in debian/rules.
[ Piotr Ożarowski ]
* Minimum required versions bumped:
- python-jinja2 >= 2.2
- python-docutils >= 0.5
* move_static_files_outside_site-packages.patch updated
[ Stefano Rivera ]
* Improve language and clarify options in manpages.
-- Jakub Wilk <jwilk@debian.org> Mon, 04 Apr 2011 13:50:56 +0200
sphinx (0.6.6-3) unstable; urgency=low
* Add myself to uploaders.
* Fix formatting of the manual pages.
* Update and significantly rewrite the sphinx-build manual page
(closes: #593623).
* Bump standards version to 3.9.1 (no changes needed).
-- Jakub Wilk <jwilk@debian.org> Mon, 30 Aug 2010 00:26:04 +0200
sphinx (0.6.6-2) unstable; urgency=low
* Team upload.
[ Mikhail Gusarov ]
* Fix preinst script to correctly remove python-central remnants (Closes:
#559572).
-- Jakub Wilk <jwilk@debian.org> Fri, 06 Aug 2010 16:33:55 +0200
sphinx (0.6.6-1) unstable; urgency=low
[ Piotr Ożarowski ]
* New upstream release
- disable_ez_setup.patch removed, no longer needed
- move_static_files_outside_site-packages.patch updated
* Bump Standards-Version to 3.8.4, no changes needed.
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Tue, 25 May 2010 22:30:46 +0200
sphinx (0.6.5-1) unstable; urgency=low
[ Piotr Ożarowski ]
* New upstream release
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Mon, 29 Mar 2010 23:08:45 +0200
sphinx (0.6.4-1) unstable; urgency=low
[ Piotr Ożarowski ]
* New upstream release
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Wed, 13 Jan 2010 23:26:40 +0100
sphinx (0.6.3-2) unstable; urgency=low
[ Piotr Ożarowski ]
* Add preinst maintainer script to remove python-central leftovers; thanks to
Jakub Wilk for the report; Closes: #559572
[ Sandro Tosi ]
* debian/control
- added misc:Depends to the binary package Depends line
-- Mikhail Gusarov <dottedmag@dottedmag.net> Sun, 03 Jan 2010 22:37:20 +0600
sphinx (0.6.3-1) unstable; urgency=low
* New upstream release (Closes: #545042):
- handle error when using autoclass with a non-class (Closes: #537165)
- all patches refreshed.
* Use debian/pyversions instead of X[SB]-Python-Version.
* Add doc-base file for manual.
* Bump Standards-Version, no changes needed.
-- Mikhail Gusarov <dottedmag@dottedmag.net> Fri, 04 Sep 2009 17:49:20 +0700
sphinx (0.6.2-1) unstable; urgency=low
[ Piotr Ożarowski ]
* New upstream release (Closes: #527538)
- add_missing_sphinx-autogen and rfind-invocation patches removed, no
longer needed
- move_static_files_outside_site-packages.patch updated
* Standards-Version bumped to 3.8.2, no changes needed.
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Wed, 17 Jun 2009 19:32:26 +0200
sphinx (0.6.1-2) unstable; urgency=low
[ Mikhail Gusarov ]
* Fix debian/README.source: s/dpatch/quilt/ (Closes: #523293).
* Add debian/rfind-invocation.patch, fixing breakage on python-werkzeug
docs.
[ Piotr Ożarowski ]
* Install .mo files (Closes: #526027)
-- Mikhail Gusarov <dottedmag@dottedmag.net> Sun, 12 Apr 2009 14:37:30 +0700
sphinx (0.6.1-1) unstable; urgency=low
[ Piotr Ożarowski ]
* New upstream release
+ depend on python-jinja2 instead of python-jinja
* Add move_static_files_outside_site-packages patch
* Build depend on python-all (>= 2.5.4-1) (py_libdir is now used in
debian/rules)
* add_missing_sphinx-autogen.patch added (missing file will be added in next
upstream release)
[ Jan Dittberner ]
* add man page debian/sphinx-autogen.1
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Tue, 07 Apr 2009 18:24:25 +0100
sphinx (0.5.2-1) unstable; urgency=low
[ Piotr Ożarowski ]
* New upstream release (Closes: #517735)
+ bump python-jinja minimum required version to 1.2
* Switch to python-support
* remove .pickle file in clean rule
* Standards-Version bumped to 3.8.1, no changes needed.
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Tue, 24 Mar 2009 21:26:26 +0100
sphinx (0.5.1-2) unstable; urgency=low
[ Piotr Ożarowski ]
* Upload to unstable
* Add debian/README.source file
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Sat, 07 Feb 2009 15:31:02 +0100
sphinx (0.5.1-1) experimental; urgency=low
[ Piotr Ożarowski ]
* New upstream release
+ Closes: #507647
+ upload to experimental due to Lenny freeze, to ease testing rev.
dependencies
* Add disable_ez_setup patch (and quilt to build dependencies) so that it
will not try to download stuff that is already installed on the system
* Add jsmath to suggested packages (Closes: #507691)
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Wed, 17 Dec 2008 18:42:59 +0100
sphinx (0.5-1) experimental; urgency=low
[ Sandro Tosi ]
* debian/control
- switch Vcs-Browser field to viewsvn
[ Piotr Ożarowski ]
* New upstream release (upload to experimental due to Lenny freeze, to ease
testing rev. dependencies)
* Add python (>=2.6) | python-simplejson and python-imaging to Recommends
* Remove .doctrees directory from docs/html
* Bump python-jinja's required version to >= 1.1
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Sun, 23 Nov 2008 21:49:50 +0100
sphinx (0.4.2-1) unstable; urgency=medium
* New upstream version. Fixes bug with broken show-inheritance in
automodule (Closes: #492732)
* Urgency medium, fixes RC bug.
* Using jQuery from Debian package, not bundled one:
- Added dependency on libjs-jquery,
- Replaced jquery.js by symlink to /usr/share/javascript/jquery/jquery.js
-- Mikhail Gusarov <dottedmag@dottedmag.net> Tue, 29 Jul 2008 17:55:27 +0700
sphinx (0.4.1-2) unstable; urgency=low
* debian/control: sphinx is not compatible with python 2.3, so
XS-Python-Version: >= 2.4 (Closes: #490537).
-- Mikhail Gusarov <dottedmag@dottedmag.net> Sat, 12 Jul 2008 20:13:12 +0700
sphinx (0.4.1-1) unstable; urgency=low
* New upstream version.
* All patches removed, applied upstream:
- Removed quilt build-dep
- Removed quilt patch/unpatch targets in debian/rules.
-- Mikhail Gusarov <dottedmag@dottedmag.net> Wed, 09 Jul 2008 02:57:25 +0700
sphinx (0.4-1) unstable; urgency=low
* New upstream version.
* Standards-Version bumped to 3.8.0, no changes needed.
* Vcs-{Svn,Browser} added.
-- Mikhail Gusarov <dottedmag@dottedmag.net> Mon, 23 Jun 2008 19:31:00 +0700
sphinx (0.3-2) unstable; urgency=medium
* Added missing python-docutils dependency (Closes: #482916).
-- Mikhail Gusarov <dottedmag@dottedmag.net> Mon, 26 May 2008 04:44:14 +0700
sphinx (0.3-1) unstable; urgency=low
* New upstream version.
* Fixed typo in package description (Closes: #479285).
* debhelper compatibility level bumped to 7:
- Updated debhelper dependency
- debian/rules: stamp files are removed automatically
* Removed empty debian/examples file.
-- Mikhail Gusarov <dottedmag@dottedmag.net> Sun, 04 May 2008 13:44:34 +0700
sphinx (0.2-1) unstable; urgency=low
* New upstream version.
* sphinx no longer bundles jinja in tarball:
- nuked jinja removal code from debian/rules,
- added build-depencency to python-jinja for documentation generation,
- updated debian/copyright, removing information about jinja copyrights
-- Mikhail Gusarov <dottedmag@dottedmag.net> Thu, 01 May 2008 11:00:18 +0700
sphinx (0.1.61950-1) unstable; urgency=low
* Initial release (Closes: #474782)
* Added patch disable-sphinx-web.patch, disabling installation of
sphinx-web, which is not yet ready.
* Added patch add_shebangs.patch, adding shebangs in sphinx-build and
sphinx-quickstart
* Added manpages for sphinx-build(1) and sphinx-quickstart(1).
* Removed bundled jinja instance.
-- Mikhail Gusarov <dottedmag@dottedmag.net> Sun, 20 Apr 2008 23:01:50 +0200
|