1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857
|
calibre (8.1.1+ds-1) unstable; urgency=medium
* New upstream version 8.1.1+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 28 Mar 2025 18:44:49 +0900
calibre (8.1.0+ds-1) unstable; urgency=medium
* New upstream version 8.1.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 28 Mar 2025 16:50:25 +0900
calibre (8.0.1+ds-1) unstable; urgency=medium
* New upstream version 8.0.1+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 21 Mar 2025 22:57:24 +0900
calibre (8.0.0+ds-1) unstable; urgency=medium
* New upstream version 8.0.0+ds
* Update podofo098 patches
* Rediff patches
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 21 Mar 2025 17:51:13 +0900
calibre (7.26.0+ds-4) unstable; urgency=medium
* Upgrade Debian policy to 4.7.2
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 04 Mar 2025 00:24:05 +0900
calibre (7.26.0+ds-3) unstable; urgency=medium
* Upgrade Debian policy standards to 4.7.1
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 23 Feb 2025 10:37:57 +0900
calibre (7.26.0+ds-2) unstable; urgency=medium
* Use "source:Version" instead of "Version" to get rid of rebuild action from
buildd.
Binary only rebuild by build adds postfix like "+b1".
If rebuild is only happen on amd64 platform, it breaks calibre installation
on non-amd64 platforms.
Use "source:Version" to use non-postfix version strings for python3-pyqt6.
* Cosmetic fix.
Use long options
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 15 Feb 2025 22:04:40 +0900
calibre (7.26.0+ds-1) unstable; urgency=medium
* New upstream version 7.26.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 14 Feb 2025 16:11:43 +0900
calibre (7.25.0+ds-1) unstable; urgency=medium
* New upstream version 7.25.0+ds
* Rediff patch
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 09 Feb 2025 19:06:09 +0900
calibre (7.24.0+ds-2) unstable; urgency=medium
* Use repacksuffix for watch file
* Add python3-six to work with some common plugins (Closes: #1093643)
Some common Calibre plugins like FanFicFare and CountPages requires
python3-six package.
* Cosmetic fix for debian/control
* Drop obsolete Lintian override: uses-deprecated-python-stdlib uu
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 22 Jan 2025 01:03:27 +0900
calibre (7.24.0+ds-1) unstable; urgency=medium
* New upstream version 7.24.0+ds
* Rediff patches.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 10 Jan 2025 23:17:38 +0900
calibre (7.23.0+ds-2) unstable; urgency=medium
* Rebuild with Python 3.13
Allow python3.13-default transition
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 08 Jan 2025 23:51:06 +0900
calibre (7.23.0+ds-1) unstable; urgency=medium
* New upstream version 7.23.0+ds
* Revert "Arch now packages kakasi"
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 20 Dec 2024 15:26:38 +0900
calibre (7.22.0+ds-2) unstable; urgency=medium
* Add SVG plugin to Qt image formats support (Closes: #1090197)
Qt6 SVG image format plugin was split out from qt6-svg package since
qt6-svg:6.7.2-5 .
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 17 Dec 2024 12:50:30 +0900
calibre (7.22.0+ds-1) unstable; urgency=medium
* Drop unused line from debian/not-installed
* New upstream version 7.22.0+ds
* Rediff patches
* Restore embedded Pykakasi.
Pykakasi is not available as Debian package yet
* Build/clean kakasi resource
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 30 Nov 2024 15:54:53 +0900
calibre (7.21.0+ds-2) unstable; urgency=medium
[ наб ]
* d/control: Build-Depends: remove dh-buildinfo (see #1068809)
[ YOKOTA Hiroshi ]
* Drop "dh_buildinfo" from debian/rules
"dh_buildinfo" is now obsolete.
See Debian bug #1068809
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068809
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 28 Nov 2024 07:53:52 +0900
calibre (7.21.0+ds-1) unstable; urgency=medium
* New upstream version 7.21.0+ds
* Rediff patches.
Drop reproducible/0014-Sort-object-lists-for-reproducible-build.patch:
fixed in upstream code
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 09 Nov 2024 00:11:52 +0900
calibre (7.20.0+ds-1) unstable; urgency=medium
* New upstream version 7.20.0+ds
* Rediff patches
* Add ffmpeg library to Build-Depends for sound code
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 19 Oct 2024 01:44:44 +0900
calibre (7.19.0+ds-2) unstable; urgency=medium
* Drop obsolete module from dependency liist (Closes: #1083330)
"pkg_resources" module is not used since:
https://github.com/kovidgoyal/calibre/commit/c4a5afcf24769ec9adde99bc80f1ed33c9ee5e78
* Remove obsolete older python3-lxml usage
"python3-lxml-html-clean" module is already available in trixie.
* Rediff patches: done Qt 6.7 migration.
Drop 0063-Back-port-to-Qt-6.6-QAnyStringView.patch: done Qt 6.7 migration
Drop 0064-Back-port-to-Qt-6.6-QNetworkAccessManager-get.patch: done Qt
6.7 migration
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 06 Oct 2024 06:56:53 +0900
calibre (7.19.0+ds-1) unstable; urgency=medium
* New upstream version 7.19.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 27 Sep 2024 16:09:38 +0900
calibre (7.18.0+ds-1) unstable; urgency=medium
* New upstream version 7.18.0+ds
* Rediff patches
* Fix comment
* Add required QtMultimedia module
* Piper TTS is not available for Debian yet.
Piper TTS backend is automatically disabled when Piper executable is
not found. (TTS: Text to Speech)
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 13 Sep 2024 20:49:01 +0900
calibre (7.17.0+ds-4) unstable; urgency=medium
* Exclude failed network test
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 24 Aug 2024 21:56:17 +0900
calibre (7.17.0+ds-3) unstable; urgency=medium
* No need to forward patches to upstream.
They are Debian specfic patches.
* Network connection is unreliable on buildd
* Drop obsolete test name
* Enable all tests while in UNRELEASED
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 24 Aug 2024 17:22:30 +0900
calibre (7.17.0+ds-2) unstable; urgency=medium
* Split fragile test for arm64 build
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 24 Aug 2024 14:22:26 +0900
calibre (7.17.0+ds-1) unstable; urgency=medium
* New upstream version 7.17.0+ds
* Rediff patches.
Drop upstream/0063-Fix-2076515-calibredb-list-command-ignores-fields-
op.patch: Upstream fixed
* Back port to Qt 6.6 (QAnyStringView)
* Back port to Qt 6.6 (QNetworkAccessManager::get())
* Add QTextToSpeech module
* Add speech engine plugin for speech system
* Drop obsolete hack in build time test
* Sort package list
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 24 Aug 2024 03:38:36 +0900
calibre (7.16.0+ds-3) unstable; urgency=medium
* Fix #2076515 [calibredb list command ignores fields
option](https://bugs.launchpad.net/calibre/+bug/2076515)
(Closes: #1079277)
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 22 Aug 2024 20:25:39 +0900
calibre (7.16.0+ds-2) unstable; urgency=medium
[ Nicholas D Steeves ]
* Add python3-requests-toolbelt to recommends; it was previously
transitively fulfilled, and without it plugins such as FanFicFare have
begun to fail. Thanks to Beatrice Torracca for the report and
workaround. (Closes: #1078080)
[ YOKOTA Hiroshi ]
* Sort dependency lines
* Add python3-request-toolbelt to recommendation list
python3-request-toolbelt was pulled by python3-dnspython in previous
version, but dropped since python3-dnspython 2.5.0~rc1-1.
Some Calibre plugins like FanFicFare held older request-toolbelt
module inside, and it breaks Debian Calibre by obsolete dependency
problems.
Install Debian package python3-request-toolbelt will solve the problem.
See also:
* Import error when system python's urllib3 is version 2
https://github.com/JimmXinu/FanFicFare/issues/987
* UI not loading after updating to Ubuntu 24.04
https://github.com/JimmXinu/FanFicFare/issues/1079
* Update Lintian overrides for groff warning messages
* Add Lintian overrides
"uu" module is deprecated, but "uuid" module is not deprecated
* Unify Lintian 0.117 and 0.118 message
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 09 Aug 2024 01:08:41 +0900
calibre (7.16.0+ds-1) unstable; urgency=medium
* Forward a patch to upstream
* New upstream version 7.16.0+ds
* Rediff patches.
Drop 0062-Fix-LRF-viewer.patch: Applied by upstream
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 02 Aug 2024 20:06:25 +0900
calibre (7.15.0+ds-1) unstable; urgency=medium
* calibre: fix appstream ID warning (Closes: #1076311)
* calibre: Please announce supported hardware using AppStream
(Closes: #838069)
* Fix LRF viewer
* Typo fix
* Fixup AppStream patches
* Marge AppStream patches
* Use more better AppStream IDs
* "-" is deprecated in AppStream ID
* Take AppStream IDs from Flathub entry
- https://github.com/flathub/com.calibre_ebook.calibre
* Rediff patches
* "lrfviewer" doesn't has AppStream meta info file
* New upstream version 7.15.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 19 Jul 2024 22:25:38 +0900
calibre (7.14.0+ds-1) unstable; urgency=medium
* Forward patches to upstream
* New upstream version 7.14.0+ds
* Rediff patches.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 12 Jul 2024 15:41:57 +0900
calibre (7.13.0+ds-2) unstable; urgency=medium
* Fix regexp escape sequence syntax warning (Closes: #1074559)
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 01 Jul 2024 19:59:43 +0900
calibre (7.13.0+ds-1) unstable; urgency=medium
* New upstream version 7.13.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 28 Jun 2024 14:18:27 +0900
calibre (7.12.0+ds-3) unstable; urgency=medium
* Rebuild with Python 3.12.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 27 Jun 2024 04:19:34 +0900
calibre (7.12.0+ds-2) unstable; urgency=medium
* python3-pyzstd package is now available from Debian
* Enable Qt 6.6 features.
Qt 6.6 is now available on Debian
* Renumber patches
* Qt recommends UTF-8 locale.
Use "C.UTF-8" for locale
> Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not
> UTF-8.
> Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
> If this causes problems, reconfigure your locale. See the locale(1)
> manual for more information.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 09 Jun 2024 02:21:12 +0900
calibre (7.12.0+ds-1) unstable; urgency=medium
* New upstream version 7.12.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 01 Jun 2024 21:21:51 +0900
calibre (7.11.0+ds-1) unstable; urgency=medium
* New upstream version 7.11.0+ds
* Rediff patches
* IPv6 patch was marged into upstream since Calibre 7.2.0
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 24 May 2024 19:10:33 +0900
calibre (7.10.0+ds-1) unstable; urgency=medium
* Use Emacs automatic edit mode
* Revert "Drop armhf from autopkgtest architecture list for 64bit time_t
transition workaround"
This reverts commit bc38757b07c1884d55c401487684cd251eba518f.
* New upstream version 7.10.0+ds
* Rediff patches.
Drop 0062-Add-space-to-help-break-lines.patch: Upstream fixed
Drop 0061-Use-bold-font-for-man-pages.patch: Upstream fixed
* Remove unused sed script.
This fix script was no more needed because the problem was fixed by
upstream.
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 03 May 2024 21:13:46 +0900
calibre (7.9.0+ds-2) unstable; urgency=medium
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 19 Apr 2024 15:07:09 +0900
calibre (7.9.0+ds-1) unstable; urgency=medium
* Restore Debian source postfix
* New upstream version 7.9.0+ds
* Rediff patches
* No tab in license text (routine-update)
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 19 Apr 2024 13:33:08 +0900
calibre (7.8.0+ds2-1) unstable; urgency=medium
* Re-import embedded MathJax again (Closes: #1068765)
Debian MathJax v3 requires nodejs.
It's too big to depends.
* Update Lintian overrides
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 11 Apr 2024 22:35:59 +0900
calibre (7.8.0+ds1-2) unstable; urgency=medium
* Drop unused Lintian-overrides.
* Drop unused line from copyright file.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 10 Apr 2024 14:49:27 +0900
calibre (7.8.0+ds1-1) unstable; urgency=medium
* New upstream version 7.8.0+ds
* Add PoDoFo 0.9.8 patch
* Rediff patches
* Renumber patches
* "lxml.html.clean" module was moved to another package.
See also Debian bug 1068349:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1068349
* Add backward compatibility for lxml-html-clean
* Upgrade Debian standards
* Add lxml-html-clean to dependency list
* Drop unused Lintian-overrides
* Remove empty directory.
Lintian fix
* Exclude D-Bus test where on build server
* Drop unused line
* MathJax v3 was provided by node-mathjax-full package
* Drop embedded MathJax
* Re-import upstream code without MathJax
* New upstream version 7.8.0+ds1
* Drop unused Lintian overrides
* Add keywords to desktop application entry file
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 10 Apr 2024 00:11:20 +0900
calibre (7.7.0+ds-2) unstable; urgency=medium
* Drop armhf from autopkgtest architecture list for 64bit time_t transition
workaround.
armhf test fails on testing distribution.
It because testing is not really supports 64bit time_t until testing
migration will done.
Enable tests again when 64bit time_t is complete.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 25 Mar 2024 16:51:18 +0900
calibre (7.7.0+ds-1) unstable; urgency=medium
* New upstream version 7.7.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 14 Mar 2024 22:38:46 +0900
calibre (7.6.0+ds-1) unstable; urgency=medium
* New upstream version 7.6.0+ds
* Rediff patches.
Drop 0010-description-tag-can-t-have-lang-attributes.patch: Applied by
upstream
Drop 0064-Fix-book-store-chooser-error.patch: Applied by upstream
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 01 Mar 2024 16:44:39 +0900
calibre (7.5.1+ds-3) unstable; urgency=medium
* Drop qt6-wayland from Recommends section
qt6-wayland was recommended since
Git 1c1514515d3ae6bbf2b276e09a4fac535acb3478 ,
because qt6-wayland was not installed by qt6 dependency.
But qt6-wayland is now recommended by libqtgui6 (>= 6.4.2+dfsg-13).
Drop redundant words to simplify Recommends list.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 24 Feb 2024 11:26:17 +0900
calibre (7.5.1+ds-2) unstable; urgency=medium
* Fix book store chooser error
* Rediff patches
* Rediff patches.
Forward a patch to upstream
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 24 Feb 2024 04:40:37 +0900
calibre (7.5.1+ds-1) unstable; urgency=medium
* New upstream version 7.5.0+ds
* Rediff patches
* New upstream version 7.5.1+ds
* Rediff patches
* Some color scheme functions are not available in Qt 6.4
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 09 Feb 2024 20:22:34 +0900
calibre (7.4.0+ds-1) unstable; urgency=medium
* New upstream version 7.4.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 19 Jan 2024 19:56:47 +0900
calibre (7.3.0+ds-1) unstable; urgency=medium
* New upstream version 7.3.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 05 Jan 2024 17:10:42 +0900
calibre (7.2.0+ds-1) unstable; urgency=medium
* New upstream version 7.2.0+ds
* Rediff patches.
Drop upstream-applied patches
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 15 Dec 2023 19:08:37 +0900
calibre (7.1.0+ds-2) unstable; urgency=medium
* Skip a full text search test for broken SQLite version 3.44.x.
It fixes FTBFS.
* Forward patches to upstream
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 06 Dec 2023 22:46:11 +0900
calibre (7.1.0+ds-1) unstable; urgency=medium
* Refactor IPv6 handling
* Forward IPv6 patchs to upstream
* Check '::' really supports both IPv6 and IPv4
* Improve/bugfix IPv6/v4 dual stack patches
* Use canonical method to invoke sip-build tool
* New upstream version 7.1.0+ds
* Rediff patches
* Forward patches to upstream
* Rediff patches.
Fixup IPv6 bug in patch file
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 24 Nov 2023 22:27:25 +0900
calibre (7.0.0+ds-1) unstable; urgency=medium
* Rediff patches
* Use GitHub API to simplify watch file
* New upstream version 7.0.0+ds
* Rediff patches.
Drop podofo098/0062-Really-choose-oldest-file-modification-time-in-
targe.patch: forward to upstream
* Renumber patches
* Add python3-xxhash to dependency list
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 17 Nov 2023 20:16:53 +0900
calibre (6.29.0+ds-1) unstable; urgency=medium
* New upstream version 6.29.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 20 Oct 2023 21:29:03 +0900
calibre (6.28.1+ds-1) unstable; urgency=medium
* New upstream version 6.28.1+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 10 Oct 2023 15:19:27 +0900
calibre (6.28.0+ds-1) unstable; urgency=medium
* New upstream version 6.28.0+ds
* Rediff patches.
Drop 0010-Drop-python-zeroconf-monkey-patch.patch: Fixed in upstream
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 06 Oct 2023 21:34:39 +0900
calibre (6.27.0+ds-1) unstable; urgency=medium
* New upstream version 6.27.0+ds
* Rediff patches
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 25 Sep 2023 07:45:50 +0900
calibre (6.26.0+ds-1) unstable; urgency=medium
* Fix typo in changelog
* New upstream version 6.26.0+ds
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 08 Sep 2023 18:06:32 +0900
calibre (6.25.0+ds-1) unstable; urgency=medium
* New upstream version 6.25.0+ds
* Rediff patches
* Lintian fix.
Current man groff only offers R, I, B, BI fonts.
See /usr/share/groff/current/font/devutf8/* and groff_font(5)
man page for available fonts.
* Rediff patches.
Update man pages patch
* Drop unused license for Liberation fonts
* Add space to help break lines
* Remove unused lintian overrides.
Added a Debian patch to break long lines
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 19 Aug 2023 13:23:30 +0900
calibre (6.24.0+ds-1) unstable; urgency=medium
* Really choose oldest file modification time in target files
* Remove some pre-built files that older than source (Closes: #1043662)
This fix is for Debian Policy section 4.9 (clean target).
* New upstream version 6.24.0+ds
* Build GUI files before test.
Use "$(SETUP) gui --clean" to remove gui files
* Clean compiled files before remove generated sources
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 14 Aug 2023 20:33:10 +0900
calibre (6.24.0-2) unstable; urgency=medium
* Drop python-zeroconf monkey patch.
This monkey patch breaks python3-zeroconf 0.74.0 .
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 06 Aug 2023 03:53:08 +0900
calibre (6.24.0-1) unstable; urgency=medium
* Revert "Remove obsolete Lintian overrides"
This reverts commit ee112a36258caa0253d8dab8b3bcf539b9804195.
* New upstream version 6.24.0
* Rediff patches
* Update comments
* Disable a test that takes too match time
* Add lintian override string to simler message
* Allow stderr output to pass a smoke test
python3-apsw 3.42.0.1-1 always output warning message to stdout.
This breaks autopkgtest.
```
$ python3
Python 3.11.4 (main, Jun 7 2023, 10:13:09) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import apsw
Missing sys.apsw_fault_inject_control
>>>
```
This message comes from src/apsw.c:APSW_FaultInjectControl()
in python-apsw source code.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 05 Aug 2023 20:04:38 +0900
calibre (6.23.0-2) unstable; urgency=medium
* Disable fragile test
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 14 Jul 2023 22:31:50 +0900
calibre (6.23.0-1) unstable; urgency=medium
* New upstream version 6.23.0
* Revert "Use bundled Liberation fonts"
This reverts commit acaada1a0c47887746de0d18981a059e6b27630f.
* Rediff patches
* Renumber patches
* Remove obsolete Lintian overrides
* Add man page fixup tool.
Font name "C" is wrong.
Use "CR" for constant-width font.
* Use "CR" for constant-width font
* Add Lintian overrides
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 14 Jul 2023 19:38:34 +0900
calibre (6.22.0-1) unstable; urgency=medium
* New upstream version 6.22.0
* Use bundled Liberation fonts.
Use bundled Liberation fonts to get rid of testing migration
stall of fonts-liberation package.
* Rediff patches.
Update podofo098 patches
* Renumber patches
* No need to forward to upstream podofo098 patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 01 Jul 2023 13:03:54 +0900
calibre (6.21.0-2) unstable; urgency=medium
* Accept fonts-liberation transition
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 24 Jun 2023 12:19:53 +0900
calibre (6.21.0-1) unstable; urgency=medium
* New upstream version 6.21.0
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 13 Jun 2023 16:16:56 +0900
calibre (6.20.0-1) unstable; urgency=medium
* Rediff patches
* New upstream version 6.20.0
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 09 Jun 2023 15:07:36 +0900
calibre (6.19.1-1) unstable; urgency=medium
* New upstream version 6.19.1
* Rediff patches
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 30 May 2023 00:40:35 +0900
calibre (6.18.1-3) unstable; urgency=medium
* Don't extend timeout-time in hangup-ed worker for shutdown test
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 27 May 2023 21:47:22 +0900
calibre (6.18.1-2) unstable; urgency=medium
* No need to forward Debian specific patch
* Split IPv6 patches into "ipv6" topic
* Split reproducible build patches into "reproducible" topic
* Split hardening patches into "hardening" topic
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 27 May 2023 17:08:28 +0900
calibre (6.18.1-1) unstable; urgency=medium
* New upstream version 6.18.0
* Rediff patches
* Restore PoDoFo 0.9.8 support.
PoDoFo 0.10 is not available for Debian yet.
* New upstream version 6.18.1
* Rediff patches
* Typo fix
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 27 May 2023 14:11:24 +0900
calibre (6.17.0-1) unstable; urgency=medium
* New upstream version 6.17.0
* Rediff patches.
Drop 0026-TypeError-HistoryLineEdit.__init__-got-an-unexpected.patch:
patch contents already upstream
* Use "fonttools" to make subsetting fonts
* Use "cwebp" for WebP images
* Update copyright info
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 28 Apr 2023 23:46:58 +0900
calibre (6.16.0-1) unstable; urgency=medium
* New upstream version 6.16.0
* Rediff patches.
Drop 0027-TypeError-on-opening-Preferences-Closes-1034089.patch
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 21 Apr 2023 20:19:46 +0900
calibre (6.15.1-4) unstable; urgency=medium
* TypeError on opening Preferences (Closes: #1034089)
* Reorder patches
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 09 Apr 2023 15:38:56 +0900
calibre (6.15.1-3) unstable; urgency=medium
* Merge "arch" and "indep" target.
Test code requires binary modules
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 09 Apr 2023 13:05:56 +0900
calibre (6.15.1-2) unstable; urgency=medium
* Add more Lintian hints
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 09 Apr 2023 11:41:17 +0900
calibre (6.15.1-1) unstable; urgency=medium
* Use relative path to deterministic build
* Use resources from upstream source
* Save and restore original font files
* Restore privious version patch
* Use bundled MathJax 3.
Use bundled MathJax 3 because Debian still uses MathJax 2.
* Rediff patches.
Drop 0033-Remove-date-from-description-for-deterministic-build.patch
Drop 0031-Sort-lines-for-reproducible-build.patch
Drop 0027-Use-text-file-instead-of-BZip2-compressed-file.patch
Drop 0025-Don-t-download-from-CA-certificates.patch
Drop 0024-Use-downloaded-static-file-for-reproducible-build.patch
Drop 0032-Use-SOURCE_DATE_EPOCH-for-deterministic-build.patch
Drop 0034-Use-relative-path-to-deterministic-build.patch
Drop 0026-Don-t-download-translation-files-from-GitHub.patch
* User-Agent data is now bundled into upstream tarball
* New upstream version 6.15.0+repack
* New upstream version 6.15.1
* Rediff patches
* Clean generated binary plugins
* Add ignore list
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 09 Apr 2023 10:03:43 +0900
calibre (6.15.0-1) unstable; urgency=medium
* New upstream version 6.15.0
* Update User-Agent data
* Rediff patches
* Use "zstd" instead of "pyzstd"
Build script checks Qt supports Zstandard through Python module.
* Rediff patches.
Add 0030-Extend-timeout-limit-to-pass-test_backup-test.patch
Add 0031-Sort-lines-for-reproducible-build.patch
Add 0029-Use-zstd-module-instead-of-pyzstd.patch
Add 0032-Use-SOURCE_DATE_EPOCH-for-deterministic-build.patch
* Remove date from description for deterministic build
* CA certs file is now included in upstream source
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 08 Apr 2023 09:33:33 +0900
calibre (6.14.1-1) unstable; urgency=medium
* New upstream version 6.14.1
* Update User-Agent data
* Copy missing resources only
"resources/localization/website-languages.txt" requires these missing
resources.
* Update clean target to remove copied files
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 18 Mar 2023 03:56:25 +0900
calibre (6.14.0-1) unstable; urgency=medium
* Update User-Agent data
* New upstream version 6.14.0
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 11 Mar 2023 16:17:20 +0900
calibre (6.13.0+repack-2) unstable; urgency=medium
* Update lintian overrides
* Use explicitly named parameter to avoid TypeError (Closes: #1032095)
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 28 Feb 2023 23:47:30 +0900
calibre (6.13.0+repack-1) unstable; urgency=medium
* Many requied pre-build resource was dropped from upstream tarball
since Calibre 6.12.0. Build them by myself.
* Use "multiple upstream tarball" (MUT) style source code layout.
* QtWebEngine is frigile on armhf platform. Split build process into
architecture dependent and independent part to minimize QtWebEngine
usage.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 26 Feb 2023 18:06:34 +0900
calibre (6.13.0+repack-1~exp2) experimental; urgency=medium
* Split architecture dependent part to pass armhf build
* Add blhc note for arch build
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 26 Feb 2023 15:00:15 +0900
calibre (6.13.0+repack-1~exp1) experimental; urgency=medium
* Revert "Add special hack for armhf build"
This reverts commit aacdebdfeefce479f267d973619190cacaa29d3d.
This fix is not effective.
* New upstream version 6.13.0+repack
* Use multiple upstream tarball style for source code layout.
Some buildd was not connected to external Internet.
Buildd requires to build without Internet connection.
* Remove unused files
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 26 Feb 2023 09:12:43 +0900
calibre (6.13.0-1~exp3) experimental; urgency=medium
* Add special hack for armhf build
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 22 Feb 2023 12:47:05 +0900
calibre (6.13.0-1~exp2) experimental; urgency=medium
* Check downloaded files with SHA256
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 22 Feb 2023 08:42:38 +0900
calibre (6.13.0-1~exp1) experimental; urgency=medium
* Excluded files are now dropped from upstream tar ball.
So, there is no need to use "+dfsg" fixup.
* New upstream version 6.12.0
* New upstream version 6.13.0
* Rediff patches
* Build resources
* Build all resources
* Move MathJax src location
* Add hyphenation resource downloader
* Use downloaded resource for build
* Build all resources at once
* Compile language resources
* Build manual
* Use "translations" target to compile all translation targets
* Add upstream hyphenation source file
* Update file path
* Build ISO639 file
* Build ISO3166 file
* Add manual builder tool to build-depends
* Add font links to build PDF file.
XeLaTeX needs font links to build manuals.
* Build kakasi dictionary for Japanese manuals
* Build User-Agent list
* Use Debian specific CA certs for calibre content server
* Add clean target job
* Add comments
* Add recent User-Agent downloader for deterministic build
* Add recent user agent data
* Use downloaded static file for reproducible build
* Use bootstrap target
* Add patches.
Use specific commit ID files to deterministic build
* Add translation downloader
* Extract translation resource
* No more needs to build manuals
* Update clean target
* Drop big blob files from source tree.
These big blob files are update often, and this harms Git repository.
Download them in build time.
* Prefer text files instead of binary file
* Extract BZip2 file
* Use text file instead of BZip2 compressed file
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 20 Feb 2023 21:29:34 +0900
calibre (6.11.0+dfsg-2) unstable; urgency=medium
* Debian Calibre 6.12 package will skip because of upstream Calibre 6.12
source tar ball lacks many pre-built generated source codes.
[ Adrian Bunk ]
* Restore the certgen plugin.
OpenSSL is now considered a system library in Debian:
http://meetbot.debian.net/debian-ftp/2020/debian-ftp.2020-03-13-20.02.html
[ YOKOTA Hiroshi ]
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 15 Feb 2023 12:24:32 +0900
calibre (6.11.0+dfsg-1) unstable; urgency=medium
* Update lintian overrides for CSS styles lint library
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 10 Jan 2023 22:40:22 +0900
calibre (6.11.0+dfsg-1~exp1) experimental; urgency=medium
* New upstream version 6.11.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 07 Jan 2023 20:35:19 +0900
calibre (6.10.0+dfsg-5) unstable; urgency=medium
* Rebuild with Python 3.11 as default
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 05 Jan 2023 00:22:03 +0900
calibre (6.10.0+dfsg-4) unstable; urgency=medium
* Extend timeout limit in test code
* Rediff patches
* Reorder patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 02 Jan 2023 11:46:59 +0900
calibre (6.10.0+dfsg-3) unstable; urgency=medium
* Remove (now) unnecessary dependency on qt6-qpa-plugins (Closes: #1026954)
Remove the hack that added by Debian bug 1014953.
"qt6-qpa-plugins" is now depended by "qt6-base".
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 25 Dec 2022 15:05:30 +0900
calibre (6.10.0+dfsg-2) unstable; urgency=medium
* Upgrade Debian standards
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 18 Dec 2022 22:16:01 +0900
calibre (6.10.0+dfsg-1) unstable; urgency=medium
* Sort files and directories for reproducible build
* Reorder patches
* Renumber patches
* New upstream version 6.10.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 16 Dec 2022 15:08:51 +0900
calibre (6.9.0+dfsg-1) unstable; urgency=medium
* New upstream version 6.9.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 25 Nov 2022 15:18:20 +0900
calibre (6.8.0+dfsg-1) unstable; urgency=medium
* New upstream version 6.8.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 04 Nov 2022 13:23:45 +0900
calibre (6.7.1+dfsg-6) unstable; urgency=medium
* Revert test inhibitor for armhf.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 01 Nov 2022 08:21:37 +0900
calibre (6.7.1+dfsg-5) unstable; urgency=medium
* Add missing PyQt6.uic module for runtime (Closes: 1023163)
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 01 Nov 2022 00:35:48 +0900
calibre (6.7.1+dfsg-4) unstable; urgency=medium
* Fixup test disabler code
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 29 Oct 2022 22:16:34 +0900
calibre (6.7.1+dfsg-3) unstable; urgency=medium
* Disable test when build on some specific type host.
They causes "Illegal instruction" error and prevents from
testing migration.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 29 Oct 2022 14:16:42 +0900
calibre (6.7.1+dfsg-2) unstable; urgency=medium
[ Nicholas D Steeves ]
* Declare minimum required cmake version to solve FTBFS when
backporting.
[ YOKOTA Hiroshi ]
* Add another blhc(1) false positive data
* Add hardening options from CPPFLAGS
* Add FAQ document for IPv6 (Closes: #1021175)
* Use IPv6 address for content server default value
* IPv6 requires [] for host:port style notation
* Rediff patches.
Use socket class to check IPv6 address
* Rediff patches
socket.error is deprecated
* Keep original IP address if the IP address is not in address map
* Return None if IP address string is None
* Add [] for IPv6 address in log file
* Reorder patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 23 Oct 2022 16:01:26 +0900
calibre (6.7.1+dfsg-1) unstable; urgency=medium
* New upstream version 6.7.1+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 15 Oct 2022 23:44:42 +0900
calibre (6.7.0+dfsg-1) unstable; urgency=medium
* Use "rsvg-convert" to build PNG icons from SVG images
* New upstream version 6.7.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 14 Oct 2022 17:03:02 +0900
calibre (6.6.1+dfsg-2) unstable; urgency=medium
* Lintian fix.
Fix obsolete dependency
* Sort directory and file names to reproducible build
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 01 Oct 2022 16:16:21 +0900
calibre (6.6.1+dfsg-1) unstable; urgency=medium
* New upstream version 6.6.1+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 01 Oct 2022 14:42:23 +0900
calibre (6.6.0+dfsg-1) unstable; urgency=medium
* Try to fix reproducible build on 32bit architectures (i386/armhf)
* New upstream version 6.6.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 30 Sep 2022 15:04:47 +0900
calibre (6.5.0+dfsg-2) unstable; urgency=medium
* Use new debhelper syntax
* Update watch line for uscan(1)
GitHub now uses client side JavaScript to build download URL
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 21 Sep 2022 21:11:34 +0900
calibre (6.5.0+dfsg-1) unstable; urgency=medium
* New upstream version 6.5.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 16 Sep 2022 20:38:10 +0900
calibre (6.4.0+dfsg-1) unstable; urgency=medium
* New upstream version 6.4.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 02 Sep 2022 22:42:05 +0900
calibre (6.3.0+dfsg-3) unstable; urgency=medium
* Revert "Add "Conflicts" for incompatible update between Calibre v5 and v6"
This reverts commit 8b2c70ce08765a266345c73180f8e5098f150850.
This fix is not effective.
* Revert "Drop some architectures which not supported by Qt6"
This reverts commit 45a1068be0924bfe3b57c6df1e24d71e5f2b6eb7.
Use RM request for "ftp.debian.org" package to remove obsolete MIPS build.
See also bug 1018067.
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 27 Aug 2022 22:22:05 +0900
calibre (6.3.0+dfsg-2) unstable; urgency=medium
* "Pre-Depends" is not recommended for most use case
* Add "Conflicts" for incompatible update between Calibre v5 and v6.
This might helps to drop MIPS build.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 18 Aug 2022 21:40:40 +0900
calibre (6.3.0+dfsg-1) unstable; urgency=medium
* New upstream version 6.3.0+dfsg
* Rediff patches
* Add required module: PyQt6.QtQuick
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 13 Aug 2022 00:28:03 +0900
calibre (6.2.1+dfsg-7) unstable; urgency=medium
* Lintian fix.
Remove unused line
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 08 Aug 2022 05:25:59 +0900
calibre (6.2.1+dfsg-6) unstable; urgency=medium
* Remove architecture hack.
They are not effective
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 07 Aug 2022 20:08:58 +0900
calibre (6.2.1+dfsg-5) unstable; urgency=medium
* Lintian fix
* Try to drop MIPS build to testing migration
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 07 Aug 2022 11:42:16 +0900
calibre (6.2.1+dfsg-4) unstable; urgency=medium
* Debcheck fix
* Debcheck fix.
Move python3-unrardll to calibre-bin package because this module
only available for amd64.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 01 Aug 2022 12:07:00 +0900
calibre (6.2.1+dfsg-3) unstable; urgency=medium
* Add lintian hint file
* Update lintian overrides hint file
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 31 Jul 2022 11:52:05 +0900
calibre (6.2.1+dfsg-2) unstable; urgency=medium
* Add hints to remove MIPS/MIPS64 build from testing suite
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 31 Jul 2022 08:50:49 +0900
calibre (6.2.1+dfsg-1) unstable; urgency=medium
* Use debian/control style "Architecture:" syntax
* New upstream version 6.2.1+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 30 Jul 2022 11:53:45 +0900
calibre (6.2.0+dfsg-1) unstable; urgency=medium
* New upstream version 6.2.0+dfsg
* Upstream move to uChardet from cChardet/Chardet
* Rediff patches.
Drop 0008-Restore-chardet-module-support.patch: Upstream now uses uChardet
* Rediff patches.
Drop 0014-Extend-thread-wait-time-to-pass-test.patch: Fixed by upstream
* Drop MIPS build because Qt6 dose not support them
* Drop some architectures which not supported by Qt6
* Recommends Wayland QPA plugin for Wayland only machines (Closes: #1016214)
Move Wayland QPA plugin to "Recommends" section from "Suggests".
Some modern style machines drops Xwayland support.
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 30 Jul 2022 02:18:02 +0900
calibre (6.1.0+dfsg-1) unstable; urgency=medium
* New upstream version 6.1.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 16 Jul 2022 17:22:46 +0900
calibre (6.0.0+dfsg-2) unstable; urgency=medium
* Add QPA plugins (Closes: #1014953)
These plugins are required for GUI.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 15 Jul 2022 22:02:26 +0900
calibre (6.0.0+dfsg-1) unstable; urgency=medium
* Drop "xauth" because "xvfb" is already dropped
* Extend timeout limit
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 15 Jul 2022 08:09:30 +0900
calibre (6.0.0+dfsg-1~exp9) experimental; urgency=medium
* Add dom_load test to disabled test list
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 13 Jul 2022 17:19:09 +0900
calibre (6.0.0+dfsg-1~exp8) experimental; urgency=medium
* Disable Qt test on armhf and i386
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 13 Jul 2022 16:32:19 +0900
calibre (6.0.0+dfsg-1~exp7) experimental; urgency=medium
* Make Qt resource compiler as deterministic.
* Reset disabled test list for major version update
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 13 Jul 2022 15:28:57 +0900
calibre (6.0.0+dfsg-1~exp6) experimental; urgency=medium
* Experimentally drop Xvfb usage.
Try to fix armhf test fail
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 13 Jul 2022 09:48:30 +0900
calibre (6.0.0+dfsg-1~exp5) experimental; urgency=medium
* Disable failed test
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 12 Jul 2022 13:52:20 +0900
calibre (6.0.0+dfsg-1~exp4) experimental; urgency=medium
* Use Qt6 based tool name
* Generated file format was changed in pyuic6
* Disable failed test
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 12 Jul 2022 12:16:41 +0900
calibre (6.0.0+dfsg-1~exp3) experimental; urgency=medium
* Use Qt6 based plugins
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 12 Jul 2022 10:43:06 +0900
calibre (6.0.0+dfsg-1~exp2) experimental; urgency=medium
* Use python3-pyqt6
* Drop unused line for qtchooser
* Separate fragile test
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 12 Jul 2022 10:01:08 +0900
calibre (6.0.0+dfsg-1~exp1) experimental; urgency=medium
* New upstream version 6.0.0+dfsg
* Move to PyQt6
* Rediff patches
* Rediff patches.
Change SIP search path to use PyQt6
* Debian uses "pycryptodomex" instead of "prcryptodome"
* Rediff patches.
Add 0017-py7zr-uses-PyCryptodome.patch: py7zr uses PyCryptodome
Drop 0008-dont-use-python-crypto.patch: py7zr uses PyCryptodome
* Add PyCryptodome to dependency list
* Rediff patches
* Add libqt6webenginecore6-bin for "QtWebEngineProcess"
* Remove unneeded dependency
* Use cmake to build binary plugins
* Display build commands while CMake build
* Renumber patches
* qtchooser is obsolete since Qt6
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 12 Jul 2022 07:53:52 +0900
calibre (5.44.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.44.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 17 Jun 2022 21:46:39 +0900
calibre (5.43.0+dfsg-1) unstable; urgency=medium
* Upgrade Debian standards version
* New upstream version 5.43.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 28 May 2022 08:53:00 +0900
calibre (5.42.0+dfsg-1) unstable; urgency=medium
[ uvok cheetah and Nicholas D Steeves ]
* Specify version of python3-feedparser. Depend on version 6.0.8-1~ (sid
or backports).
[ Nicholas D Steeves ]
* Fulfill Norbert Preining's request to be dropped from Uploaders, and make
YOKOTA Hiroshi the primary Uploader.
[ YOKOTA Hiroshi ]
* New upstream version 5.42.0+dfsg
* Rediff patches
* Typo fix
* Python 3.10+ support for Lintian overrides
* Update Lintian overrides
* Update Lintian overrides for source code
* Rediff patches.
Drop 0006-BTS-944875-html_writer.patch:
This patch is obsolete.
QWebEngineProfile::setUrlRequestInterceptor() is available since Qt 5.13.
Current stable distribution "bullseye" uses Qt 5.15.2.
* Renumber patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 04 May 2022 02:08:43 +0900
calibre (5.41.0+dfsg-2) unstable; urgency=medium
[ Nicholas D Steeves ]
* Calibre >= 5.40 FTBFS due to failed tests with html5-parser 0.4.9, so
qualify the python3-html5-parser dep with (>=0.4.10-1~).
[ YOKOTA Hiroshi ]
* Disable failed PyQt test on MIPS and MIPS64 (Closes: #1010185).
-- Nicholas D Steeves <sten@debian.org> Mon, 25 Apr 2022 20:27:04 -0400
calibre (5.41.0+dfsg-1) unstable; urgency=medium
* Update changelog
* New upstream version 5.41.0+dfsg
* Rediff patches
* ImageMagick is unused since Calibre 2.57.0.
ImageMagick was replaced by Qt image library.
Other image helper programs are described in src/calibre/utils/img.py .
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 22 Apr 2022 20:53:51 +0900
calibre (5.40.0+dfsg-2) unstable; urgency=medium
* Drop unused dependency package to avoid RC bug 1009469
python3-cssutils is replaced by python3-css-parser since Calibre 3.37.0
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 21 Apr 2022 01:34:34 +0900
calibre (5.40.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.40.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 01 Apr 2022 20:54:26 +0900
calibre (5.39.1+dfsg-2) unstable; urgency=medium
* Rebuild with Python 3.10
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 29 Mar 2022 21:23:40 +0900
calibre (5.39.1+dfsg-1) unstable; urgency=medium
* New upstream version 5.39.1+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 21 Mar 2022 01:21:46 +0900
calibre (5.39.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.39.0+dfsg
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 18 Mar 2022 20:51:12 +0900
calibre (5.38.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.38.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 05 Mar 2022 00:00:08 +0900
calibre (5.37.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.37.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 18 Feb 2022 23:22:02 +0900
calibre (5.36.0+dfsg-1) unstable; urgency=medium
* Revert "Remove "epubcheck" validation from autopkgtest"
"epubcheck" is back alive with new maintainer.
This reverts commit 91fdfc7eaf77976910b4549bea5959db35fa3742.
* Simplify dependency list
"epubcheck" now depends on "default-jre"
* New upstream version 5.36.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 04 Feb 2022 23:11:57 +0900
calibre (5.35.0+dfsg-3) unstable; urgency=medium
* Use "py3versions -d" to use versioned Python.
Import from Ubuntu fixup patch by Graham Inggs <ginggs@ubuntu.com> .
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 26 Jan 2022 22:51:55 +0900
calibre (5.35.0+dfsg-2) unstable; urgency=medium
* Remove "epubcheck" validation from autopkgtest
"epubcheck" is removed from Debian testing because of its RC bugs.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 26 Jan 2022 08:43:12 +0900
calibre (5.35.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.35.0+dfsg
* Update patch queue
* Renumber patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 21 Jan 2022 20:54:08 +0900
calibre (5.34.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.34.0+dfsg
* Update patch queue
* Fix path used to init_calibre module installation
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 18 Dec 2021 02:03:20 +0900
calibre (5.33.2+dfsg-1) unstable; urgency=medium
* New upstream version 5.33.2+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 04 Dec 2021 20:28:17 +0900
calibre (5.33.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.33.0+dfsg
* Update patch queue
* Update installation files list
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 04 Dec 2021 08:48:46 +0900
calibre (5.32.0+dfsg-2) unstable; urgency=medium
* Fix PyQt SIP API version mismatch.
See also Debian bug 997894 .
* Support other Debian builders.
If ".git" directory is not exist, use builder settings.
Use upstream code to use CI environment.
* Rediff patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 20 Nov 2021 00:31:34 +0900
calibre (5.32.0+dfsg-1) unstable; urgency=medium
* Extend thread wait time to pass test
* New upstream version 5.32.0+dfsg
* Update patch queue
* Remove source path name from pyuic5 outputs.
This is needed for reproducible build
* Sort file names for reproducible build
* Rediff patches
* Restrict regexp replace pattern
* Cosmetic fix
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 13 Nov 2021 11:47:24 +0900
calibre (5.31.1+dfsg-3) unstable; urgency=medium
* Sort object lists for reproducible build
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 08 Nov 2021 22:50:54 +0900
calibre (5.31.1+dfsg-2) unstable; urgency=medium
[ Nicholas D Steeves ]
* Update my email address.
[ YOKOTA Hiroshi ]
* Update Lintian overrides
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 05 Nov 2021 02:48:26 +0900
calibre (5.31.1+dfsg-1) unstable; urgency=medium
* Typo fix
* New upstream version 5.31.1+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 29 Oct 2021 20:09:04 +0900
calibre (5.30.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.30.0+dfsg
* Update patch queue
* Add Debian specific SIP path
* Drop sip-tools from Build-Depends list.
Calibre now uses "python3-sipbuild" to build
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 23 Oct 2021 20:16:44 +0900
calibre (5.29.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.29.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 08 Oct 2021 13:24:09 +0900
calibre (5.28.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.28.0+dfsg
* Update patch queue
* Lintian fix
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 24 Sep 2021 20:17:20 +0900
calibre (5.27.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.27.0+dfsg
* Update patch queue
* Qt outputs some warnings to stderr if XDG_RUNTIME_DIR is not set
* Cosmetic fix for output text
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 10 Sep 2021 15:15:35 +0900
calibre (5.26.0+dfsg-4) unstable; urgency=medium
* AppStream hints fix
asv-metainfo-localized-description-tag:
A <description/> tag must not be localized in metainfo files (upstream
metadata). Localize the individual paragraphs instead.
* Lintian fix
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 04 Sep 2021 15:26:30 +0900
calibre (5.26.0+dfsg-3) unstable; urgency=medium
* Remove redundant python 3 maintenance scripts (Closes: #993524)
These are already done by "dh_python3".
* Remove empty maintenance script
* Remove old maintenance script
* Remove empty maintenance script
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 03 Sep 2021 12:42:32 +0900
calibre (5.26.0+dfsg-2) unstable; urgency=medium
* Update "xvfb-run" usage in test code
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 27 Aug 2021 23:58:49 +0900
calibre (5.26.0+dfsg-1) unstable; urgency=medium
* Add another ignore line for blhc(1)
Those lines are stored to "build/pyqt/*/build/*/Makefile" .
* Add manual pages to allow Debian standards 4.6.0
* Separate fragile tests
* New upstream version 5.26.0+dfsg
* Update patch queue
* Add and update manual pages
* Typo fix
* Xvfb is only needed for GUI tests
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 27 Aug 2021 15:41:58 +0900
calibre (5.25.0+dfsg-3) unstable; urgency=medium
* "which" is deprecated and use "command -v"
"which" is deprecated since "debianutils" 5.0 .
* Don't apply autopkgtest for non-buildable architectures
* Lintian fix
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 24 Aug 2021 09:53:13 +0900
calibre (5.25.0+dfsg-2) unstable; urgency=medium
* Revert "Tell current Git branch to vcswatch"
Debian 11.0 was released
This reverts commit 26887170315bbb44f3c58ff88ad4318a7ba3fb1d.
* Upload to unstable
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 16 Aug 2021 21:16:02 +0900
calibre (5.25.0+dfsg-1) experimental; urgency=medium
* New upstream version 5.25.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 13 Aug 2021 20:27:44 +0900
calibre (5.24.0+dfsg-1) experimental; urgency=medium
* Add MIME type fix for .xcf files
* New upstream version 5.24.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 30 Jul 2021 14:00:21 +0900
calibre (5.23.0+dfsg-2) experimental; urgency=medium
* Drop monkey patch to restore older zeroconf module support
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 13 Jul 2021 18:57:17 +0900
calibre (5.23.0+dfsg-1) experimental; urgency=medium
* Add more comment about <stdint.h> fix
* New upstream version 5.23.0+dfsg
* Replace from dbus-python to Jeepney
* Update patch queue
* Require newer python-zeroconf module (>= 0.32.1)
* Remove cURL download cache when in clean target.
Calibre builder saves downloaded file when uses cURL to get MathJax code.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 10 Jul 2021 04:21:07 +0900
calibre (5.22.1+dfsg-1) experimental; urgency=medium
* New upstream version 5.22.1+dfsg
* Update patch queue
* Add patch comment
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 26 Jun 2021 09:10:35 +0900
calibre (5.22.0+dfsg-2) experimental; urgency=medium
* Use <stdint.h> to support MIPS64
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 26 Jun 2021 03:26:35 +0900
calibre (5.22.0+dfsg-1) experimental; urgency=medium
* New upstream version 5.22.0+dfsg
* Add libstemmer to Build-Depends
* Update patch queue
* "src/calibre/utils/ipython.py" recommends IPython
* Add clean target
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 25 Jun 2021 16:13:43 +0900
calibre (5.21.0+dfsg-1) experimental; urgency=medium
* New upstream version 5.21.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 11 Jun 2021 20:39:17 +0900
calibre (5.20.0+dfsg-3) experimental; urgency=medium
* Cosmetic fix
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 05 Jun 2021 14:06:42 +0900
calibre (5.20.0+dfsg-2) experimental; urgency=medium
* Add Lintian override
* Install manpages with correct language.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 04 Jun 2021 23:59:53 +0900
calibre (5.20.0+dfsg-1) experimental; urgency=medium
* New upstream version 5.20.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 04 Jun 2021 21:06:09 +0900
calibre (5.19.0+dfsg-1) experimental; urgency=medium
* New upstream version 5.19.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 28 May 2021 20:54:03 +0900
calibre (5.18.0+dfsg-1) experimental; urgency=medium
* New upstream version 5.18.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 21 May 2021 19:43:22 +0900
calibre (5.17.0+dfsg-4) experimental; urgency=medium
* Add AppStream metainfo generator fix
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 05 May 2021 02:10:38 +0900
calibre (5.17.0+dfsg-3) experimental; urgency=medium
* Tell current Git branch to vcswatch
"experimental" is temporally default branch while freeze policy is active.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 04 May 2021 17:58:05 +0900
calibre (5.17.0+dfsg-2) experimental; urgency=medium
* Exclude failed test on mips64el
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 01 May 2021 11:34:44 +0900
calibre (5.17.0+dfsg-1) experimental; urgency=medium
* Update patch queue
* New upstream version 5.17.0+dfsg
* Update patch queue
* Update MathJax to 3.1.4
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 30 Apr 2021 14:00:12 +0900
calibre (5.16.1+dfsg-1) unstable; urgency=medium
* New upstream version 5.16.1+dfsg (Closes: #987233)
-- Norbert Preining <norbert@preining.info> Tue, 20 Apr 2021 17:09:04 +0900
calibre (5.15.0+dfsg-2) unstable; urgency=medium
* Add missing dependency package
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 17 Apr 2021 07:14:56 +0900
calibre (5.15.0+dfsg-1) unstable; urgency=medium
* Reorder epubcheck
* New upstream version 5.15.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 16 Apr 2021 20:16:34 +0900
calibre (5.14.0+dfsg-8) unstable; urgency=medium
* Avoid "java.lang.StackOverflowError" on i386 testbed.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 31 Mar 2021 21:20:09 +0900
calibre (5.14.0+dfsg-7) unstable; urgency=medium
* Add default-jre to testbed to works epubcheck(1) well.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 31 Mar 2021 07:14:35 +0900
calibre (5.14.0+dfsg-6) unstable; urgency=medium
[ Norbert Preining ]
* Update VCS fields.
[ YOKOTA Hiroshi ]
* Test environment doesn't support binfmt_misc based executable.
Invoke jarwrapper(1) manually.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 30 Mar 2021 21:38:10 +0900
calibre (5.14.0+dfsg-5) unstable; urgency=medium
* Add test dependency packages list
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 30 Mar 2021 06:54:53 +0900
calibre (5.14.0+dfsg-4) unstable; urgency=medium
* Add complex autopkgtest to check application features
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 29 Mar 2021 22:30:57 +0900
calibre (5.14.0+dfsg-3) unstable; urgency=medium
* Update chardet module fix
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 28 Mar 2021 01:57:12 +0900
calibre (5.14.0+dfsg-2) unstable; urgency=medium
* Add "superficial" restriction tag for trivial tests (Closes: #985959)
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 27 Mar 2021 15:20:57 +0900
calibre (5.14.0+dfsg-1) unstable; urgency=medium
* Add simple test for autopkgtest(1)
* New upstream version 5.14.0+dfsg
* Refresh patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 26 Mar 2021 15:34:18 +0900
calibre (5.13.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.13.0+dfsg
* Update patch queue
* Update installation path list
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Thu, 11 Mar 2021 00:22:49 +0900
calibre (5.12.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.12.0+dfsg
* Update patch queue
* Add fix-up patch for Debian package
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 26 Feb 2021 22:39:59 +0900
calibre (5.11.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.11.0+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 12 Feb 2021 17:39:55 +0900
calibre (5.10.1+dfsg-1) unstable; urgency=medium
* New upstream version 5.10.1+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 23 Jan 2021 07:26:52 +0900
calibre (5.10.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.10.0+dfsg
* Update patch queue
* Add py7zr to dependency list
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 22 Jan 2021 18:04:49 +0900
calibre (5.9.0+dfsg-4) unstable; urgency=medium
[ Norbert Preining ]
* Switch to sip-tools as B-D (Closes: #980224)
[ YOKOTA Hiroshi ]
* Close upstream-fixed bug report (Closes: #951426)
"calibre: Fails to input IDEOGRAPHIC SPACE (U+3000) character"
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 18 Jan 2021 01:12:16 +0900
calibre (5.9.0+dfsg-3) unstable; urgency=medium
[ Norbert Preining ]
* Remove one more appearance of python3-crypto (Closes: #979734)
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 12 Jan 2021 09:49:49 +0900
calibre (5.9.0+dfsg-2) unstable; urgency=medium
[ Norbert Preining ]
* Remove dependency on python3-crypto (Closes: #979734)
remove the one trivial crypto loading test from src/calibre/test_build.py
[ YOKOTA Hiroshi ]
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 12 Jan 2021 00:04:05 +0900
calibre (5.9.0+dfsg-1) unstable; urgency=medium
* Typo fix
* New upstream version 5.9.0+dfsg
* Refresh patch queue
* Typo fix
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 08 Jan 2021 20:20:40 +0900
calibre (5.8.1+dfsg+fontFix-1) unstable; urgency=medium
* New upstream version 5.8.1+dfsg+fontFix
* Upstream uses Liberation v2 fonts
* Use canonical method to use system fonts
* Add symlink to dir updater
* Add upstream source to upload list
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 01 Jan 2021 07:08:37 +0900
calibre (5.8.1+dfsg-1) unstable; urgency=medium
* New upstream version 5.8.1+dfsg
* Update patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 25 Dec 2020 20:08:18 +0900
calibre (5.7.2+dfsg-1) unstable; urgency=medium
* New upstream version 5.7.2+dfsg
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 13 Dec 2020 10:57:50 +0900
calibre (5.7.1+dfsg-1) unstable; urgency=medium
* New upstream version 5.7.1+dfsg
* Fix Lintian warnings.
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 12 Dec 2020 17:34:52 +0900
calibre (5.7.0+dfsg-1) unstable; urgency=medium
* Add comments to patch queue
* Add ".patch" extension name to patch files.
This helps editors.
* New upstream version 5.7.0+dfsg
* Refresh patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 11 Dec 2020 22:42:55 +0900
calibre (5.6.0+dfsg-2) unstable; urgency=medium
* Add missing dependency module
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 28 Nov 2020 01:48:24 +0900
calibre (5.6.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.6.0+dfsg
* Upstream switches to speech-dispatcher from espeak-ng
* Update Quilt patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 27 Nov 2020 19:42:38 +0900
calibre (5.5.0+dfsg-4) unstable; urgency=medium
* Use more accurate package name specifier
* Force to use Python 3.9.
This is required while Python 3.8 is the default Python 3. (Closes: #975614)
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 24 Nov 2020 19:56:19 +0900
calibre (5.5.0+dfsg-3) unstable; urgency=medium
* Stop if required Python is not found
* Remove over-engineered section
* Add comment about Python version between scripts and binary plugins
* Remove X-Python3-Version.
3.8->3.9 transition is done.
* Remove hand-crafted "python3" dependency.
Automatically generated "libpython[version number]" dependency dose that.
* dh_python3 wants ${python3:Depends}
It prvides some warnings about ${python3:Depends} on build log.
This fix might Closes: #975284 .
> E: dh_python3 dh_python3:176: no package to act on (python3-foo or one with ${python3:Depends} in Depends)
* Manually add add pyqt5-sip dependency to "python3:Depends"
It fixes dpkg-gencontrol's "unused variables" warning
* No need to replace shbangs
"dh_python3" dose the work.
Some executables exists in "lib" directory.
/usr/lib/calibre/calibre/devices/cli.py
/usr/lib/calibre/calibre/devices/mtp/unix/upstream/update.py
* dh_fixperms removes executable permission
* Use Python 3
"dh_python3" wants "python" for Python 2, and "python3" for Python 3.
* No need install updater script.
This script is for developers only.
* Fix dependency for python3-pyqt5.sip
"python3-pyqt5.sip" is used by "calibre" package
* Refactor cleaner
* Update changelog
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Tue, 24 Nov 2020 02:33:14 +0900
calibre (5.5.0+dfsg-2) unstable; urgency=medium
* Upgrade Debian standard
* Drop "[PATCH]" from patch file.
For just a cosmetic reason.
* Don't change book file unless user's consent (Closes: #974974)
This fix changes default value and behavior of ebook-viewer(1) preferences
"Miscellaneous"->"Keep a copy of annotations/bookmarks in the e-book file,
for easy sharing".
* Specify python3 version by dh-python
* Specify exact python3 version (Closes: #975284, #975320, #975388)
for un-brake 3.8->3.9 transition
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 22 Nov 2020 20:11:56 +0900
calibre (5.5.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.5.0+dfsg
* Add espeak-ng.
Calibre 5.5.0 wants this package
* Refresh patch queue
* Use numbered patch files.
Use default config value
* Refresh patch queue
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 14 Nov 2020 02:14:24 +0900
calibre (5.4.2+dfsg-1) unstable; urgency=medium
* New upstream version 5.4.1+dfsg
* Refresh quilt patches
* Refresh patch queue
* Bundled chardet library was dropped at v3.0.0
* MIT license was not used in current Calibre
* Update Lintian overrides
* Add mode line for Emacs
* Add Lintian overrides
* New upstream version 5.4.2+dfsg
* Update for groff(1) check
* Update lintian overrides
* Typo fix
* Refresh quilt patches
* Add more overrides
* "test_ajax_book" fails if previous test is "test_worker" (Closes: #973458)
Do this test separately.
* Use canonical test name
* Remove obsolete line
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 31 Oct 2020 20:14:04 +0900
calibre (5.3.0+dfsg-1) unstable; urgency=medium
* Update patch metadata.
This helps gbp-pq(1) .
$ gbp pq import
* Refresh quilt patches.
Done by gbp-pq(1) .
$ gbp pq export
* New upstream version 5.3.0+dfsg
* Update Quilt patch
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 16 Oct 2020 20:03:33 +0900
calibre (5.2.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.2.0+dfsg
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Wed, 07 Oct 2020 21:10:55 +0900
calibre (5.1.0+dfsg-1) unstable; urgency=medium
* New upstream version 5.1.0+dfsg
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Fri, 02 Oct 2020 21:14:24 +0900
calibre (5.0.1+dfsg-1) unstable; urgency=medium
[ Norbert Preining ]
* initial work on sip5 support (see ##964125)
* adjust sip deps according to bug report
* more suggestions concerning sip5
* test build changelog entry
[ YOKOTA Hiroshi ]
* Lintian fix
get-orig-source target is obsolete.
* Enable uscan to import source
* Lintian fix.
Don't use bulleted list in NEWS entry.
* Lintian fix.
All patch files are must in debian/patches/series .
* Lintian fix.
Remove trailing white space
* Lintian fix.
Add descriptions to quilt patch
* Lintian fix.
Each package has different description from other packages.
* Lintian fix.
Add upstream bug tracker
* Lintian fix.
Theses patches are Debian-only.
Not needed to forward upstream.
* Sort dependency lines
* Lintian fix.
Remove duplicated lines
* Lintian fix.
There is no need to root privileges.
Don't install default config files.
* Lintian fix.
Don't install empty directory
* Cosmetic fix
* Use latest version of "poppler-utils" (Closes: #962668)
Older "pdftohtml" provides surrogate pair characters in UTF-8 string.
This behavior is not valid for UTF-8 encoding.
Use latest "pdftohtml" to avoid some error on "python3-lxml".
* Remove unused target
* Use trampoline script to Makefile target
* Use Automatic environment values
* Refactor parallel build
* Fix jobserver warning
* Add comment for trampoline script
* Remove version mangle
* Use beta versions as upstream code
* Update gbp config
"uscan = True" is not works well
* New upstream version 4.99.17
* Remove py3 patches.
All patches were merged into upstream master branch.
* Refresh patches
* Remove unused line
* Revert SIP5 code.
Debian doesn't support SIP5 based PyQt5 yet.
* Reorder to work patches well
* No need to forward for upstream
* Remove obsolete document
* Update document
* Update changelog
* Restore version mangle.
They are still needed because Debian uses own MathJax code.
* Restore watch file
* New upstream version 5.0.0+dfsg
* Drop obsolete patch (Closes: #964125, #970921)
* Update hardening patch
* Restore hardening code for SIP
* New upstream version 5.0.1+dfsg
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 26 Sep 2020 00:39:18 +0900
calibre (4.99.12+dfsg+really4.23.0-1) unstable; urgency=medium
* Update beta version number
* Update comment
* Update py3 patches
* Update changelog
* Update beta version number
* Update py3 patches
* Adjust py3 patch
* Update changelog
* Update py3 patches
* Update py3 patches
* New upstream version 4.99.12+dfsg+really4.23.0
* Update py3 patches
* Adjust py3 patches
* Adjust py3 binary patches
* Update py3 patches
* Update generated code by rapydscript
* Move patch to quilt
* Update py3 patches
* Update py3 patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sat, 22 Aug 2020 20:30:30 +0900
calibre (4.99.9+dfsg+really4.22.0-1) unstable; urgency=medium
* Update py3 patches
* Update changelog
* Do not send comment string to compilation shell
* Add false-positive info for blhc(1) check
* Update beta version number
* New upstream version 4.99.9+dfsg+really4.22.0
* Update py3 patches
* Adjust py3 patches
* Update py3 binary patches
* Adjust py3 binary patches
* Update changelog
* Update py3 patch
* Update changelog
* Update py3 patches
* Adjust py3 patches
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 02 Aug 2020 08:24:52 +0900
calibre (4.99.7+dfsg+really4.21.0-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Refactor regexp
* Update py3 patches
* Update changelog
* Drop MathJax package dependency.
Now uses upstream MathJax tarball.
* Update beta version number
* New upstream version 4.99.7+dfsg+really4.21.0
* Drop applied hotfix patch
* Update py3 patches
* Adjust py3 patches
* Add binary patch
* Adjust binary patch
* Apply binary patch
* Update documents about Git style binary patches
* Update changelog
* Update py3 patches
* Update changelog
* Update py3 patches
* Lintian fix
> E: calibre: no-phrase Maintainer team+calibre@tracker.debian.org
[ Norbert Preining ]
* move maintainer to team+calibre@tracker.debian.org
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Mon, 20 Jul 2020 17:54:12 +0900
calibre (4.99.6+dfsg+really4.20.0-1) unstable; urgency=medium
[ Norbert Preining ]
* call the package 4.99.6+... as Calibre announces itself like this now
[ YOKOTA Hiroshi ]
* Match even if previous Debian package version is lower than 4.99.6
* New upstream version 4.99.6+dfsg+really4.20.0
* Bundle MathJax source and use it
* Adjust py3 patches
* Add upstream hotfix.
This fix is requied to unbreak MathJax change.
* Adjust hotfix patch
-- YOKOTA Hiroshi <yokota.hgml@gmail.com> Sun, 05 Jul 2020 16:22:11 +0900
calibre (4.99.4+dfsg+really4.19.0-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Use GitHub based URL
* Use package name macro
* Fix regexp
* New upstream version 4.99.4+dfsg+really4.19.0
* Update py3 patches
* Adjust py3 patches
* Refactor watch line.
Remove redundant regex, and use file name itself.
-- Norbert Preining <norbert@preining.info> Sat, 20 Jun 2020 11:45:22 +0900
calibre (4.99.4+dfsg+really4.18.0-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* New upstream version 4.99.4+dfsg+really4.18.0
* Add Emacs mode line
* Update py3 patches
* Adjust py3 patches
-- Norbert Preining <norbert@preining.info> Thu, 11 Jun 2020 11:30:19 +0900
calibre (4.99.4+dfsg+really4.17.0-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Update debhelper standard to v13
* Improve "test" target hack
dh_auto_test(1) provides automatic environment variables like "HOME" and "XDG_*".
It requires Debhelper v13.
* Remove unused line.
We are already used uscan(1) based update method.
* No need to rebuild "resources/images.qrc"
* Use Python3 based cleaner
* New upstream version 4.99.4+dfsg+really4.17.0
* Adjust py3 patches
-- Norbert Preining <norbert@preining.info> Mon, 25 May 2020 00:54:29 +0900
calibre (4.99.4+dfsg+really4.16.0-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* ODF thumbnail icon is replaced to GPL-3 icon.
* New upstream version 4.99.4+dfsg+really4.16.0
* Use deprecated API if new API is not available (Closes: #944875)
-- Norbert Preining <norbert@preining.info> Sat, 16 May 2020 14:23:03 +0900
calibre (4.99.4+dfsg+really4.15.0-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* New upstream version 4.99.4+dfsg+really4.15.0 (Closes: #959419, #959559)
* Update and adjust py3 patches
* Add skip test list for armhf
-- Norbert Preining <norbert@preining.info> Sun, 03 May 2020 22:23:34 +0900
calibre (4.99.4+dfsg+really4.13.0-3) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Skip some tests for mipsel.
-- Norbert Preining <norbert@preining.info> Wed, 22 Apr 2020 10:16:05 +0900
calibre (4.99.4+dfsg+really4.13.0-2) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Extend timeout limit.
Some non-x86 architectures are much slower than x86, try to fix build
errors on these builders due to timeouts in the test system:
. Extent wait time
. Treat Debian package builder as CI system
* Enable all tests in package builder
-- Norbert Preining <norbert@preining.info> Mon, 20 Apr 2020 09:08:02 +0900
calibre (4.99.4+dfsg+really4.13.0-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Typo fix
* New upstream version 4.99.4+dfsg+really4.13.0
* Update py3 patches
* Adjust py3 patches
-- Norbert Preining <norbert@preining.info> Mon, 06 Apr 2020 04:32:53 +0900
calibre (4.99.4+dfsg+really4.12.0-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Use pyopenssl instead of certgen plugin, reinstall certgen
[ Norbert Preining ]
* fix calibredb list redirect errors (Closes: #951913)
* Recommend udisks2 for e-reader detection (Closes: #952827)
* New upstream version 4.99.4+dfsg+really4.12.0
* update py3 patches
* adjust patches to debian (dropping thumbnail.py)
-- Norbert Preining <norbert@preining.info> Fri, 06 Mar 2020 21:09:07 +0900
calibre (4.99.4+dfsg+really4.11.2-1) unstable; urgency=medium
* New upstream version 4.11.2
-- Norbert Preining <norbert@preining.info> Sun, 23 Feb 2020 07:15:08 +0900
calibre (4.99.4+dfsg+really4.11.1-1) unstable; urgency=medium
[ Norbert Preining ]
* add change for 4.10.1 as patch
* move Debian patches after Py3 patches
* do not build/install certgen extension/module (Closes: #951743)
* New upstream version 4.99.4+dfsg+really4.11.{0,1}
* update py3 branch patches
* fix patches that touch thumbpdf.py which is removed during orig.tar building
* required patch for py3 branch
[ YOKOTA Hiroshi ]
* Restore release version's watch line
* Update version mangle line for "+really" style version number
* Remove unused line
* Apply Debian's compilation options to libheadless.so
* New upstream version 4.99.4+dfsg+really4.10.1
* Drop obsolete patch.
This already patch applied in upstream
* Remove unused patch
* Refresh Debian patches
* Move upstream "py3" branch to Quilt patch set
* Refresh "py3" patches
* Add ignored file list to dh_missing(1)
"py3" branch already removed this file, but quilt(1) dose not handle
deletion of blank file. And upstream install process installs some
unwanted files.
* Add "py3" branch document
* Fix upstream version naming scheme
"+py3" is not comes from upstream tarball.
It comes from patch set.
* Break lines
-- Norbert Preining <norbert@preining.info> Fri, 21 Feb 2020 22:28:02 +0900
calibre (4.99.4+dfsg+really4.10.0+py3-2) unstable; urgency=medium
* disable dictionary test also on armhf
-- Norbert Preining <norbert@preining.info> Fri, 07 Feb 2020 14:14:42 +0900
calibre (4.99.4+dfsg+really4.10.0+py3-1) unstable; urgency=medium
[ Norbert Preining ]
* add for now commented exclusion of mem leak test
* New upstream version 4.99.4+dfsg+really4.10.0+py3
* update/cleanup patches
[ YOKOTA Hiroshi ]
* Add comment for ignored test
* Upgrade Debian Standards-Version.
No changes are needed.
* Split test options to another file, and only use it when in package builder environment.
Do all test in developer's environment.
* Add dictionaries test to ignore list.
All architectures must migrate to Python 3.
-- Norbert Preining <norbert@preining.info> Fri, 07 Feb 2020 12:12:18 +0900
calibre (4.99.4+dfsg-1) unstable; urgency=medium
[ Norbert Preining ]
* New upstream version 4.99.4+dfsg (Closes: #949095)
* lintian override for csslint
* update patches
* fix sip loading in check/css.py
[ YOKOTA Hiroshi ]
* Add debhelper compatible "nocheck" option.
This option will skip test to help maintainer.
Add "nocheck" to DEB_BUIlD_MAINT_OPTIONS or DEB_BUILD_OPTIONS to work.
See also dh_auto_test(1) manual.
* Revert "Add debhelper compatible "nocheck" option"
This reverts commit dd6636e4c9450e4502762f605aa71dd4b1fe7ee8.
* Use "C" locale for testing.
According to src/calibre/utils/localization.py:get_system_locale() ,
set "C" is the best way to reset locale functionality.
* Reset locale to "C" instead of erase them
* Add Emacs mode line
* Use Python 3 path
* Import test suite patch from upstream
* Refresh quilt patch
* Disable some tests for specific platforms.
Because build environment is not same as typical user environment.
* Disable HTTP response test
-- Norbert Preining <norbert@preining.info> Tue, 21 Jan 2020 11:59:57 +0900
calibre (4.99.3+dfsg-2) unstable; urgency=medium
[ Norbert Preining ]
* Python3 based Calibre (Closes: #936270)
* get-orig-source support for beta releases
* update NEWS and TODO for Py3 version, remove PYTHON3-STATUS
* d/watch: include comments on old version watch line and v5 switch
* switch to uscan for orig creation
[ YOKOTA Hiroshi ]
* Use uscan(1) to re-package source files.
uscan(1) downloads and repacks upstream file when upstream version is
newer than local version that describes in "debian/changelog".
Use "gbp import-orig --uscan" to import upstream code.
* Add new "gbp import-orig" usage as comment.
* Add "filenamemangle" to specify local file name
* Verify upstream source code by upstream OpenPGP signature
* Use relaxed syntax for readability
"version=4" allows relaxed watch file syntax
-- Norbert Preining <norbert@preining.info> Thu, 16 Jan 2020 15:56:35 +0900
calibre (4.99.3+dfsg-1) experimental; urgency=medium
[ YOKOTA Hiroshi ]
* Typo fix
* Refactor man pages installation.
This hack requires debhelper v11 or later.
* Make reproducible build
* Use Python3 based tools
* Update maintainer script for more Python 3 support.
This codes are comes from "dh-python" package.
[ Norbert Preining ]
* test unrar if available
* allow for plugin update check, but no calibre version check
* unfuzzify patch
* New upstream version 4.99.3+dfsg
* update patches
-- Norbert Preining <norbert@preining.info> Wed, 08 Jan 2020 15:16:28 +0900
calibre (4.99.2+dfsg-1) experimental; urgency=medium
The "Thanks Eli Schwartz Release" - lots of feedback and suggestions for
improvements, very much appreciated!
[ Debian Janitor ]
* Fix some issues reported by lintian
- Set debhelper-compat version in Build-Depends.
Fixes lintian: uses-debhelper-compat-file
See https://lintian.debian.org/tags/uses-debhelper-compat-file.html
for more details.
- Set upstream metadata fields: Repository, Repository-Browse.
Fixes lintian: upstream-metadata-file-is-missing
See https://lintian.debian.org/tags/upstream-metadata-file-is-missing.html
for more details.
[ Norbert Preining ]
* New upstream beta version targetting Python3: 4.99.2
* reenable plugin dropdown menu (Closes: #947391)
* run unit tests after build (Closes: #947390)
* unfuzzify and disable patches not necessary anymore
* cleanup unused patches
* create /usr/share/zsh/vendor-completions/ to trigger calibre installer to
create zsh completions (Closes: #947394)
[ YOKOTA Hiroshi ]
* Update test code for non-English environment
-- Norbert Preining <norbert@preining.info> Fri, 27 Dec 2019 14:23:27 +0900
calibre (4.7.0+dfsg-1) unstable; urgency=medium
[ Debian Janitor ]
* Fix some issues reported by lintian
- Set debhelper-compat version in Build-Depends.
Fixes lintian: uses-debhelper-compat-file
See https://lintian.debian.org/tags/uses-debhelper-compat-file.html for more details.
- Set upstream metadata fields: Repository, Repository-Browse.
Fixes lintian: upstream-metadata-file-is-missing
See https://lintian.debian.org/tags/upstream-metadata-file-is-missing.html for more details.
[ Norbert Preining ]
* reenable plugin dropdown menu
* New upstream version 4.7.0+dfsg
-- Norbert Preining <norbert@preining.info> Fri, 27 Dec 2019 14:40:15 +0900
calibre (4.6.0+dfsg-1+exp1) experimental; urgency=medium
* Calibre 4.5 / Python 3 for Debian experimental
-- Norbert Preining <norbert@preining.info> Fri, 13 Dec 2019 22:27:52 +0900
calibre (4.6.0+dfsg-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Hardening Qt code
* Use automatic variables from dpkg-buildflags(1)
* Use environment values for hardening options.
Debian package builder already sets hardening options.
* Apply CPPFLAGS to more hardening
* Move patches to quilt
* Maximize hardening
* Update maintainer list.
Add myself to maintainer.
Thanks to Norbert and his approval.
* Refactor downloader code
* Use "shell" function
* Use newer "tar" option
* Use XZ_OPT to specify compression option
* Refactor
* Factor out to shell script
* Cosmetic fix
* Keep downloaded file while processing.
Source archive is too big to discard.
Keep it while processing.
* Don't use environment variable
gzip(1) deprecates this style environment variables.
* Add achiever options to reproducible build
* Update standards version
* Remove outdated patch
[ Norbert Preining ]
* New upstream version 4.6.0+dfsg
* Add libhyphen-dev to B-D
* Adjust install files to renamed lzma library
-- Norbert Preining <norbert@preining.info> Fri, 13 Dec 2019 17:26:59 +0900
calibre (4.5.0+dfsg-3+exp1) experimental; urgency=medium
* Calibre 4.5 / Python 3 for Debian experimental
-- Norbert Preining <norbert@preining.info> Tue, 03 Dec 2019 12:43:45 +0900
calibre (4.5.0+dfsg-3) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Markdown support restored (Closes: #934000)
* Remove Qt4 hack
-- Norbert Preining <norbert@preining.info> Tue, 03 Dec 2019 08:58:11 +0900
calibre (4.5.0+dfsg-2+exp1) experimental; urgency=medium
* Calibre 4.5 / Python 3 for Debian experimental
-- Norbert Preining <norbert@preining.info> Fri, 29 Nov 2019 14:22:40 +0900
calibre (4.5.0+dfsg-2) unstable; urgency=medium
* Fix double inclusion of man pages in -B builds
-- Norbert Preining <norbert@preining.info> Fri, 29 Nov 2019 14:18:17 +0900
calibre (4.5.0+dfsg-1+exp1) experimental; urgency=medium
* Calibre 4.5 / Python 3 for Debian experimental
-- Norbert Preining <norbert@preining.info> Fri, 29 Nov 2019 08:02:02 +0900
calibre (4.5.0+dfsg-1) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Remove CDBS dependency and switch to DH v12
[ Norbert Preining ]
* New upstream version 4.5.0+dfsg
-- Norbert Preining <norbert@preining.info> Fri, 29 Nov 2019 07:58:23 +0900
calibre (4.4.0+dfsg-1+exp1) experimental; urgency=medium
* Calibre 4.4 / Python 3 for Debian experimental
-- Norbert Preining <norbert@preining.info> Fri, 22 Nov 2019 16:19:57 +0900
calibre (4.4.0+dfsg-1) unstable; urgency=medium
* New upstream version 4.4.0+dfsg
* drop cherrypi deps (Closes: #936270)
-- Norbert Preining <norbert@preining.info> Fri, 22 Nov 2019 15:57:48 +0900
calibre (4.3.0+dfsg-2+exp1) experimental; urgency=medium
* Calibre 4.3 / Python 3 for Debian experimental
-- Norbert Preining <norbert@preining.info> Mon, 11 Nov 2019 09:21:41 +0900
calibre (4.3.0+dfsg-2) unstable; urgency=medium
[ YOKOTA Hiroshi ]
* Fix mathjax installation
-- Norbert Preining <norbert@preining.info> Mon, 11 Nov 2019 09:13:20 +0900
calibre (4.3.0+dfsg-1+exp1) experimental; urgency=medium
* Calibre 4.3 / Python 3 for Debian experimental
-- Norbert Preining <norbert@preining.info> Fri, 08 Nov 2019 12:02:43 +0900
calibre (4.3.0+dfsg-1) unstable; urgency=medium
* update watch file for series 4 release
* New upstream version 4.3.0+dfsg (Py2 build)
* unfuzzify patches
-- Norbert Preining <norbert@preining.info> Fri, 08 Nov 2019 11:52:02 +0900
calibre (4.2.0+dfsg-2+exp2) experimental; urgency=medium
* fix Kobo support (Closes: #943725)
-- Norbert Preining <norbert@preining.info> Thu, 31 Oct 2019 11:08:58 +0900
calibre (4.2.0+dfsg-2+exp1) experimental; urgency=medium
* Calibre 4.2 / Python 3 for Debian experimental
-- Norbert Preining <norbert@preining.info> Mon, 28 Oct 2019 14:56:15 +0900
calibre (4.2.0+dfsg-2) unstable; urgency=medium
* Calibre 4.2 / Python 2 for Debian sid
-- Norbert Preining <norbert@preining.info> Mon, 28 Oct 2019 10:44:31 +0900
calibre (4.2.0+dfsg-1) experimental; urgency=medium
* New upstream version 4.{0,1,2}.0+dfsg
* switch to qtwebengine
* switch to Python3
-- Norbert Preining <norbert@preining.info> Fri, 25 Oct 2019 08:09:57 +0900
calibre (4.0.0+really3.48.dfsg-1) unstable; urgency=medium
* Revert to 3.48 since necessary modules for running Calibre >= 4.0 are
not available for Python 2 (Closes: #941802, #941806)
-- Norbert Preining <norbert@preining.info> Sun, 06 Oct 2019 10:09:23 +0900
calibre (4.0.0+dfsg-1) unstable; urgency=medium
* New upstream version 4.0.0+dfsg
* fix debian packaging for 4.0 upstream
* add libhunspell-dev to B-D
-- Norbert Preining <norbert@preining.info> Sat, 05 Oct 2019 09:42:11 +0900
calibre (3.48.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.48.0+dfsg
-- Norbert Preining <norbert@preining.info> Fri, 13 Sep 2019 16:15:19 +0900
calibre (3.47.1+dfsg-1) unstable; urgency=medium
* New upstream version 3.47.1+dfsg
-- Norbert Preining <norbert@preining.info> Mon, 02 Sep 2019 13:01:03 +0900
calibre (3.47.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.47.0+dfsg
* Add python-html2text also to deps (really closes: #932044)
* update patches
-- Norbert Preining <norbert@preining.info> Fri, 30 Aug 2019 11:16:46 +0900
calibre (3.46.0+dfsg-1) unstable; urgency=medium
[ Norbert Preining ]
* Add python-html2text dependency (Closes: #932044)
* New upstream version 3.46.0+dfsg
[ Nicholas D Steeves ]
* Use secure URL for Homepage (d/control) & Source (d/copyright)
-- Norbert Preining <norbert@preining.info> Fri, 19 Jul 2019 14:15:34 +0900
calibre (3.45.2+dfsg-1) unstable; urgency=medium
* New upstream version 3.45.2+dfsg
-- Norbert Preining <norbert@preining.info> Sat, 13 Jul 2019 23:30:58 +0900
calibre (3.45.1+dfsg-1) unstable; urgency=medium
* New upstream version 3.45.1+dfsg
-- Norbert Preining <norbert@preining.info> Sat, 13 Jul 2019 00:04:09 +0900
calibre (3.45.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.45.0+dfsg
* update patches
-- Norbert Preining <norbert@preining.info> Fri, 12 Jul 2019 13:45:43 +0900
calibre (3.44.0+dfsg-2) unstable; urgency=medium
* Upload to unstable, use source only upload
-- Norbert Preining <norbert@preining.info> Tue, 09 Jul 2019 10:40:43 +0900
calibre (3.44.0+dfsg-1) experimental; urgency=medium
* New upstream version 3.44.0+dfsg
-- Norbert Preining <norbert@preining.info> Fri, 31 May 2019 14:18:13 +0900
calibre (3.43.0+dfsg-1) experimental; urgency=medium
* remove .pyc files on upgrade from pre-pyclean versions (Closes: #865879)
* New upstream version 3.43.0+dfsg
* update patches
-- Norbert Preining <norbert@preining.info> Tue, 28 May 2019 23:22:31 +0900
calibre (3.42.0+dfsg-1) experimental; urgency=medium
* New upstream version 3.42.0+dfsg
* update patches
-- Norbert Preining <norbert@preining.info> Sun, 05 May 2019 16:00:21 +0900
calibre (3.41.3+dfsg-1) experimental; urgency=medium
* New upstream version 3.41.3+dfsg
-- Norbert Preining <norbert@preining.info> Sat, 20 Apr 2019 12:27:09 +0900
calibre (3.41.1+dfsg-1) experimental; urgency=medium
* New upstream version 3.41.1+dfsg
-- Norbert Preining <norbert@preining.info> Fri, 19 Apr 2019 19:16:55 +0900
calibre (3.41.0+dfsg-1) experimental; urgency=medium
* New upstream version 3.41.0+dfsg
* Update and fix patches
* add python-bs4 to build deps
* install backports directory
-- Norbert Preining <norbert@preining.info> Fri, 19 Apr 2019 14:44:34 +0900
calibre (3.40.1+dfsg-1) experimental; urgency=medium
* new upstream release (Closes: #924066)
-- Norbert Preining <norbert@preining.info> Mon, 11 Mar 2019 00:37:01 +0900
calibre (3.39.1+dfsg-2) unstable; urgency=medium
* update my email and VCS fields (Closes: #921473)
-- Norbert Preining <norbert@preining.info> Fri, 08 Feb 2019 17:41:17 +0900
calibre (3.39.1+dfsg-1) unstable; urgency=medium
[ Nicholas D Steeves ]
* New upstream version 3.39.1+dfsg.
* Add build dep on >= 0.5.6~ of python-msgpack. Calibre began to
require newer than 0.4.8 some time between 3.32.0 and 3.35. This is
needed to fix FTBFS when backporting to stretch.
* Add python-msgpack >= 0.5.6~ dependency to bin:calibre.
* Clean up trailing whitespace in changelog and control.
* Fix a line that was too long in extended description.
* Drop obsolete debian/pycompat.
* Switch to secure copyright format URL.
* Add myself to Uploaders.
* Use secure URL in watch file
* debian/rules: adjust get-orig-source to remove new location of
bundled mathjax.
[ Norbert Preining ]
* Adjust watch file for version 3 series
* add css-parser to (build-)depends
-- Nicholas D Steeves <nsteeves@gmail.com> Tue, 05 Feb 2019 14:26:32 -0700
calibre (3.35.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.35.0+dfsg
-- Norbert Preining <preining@debian.org> Sun, 09 Dec 2018 15:40:54 +0900
calibre (3.34.0+dfsg-1) unstable; urgency=medium
* suggest python-unrardll for rar/cbr support (Closes: #733513)
* New upstream version 3.34.0+dfsg
-- Norbert Preining <preining@debian.org> Fri, 09 Nov 2018 12:54:38 +0900
calibre (3.33.1+dfsg-1) unstable; urgency=medium
* New upstream version 3.33.1+dfsg
* update patches
-- Norbert Preining <preining@debian.org> Fri, 19 Oct 2018 20:17:43 +0900
calibre (3.32.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.32.0+dfsg
* unfuzzify patches
* bump standards version, no changes necessary
* install new polyglot lib
-- Norbert Preining <preining@debian.org> Fri, 28 Sep 2018 23:59:38 +0900
calibre (3.31.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.31.0+dfsg
-- Norbert Preining <preining@debian.org> Fri, 07 Sep 2018 15:06:49 +0900
calibre (3.30.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.30.0+dfsg
(probably already fixed much earlier)
- python epub to mobi conversion works (Closes: #699057)
- PyQt4 not used anymore (Closes: #771550)
- markdown patch is not used anymore (Closes: #723907)
- properly open directories (Closes: #738535)
- man pages are now available for calibre/ebook cmds (Closes: #766555)
* add python-html5lib for recipe dependencies (Closes: #906572)
* add depends on libjpeg-turbo-progs and optipng for image
optimization in ebook editor (Closes: #884767)
-- Norbert Preining <preining@debian.org> Fri, 24 Aug 2018 12:50:53 +0900
calibre (3.29.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.29.0+dfsg
* update patches
-- Norbert Preining <preining@debian.org> Fri, 10 Aug 2018 21:22:26 +0900
calibre (3.28.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.28.0+dfsg
-- Norbert Preining <preining@debian.org> Sat, 21 Jul 2018 13:44:07 +0900
calibre (3.27.1+dfsg-1) unstable; urgency=medium
* New upstream version 3.27.1+dfsg
-- Norbert Preining <preining@debian.org> Mon, 09 Jul 2018 14:06:12 +0900
calibre (3.26.1+dfsg-1) unstable; urgency=medium
* New upstream version 3.26.1+dfsg
-- Norbert Preining <preining@debian.org> Fri, 29 Jun 2018 01:58:59 +0900
calibre (3.26.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.26.0+dfsg
-- Norbert Preining <preining@debian.org> Fri, 15 Jun 2018 15:15:56 +0900
calibre (3.25.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.25.0+dfsg
* update patches
-- Norbert Preining <preining@debian.org> Sun, 03 Jun 2018 17:46:00 +0900
calibre (3.24.2+dfsg-1) unstable; urgency=medium
* Two new upstream versions
-- Norbert Preining <preining@debian.org> Mon, 28 May 2018 23:38:25 +0900
calibre (3.24.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.24.0+dfsg
-- Norbert Preining <preining@debian.org> Fri, 25 May 2018 23:16:59 +0900
calibre (3.23.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.23.0+dfsg
-- Norbert Preining <preining@debian.org> Sat, 05 May 2018 21:59:21 +0900
calibre (3.22.1+dfsg-1) unstable; urgency=medium
* New upstream version 3.22.1+dfsg
-- Norbert Preining <preining@debian.org> Sun, 22 Apr 2018 23:50:41 +0900
calibre (3.21.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.21.0+dfsg
* update patches
-- Norbert Preining <preining@debian.org> Sat, 07 Apr 2018 21:30:46 +0900
calibre (3.20.0+dfsg-1) unstable; urgency=medium
* add explicit b-d on libusb-1.0-0-dev (Closes: #892523)
* New upstream version 3.20.0+dfsg
* update patches
-- Norbert Preining <preining@debian.org> Fri, 30 Mar 2018 21:25:14 +0900
calibre (3.19.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.19.0+dfsg
- use JSON to prevent malicious bookmark files from causing code execution
(Closes: #892242)
-- Norbert Preining <preining@debian.org> Sat, 10 Mar 2018 00:16:43 +0900
calibre (3.18.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.18.0+dfsg
-- Norbert Preining <preining@debian.org> Sat, 24 Feb 2018 22:03:27 +0900
calibre (3.17.0+dfsg-2) unstable; urgency=medium
* remove dependency on beautifulsoup, included in calibre (Closes: #891094)
-- Norbert Preining <preining@debian.org> Fri, 23 Feb 2018 00:03:15 +0900
calibre (3.17.0+dfsg-1) unstable; urgency=medium
* New upstream release
* adjust VCS fields to Salsa
* update patches
-- Norbert Preining <preining@debian.org> Sat, 10 Feb 2018 23:01:54 +0900
calibre (3.16.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.16.0+dfsg
-- Norbert Preining <preining@debian.org> Sat, 27 Jan 2018 16:41:50 +0900
calibre (3.15.0.1+dfsg-1) unstable; urgency=medium
* New upstream version 3.15.0.1+dfsg
The initial source tarball contained broken .mo files, this one is
the current 3.15.0 source tarball with fixed .mo files (Closes: #886682)
-- Norbert Preining <preining@debian.org> Tue, 09 Jan 2018 23:25:07 +0900
calibre (3.15.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.15.0+dfsg
* update description (Closes: #885445)
* bump standards version, no changes necessary
-- Norbert Preining <preining@debian.org> Fri, 05 Jan 2018 15:01:51 +0900
calibre (3.14.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.14.0+dfsg
-- Norbert Preining <preining@debian.org> Sat, 16 Dec 2017 06:51:20 +0900
calibre (3.13.0+dfsg-1) unstable; urgency=medium
* adjust deps on python-lxml, thanks Daniel Baumann (Closes: #882350)
* new upstream version 3.13.0+dfsg
* bump standards version, no changes necessary
-- Norbert Preining <preining@debian.org> Fri, 08 Dec 2017 22:54:27 +0900
calibre (3.12.0+dfsg-1) unstable; urgency=medium
* New upstream release
-- Norbert Preining <preining@debian.org> Fri, 10 Nov 2017 12:03:34 +0900
calibre (3.11.1+dfsg-1) unstable; urgency=medium
* New upstream releases
-- Norbert Preining <preining@debian.org> Sun, 05 Nov 2017 08:43:00 +0900
calibre (3.10.0+dfsg-1) unstable; urgency=medium
* New upstream releases
* Do not use --detach in .desktop files (Closes: #877774)
* switch priority from extra to optional
* bump standards version, no changes necessary
* change maintainership with agreement from Miriam, thanks.
-- Norbert Preining <preining@debian.org> Tue, 24 Oct 2017 15:35:53 +0900
calibre (3.8.0+dfsg-1) unstable; urgency=medium
* New upstream version 3.8.0+dfsg
* update patches
* bump standards version, no changes necessary
-- Norbert Preining <preining@debian.org> Mon, 25 Sep 2017 09:48:22 +0900
calibre (3.7.0+dfsg-2) unstable; urgency=medium
* add various missing build-deps
this fixes missing desktop files and bash-completion (Closes: #871016)
-- Norbert Preining <preining@debian.org> Mon, 04 Sep 2017 11:09:09 +0900
calibre (3.7.0+dfsg-1) unstable; urgency=medium
[ Martin Pitt ]
* Whitespace fixes
[ Norbert Preining ]
* New upstream version 3.7.0+dfsg
* Rework .pyc generation using pycompile in postinst/postrm
code copied from dh_python generated debhelper snippets.
* do not delete _ui.py files in clean action
* update list of installed files
* add source override for wrong lintian check
* add python-html5-parser to deps
* bump standards version, no changes necessary
* cherrypick upstream fix for mspack security issues (Closes: #872595)
-- Norbert Preining <preining@debian.org> Wed, 30 Aug 2017 20:40:23 +0900
calibre (3.4.0+dfsg-1) unstable; urgency=medium
[ Martin Pitt ]
* New upstream release. (Closes: #868663)
* Add missing python-msgpack dependency for calibre-server.
(Closes: #866102)
* Drop obsolete alternative python-imaging dependency.
(Closes: #866418)
* Drop long-obsolete calibre.preinst conffile cleanup.
* Clean up *.pyc files on upgrade in /usr/lib/calibre/.
(Closes: #868379)
* Add Norbert Preining as Co-Maintainer. Thank you!
[ Norbert Preining ]
* Fix desktop integration installation
- Add XDG_DATA_DIRS setting to the environment, which fixes
xdg-icon-resource calls
- Patch linux.py to NOT use xdg-mime and xdg-desktop-menu because
they hard-code gnome_app_dir etc which cannot be overridden,
and replace with install calls
- Remove the locally managed desktop and mime xml files
* Switch to upstream provided manpages.
-- Martin Pitt <mpitt@debian.org> Mon, 17 Jul 2017 15:09:28 +0200
calibre (3.1.1+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #865018)
* debian/rules: Drop jquery-ui* and Datejs downloads from get-orig-source
rule, upstream does not use these any more.
* README.Debian: Fix "the the" typo. Thanks Norbert Preining.
* Use packaged libjs-coffeescript and python-regex instead of the bundled
one. Thanks Norbert Preining.
* Drop Do-not-build-unrar-extension-as-we-strip-unrar-from-the-t.patch;
unrar is now loaded dynamically, not via a shipped extension.
-- Martin Pitt <mpitt@debian.org> Sat, 24 Jun 2017 20:50:27 +0200
calibre (2.85.1+dfsg-1) experimental; urgency=medium
* New upstream release. (Closes: #864057)
-- Martin Pitt <mpitt@debian.org> Sun, 04 Jun 2017 10:05:55 +0200
calibre (2.83.0+dfsg-1) experimental; urgency=medium
* New upstream release.
-- Martin Pitt <mpitt@debian.org> Sun, 30 Apr 2017 18:31:44 +0200
calibre (2.75.1+dfsg-1) unstable; urgency=medium
* New upstream release:
- security fix: E-book viewer: Prevent javascript in the book from
accessing files on the computer using XMLHttpRequest.
-- Martin Pitt <mpitt@debian.org> Tue, 27 Dec 2016 10:53:00 +0100
calibre (2.71.0+dfsg-1) unstable; urgency=medium
[ Martin Pitt ]
* Move from bzr to collab-maint git, update Vcs-* tags
* Turn patches into "gbp pq" format
* debian/rules get-orig-source: Don't update checkout any more.
This was appropriate for debian/ only bzr branch, but not for full-source gbp.
* Bump debhelper compat to 9
[ Ritesh Raj Sarraf ]
* debian/rules get-orig-source: Update download URL for Datejs
* New upstream release.
Adjust patches, add new python-pyqt5.qtwebkit and python-apsw dependencies.
(Closes: #840999)
-- Martin Pitt <mpitt@debian.org> Mon, 14 Nov 2016 23:44:26 +0100
calibre (2.60.0+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Martin Pitt <mpitt@debian.org> Thu, 30 Jun 2016 10:51:32 +0200
calibre (2.55.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop obsolete XS-Python-Version.
* Bump Standards-Version to 3.9.8 (no changes necessary).
* debian/copyright: Factor out licenses (fixes lintian warning
(dep5-copyright-license-name-not-unique)
* Add links-privacy.patch: content-server: Don't load external URLs for
privacy (spotted by lintian).
* Enable relro hardening.
-- Martin Pitt <mpitt@debian.org> Sun, 17 Apr 2016 23:52:46 +0200
calibre (2.54.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop use_system_markdown.patch, redundant with the sedding in
debian/rules. Thanks Felix Dietrich.
* markdown-calibre: Use system "markdown" module. Thanks Felix Dietrich.
(Closes: #808198)
-- Martin Pitt <mpitt@debian.org> Sun, 03 Apr 2016 21:18:01 +0200
calibre (2.48.0+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Martin Pitt <mpitt@debian.org> Sun, 03 Jan 2016 10:43:05 +0100
calibre (2.45.0+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Martin Pitt <mpitt@debian.org> Sat, 28 Nov 2015 15:26:52 +0100
calibre (2.38.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #796929)
-- Martin Pitt <mpitt@debian.org> Wed, 16 Sep 2015 11:08:57 +0200
calibre (2.33.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* debian/watch, debian/rules: Adjust to changed upstream tarball location.
* debian/rules get-orig-source: Download Datejs-all-Alpha1.zip and produce
unminified date.js in the original tarball. Thanks Jesus M.
Gonzalez-Barahona! (Closes: #775663)
-- Martin Pitt <mpitt@debian.org> Sat, 25 Jul 2015 11:27:08 +0200
calibre (2.31.0+dfsg-1) unstable; urgency=medium
* New upstream release (Closes: #789244)
* Add new libssl-dev build dependency, required for this version.
* debian/calibre.install: Add new "duktape" module.
-- Martin Pitt <mpitt@debian.org> Sun, 28 Jun 2015 13:46:13 +0200
calibre (2.24.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #782248)
* Drop git_pytqt_5.4.1.patch, upstream now.
-- Martin Pitt <mpitt@debian.org> Sun, 12 Apr 2015 19:02:00 -0500
calibre (2.20.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #780348)
* Backport compatibility fix for PyQT 5.4.1 from upstream git.
* debian/calibre.install: Add new css_selectors private module.
-- Martin Pitt <mpitt@debian.org> Sat, 14 Mar 2015 08:27:35 +0100
calibre (2.19.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #776786)
-- Martin Pitt <mpitt@debian.org> Fri, 06 Feb 2015 12:09:59 +0100
calibre (2.16.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #774547)
* debian/calibre.install: Drop six.py, not shipped upstream any more.
-- Martin Pitt <mpitt@debian.org> Sat, 17 Jan 2015 11:03:00 +0100
calibre (2.14.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #774003)
-- Martin Pitt <mpitt@debian.org> Sun, 28 Dec 2014 13:20:01 +0100
calibre (2.13.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #773812)
-- Martin Pitt <mpitt@debian.org> Tue, 23 Dec 2014 20:27:32 +0100
calibre (2.9.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop qt5-default metapackage (lintian complained) and set $QT_SELECT in
debian/rules instead.
-- Martin Pitt <mpitt@debian.org> Mon, 10 Nov 2014 07:34:49 +0100
calibre (2.7.0+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Martin Pitt <mpitt@debian.org> Thu, 30 Oct 2014 10:57:06 +0100
calibre (2.5.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* debian/rules: Fix get-orig-source rule to produce tarballs with just one
top-level dir, not an additional "./" prefix.
-- Martin Pitt <mpitt@debian.org> Sun, 12 Oct 2014 22:33:24 +0200
calibre (2.4.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Fix original file name of jquery.multiselect.js to avoid lintian error.
* Don't ship calibre-portable.sh, not needed in package.
* Use dpkg buildflags.mk for hardening.
-- Martin Pitt <mpitt@debian.org> Mon, 29 Sep 2014 13:14:54 +0200
calibre (2.3.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #762155)
* Rebuild against current Qt/sip API. (Closes: #761517)
* Bump Standards-Version to 3.9.6 (no changes necessary).
-- Martin Pitt <mpitt@debian.org> Fri, 19 Sep 2014 06:59:32 +0200
calibre (2.2.0+dfsg-2) unstable; urgency=medium
* Make libudev-dev and libmtdev-dev linux-any, to fix building on BSD/Hurd.
(see #760863)
* Work around broken threading on mips builders. (Closes: #760865)
-- Martin Pitt <mpitt@debian.org> Wed, 10 Sep 2014 12:01:23 +0200
calibre (2.2.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Add missing python-pyqt5.qtsvg dependency. (Closes: #759551)
* Add libegl1-mesa-dev build dep for new version.
-- Martin Pitt <mpitt@debian.org> Mon, 08 Sep 2014 09:44:52 +0200
calibre (2.0.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #759246)
* Adjust debian/rules get-orig-source for slightly changed upstream tarball
layout.
* This version uses Qt5 now. Close all crashes which are related to Qt4.
(Closes: #673598, #609705) (LP: #1294989, #1074796, #1038931, #1021047,
#976305, #967316, #958282, #939788, #930445, #927641, #925777, #891924,
#886504, #871883, #854417, #852624, #762931, #762643, #761719, #745176,
#720028, #701129, #696077, #659806, #565377, #565366, #565178, #563585,
#557883, #458403, #1216549, #1051759, #1027371, #720021, #556985, #555961)
* Adjust build and binary dependencies for the Qt 4 → 5 change.
-- Martin Pitt <mpitt@debian.org> Tue, 26 Aug 2014 20:43:13 +0200
calibre (1.48.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #757135)
-- Martin Pitt <mpitt@debian.org> Wed, 13 Aug 2014 12:04:58 +0200
calibre (1.36.0+dfsg-1) unstable; urgency=medium
* New upstream release:
- Fixes editing of metadata (Closes: #741638)
-- Martin Pitt <mpitt@debian.org> Wed, 14 May 2014 18:17:50 +0200
calibre (1.25.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* debian/rules: Drop the removal of manual/images/valid.png, got dropped
upstream.
* debian/copyright: Update copyrights, and fix wrong copyright-1.0 syntax.
Thanks Felix Gruber!
* debian/control: Remove trailing spaces.
* debian/control: Bump minimal dependencies to the versions at
http://calibre-ebook.com/download_linux. (see #738642)
* debian/rules: Ignore bash completion files, until we figure out what to
build-depend on to make these files also built in minimal schroots.
-- Martin Pitt <mpitt@debian.org> Thu, 27 Feb 2014 07:48:06 +0100
calibre (1.22.0+dfsg1-1) unstable; urgency=medium
[ Gary Preston ]
* get-orig-source:
- Remove non-free manual/images/valid.png. (Closes: #735340)
- Remove unnecessary and wrong gunzip switch from tar command.
- wget original source for jquery ui and jquery multiselect and add them
as *.js.orig next to their whitespace-compressed versions.
(Closes: #735354)
-- Martin Pitt <mpitt@debian.org> Wed, 05 Feb 2014 07:22:28 +0100
calibre (1.22.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* debian/copyright: Update to 1.0 copyright standard. Thanks Felix Gruber!
(LP: #737343)
-- Martin Pitt <mpitt@debian.org> Sun, 02 Feb 2014 10:46:11 +0100
calibre (1.14.0+dfsg-1) unstable; urgency=low
* New upstream release. (Closes: #731502)
* Depend on python-pil | python-imaging now, upstream source is compatible
with both. (Closes: #731501)
-- Martin Pitt <mpitt@debian.org> Fri, 06 Dec 2013 08:28:47 +0100
calibre (1.9.0+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/calibre.install: Install new module.
* Bump Standards-Version to 3.9.5, no changes necessary.
-- Martin Pitt <mpitt@debian.org> Mon, 04 Nov 2013 11:02:15 +0100
calibre (1.5.0+dfsg-1) unstable; urgency=low
* New upstream release. (Closes: #722962)
* Drop removal of non-free fonts, they got removed upstream.
* use_system_markdown.patch: Adjust for new upstream release.
* Drop debian/local/calibre-mount-helper and its installation in
debian/rules, upstream removed the mount-helper.
* debian/local/calibre-gui.desktop: Add GenericName, thanks Ronny
Standtke. (Closes: #662838)
-- Martin Pitt <mpitt@debian.org> Mon, 14 Oct 2013 12:12:07 +0200
calibre (1.0.0+dfsg-1) unstable; urgency=low
* New upstream release. (Closes: #720836)
* debian/calibre.install: Drop usr/etc, not shipped by upstream any more.
* debian/control: Add python-apsw dependency.
-- Martin Pitt <mpitt@debian.org> Mon, 26 Aug 2013 07:33:55 +0200
calibre (0.9.41+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/local/calibre.desktop: Rename to calibre-gui.desktop to match its
window class. (LP: #1206687)
* Add debian/local/ebook-viewer.desktop, so that one can directly open
*.epub or *.mobi files in file browsers. Thanks Korey Lu!
(Closes: #664182)
* Make it possible to auto-start calibre when connecting an e-book reader
device:
- Add debian/local/mime/calibre.xml MIME association, install in
debian/calibre.install.
- debian/local/calibre-gui.desktop: Add MIME type and file argument.
- Thanks to Thanks Korey Lu! (Closes: #715246)
-- Martin Pitt <mpitt@debian.org> Thu, 01 Aug 2013 18:17:22 +0200
calibre (0.9.31+dfsg-1) unstable; urgency=low
* New upstream release.
* Rebuild against current sip4 ABI, this makes the package installable
again. (Closes: #708613)
* Bump Standards-Version to 3.9.4, no changes necessary.
-- Martin Pitt <mpitt@debian.org> Tue, 21 May 2013 08:56:01 +0200
calibre (0.9.27+dfsg-1) experimental; urgency=low
Upload to experimental as unstable's mathjax version is too old.
[ Dmitry Shachnev ]
* Remove non-free bundled copy of unrar. (Closes: #704977, #702816)
* Remove bundled copy of mathjax. (Closes: #700838)
* Remove bundled copy of python-markdown.
* Make get-orig-tarball downloading the correct version.
* Remove *.pyc, *.qrc, *.so and *_ui.py files in clean target.
[ Martin Pitt ]
* New upstream release.
* dont_build_unrar_plugin.patch: Also remove "rar" as accepted file
extension.
-- Martin Pitt <mpitt@debian.org> Tue, 23 Apr 2013 21:58:12 +0200
calibre (0.9.18+dfsg-1) unstable; urgency=low
* New upstream release. (Closes: #699700)
* Unfuzz patches.
* Add new libqt4-private-dev build dependency, required by this version.
-- Martin Pitt <mpitt@debian.org> Tue, 12 Feb 2013 16:45:34 +0100
calibre (0.9.11+dfsg-1) unstable; urgency=low
* New upstream release.
* Add missing python-cssselect dependency.
* Add python_multiarch_inc.patch: Use python-config instead of
sysconfig.get_python_inc(), as the latter does not work with
multiarch-split include files. (LP: #1094246)
-- Martin Pitt <mpitt@debian.org> Fri, 28 Dec 2012 14:31:49 +0100
calibre (0.9.0+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/control, debian/rules: ttf-liberation is no more, move to
fonts-liberation. Thanks to Kan-Ru Chen! (Closes: #674838)
* debian/calibre.install: Drop pyPdf, not shipped upstream any more.
* debian/control: Add new python-netifaces dependency.
-- Martin Pitt <mpitt@debian.org> Wed, 03 Oct 2012 23:18:14 +0200
calibre (0.8.64+dfsg-1) unstable; urgency=low
* New upstream release:
- Update license of the quick start guide to be DFSG compatible. Thanks to
Christophe Siraut for sorting this out! (Closes: #653328)
* debian/control: Add new libmtp-dev build dependency.
* debian/control: Stricter python-mechanize dependency. (Closes: #684616)
-- Martin Pitt <mpitt@debian.org> Thu, 16 Aug 2012 09:55:40 +0200
calibre (0.8.60+dfsg-1) unstable; urgency=low
* New upstream release. (Closes: #677956)
* debian/control: New upstream release uses poppler-utils directly, drop
libpoppler-private-dev and libpoppler-qt4-dev build dependencies.
(Closes: #679883)
* Drop manpages-installation.patch, does not apply any more.
* debian/control: Fix "upports" typo. (Closes: #678686)
* debian/rules: Update source path for logo.png.
* debian/rules: Drop manpage path installation fix, as upstream does not
install manpages any more.
* debian/calibre.install: install new file qtcurve/test_rendering.py.
-- Martin Pitt <mpitt@debian.org> Sat, 21 Jul 2012 18:14:54 +0200
calibre (0.8.51+dfsg-1) unstable; urgency=low
* New upstream release.
* Rebuild against python-sip du jour. (Closes: #671809)
* debian/control: Bump python-cssutils dependency to >= 0.9.0, to ensure
that we have the "validate" keyword available.
-- Martin Pitt <mpitt@debian.org> Mon, 14 May 2012 12:13:07 +0200
calibre (0.8.49+dfsg-0.1) unstable; urgency=low
* Non-maintainer upload.
* New upstream release. (Closes: #640021)
* debian/control, debian/rules: Remove internal feedparser Python module. Add
python-feedparser as binary dependency. (Closes: #555352)
* debian/control: Bump Standards-Version (no changes needed).
* debian/watch: Upstream switched to *.tar.xz, update accordingly. (Closes:
#618948)
* debian/rules: Fix images permissions.
-- Kefu Chai <tchaikov@gmail.com> Sun, 29 Apr 2012 20:06:10 +0800
calibre (0.8.41+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/control: Add libpoppler-private-dev build dependency, thanks Pino
Toscano. (Closes: #660114)
-- Martin Pitt <mpitt@debian.org> Sat, 03 Mar 2012 22:02:28 +0100
calibre (0.8.38+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/control: Bump Standards-Version to 3.9.2. No changes necessary.
-- Martin Pitt <mpitt@debian.org> Fri, 10 Feb 2012 07:35:00 +0100
calibre (0.8.34+dfsg-1) unstable; urgency=low
* New upstream version. (Closes: #654751)
* debian/rules: Do not install calibre copy of chardet; instead, add
build/binary python-chardet dependency.
* Add disable_plugins.py: Disable plugin dialog. It uses a totally
non-authenticated and non-trusted way of installing arbitrary code.
(Closes: #640026)
* debian/rules: Install with POSIX locale, to avoid installing translated
manpages into the standard locations. (Closes: #646674)
-- Martin Pitt <mpitt@debian.org> Sat, 07 Jan 2012 11:22:54 +0100
calibre (0.8.29+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/control, debian/rules: Always depend on the python-qt4 which we
build against. This will still not stop the PyQt4 guys to break their ABI
with every single microrelease, but at least the dependency will
automatically become tighter with every calibre rebuild now.
(Closes: #651496)
* debian/control: Drop python-django-tagging dependency, not used any more.
(Closes: #651156)
* debian/rules: Fix half of the manpages landing in the wrong path.
(Closes: #646674)
* debian/control: Drop dependency to python-encutils. calibre does not use
it explicitly any more. (Closes: #649558)
-- Martin Pitt <mpitt@debian.org> Tue, 20 Dec 2011 16:02:01 +0100
calibre (0.8.28+dfsg-1) unstable; urgency=low
* debian/rules get-orig-source: Upstream switched to *.tar.xz, update
accordingly.
* New upstream release.
-- Martin Pitt <mpitt@debian.org> Tue, 06 Dec 2011 08:33:19 +0100
calibre (0.8.25+dfsg-1) unstable; urgency=low
[ Ritesh Raj Sarraf ]
* New upstream release.
[ Martin Pitt ]
* debian/control: Bump python-qt4 build/binary dependencies against PyQt4 to
>= 4.8. Yay for continuous ABI breaks. (Closes: #647268, #647819)
-- Martin Pitt <mpitt@debian.org> Fri, 11 Nov 2011 09:01:24 +0100
calibre (0.8.21+dfsg-1) unstable; urgency=low
* New upstream release. (Closes: #642517)
* debian/control: Revert accidental X-Ubuntu-Original-Maintainer change.
(Closes: #644029)
-- Martin Pitt <mpitt@debian.org> Tue, 04 Oct 2011 10:29:28 +0200
calibre (0.8.8+dfsg-1) unstable; urgency=low
[ Martin Pitt ]
* New upstream version.
* Fix wrong libmagick4 transition bug number in previous changelog.
* manpages-installation.patch: Update for new upstream version.
* debian/control: Fix spelling errors. Thanks Paul Stewart!
(LP: #803684, LP: #803676)
[ Michael Wild ]
* Don't remove pyPdf from installation, it is a modified version
(Closes: #631266, LP: #800551)
- debian/control: drop dependencies on python-pypdf
- debian/rules: do not remove pyPdf directory
- debian/calibre.install: install usr/lib/calibre/pyPdf
-- Martin Pitt <mpitt@debian.org> Thu, 07 Jul 2011 09:35:43 +0200
calibre (0.8.2+dfsg-1) unstable; urgency=low
* Rebuild against libmagick 4. (Closes: #625556)
* debian/watch: Update for new location on sourceforge.
* Drop kfreebsd.patch, fixed upstream.
* Unfuzz the other two patches.
* debian/control: Change build dependency to unversioned libboost-dev.
* debian/rules: Drop fixing recipes permissions, they are installed as a zip
file now.
* debian/rules: Rewrite weird "env python2" style hashbang lines to use
standard /usr/bin/python.
* debian/control, debian/rules: Force usage of python2.7 for now, as long as
it is not the default yet. The new upstream version requires it now.
* debian/control: Remove unnecessary python-pythonmagick dependency.
(Closes: #628640)
-- Martin Pitt <mpitt@debian.org> Tue, 31 May 2011 07:38:22 +0200
calibre (0.7.50+dfsg-2) unstable; urgency=low
* debian/control: Build with libpodofo-dev to enable PDF metadata.
(Closes: #619632)
* debian/control: Add libboost1.42-dev build dependency. Apparently it is
needed in some setups. (Closes: #619807)
* debian/rules: Call dh_sip to generate a proper sip API dependency, to
prevent crashes like #616372 for partial upgrades.
* debian/control: Bump python-qt4 dependency to >= 4.8.3-2, which reportedly
fixes crashes on startup. (Closes: #619701, #620125)
-- Martin Pitt <mpitt@debian.org> Tue, 12 Apr 2011 11:29:25 +0200
calibre (0.7.50+dfsg-1) unstable; urgency=low
* New upstream release.
* Rebuild against current python-sip ABI. (Closes: #616372, #619238)
* debian/control: Add poppler-utils dependency to ensure that pdftohtml is
available. (Closes: #612041)
-- Martin Pitt <mpitt@debian.org> Thu, 24 Mar 2011 23:11:22 +0100
calibre (0.7.44+dfsg-1) unstable; urgency=low
[ Martin Pitt ]
* New upstream release.
* debian/rules: Update get-orig-source for reorganized upstream download
URL.
[ Jose Ernesto Davila Pantoja ]
* debian/control:
- Support was misspelled as upport. (Closes: LP: #706221)
- Removed python-routes from Recommends, it's already a Depends.
-- Martin Pitt <mpitt@debian.org> Fri, 11 Feb 2011 10:19:12 +0100
calibre (0.7.43+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/control: Replace obsolete "sip4" build dependency with
python-sip-dev. (Closes: #611092)
* debian/control: Fix forgotten hardcoded python2.6 dependency.
* debian/control: Add missing ${sip:Depends} to -bin.
-- Martin Pitt <mpitt@debian.org> Mon, 31 Jan 2011 12:49:13 +0100
calibre (0.7.42+dfsg-1) unstable; urgency=low
[ Jonathan Carter ]
* Use calibre icon for LRF Viewer until it has its own one (Closes: #606900,
LP: #704075)
[ Martin Pitt ]
* New upstream release.
* Drop 00upstream_content_server_xss.patch, in upstream release now.
* no_updates_dialog.patch: Unfuzz for new release.
-- Martin Pitt <mpitt@debian.org> Tue, 25 Jan 2011 13:12:02 +0100
calibre (0.7.38+dfsg-2) unstable; urgency=low
* debian/copyright: Update according to current upstream COPYING. In
particular, the pdfreflow extension is now distributed under GPL-2+. This
permits linking against poppler (which is GPL 2 only).
(Closes: #609581)
* Add kfreebsd.patch: Fix building under GNU/kFreeBSD, thanks Petr Salinger!
(Closes: #609557)
-- Martin Pitt <mpitt@debian.org> Wed, 12 Jan 2011 22:25:48 -0600
calibre (0.7.38+dfsg-1) unstable; urgency=low
* New upstream release:
- Fix path traversal vulnerability in the content server (not enabled by
default). See http://bugs.calibre-ebook.com/ticket/7980,
http://www.waraxe.us/advisory-77.html. First half of #608822
* debian/control: Add new build dependency libicu-dev.
* Add 00upstream_content_server_xss.patch: Fix XSS vulnerability in the
content server, the other half of above issue. (Closes: #608822) Patch
cherrypicked from upstream bzr (r7531)
-- Martin Pitt <mpitt@debian.org> Mon, 10 Jan 2011 09:18:13 -0600
calibre (0.7.32+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/rules, debian/copyright, debian/control, debian/watch: Update to
new upstream page domain name.
* manpages-installation.patch: Install manpages under /usr/share/man under
KFreeBSD, too. (part of #604267)
* debian/rules: Remove bogus /config directory which the KFreeBSD
installation creates. (Closes: #604267)
* debian/control: Add new build/binary dependency python-pythonmagick, and
new build dependency libsqlite3-dev.
-- Martin Pitt <mpitt@debian.org> Sun, 05 Dec 2010 13:59:11 +0100
calibre (0.7.29+dfsg-1) unstable; urgency=low
* New upstream release. (Closes: #600787)
- Fixes handling of epubs with different local/global encoding.
(Closes: #597533)
- Removes remaining string-type exceptions. (Closes: #585216)
* debian/control: Add recommends to python-dnspython. (Closes: #604120)
* debian/control: Bump python-qt4 dependencies to >= 4.7.3.
(Closes: #584855)
* debian/rules: Remove internal copy of pyparsing and replace imports with
system library. Add python-pyparsing build and binary dependency.
(Closes: #555368)
* debian/control, debian/rules: Remove hacks to force Python 2.6, that
version is the default now.
* debian/rules: Call dh_install with --fail-missing.
* debian/calibre.install: Install new templite module.
* debian/control, debian/rules: Remove internal routes Python module. Add
python-routes build and binary dependency.
-- Martin Pitt <mpitt@debian.org> Sat, 20 Nov 2010 17:51:59 +0100
calibre (0.7.18+dfsg-1) unstable; urgency=low
* New upstream release, with support for more devices, more news recipes,
and bug fixes.
* debian/local/calibre-mount-helper: Exit with nonzero if mounting failed,
to avoid calibre getting confused. Thanks Olaf Leidinger!
-- Martin Pitt <mpitt@debian.org> Mon, 13 Sep 2010 10:03:42 +0200
calibre (0.7.13+dfsg-1) unstable; urgency=low
* New upstream version.
* debian/control: Add python-routes recommends. (Closes: #590561)
* Convert to 3.0 (quilt) source format.
* Bump debhelper compat level to 7, and drop now obsolete
DEB_DH_INSTALL_SOURCEDIR in debian/rules.
* debian/control: Add missing ${misc:Depends}.
* debian/control: Bump Standards-Version to 3.9.1.
* debian/copyright: Replace obsolete reference to
/usr/share/common-licenses/BSD with their verbatim text from the original
source.
* debian/rules: Remove invalid hashbang lines from *.recipe, these have no
__main__.
-- Martin Pitt <mpitt@debian.org> Wed, 11 Aug 2010 11:30:57 +0200
calibre (0.7.7+dfsg-1) unstable; urgency=low
* New upstream release.
- Fixes wrong version display in main window. (Closes: #587281)
-- Martin Pitt <mpitt@debian.org> Fri, 09 Jul 2010 10:35:31 +0200
calibre (0.7.2+dfsg-1) unstable; urgency=low
* New major upstream version. See http://calibre-ebook.com/new-in/seven for
details.
* Refresh patches to apply cleanly.
* debian/control: Bump python-cssutils to >= 0.9.7~ to ensure the existence
of the CSSRuleList.rulesOfType attribute. This makes epub conversion work
again. (Closes: #584756)
* Add debian/local/calibre-mount-helper: Simple and safe replacement for
upstream's calibre-mount-helper, using udisks --mount and eject.
(Closes: #584915, LP: #561958)
-- Martin Pitt <mpitt@debian.org> Mon, 21 Jun 2010 10:18:08 +0200
calibre (0.6.54+dfsg-1) unstable; urgency=low
* New upstream release. Please see http://calibre.kovidgoyal.net/new_in_6/
for the list of new features and changes. (Closes: #539343, #575546,
LP: #529730)
- Fixes crashes on startup. (Closes: #533428, #539119)
- Fixes "invalid type" errors. (Closes: #545858)
* Overhaul and update the packaging for the new release's build system.
Changes taken from the Ubuntu branch/package.
* debian/control: Bump Python dependencies to 2.6, since upstream needs
it now.
* debian/rules: Force all hashbang lines to #!/usr/bin/python2.6, as long as
2.5 is still the default in Debian.
* Bump Standards-Version to 3.8.4.
-- Martin Pitt <mpitt@debian.org> Sun, 23 May 2010 15:34:44 +0200
calibre (0.5.14+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/rules, get-orig-source: Do not unpack newly generated orig tarball
if we don't have unpackaged upstream sources in the tree (such as when
building with bzr-buildpackage).
-- Martin Pitt <mpitt@debian.org> Sat, 06 Jun 2009 17:18:02 +0200
calibre (0.5.11+dfsg-2) unstable; urgency=low
* debian/rules, debian/control: Remove upstream shipped copy of
python-django-tagging. Depend on the package instead.
(Closes: #528091)
* debian/control: Use my @debian.org Uploaders: address.
* debian/control: Bump Standards-Version (no changes necesssary).
-- Martin Pitt <mpitt@debian.org> Thu, 14 May 2009 08:15:23 +0200
calibre (0.5.11+dfsg-1) unstable; urgency=low
* New upstream release.
* debian/control: Drop Ubuntu specific python-mechanize binary dependency as
well (brown paperbag). (Closes: #525612)
-- Martin Pitt <mpitt@debian.org> Sun, 10 May 2009 21:00:35 +0200
calibre (0.5.9+dfsg-1) unstable; urgency=low
* New upstream release. (Closes: #525339)
* manpages-installation.patch: Encode generated manpages as UTF-8, to avoid
UnicodeDecodeErrors when writing them out to files.
* debian/control: Demote calibre dependency of calibre-bin to Recommends:,
which is sufficient and avoids a circular dependency. (Closes: #522059)
* debian/control: Drop build dependency help2man, current version does not
need it any more.
* debian/control: Drop versioned build dependency on python-mechanize,
current sid version is enough.
* debian/rules: Copy "setup.py install" command from cdbs'
python-distutils.mk, since the current version broke this. This is a
hackish workaround until #525436 gets fixed.
* debian/rules: Drop using $(wildcard ), use `ls`; the former does not work
any more.
-- Martin Pitt <mpitt@debian.org> Sun, 05 Apr 2009 18:42:16 -0700
calibre (0.4.143+dfsg-1) unstable; urgency=low
[ Martin Pitt ]
* Initial release, packaging by Miriam Ruiz <miriam@debian.org> and
Martin Pitt <martin.pitt@ubuntu.com>. Closes: #482680
-- Miriam Ruiz <little_miry@yahoo.es> Thu, 08 Jan 2009 21:42:04 +0100
|