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
|
rustc (1.85.0+dfsg1-1) unstable; urgency=medium
* New (stable) upstream release.
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 20 Feb 2025 19:23:02 +0100
rustc (1.85.0~beta.9+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release 1.85.0~beta999
* build docs with -j1 to make them reproducible
* build: make windows libstd build opt-in
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 17 Feb 2025 13:24:42 +0100
rustc (1.84.0+dfsg1-2) unstable; urgency=medium
* revert upstream commit breaking cross builds
* rust-llvm: ship symlink to llvm-objcopy instead of copy of binary
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 21 Jan 2025 11:38:15 +0100
rustc (1.84.0+dfsg1-1) unstable; urgency=medium
* rust-analyzer: fix build on mips64el
* fix hurd build (Closes: #1093125)
* d/control: add Conflicts with rustup (Closes: #1093031)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 16 Jan 2025 20:46:05 +0100
rustc (1.84.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Stop building wasm32-wasi target
* Build rust-analyzer (Closes: #1052319)
* rust-llvm: ship rust-objcopy helper
* rust-all: add rust-llvm and rust-analyzer packages
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sat, 11 Jan 2025 16:04:50 +0100
rustc (1.83.0+dfsg1-1) unstable; urgency=medium
* upload to unstable
* fix/ignore some test failures
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 04 Dec 2024 18:07:54 +0100
rustc (1.83.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* config: disable downloading LLVM from CI
* blake3: adapt build.rs to skip bundled C code
* remove libstd shared library
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sun, 01 Dec 2024 16:53:12 +0100
rustc (1.82.0+dfsg1-2) unstable; urgency=medium
* build: re-enable clang-rt on armel/armhf
* build: drop workaround for riscv64/loong64
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 29 Oct 2024 13:18:35 +0100
rustc (1.82.0+dfsg1-1) unstable; urgency=medium
* rust-src: ship original Cargo.lock file to fix rust-analyzer for libstd,
and allow `-Z build-std`
* build: disable profiler support on armel/armhf
* build: extend riscv64 workaround to loong64
* cargo wrapper: fix LTO position in argument lists (Closes: #1086025)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 25 Oct 2024 16:21:38 +0200
rustc (1.82.0+dfsg1-1~exp3) experimental; urgency=medium
* conditonalize riscv64 workaround
* fix or disable more broken tests
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 23 Oct 2024 20:39:25 +0200
rustc (1.82.0+dfsg1-1~exp2) experimental; urgency=medium
* fix some test breakage
* riscv64: unbreak compiler_builtin build
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 23 Oct 2024 18:03:55 +0200
rustc (1.82.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* New wasi-libc version 0.0~git20240708.3f43ea9
* switch to LLVM 19
* set LLVM profiler RT path via config
* update bootstrap git commit info patch
* re-instate bootstrap test config patch
* make rust-src cleanup more robust
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 22 Oct 2024 11:17:40 +0200
rustc (1.81.0+dfsg1-2) unstable; urgency=medium
* use system libz-sys even when cross-building (Closes: #1084754)
* drop no longer needed loongarch64 patch
* add temporary Breaks to force migration of libgit2
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 08 Oct 2024 14:34:41 +0200
rustc (1.81.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sat, 05 Oct 2024 15:54:29 +0200
rustc (1.81.0+dfsg1-1~exp2) experimental; urgency=medium
* source: duplicate lintian overrides to make ftp-masters happy
* cargo wrapper: fix LTO handling (Closes: #1079071)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sat, 05 Oct 2024 15:54:14 +0200
rustc (1.81.0+dfsg1-1~exp1) experimental; urgency=medium
[ Fabian Grünbichler ]
* New upstream release
* switch to LLVM 18
* bump libgit2 to 1.8.1
* build and install wasm-component-ld for wasm-wasip2
* make rust-llvm arch:any
[ Samuel Thibault ]
* add hurd-amd64 support
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 11 Sep 2024 08:26:59 +0200
rustc (1.80.1+dfsg1-1) unstable; urgency=medium
* upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 04 Sep 2024 20:13:19 +0200
rustc (1.80.1+dfsg1-1~exp1) experimental; urgency=medium
* New upstream point release
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 09 Aug 2024 12:03:01 +0200
rustc (1.80.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* Build wasi-p2 target
* Use packaged libonig
* Update lintian overrides
* d/control: drop Build-Conflicts on gdb-minimal
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sun, 04 Aug 2024 10:38:52 +0200
rustc (1.79.0+dfsg1-2) unstable; urgency=medium
[ Fabian Grünbichler ]
* build: remove more cache files (Closes: #1074373)
* d/control: update Standards-Version to 4.7.0
[ Samuel Thibault ]
* Avoid hurd-stuck test
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 27 Jun 2024 14:30:53 +0200
rustc (1.79.0+dfsg1-1) unstable; urgency=medium
* cargo wrapper: switch to config.toml
* cargo wrapper: ensure debug symbols are not stripped
* add missing rustfmt dependency (Closes: #1074290)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 26 Jun 2024 08:36:52 +0200
rustc (1.79.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* New wasi-libc version (SDK 22)
* config: adapt to new change tracking mechanism
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 25 Jun 2024 09:40:12 +0200
rustc (1.78.0+dfsg1-2) unstable; urgency=medium
* unbreak loongson64 build
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 24 Jun 2024 08:25:58 +0200
rustc (1.78.0+dfsg1-1) unstable; urgency=medium
[ Samuel Thibault ]
* debian/patches/vendor/u-hurd-rustix.patch: Fix Hurd build.
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 24 Jun 2024 07:36:42 +0200
rustc (1.78.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* cherry-pick rmake v2 test fix
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 21 Jun 2024 12:33:24 +0200
rustc (1.77.2+dfsg1-1) unstable; urgency=medium
[ Fabian Grünbichler ]
* fix builds on porter boxes
* d/control: tighten libgit2-dev dependency
[ Samuel Thibault ]
* fix hurd patches
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 20 Jun 2024 13:40:40 +0200
rustc (1.77.2+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* config: don't attempt to optimize compiler-rt
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 19 Jun 2024 12:44:26 +0200
rustc (1.76.0+dfsg1-1) unstable; urgency=medium
[ Samuel Thibault ]
* Fix hurd build:
- debian/patches/vendor/u-hurd-gix-index-2.patch
- debian/patches/vendor/u-hurd-gix-index.patch
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 19 Jun 2024 07:51:49 +0200
rustc (1.76.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release (Closes: #1073068)
* switch to gbp pq and topics for patches
* adapt rebasing script to patch changes
* d/control: add libsqlite3-dev to B-D
* doc: fix rust-by-example theme
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 14 Jun 2024 14:50:17 +0200
rustc (1.75.0+dfsg1-5) unstable; urgency=medium
[ Samuel Thibault ]
* hurd-i386 build fixes:
- d/patches/u-hurd-backtrace.patch
- d/patches/u-hurd-getrandom.patch
- d/patches/u-hurd-libc.3.patch
- d/patches/u-hurd-libc.4.patch
- d/patches/u-hurd-libloading-0.7.4.patch
- d/patches/u-hurd-socket2.patch
- d/patches/u-hurd-tests.patch
[ Fabian Grünbichler ]
* hurd: also skip problematic run-make test
* powerpc: disable test running into timeout (Closes: #1072897)
* d/control: replace non-ASCII apostrophe (Closes: #1072926)
* stage0: drop mips64el from default list
[ Rob Shearman ]
* fix get-stage0.py
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 12 Jun 2024 17:33:10 +0200
rustc (1.75.0+dfsg1-4) unstable; urgency=medium
* d/rules: fix comparison (unbreak 32-bit builds)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 06 Jun 2024 10:25:40 +0200
rustc (1.75.0+dfsg1-3) unstable; urgency=medium
* d/rules: fix variable typo
* fix changelog
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 06 Jun 2024 09:16:53 +0200
rustc (1.75.0+dfsg1-1) unstable; urgency=medium
* d/rules: switch low-mem check to cover all 32-bits archs
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 06 Jun 2024 08:14:17 +0200
rustc (1.75.0+dfsg1-1~exp1) experimental; urgency=medium
[ Fabian Grünbichler ]
* New upstream release (Closes: #1068008)
* fix cross-building (thanks John Paul Adrian Glaubitz!)
[ Samuel Thibault ]
* rules: Use 32bit limitations workaround on !linux as well
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 04 Jun 2024 21:24:09 +0200
rustc (1.74.1+dfsg1-1) unstable; urgency=medium
* dwz: bump limit to avoid s390x build failures
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 30 May 2024 11:25:53 +0200
rustc (1.74.1+dfsg1-1~exp1) experimental; urgency=medium
[ Fabian Grünbichler ]
* New upstream release
[ Samuel Thibault ]
* architecture.mk: Adapt to llvm/rust's hurd naming
* rules: Disable profiling on Hurd ports, llvm does not provide it yet
* rules: Set the number of expected failures on Hurd ports
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 29 May 2024 11:24:48 +0200
rustc (1.73.0+dfsg1-1) unstable; urgency=medium
* libstd-rust-1.73: fix ldconfig trigger
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 28 May 2024 17:06:58 +0200
rustc (1.73.0+dfsg1-1~exp1) experimental; urgency=medium
* new upstream release
* switch to LLVM 17
* update wasi-libc to ~git20230821.ec4566b
* cargo: remove cargo-credential-1password helper binary
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 27 May 2024 22:20:44 +0200
rustc (1.72.1+dfsg1-1) unstable; urgency=medium
* upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 27 May 2024 13:28:20 +0200
rustc (1.72.1+dfsg1-1~exp2) experimental; urgency=medium
* patches: apply rustix fixup to all versions
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 27 May 2024 10:20:22 +0200
rustc (1.72.1+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* Update wasi-libc to ~git20230621.7018e24
* Allow more test failures on loong64, and less on riscv64 (Closes: 1071707)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 23 May 2024 21:16:03 +0200
rustc (1.71.1+dfsg1-2) unstable; urgency=medium
* d/control: fix package names in B+R (Closes: #1071242)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 17 May 2024 08:38:11 +0200
rustc (1.71.1+dfsg1-1) unstable; urgency=medium
* upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 16 May 2024 21:46:58 +0200
rustc (1.71.1+dfsg1-1~exp2) experimental; urgency=medium
* d/control: properly B+R old rustc packages (Closes: #1071005)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 15 May 2024 07:21:42 +0200
rustc (1.71.1+dfsg1-1~exp1) experimental; urgency=medium
[ Fabian Grünbichler ]
* New upstream release (Closes: #1069019)
* d/control: tighten cargo versions (Closes: #1029007)
* d/control: remove B-D on cmake-3 (Closes: #1067109)
* d/control: re-enable git-using tests
* rust-doc: fix references to cargo-doc (Closes: #969210, #1063390)
* rust-src: ship Cargo.lock (Closes: #1057736)
* d/control: add libssl and prefer curl with openssl (Closes: #962508)
* d/control: move LLVM symlinks to own package (Closes: #1021868)
[ Rob Shearman ]
* Support finding llvm-profdata & llvm-cov with cargo-binutils
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 08 May 2024 18:48:48 +0200
rustc (1.70.0+dfsg2-1) unstable; urgency=medium
* upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sat, 04 May 2024 13:38:10 +0200
rustc (1.70.0+dfsg2-1~exp3) experimental; urgency=medium
* d/rules: fix last package cache removal
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 03 May 2024 17:02:14 +0200
rustc (1.70.0+dfsg2-1~exp2) experimental; urgency=medium
* d/rules: allow removal of package cache to fail
* autopkgtest: disable full build test
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 03 May 2024 15:10:49 +0200
rustc (1.70.0+dfsg2-1~exp1) experimental; urgency=medium
[ liushuyu ]
* d/*: initial merge of cargo into rustc source package (Closes: #1054658)
[ Fabian Grünbichler ]
* update libgit2
* cargo: sync test disabling changes
* adapt to current rustc/cargo version
* cargo: actually install, not just build
* add extra component tarball
* scripts/guess-crate-copyright: switch to python3-toml
* d/check-orig-suspicious.sh: remove duplicate comment stripping
* d/check-orig-suspicious.sh: support extra tar ball
* fix autopkgtest control file
* update d/copyright
* extend lintian overrides
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 03 May 2024 09:27:25 +0200
rustc (1.70.0+dfsg1-9) unstable; urgency=medium
* temporarily skip git(-cli) tests
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 25 Mar 2024 17:47:08 +0100
rustc (1.70.0+dfsg1-8.1) unstable; urgency=medium
* Non-maintainer upload
* Binary upload to rebootstrap on armel
-- Emanuele Rocca <ema@debian.org> Thu, 21 Mar 2024 10:52:23 +0000
rustc (1.70.0+dfsg1-8) unstable; urgency=medium
* d/control: switch to libllvm16t64
* d/control: switch to pkgconf
* d/rules: fix make warning in filter invocation
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 15 Mar 2024 17:18:37 +0100
rustc (1.70.0+dfsg1-7) unstable; urgency=medium
* profiler: disable on mips64el for now, it's buggy
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 15 Feb 2024 06:52:19 +0100
rustc (1.70.0+dfsg1-6) unstable; urgency=medium
[ Fabian Grünbichler ]
* fix bootstrap helpers (Closes: #1060808)
* rustix: patch both versions to fix racy build
[ Andres Salomon ]
* Fix source_orig-stage0 bootstrapping process to actually include all
architectures (closes: #1021711).
* Run 'd/rules clean' after running make_orig-stage0_tarball.sh so that the
suggestion to rebuild the .dsc actually works.
* Don't allow upstream's bootstrap.py to delete .cargo/ directory.
[ Fabian Grünbichler ]
* stage0: use current release architectures as default
* disable LLVM profiler support on sparc64 (Closes: #1061125)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sun, 11 Feb 2024 20:59:19 +0100
rustc (1.70.0+dfsg1-5) unstable; urgency=medium
* adapt LLVM_PROFILER_RT_LIB path
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 15 Jan 2024 08:16:35 +0100
rustc (1.70.0+dfsg1-4) unstable; urgency=medium
* fix libclang-rt-16-dev Build-dep
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 15 Jan 2024 07:00:08 +0100
rustc (1.70.0+dfsg1-3) unstable; urgency=medium
[ Andres Salomon ]
* Enable profiler builtin and backport u-profiler.patch (closes: #1043311).
* Build-dep on libclang-rt-16-dev.
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sun, 14 Jan 2024 20:06:29 +0100
rustc (1.70.0+dfsg1-2) unstable; urgency=medium
* Upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sat, 30 Dec 2023 14:52:00 +0100
rustc (1.70.0+dfsg1-2~exp1) experimental; urgency=medium
* riscv: disable split debuginfo support
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sat, 02 Dec 2023 11:19:31 +0100
rustc (1.70.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 20 Sep 2023 20:18:40 +0200
rustc (1.70.0+dfsg1-1~exp3) experimental; urgency=medium
* more test fixes
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 15 Sep 2023 15:07:01 +0200
rustc (1.70.0+dfsg1-1~exp2) experimental; urgency=medium
* don't remove replace-version-placeholder from workspace
* disable download tests
* fix x86 tests checking for SSE2
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Fri, 15 Sep 2023 10:10:52 +0200
rustc (1.70.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* switch to LLVM 16
* properly drop more components
* rust-src: fix path of installed example config
* fix lintian overrides
* update d/copyright
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 14 Sep 2023 09:07:26 +0200
rustc (1.69.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 13 Sep 2023 13:57:58 +0200
rustc (1.69.0+dfsg1-1~exp2) experimental; urgency=medium
* config: also enable rustdoc explicitly
* bump wasi-libc to revert stack protection (Closes: #1051815)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 13 Sep 2023 08:02:53 +0200
rustc (1.69.0+dfsg1-1~exp1) experimental; urgency=medium
[ Eric Long ]
* New upstream release
* Manually include `rust-analyzer-proc-macro-srv` (again)
[ Fabian Grünbichler ]
* add libc with "extra_traits" to feature sync patch
* update d/copyright
* update lintian overrides
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 12 Sep 2023 10:17:15 +0200
rustc (1.68.2+dfsg1-1) unstable; urgency=medium
* Upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sun, 10 Sep 2023 19:22:53 +0200
rustc (1.68.2+dfsg1-1~exp1) experimental; urgency=medium
[ Eric Long ]
* New upstream version 1.68.2+dfsg1
* Update patches to adapt to upstream test path change
[ Fabian Grünbichler ]
* Update wasi-libc to 4362b18
* Update doc path to fix linkcheck
* Update d/copyright
* Update lintian overrides
* Update privacy breach removal (github badge)
* Bump Standards-Version to 4.6.2
[Helmut Grohne]
* Fix FTCBFS: Do not pass host CFLAGS to the build compiler
(Closes: #1050975)
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Wed, 02 Aug 2023 13:17:47 +0200
rustc (1.67.1+dfsg1-1) unstable; urgency=medium
* Upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sun, 03 Sep 2023 19:58:53 +0200
rustc (1.67.1+dfsg1-1~exp1) experimental; urgency=medium
[ Fabian Grünbichler ]
* update/rebase/drop patches (based on work by Blair Noctis)
* d/copyright: add missing statements
* add missing lintian overrides for test cases
[ Blair Noctis ]
* New upstream release
* Cherry-pick sysroot detection fix
* Update d/copyright for some vendored
-- Fabian Grünbichler <f.gruenbichler@proxmox.com> Fri, 07 Jul 2023 10:01:33 +0200
rustc (1.66.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 27 Jun 2023 17:12:20 +0200
rustc (1.66.0+dfsg1-1~exp1) experimental; urgency=medium
[ Blair Noctis ]
* New upstream version 1.66.0+dfsg1
* Drop outdated patches
* Work around incorrect config handling (picking up initial rustc) when
running tests
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sun, 23 Apr 2023 20:45:41 +0200
rustc (1.65.0+dfsg1-2) unstable; urgency=medium
* Team upload
* Source-only upload
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 26 Jun 2023 17:16:27 -0400
rustc (1.65.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Tue, 20 Jun 2023 20:16:50 +0200
rustc (1.65.0+dfsg1-1~exp3) experimental; urgency=medium
* d/rules: fix typo in mipsel workaround
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sun, 12 Mar 2023 08:54:15 +0100
rustc (1.65.0+dfsg1-1~exp2) experimental; urgency=medium
[ Fabian Grünbichler ]
* d/control: add myself to Uploaders
* cherry-pick fix for failing backtrace test
* bump mipsel test failure allowance to work around broken gdb 13.1
* drop duplicate lintian override
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Sat, 11 Mar 2023 18:50:19 +0100
rustc (1.65.0+dfsg1-1~exp1) experimental; urgency=medium
[ Fabian Grünbichler ]
* New upstream version 1.65.0+dfsg1
* switch to LLVM-15
* cherry-pick fix for compiletest with rpath=false
* add overrides for rust-analyzer test data
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Wed, 15 Feb 2023 20:12:05 +0100
rustc (1.64.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable
* Add myself to Uploaders
-- Fabian Grünbichler <debian@fabian.gruenbichler.email> Mon, 12 Jun 2023 18:36:56 +0200
rustc (1.64.0+dfsg1-1~exp4) experimental; urgency=medium
[ John Paul Adrian Glaubitz ]
* fix sparc64 rustix build (Closes: #1030053)
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Tue, 31 Jan 2023 19:55:48 +0100
rustc (1.64.0+dfsg1-1~exp3) experimental; urgency=medium
[ Simon Chopin ]
* cherry-pick riscv64 fix from ubuntu
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Fri, 20 Jan 2023 20:48:11 +0100
rustc (1.64.0+dfsg1-1~exp2) experimental; urgency=medium
[ Fabian Grünbichler ]
* d/prune-unused-deps: unify cargo update calls
* fix rustix on arches requiring outline building
* fix libstd-rust-dev-windows lintian override
* fix compiler_builtins linkage on arm(el)
* add compiler_builtins sync fallbacks for arm(el)
* fix panicking lldb check on armel
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Wed, 11 Jan 2023 17:22:16 +0100
rustc (1.64.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* d/rules: auto_clean: preserve .cargo/config.toml
* d/rules: also clear bootstrap/rust-analyzer Cargo.lock
* d/rules: extend privacy-breach removal
* ship rust-analyzer-proc-macro-srv binary
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Thu, 08 Dec 2022 09:17:59 +0100
rustc (1.63.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable (Closes: #1018859)
[ Pietro Albini ]
* clarify the licensing of the mpsc implementation
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Wed, 07 Dec 2022 17:29:00 +0100
rustc (1.63.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Tue, 15 Nov 2022 19:47:53 +0100
rustc (1.62.1+dfsg1-1) unstable; urgency=medium
* Upload to unstable
* Fix armhf build
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Mon, 31 Oct 2022 14:19:34 +0100
rustc (1.62.1+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Fri, 28 Oct 2022 11:35:48 +0200
rustc (1.61.0+dfsg1-2) unstable; urgency=medium
[ Ximin Luo]
* Improve cross-building documentation
[ Adrian Bunk ]
* Disable kernel_user_helpers on armel (duplicate symbols)
* Increase allowed failures on armel/mips64el/ppc64 (Closes: #1020860)
[ Fabian Grünbichler ]
* cherry-pick patches from Ubuntu
* fix rebuild of 1.61 with 1.61
-- Fabian Gruenbichler <debian@fabian.gruenbichler.email> Mon, 10 Oct 2022 20:19:05 +0200
rustc (1.61.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable (Closes: #1020394)
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 22 Sep 2022 09:00:21 +0200
rustc (1.61.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* Switch to LLVM-14 (Closes: #1017656)
-- Fabian Gruenbichler <f.gruenbichler@proxmox.com> Wed, 07 Sep 2022 17:33:04 +0200
rustc (1.60.0+dfsg1-1) unstable; urgency=medium
* Ignore more test failures on mips64el for lack of inline assembly support.
* Add i386 and x32 to list of "low-memory" architectures requiring build
workarounds.
-- Fabian Gruenbichler <f.gruenbichler@proxmox.com> Mon, 5 Sep 2022 10:03:18 +0200
rustc (1.60.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Fabian Gruenbichler <f.gruenbichler@proxmox.com> Thu, 14 Jul 2022 13:08:16 +0200
rustc (1.59.0+dfsg1-2) unstable; urgency=medium
* Backport a patch for riscv64.
* Ignore some test failures on armhf due to regression in GDB 11.2.
-- Ximin Luo <infinity0@debian.org> Tue, 21 Jun 2022 11:06:16 +0100
rustc (1.59.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Wed, 11 May 2022 14:11:46 +0100
rustc (1.59.0+dfsg1-1~exp1) experimental; urgency=medium
[ Fabian Grünbichler ]
* New upstream release
-- Ximin Luo <infinity0@debian.org> Tue, 29 Mar 2022 14:32:01 +0100
rustc (1.58.1+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Tue, 29 Mar 2022 12:23:46 +0100
rustc (1.58.1+dfsg1-1~exp1) experimental; urgency=medium
[ Fabian Gruenbichler ]
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Tue, 08 Mar 2022 11:32:29 +0000
rustc (1.57.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable. (Closes: #1005203)
-- Ximin Luo <infinity0@debian.org> Tue, 08 Mar 2022 10:51:18 +0000
rustc (1.57.0+dfsg1-1~exp1) experimental; urgency=medium
[ Simon Chopin ]
* d/p/d-bootstrap-rustflags.patch: remove the warnings bit, use the option
"deny-warnings = false" in d/config.toml.in instead
[ Fabian Grünbichler ]
* Fix CVE-2022-21658 - std::fs::remove_dir_all TOCTOU symlink issue
* New upstream release. (Closes: #1005203)
-- Fabian Grünbichler <f.gruenbichler@proxmox.com> Thu, 03 Feb 2022 19:14:04 +0100
rustc (1.56.0+dfsg1-2) unstable; urgency=medium
* Update to debhelper 13.
-- Ximin Luo <infinity0@debian.org> Fri, 22 Oct 2021 23:29:14 +0100
rustc (1.56.0+dfsg1-1) unstable; urgency=medium
* New upstream release.
* Support terse and verbose DEB_BUILD_OPTIONS.
* Support -Z gcc-ld=lld via symlinks.
* Fix RUSTC_SYSROOT in rust-gdb and rust-lldb, thanks James McCoy.
-- Ximin Luo <infinity0@debian.org> Fri, 22 Oct 2021 18:54:49 +0100
rustc (1.56.0~beta.4+dfsg1-1~exp2) experimental; urgency=medium
* Include upstream patch for x32 support. (Closes: #993855)
* Update to LLVM 13.
-- Ximin Luo <infinity0@debian.org> Fri, 15 Oct 2021 10:44:35 +0100
rustc (1.56.0~beta.4+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Thu, 14 Oct 2021 22:50:58 +0100
rustc (1.55.0+dfsg1-2) unstable; urgency=medium
* Actually work around segfault on ppc64el.
* Fix FTBFS on armhf caused by GCC 11 changes.
-- Ximin Luo <infinity0@debian.org> Thu, 14 Oct 2021 00:36:15 +0100
rustc (1.55.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Bump test failures-allowed on s390x to 40.
* Work around a segfault on ppc64el
-- Ximin Luo <infinity0@debian.org> Wed, 13 Oct 2021 22:06:15 +0100
rustc (1.55.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sat, 09 Oct 2021 03:22:08 +0100
rustc (1.54.0+dfsg1-3) unstable; urgency=medium
* Fix links to cargo-doc.
-- Ximin Luo <infinity0@debian.org> Sat, 09 Oct 2021 11:46:08 +0100
rustc (1.54.0+dfsg1-2) unstable; urgency=medium
* Fix some more build & test failures.
-- Ximin Luo <infinity0@debian.org> Sat, 09 Oct 2021 03:12:35 +0100
rustc (1.54.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Re-enable backported patch for armhf & reset its allowed-failures.
* Add compatibility patch for cargo 0.47.
* Ignore more spurious test failures, and filed upstream.
* Bump powerpc allowed-failures to 180 at the request of ports maintainers.
-- Ximin Luo <infinity0@debian.org> Sat, 09 Oct 2021 00:24:37 +0100
rustc (1.54.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Wed, 06 Oct 2021 10:37:55 +0100
rustc (1.53.0+dfsg1-4) unstable; urgency=medium
* Ignore some hanging test regressions on non-release arches powerpc, ppc64.
-- Ximin Luo <infinity0@debian.org> Wed, 06 Oct 2021 19:24:11 +0100
rustc (1.53.0+dfsg1-3) unstable; urgency=medium
* Disable patch that was backported incorrectly.
* Temporarily increase armhf allowed-failures to 12.
-- Ximin Luo <infinity0@debian.org> Wed, 06 Oct 2021 19:01:54 +0100
rustc (1.53.0+dfsg1-2) unstable; urgency=medium
* Fix some test failures.
-- Ximin Luo <infinity0@debian.org> Wed, 06 Oct 2021 10:29:03 +0100
rustc (1.53.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Update mips patches, disable a test as our workaround makes it invalid.
* Temporarily ignore some tests that fail on big-endian.
-- Ximin Luo <infinity0@debian.org> Tue, 05 Oct 2021 23:19:31 +0100
rustc (1.53.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release. (Closes: #986803)
* Honour parallel option in DEB_BUILD_OPTIONS. (Closes: #993871)
-- Ximin Luo <infinity0@debian.org> Sat, 02 Oct 2021 12:46:49 +0100
rustc (1.52.1+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Reorganise dependencies, move optional rustc deps to rust-all.
-- Ximin Luo <infinity0@debian.org> Wed, 29 Sep 2021 20:05:55 +0100
rustc (1.52.1+dfsg1-1~exp3) experimental; urgency=medium
* Update to LLVM 12.
-- Ximin Luo <infinity0@debian.org> Wed, 19 May 2021 17:52:44 +0100
rustc (1.52.1+dfsg1-1~exp2) experimental; urgency=medium
* Fix rust-clippy dependency on libstd-rust-*
-- Ximin Luo <infinity0@debian.org> Sat, 15 May 2021 22:42:38 +0100
rustc (1.52.1+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sat, 15 May 2021 15:21:27 +0100
rustc (1.52.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Fri, 07 May 2021 20:38:38 +0100
rustc (1.52.0~beta.3+dfsg1-1~exp4) experimental; urgency=medium
* Fix issue with dh_missing --fail-missing
-- Ximin Luo <infinity0@debian.org> Thu, 06 May 2021 01:52:30 +0100
rustc (1.52.0~beta.3+dfsg1-1~exp3) experimental; urgency=medium
* Fix Makefile addition syntax.
-- Ximin Luo <infinity0@debian.org> Wed, 05 May 2021 22:24:22 +0100
rustc (1.52.0~beta.3+dfsg1-1~exp2) experimental; urgency=medium
* Install the rust-llvm-dwp symlink.
-- Ximin Luo <infinity0@debian.org> Wed, 05 May 2021 22:20:13 +0100
rustc (1.52.0~beta.3+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Mon, 26 Apr 2021 12:31:27 +0100
rustc (1.51.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Install the rust-llvm-dwp symlink.
* Bump ppc64 allowed-failures to 24.
-- Ximin Luo <infinity0@debian.org> Sun, 19 Sep 2021 19:48:33 +0100
rustc (1.51.0+dfsg1-1~exp3) experimental; urgency=medium
* Restore patch, not actually fixed upstream.
-- Ximin Luo <infinity0@debian.org> Mon, 26 Apr 2021 16:17:12 +0100
rustc (1.51.0+dfsg1-1~exp2) experimental; urgency=medium
* Drop patch fixed upstream.
* Fix bootstrap with self version.
-- Ximin Luo <infinity0@debian.org> Mon, 26 Apr 2021 12:26:43 +0100
rustc (1.51.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Enable 32-bit windows support.
-- Ximin Luo <infinity0@debian.org> Mon, 12 Apr 2021 11:04:36 +0100
rustc (1.50.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Sat, 18 Sep 2021 11:45:21 +0100
rustc (1.50.0+dfsg1-1~exp4) experimental; urgency=medium
* Fix more tests with a backported upstream PR.
-- Ximin Luo <infinity0@debian.org> Mon, 12 Apr 2021 01:51:22 +0100
rustc (1.50.0+dfsg1-1~exp3) experimental; urgency=medium
* Fix cross-compile to windows using same-version stage0.
-- Ximin Luo <infinity0@debian.org> Sun, 11 Apr 2021 13:52:41 +0100
rustc (1.50.0+dfsg1-1~exp2) experimental; urgency=medium
* Fix tests, fix s390x breakage.
-- Ximin Luo <infinity0@debian.org> Fri, 09 Apr 2021 16:54:20 +0100
rustc (1.50.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Mon, 05 Apr 2021 21:30:18 +0100
rustc (1.49.0+dfsg1-2) unstable; urgency=medium
* Backport upstream PR 85807 to fix powerpc test issues.
-- Ximin Luo <infinity0@debian.org> Sat, 18 Sep 2021 11:33:09 +0100
rustc (1.49.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Sat, 28 Aug 2021 10:48:11 +0100
rustc (1.49.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Mon, 05 Apr 2021 14:59:34 +0100
rustc (1.49.0~beta.4+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sun, 20 Dec 2020 23:26:55 +0000
rustc (1.48.0+dfsg1-2) unstable; urgency=medium
* Enable +xgot on mips64*, see upstream #52108 for details.
-- Ximin Luo <infinity0@debian.org> Sun, 20 Dec 2020 18:52:10 +0000
rustc (1.48.0+dfsg1-1) unstable; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Tue, 01 Dec 2020 19:57:48 +0000
rustc (1.48.0~beta.8+dfsg1-1~exp3) experimental; urgency=medium
* Update u-update-version-check.patch
-- Ximin Luo <infinity0@debian.org> Fri, 13 Nov 2020 01:36:31 +0000
rustc (1.48.0~beta.8+dfsg1-1~exp2) experimental; urgency=medium
* Disable copy_file_range optimisation for now, see upstream #78979.
* Ignore some other minor tests, bugs have been filed upstream.
-- Ximin Luo <infinity0@debian.org> Thu, 12 Nov 2020 23:51:53 +0000
rustc (1.48.0~beta.8+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Wed, 11 Nov 2020 12:31:18 +0000
rustc (1.47.0+dfsg1-1) unstable; urgency=medium
* New upstream release.
* Update to LLVM 11.
* Ignore more tests on big-endian.
-- Ximin Luo <infinity0@debian.org> Sat, 07 Nov 2020 21:21:03 +0000
rustc (1.47.0~beta.2+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sat, 05 Sep 2020 16:11:16 +0100
rustc (1.46.0+dfsg1-1) unstable; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sat, 29 Aug 2020 16:54:36 +0100
rustc (1.46.0~beta.2+dfsg1-1~exp5) experimental; urgency=medium
* Fix rust-gdb install path. (Closes: #968279)
* Drop powerpc allowed-failures to 12. (Closes: #955774)
* Update d-fix-mips64el-bootstrap.patch for newer LLVM.
-- Ximin Luo <infinity0@debian.org> Fri, 14 Aug 2020 23:45:25 +0100
rustc (1.46.0~beta.2+dfsg1-1~exp4) experimental; urgency=medium
* Move cross-linker Depends to Recommends - for cross-compiling support
libraries should never hard-depend on toolchains. This also allows us to
add the usual M-A annotations for libraries.
-- Ximin Luo <infinity0@debian.org> Sun, 09 Aug 2020 18:16:16 +0100
rustc (1.46.0~beta.2+dfsg1-1~exp3) experimental; urgency=medium
* Drop "-cross" suffix from libstd naming, after discussion with Helmut
Grohne. Since libstd-rust-dev-wasm-cross is not yet in stable and only
has 4 installed users, we do not retain a migration package.
-- Ximin Luo <infinity0@debian.org> Sun, 09 Aug 2020 14:27:54 +0100
rustc (1.46.0~beta.2+dfsg1-1~exp2) experimental; urgency=medium
* Add support for cross-compiling to windows. See README.Debian for details.
Currently only 64-bit works, we are waiting on #540782 for 32-bit.
-- Ximin Luo <infinity0@debian.org> Sun, 09 Aug 2020 03:52:34 +0100
rustc (1.46.0~beta.2+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Fri, 07 Aug 2020 00:15:46 +0100
rustc (1.45.0+dfsg1-2) unstable; urgency=medium
* Add some more big-endian test patches.
* Backport some patches to fix some testsuite ICEs.
-- Ximin Luo <infinity0@debian.org> Thu, 06 Aug 2020 21:11:39 +0100
rustc (1.45.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Wed, 05 Aug 2020 21:41:39 +0100
rustc (1.45.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Mon, 27 Jul 2020 17:45:24 +0100
rustc (1.44.1+dfsg1-3) unstable; urgency=medium
* Fix patch for line numbers on little-endian arches.
-- Ximin Luo <infinity0@debian.org> Tue, 28 Jul 2020 21:51:36 +0100
rustc (1.44.1+dfsg1-2) unstable; urgency=medium
* Ignore tests that assume little-endian on big-endian arches.
See upstream #74829 for details.
-- Ximin Luo <infinity0@debian.org> Tue, 28 Jul 2020 21:20:24 +0100
rustc (1.44.1+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Backport a typenum fix for i386.
* Work around upstream #74786 involving debuginfo maps.
-- Ximin Luo <infinity0@debian.org> Mon, 27 Jul 2020 13:15:20 +0100
rustc (1.44.1+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sat, 04 Jul 2020 18:04:42 +0100
rustc (1.43.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Bump LLVM B-D version for some backported fixes affecting rustc.
-- Ximin Luo <infinity0@debian.org> Sun, 05 Jul 2020 15:06:52 +0100
rustc (1.43.0+dfsg1-1~exp1) experimental; urgency=medium
* Drop sparc64 workaround. (Closes: #956413)
* Drop stack-gap workaround for old kernels and rust versions.
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Mon, 27 Apr 2020 13:09:20 +0100
rustc (1.42.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Fri, 10 Apr 2020 11:33:25 +0100
rustc (1.42.0+dfsg1-1~exp1) experimental; urgency=medium
[ Fabian Grünbichler ]
* Team upload.
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sat, 04 Apr 2020 16:06:03 +0100
rustc (1.41.1+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Fri, 03 Apr 2020 23:41:11 +0100
rustc (1.41.1+dfsg1-1~exp1) experimental; urgency=medium
[ Ximin Luo ]
* More python 2 -> 3 fixes.
* Enable the wasm32-wasi target for code that needs a "real" libstd.
* Don't strip static rlibs. This sometimes breaks wasm, and more generally
the stripped debuginfo is actually totally lost rather than being moved
into the -dbgsym packages. Shared libraries are unaffected and work.
* Allow 180 failing tests on riscv64, none were actually run last time.
[ Fabian Grünbichler ]
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Mon, 09 Mar 2020 00:31:34 +0000
rustc (1.40.0+dfsg1-5) unstable; urgency=medium
* More python 2 -> 3 fixes.
* Allow 24 failing tests on riscv64.
* Reenable debuginfo for rustc, not just libstd.
* Reenable backtraces during tests.
-- Ximin Luo <infinity0@debian.org> Sun, 05 Jan 2020 13:35:46 +0000
rustc (1.40.0+dfsg1-4) unstable; urgency=medium
* Experimental riscv64 support.
-- Ximin Luo <infinity0@debian.org> Sat, 04 Jan 2020 05:40:11 +0000
rustc (1.40.0+dfsg1-3) unstable; urgency=medium
* Work around upstream #59264 again. :/
-- Ximin Luo <infinity0@debian.org> Fri, 03 Jan 2020 22:05:16 +0000
rustc (1.40.0+dfsg1-2) unstable; urgency=medium
* Fix more internal build scripts so they use python3.
* Don't add -L/usr/lib/llvm when cross-compiling. (Closes: #941783)
-- Ximin Luo <infinity0@debian.org> Fri, 03 Jan 2020 20:18:46 +0000
rustc (1.40.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Ignore new test failing on arm that also fails in previous versions.
-- Ximin Luo <infinity0@debian.org> Sun, 29 Dec 2019 22:17:04 +0000
rustc (1.40.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Wed, 25 Dec 2019 00:09:24 +0000
rustc (1.39.0+dfsg1-4) unstable; urgency=medium
* Update to LLVM 9. (Closes: #946886)
-- Ximin Luo <infinity0@debian.org> Mon, 23 Dec 2019 03:21:02 +0000
rustc (1.39.0+dfsg1-3) unstable; urgency=medium
* Fix mips patch involving mxgot for new RUSTFLAGS behaviour.
-- Ximin Luo <infinity0@debian.org> Fri, 06 Dec 2019 22:18:53 +0000
rustc (1.39.0+dfsg1-2) unstable; urgency=medium
* Include reproducibility patch for compiler-builtins.
* Use python3 instead of python to run rustbuild. (Closes: #938422)
* Expand d-ignore-error-detail-diff.patch for unfixed upstream #53081.
-- Ximin Luo <infinity0@debian.org> Thu, 05 Dec 2019 22:51:41 +0000
rustc (1.39.0+dfsg1-1) unstable; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sat, 30 Nov 2019 22:20:48 +0000
rustc (1.38.0+dfsg1-2) unstable; urgency=medium
* Fix building with rustc 1.38.0
* Fix building with cargo 0.40.0
-- Ximin Luo <infinity0@debian.org> Fri, 29 Nov 2019 00:05:16 +0000
rustc (1.38.0+dfsg1-1) unstable; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Tue, 26 Nov 2019 14:41:46 +0000
rustc (1.37.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Fix a typo in debian/rules regex causing FTBFS on some arches.
-- Ximin Luo <infinity0@debian.org> Thu, 05 Sep 2019 00:06:23 -0700
rustc (1.37.0+dfsg1-1~exp2) experimental; urgency=medium
* Support cross-compiling to wasm32. (Closes: #903110)
To do that, install the libstd-rust-dev-wasm32-cross package and give
--target wasm32-unknown-unknown.
* Drop dependency on system compiler-rt, these new versions of rustc
actually don't need it at all.
-- Ximin Luo <infinity0@debian.org> Thu, 29 Aug 2019 09:00:03 -0700
rustc (1.37.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Use system compiler-rt.
-- Ximin Luo <infinity0@debian.org> Sun, 25 Aug 2019 03:06:33 -0700
rustc (1.36.0+dfsg1-2) unstable; urgency=medium
* Set CARGO_HOME to debian/cargo_home (instead of $HOME/.cargo) as newer
versions of cargo must take a file lock that has to exist.
-- Ximin Luo <infinity0@debian.org> Wed, 17 Jul 2019 18:25:06 -0700
rustc (1.36.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Tue, 16 Jul 2019 20:27:55 -0700
rustc (1.36.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sat, 13 Jul 2019 12:42:05 -0700
rustc (1.35.0+dfsg1-1) unstable; urgency=medium
* Add entry in 1.34.2+dfsg1-1 to note that it uses LLVM 7.
* Add entry in 1.35.0+dfsg1-1~exp2 to note that it uses LLVM 8.
* Fix ICE on sparc64 by including upstream PR #61881.
-- Ximin Luo <infinity0@debian.org> Sat, 13 Jul 2019 10:30:35 -0700
rustc (1.35.0+dfsg1-1~exp1) experimental; urgency=medium
* Don't use system compiler-rt, it's not ready yet.
* Update to LLVM 8.
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sun, 09 Jun 2019 23:20:52 -0700
rustc (1.34.2+dfsg1-1) unstable; urgency=medium
* Don't use system compiler-rt, there are issues with that for now.
* Use LLVM 7 for the Debian buster release.
-- Ximin Luo <infinity0@debian.org> Wed, 29 May 2019 21:52:37 -0700
rustc (1.34.2+dfsg1-1~exp2) experimental; urgency=medium
* Fix doc build, add version 1 compat mode hack for mdBook 2.
* Use system compiler-rt from libclang-common-*-dev.
-- Ximin Luo <infinity0@debian.org> Fri, 24 May 2019 00:39:59 -0700
rustc (1.34.2+dfsg1-1~exp1) experimental; urgency=medium
* Ensure Cargo.toml is in rust-src.
* New upstream release.
* Update to LLVM 8.
-- Ximin Luo <infinity0@debian.org> Sun, 19 May 2019 02:40:02 -0700
rustc (1.33.0+dfsg1-2) unstable; urgency=medium
* Add Fedora patches.
* Bump i386 allowed test failures to 12.
-- Ximin Luo <infinity0@debian.org> Sat, 18 May 2019 12:18:25 -0700
rustc (1.33.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Fix build on mips, flags needed whitespace massaging.
* Drop obsolete patches.
-- Ximin Luo <infinity0@debian.org> Fri, 17 May 2019 21:04:20 -0700
rustc (1.33.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
[ Hiroaki Nakamura ]
* Delete obsolete patch.
[ Sylvestre Ledru ]
* Update compiler-rt patch.
* Improve build-related docs a bit.
-- Ximin Luo <infinity0@debian.org> Mon, 29 Apr 2019 19:50:48 -0700
rustc (1.32.0+dfsg1-3) unstable; urgency=medium
* Conditionally-apply u-compiletest.patch based on stage0 compiler.
* Fix syntax error in d/rules compiletest check.
-- Ximin Luo <infinity0@debian.org> Sun, 17 Mar 2019 16:40:05 -0700
rustc (1.32.0+dfsg1-2) unstable; urgency=medium
* More verbose logging during builds.
* Fix compiletest compile error, and check log has at least 1 pass.
-- Ximin Luo <infinity0@debian.org> Sun, 17 Mar 2019 12:52:57 -0700
rustc (1.32.0+dfsg1-1) unstable; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sun, 27 Jan 2019 22:02:48 -0800
rustc (1.32.0~beta.2+dfsg1-1~exp2) experimental; urgency=medium
* Note that this upstream version already Closes: #917191.
* Backport other upstream fixes. (Closes: #916818, #917000, #917192).
-- Ximin Luo <infinity0@debian.org> Tue, 01 Jan 2019 15:26:57 -0800
rustc (1.32.0~beta.2+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Drop obsolete d-sparc64-dont-pack-spans.patch
-- Ximin Luo <infinity0@debian.org> Sun, 16 Dec 2018 13:48:25 -0800
rustc (1.31.0+dfsg1-2) unstable; urgency=medium
* Bump mips mipsel s390x allowed-failures to 24.
-- Ximin Luo <infinity0@debian.org> Sun, 16 Dec 2018 14:34:44 -0800
rustc (1.31.0+dfsg1-1) unstable; urgency=medium
* Revert debuginfo patches, they're not ready yet.
-- Ximin Luo <infinity0@debian.org> Sun, 16 Dec 2018 09:58:06 -0800
rustc (1.31.0+dfsg1-1~exp2) experimental; urgency=medium
* Drop redundant patches.
* Fix line numbers in some test-case patches.
* Backport an updated patch for gdb 8.2.
-- Ximin Luo <infinity0@debian.org> Sat, 15 Dec 2018 13:52:26 -0800
rustc (1.31.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Fri, 14 Dec 2018 21:30:56 -0800
rustc (1.31.0~beta.19+dfsg1-1~exp2) experimental; urgency=medium
* Filter LLVM build flags to not be stupid.
-- Ximin Luo <infinity0@debian.org> Sat, 01 Dec 2018 12:17:52 -0800
rustc (1.31.0~beta.19+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Thu, 29 Nov 2018 22:29:16 -0800
rustc (1.31.0~beta.4+dfsg1-1~exp2) experimental; urgency=medium
* Merge changes from Debian unstable.
-- Ximin Luo <infinity0@debian.org> Tue, 06 Nov 2018 19:45:26 -0800
rustc (1.31.0~beta.4+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Drop old maintainers from Uploaders.
-- Ximin Luo <infinity0@debian.org> Sun, 04 Nov 2018 19:00:16 -0800
rustc (1.30.0+dfsg1-2) unstable; urgency=medium
* Increase FAILURES_ALLOWED for mips mipsel to 20.
* Set debuginfo-only-std = false for 32-bit powerpc architectures.
-- Ximin Luo <infinity0@debian.org> Fri, 02 Nov 2018 01:42:36 -0700
rustc (1.30.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable. (Closes: #881845)
* Increase FAILURES_ALLOWED for mips architectures.
* Set debuginfo-only-std = false for mips architectures.
-- Ximin Luo <infinity0@debian.org> Thu, 01 Nov 2018 10:05:52 -0700
rustc (1.30.0+dfsg1-1~exp2) experimental; urgency=medium
* Disable debuginfo-gdb tests relating to enums. These will be fixed in an
upcoming version, see upstream #54614 for details.
-- Ximin Luo <infinity0@debian.org> Wed, 31 Oct 2018 00:02:25 -0700
rustc (1.30.0+dfsg1-1~exp1) experimental; urgency=medium
* Actually don't build docs in an arch-only build.
* Add mips patch, hopefully closes #881845 but let's see.
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Tue, 30 Oct 2018 22:05:59 -0700
rustc (1.30.0~beta.7+dfsg1-1~exp3) experimental; urgency=medium
* Do the necessary bookkeeping for the LLVM update.
-- Ximin Luo <infinity0@debian.org> Wed, 26 Sep 2018 23:29:18 -0700
rustc (1.30.0~beta.7+dfsg1-1~exp2) experimental; urgency=medium
* Tweak test failure rules: armel <= 8, ppc64 <= 12.
* Update to LLVM 7.
-- Ximin Luo <infinity0@debian.org> Wed, 26 Sep 2018 21:43:30 -0700
rustc (1.30.0~beta.7+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sun, 23 Sep 2018 10:40:30 -0700
rustc (1.29.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Drop d-armel-disable-kernel-helpers.patch as a necessary part of the
fix to #906520, so it is actually fixed.
* Backport a patch to fix the rand crate on powerpc. (Closes: #909400)
* Lower the s390x allowed failures back to 25.
-- Ximin Luo <infinity0@debian.org> Sun, 23 Sep 2018 10:16:53 -0700
rustc (1.29.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Include patch for armel atomics. (Closes: #906520)
* Update to latest Standards-Version; no changes required.
-- Ximin Luo <infinity0@debian.org> Thu, 20 Sep 2018 22:33:20 -0700
rustc (1.28.0+dfsg1-3) unstable; urgency=medium
* Team upload.
[ Ximin Luo ]
* More sparc64 fixes, and increase allowed-test-failures there to 180.
[ Julien Cristau ]
* Don't use pentium4 as i686 baseline (closes: #908561)
-- Julien Cristau <jcristau@debian.org> Tue, 11 Sep 2018 15:54:27 +0200
rustc (1.28.0+dfsg1-2) unstable; urgency=medium
* Switch on verbose-tests to restore the old pre-1.28 behaviour, and restore
old failure-counting logic.
* Allow 50 test failures on s390x, restored failure-counting logic avoids
more double-counts.
-- Ximin Luo <infinity0@debian.org> Sun, 05 Aug 2018 02:18:10 -0700
rustc (1.28.0+dfsg1-1) unstable; urgency=medium
* New upstream release.
* Add patches from Fedora to fix some test failures.
* Ignore a failure testing specific error output, under investigation.
* Allow 100 test failures on s390x, should be reducible later with LLVM 7.
* Temporary fix for mips64el bootstrap.
* Be even more verbose during the build.
* Update to latest Standards-Version.
-- Ximin Luo <infinity0@debian.org> Sat, 04 Aug 2018 23:04:41 -0700
rustc (1.28.0~beta.14+dfsg1-1~exp2) experimental; urgency=medium
* Update test-failure counting logic.
* Fix version constraints for Recommends: cargo.
* Add patch to fix sparc64 CABI.
-- Ximin Luo <infinity0@debian.org> Fri, 27 Jul 2018 04:26:52 -0700
rustc (1.28.0~beta.14+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Update to latest Standards-Version; no changes required.
-- Ximin Luo <infinity0@debian.org> Wed, 25 Jul 2018 03:11:11 -0700
rustc (1.27.2+dfsg1-1) unstable; urgency=medium
[ Sylvestre Ledru ]
* Update of the alioth ML address.
[ Ximin Luo ]
* Fail the build if our version contains ~exp and we are not releasing to
experimental, this has happened by accident a few times already.
* Allow 36 and 44 test failures on armel and s390x respectively.
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Tue, 24 Jul 2018 21:35:56 -0700
rustc (1.27.1+dfsg1-1~exp4) experimental; urgency=medium
* Unconditonally prune crate checksums to avoid having to manually prune them
whenever we patch the vendored crates.
-- Ximin Luo <infinity0@debian.org> Thu, 19 Jul 2018 14:49:18 -0700
rustc (1.27.1+dfsg1-1~exp3) experimental; urgency=medium
* Add patch from Fedora to fix rebuild against same version.
-- Ximin Luo <infinity0@debian.org> Thu, 19 Jul 2018 08:52:03 -0700
rustc (1.27.1+dfsg1-1~exp2) experimental; urgency=medium
* Fix some failing tests.
-- Ximin Luo <infinity0@debian.org> Wed, 18 Jul 2018 09:06:44 -0700
rustc (1.27.1+dfsg1-1~exp1) unstable; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Fri, 13 Jul 2018 22:58:02 -0700
rustc (1.26.2+dfsg1-1) unstable; urgency=medium
* New upstream release.
* Stop ignoring tests that now pass.
* Don't ignore tests that still fail, instead raise FAILURES_ALLOWED.
This allows us to see the test failures in the build logs, rather than
hiding them.
-- Ximin Luo <infinity0@debian.org> Sat, 16 Jun 2018 12:39:59 -0700
rustc (1.26.1+dfsg1-3) unstable; urgency=medium
* Fix build-dep version range to build against myself.
-- Ximin Luo <infinity0@debian.org> Thu, 31 May 2018 09:25:17 -0700
rustc (1.26.1+dfsg1-2) unstable; urgency=medium
* Also ignore test_loading_cosine on ppc64el.
-- Ximin Luo <infinity0@debian.org> Wed, 30 May 2018 20:58:46 -0700
rustc (1.26.1+dfsg1-1) unstable; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Wed, 30 May 2018 08:18:04 -0700
rustc (1.26.0+dfsg1-1~exp4) experimental; urgency=medium
* Try alternative patch to ignore x86 stdsimd tests suggested by upstream.
* Bump up allowed-test-failures to 8 to account for the fact that we're now
double-counting some failures.
-- Ximin Luo <infinity0@debian.org> Tue, 29 May 2018 20:36:56 -0700
rustc (1.26.0+dfsg1-1~exp3) experimental; urgency=medium
* Ignore some irrelevant tests on ppc64 and non-x86 platforms.
-- Ximin Luo <infinity0@debian.org> Tue, 29 May 2018 09:32:38 -0700
rustc (1.26.0+dfsg1-1~exp2) experimental; urgency=medium
* Add Breaks+Replaces for older libstd-rust-dev with codegen-backends.
(Closes: #899180)
* Backport some test and packaging fixes from Ubuntu.
-- Ximin Luo <infinity0@debian.org> Tue, 22 May 2018 22:00:53 -0700
rustc (1.26.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Update to latest Standards-Version; no changes required.
* Update doc-base files. (Closes: #876831)
-- Ximin Luo <infinity0@debian.org> Sun, 20 May 2018 03:11:45 -0700
rustc (1.25.0+dfsg1-2) unstable; urgency=medium
* Add patches for LLVM's compiler-rt to fix bugs on sparc64 and mips64.
(Closes: #898982)
* Install codegen-backends into rustc rather than libstd-rust-dev.
(Closes: #899087)
-- Ximin Luo <infinity0@debian.org> Sat, 19 May 2018 13:10:33 -0700
rustc (1.25.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Allow up to 15 test failures on s390x.
* Set CARGO_INCREMENTAL=0 on sparc64.
-- Ximin Luo <infinity0@debian.org> Fri, 18 May 2018 01:11:15 -0700
rustc (1.25.0+dfsg1-1~exp2) experimental; urgency=medium
* Install missing codegen-backends.
-- Ximin Luo <infinity0@debian.org> Fri, 06 Apr 2018 14:05:36 -0700
rustc (1.25.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Update to LLVM 6.0.
-- Ximin Luo <infinity0@debian.org> Sun, 01 Apr 2018 15:59:47 +0200
rustc (1.24.1+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
* Raise allowed-test-failures to 160 on some non-release arches: powerpc,
powerpcspe, sparc64, x32.
-- Ximin Luo <infinity0@debian.org> Wed, 07 Mar 2018 20:07:27 +0100
rustc (1.24.1+dfsg1-1~exp2) experimental; urgency=medium
* Steal some patches from Fedora to fix some test failures.
* Update debian/patches/u-make-tests-work-without-rpath.patch to try to fix
some more test failures.
-- Ximin Luo <infinity0@debian.org> Mon, 05 Mar 2018 16:25:26 +0100
rustc (1.24.1+dfsg1-1~exp1) experimental; urgency=medium
* More sparc64 CABI fixes. (Closes: #888757)
* New upstream release.
* Note that s390x baseline was updated in the meantime. (Closes: #851150)
* Include Debian-specific patch to disable kernel helpers on armel.
(Closes: #891902)
* Include missing build-dependencies for pkg.rustc.dlstage0 build profile.
(Closes: #891022)
* Add architecture.mk mapping for armel => armv5te-unknown-linux-gnueabi.
(Closes: #891913)
* Enable debuginfo-only-std on armel as well. (Closes: #891961)
* Backport upstream patch to support powerpcspe. (Closes: #891542)
* Disable full-bootstrap again to work around upstream #48319.
-- Ximin Luo <infinity0@debian.org> Sat, 03 Mar 2018 14:23:29 +0100
rustc (1.23.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Fri, 19 Jan 2018 11:49:31 +0100
rustc (1.23.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Update to latest Standards-Version; no changes required.
-- Ximin Luo <infinity0@debian.org> Sun, 14 Jan 2018 00:08:17 +0100
rustc (1.22.1+dfsg1-2) unstable; urgency=medium
* Fix B-D rustc version so this package can be built using itself.
-- Ximin Luo <infinity0@debian.org> Mon, 01 Jan 2018 14:27:19 +0100
rustc (1.22.1+dfsg1-1) unstable; urgency=medium
[ Ximin Luo ]
* Remove unimportant files that autoload remote resources from rust-src.
* Fix more symlinks in rust-doc.
* On armhf, only generate debuginfo for libstd and not the compiler itself.
This works around buildds running out of memory, see upstream #45854.
* Update to latest Standards-Version; no changes required.
[ Chris Coulson ]
* Fix some test failures that occur because we build rust without an rpath.
-- Ximin Luo <infinity0@debian.org> Mon, 18 Dec 2017 19:46:25 +0100
rustc (1.22.1+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release.
* Fix symlink target. (Closes: #877276)
-- Ximin Luo <infinity0@debian.org> Sat, 25 Nov 2017 22:29:12 +0100
rustc (1.21.0+dfsg1-3) unstable; urgency=medium
* Add/fix detection for sparc64, thanks to John Paul Adrian Glaubitz.
* Workaround FTBFS when building docs. (Closes: #880262)
-- Ximin Luo <infinity0@debian.org> Mon, 06 Nov 2017 10:03:32 +0100
rustc (1.21.0+dfsg1-2) unstable; urgency=medium
* Upload to unstable.
* Fix bootstrapping using 1.21.0, which is more strict about redundant &mut
previously used in u-output-failed-commands.patch.
* Only allow up to 5 test failures.
-- Ximin Luo <infinity0@debian.org> Wed, 25 Oct 2017 20:27:30 +0200
rustc (1.21.0+dfsg1-1) experimental; urgency=medium
* New upstream release.
* Fix the "install" target for cross-compilations; cross-compiling with
sbuild --host=$foreign-arch should work again.
* Update to latest Standards-Version; changes:
- Priority changed to optional from extra.
-- Ximin Luo <infinity0@debian.org> Tue, 17 Oct 2017 00:42:54 +0200
rustc (1.20.0+dfsg1-3) unstable; urgency=medium
* Disable jemalloc to fix FTBFS with 1.21 on armhf.
-- Ximin Luo <infinity0@debian.org> Wed, 25 Oct 2017 12:01:19 +0200
rustc (1.20.0+dfsg1-2) unstable; urgency=medium
* Update changelog entry for 1.20.0+dfsg1-1 to reflect that it was actually
and accidentally uploaded to unstable. No harm, no foul.
* We are no longer failing the build when tests fail, see NEWS or
README.Debian for details.
* Bump LLVM requirement to fix some failing tests.
-- Ximin Luo <infinity0@debian.org> Sat, 21 Oct 2017 14:20:17 +0200
rustc (1.20.0+dfsg1-1) unstable; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Sun, 15 Oct 2017 23:30:35 +0200
rustc (1.19.0+dfsg3-4) unstable; urgency=medium
* Bump LLVM requirement to pull in a fix for a FTBFS on ppc64el.
-- Ximin Luo <infinity0@debian.org> Sun, 15 Oct 2017 21:31:03 +0200
rustc (1.19.0+dfsg3-3) unstable; urgency=medium
* Fix a trailing whitespace for tidy.
-- Ximin Luo <infinity0@debian.org> Tue, 19 Sep 2017 16:09:41 +0200
rustc (1.19.0+dfsg3-2) unstable; urgency=medium
* Upload to unstable.
* Add a patch to print extra information when tests fail.
-- Ximin Luo <infinity0@debian.org> Tue, 19 Sep 2017 12:32:03 +0200
rustc (1.19.0+dfsg3-1) experimental; urgency=medium
* New upstream release.
* Upgrade to LLVM 4.0. (Closes: #873421)
* rust-src: install Debian patches as well
-- Ximin Luo <infinity0@debian.org> Fri, 15 Sep 2017 04:02:09 +0200
rustc (1.18.0+dfsg1-4) unstable; urgency=medium
* Support gperf 3.1. (Closes: #869610)
-- Ximin Luo <infinity0@debian.org> Tue, 25 Jul 2017 23:19:47 +0200
rustc (1.18.0+dfsg1-3) unstable; urgency=medium
* Upload to unstable.
* Disable failing run-make test on armhf.
-- Ximin Luo <infinity0@debian.org> Sat, 22 Jul 2017 20:30:25 +0200
rustc (1.18.0+dfsg1-2) experimental; urgency=medium
* Update to latest Standards-Version; no changes required.
* Change rustc to Multi-Arch: allowed and update Build-Depends with :native
annotations. Multi-Arch: foreign is typically for arch-indep packages that
might need to satisfy dependency chains of different architectures. Also
update instructions on cross-compiling to match this newer situation.
* Build debugging symbols for non-libstd parts of rustc.
-- Ximin Luo <infinity0@debian.org> Mon, 17 Jul 2017 23:04:03 +0200
rustc (1.18.0+dfsg1-1) experimental; urgency=medium
* New upstream release.
-- Ximin Luo <infinity0@debian.org> Tue, 27 Jun 2017 12:51:22 +0200
rustc (1.17.0+dfsg2-8) unstable; urgency=medium
* Workaround for linux #865549, fix FTBFS on ppc64el.
-- Ximin Luo <infinity0@debian.org> Mon, 17 Jul 2017 13:41:59 +0200
rustc (1.17.0+dfsg2-7) unstable; urgency=medium
* Show exception traceback in bootstrap.py to examine ppc64el build failure.
-- Ximin Luo <infinity0@debian.org> Wed, 21 Jun 2017 10:46:27 +0200
rustc (1.17.0+dfsg2-6) unstable; urgency=medium
* Upload to unstable.
-- Ximin Luo <infinity0@debian.org> Wed, 21 Jun 2017 00:24:22 +0200
rustc (1.17.0+dfsg2-5) experimental; urgency=medium
* More work-arounds for armhf test failures.
-- Ximin Luo <infinity0@debian.org> Fri, 16 Jun 2017 13:27:45 +0200
rustc (1.17.0+dfsg2-4) experimental; urgency=medium
* Fix arch-indep and arch-dep tests.
* Bump the LLVM requirement to fix FTBFS on armhf.
-- Ximin Luo <infinity0@debian.org> Wed, 14 Jun 2017 21:37:16 +0200
rustc (1.17.0+dfsg2-3) experimental; urgency=medium
* Try to force the real gdb package. Some resolvers like aspcud will select
gdb-minimal under some circumstances, but this causes the debuginfo-gdb
tests to break.
-- Ximin Luo <infinity0@debian.org> Wed, 14 Jun 2017 00:48:37 +0200
rustc (1.17.0+dfsg2-2) experimental; urgency=medium
* Support and document cross-compiling of rustc itself.
* Document cross-compiling other rust packages such as cargo.
* Work around upstream #39015 by disabling those tests rather than by
disabling optimisation, which causes FTBFS on 1.17.0 ppc64el. See
upstream #42476 and #42532 for details.
-- Ximin Luo <infinity0@debian.org> Tue, 13 Jun 2017 21:13:31 +0200
rustc (1.17.0+dfsg2-1) experimental; urgency=medium
[ Sylvestre Ledru ]
* New upstream release
[ Ximin Luo ]
* Adapt packaging for rustbuild, the new upstream cargo-based build system.
[ Matthijs van Otterdijk ]
* Add a binary package, rust-src. (Closes: #846177)
* Link to local Debian web resources in the docs, instead of remote ones.
-- Ximin Luo <infinity0@debian.org> Tue, 16 May 2017 18:00:53 +0200
rustc (1.16.0+dfsg1-1) unstable; urgency=medium
* Upload to unstable so we have something to build 1.17 with.
* Update u-ignoretest-powerpc.patch for 1.16.
-- Ximin Luo <infinity0@debian.org> Wed, 19 Apr 2017 22:47:18 +0200
rustc (1.16.0+dfsg1-1~exp2) experimental; urgency=medium
* Don't ignore test failures on Debian unstable.
* Re-fix ignoring armhf test, accidentally reverted in previous version.
* Try to fix buildd failure by swapping B-D alternatives.
-- Ximin Luo <infinity0@debian.org> Sun, 16 Apr 2017 15:05:47 +0200
rustc (1.16.0+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release
* u-ignoretest-jemalloc.patch removed (applied upstream)
[ Matthias Klose ]
* Bootstrap using the rustc version in the archive, on all architectures.
* Work around a GCC 4.8 ICE on AArch64.
* Use alternative build dependencies on cmake3 and binutils-2.26 for
builds on 14.04 LTS (trusty).
* debian/make_orig*dl_tarball.sh: Include all Ubuntu architectures.
* debian/rules: Ignore test results for now.
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 13 Apr 2017 15:24:03 +0200
rustc (1.15.1+dfsg1-1) unstable; urgency=medium
* Upload to unstable so we have something to build 1.16 with.
* Try to fix ignoring atomic-lock-free tests on armhf.
-- Ximin Luo <infinity0@debian.org> Wed, 22 Mar 2017 00:13:27 +0100
rustc (1.15.1+dfsg1-1~exp3) experimental; urgency=medium
* Ignore atomic-lock-free tests on armhf.
* Update ignoretest-armhf_03.patch for newer 1.15.1 behaviour.
* Tidy up some other patches to do with ignoring tests.
-- Ximin Luo <infinity0@debian.org> Sun, 12 Mar 2017 04:15:33 +0100
rustc (1.15.1+dfsg1-1~exp2) experimental; urgency=medium
* Update armhf ignoretest patch.
* Bootstrap armhf. (Closes: #809316, #834003)
* Bootstrap ppc4el. (Closes: #839643)
* Fix rust-lldb symlink. (Closes: #850639)
-- Ximin Luo <infinity0@debian.org> Thu, 02 Mar 2017 23:01:26 +0100
rustc (1.15.1+dfsg1-1~exp1) experimental; urgency=medium
* New upstream release (won't probably be in stretch).
see the 1.4 git branch for the follow up for stable
* Call to the test renamed from check-notidy => check
* d/p/u-destdir-support.diff: Apply upstream patch to support
destdir in the make install (for rustbuild, in later versions)
* Overrides the 'binary-or-shlib-defines-rpath' lintian warnings.
We need them for now
* Refresh of the patches
[ Sven Joachim ]
* Drop Pre-Depends on multiarch-support. (Closes: #856109)
[ Erwan Prioul ]
* Fix test and build failures for ppc64el. (Closes: #839643)
[ Ximin Luo ]
* Disable rustbuild for the time being (as it was in 1.14) and instead
bootstrap two new arches, armhf and ppc64el.
* Switch back to debhelper 9 to make backporting easier.
* Switch Build-Depends on binutils-multiarch back to binutils, the former is
no longer needed by the upstream tests.
[ Matthias Klose ]
* Compatibility fixes and improvements to help work better on Ubuntu.
-- Sylvestre Ledru <sylvestre@debian.org> Sun, 26 Feb 2017 21:12:27 +0100
rustc (1.14.0+dfsg1-3) unstable; urgency=medium
* Fix mips64 Makefile patches.
* Don't run arch-dep tests in a arch-indep build.
-- Ximin Luo <infinity0@debian.org> Wed, 04 Jan 2017 21:34:56 +0100
rustc (1.14.0+dfsg1-2) unstable; urgency=medium
* Update README.Debian, the old one was way out of date.
* Detect mips CPUs in ./configure and fill in mips Makefile rules.
* Work around jemalloc-related problems in the upstream bootstrapping
binaries for arm64, ppc64el, s390x.
* Disable jemalloc on s390x - upstream already disable it for some other
arches.
* Disable jemalloc tests for arches where jemalloc is disabled.
* We still expect the following failures:
* arm64 should be fixed (i.e. no failures) compared to the previous upload.
* armhf will FTBFS due to 'Illegal instruction' and this can only be fixed
with the next stable rustc release.
* mips mipsel mips64el ppc64 ppc64el s390x will FTBFS due to yet other
test failures beyond the ones I fixed above; this upload is only to save
me manual work in producing nice reports that exhibit these failures.
-- Ximin Luo <infinity0@debian.org> Thu, 29 Dec 2016 23:00:47 +0100
rustc (1.14.0+dfsg1-1) unstable; urgency=medium
[ Sylvestre Ledru ]
* New upstream release
* Update debian/watch
[ Ximin Luo ]
* Try to bootstrap armhf ppc64 ppc64el s390x mips mipsel mips64el.
(Closes: #809316, #834003, #839643)
* Make rust-gdb and rust-lldb arch:all packages.
* Switch to debhelper 10.
-- Ximin Luo <infinity0@debian.org> Sat, 24 Dec 2016 18:03:03 +0100
rustc (1.13.0+dfsg1-2) unstable; urgency=high
* Skip macro-stepping test on arm64, until
https://github.com/rust-lang/rust/issues/37225 is resolved.
-- Luca Bruno <lucab@debian.org> Sat, 26 Nov 2016 23:40:14 +0000
rustc (1.13.0+dfsg1-1) unstable; urgency=medium
[ Sylvestre Ledru ]
* New upstream release.
[ Ximin Luo ]
* Use Debian system jquery instead of upstream's embedded copy.
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 11 Nov 2016 13:35:23 +0100
rustc (1.12.1+dfsg1-1) unstable; urgency=medium
[ Sylvestre Ledru ]
* New (minor) upstream release
* Missing dependency from rust-lldb to python-lldb-3.8 (Closes: #841833)
* Switch to llvm 3.9. (Closes: #841834)
[ Ximin Luo ]
* Dynamically apply rust-boot-1.12.1-from-1.12.0.diff.
This allows us to bootstrap from either 1.11.0 or 1.12.0.
* Bump LLVM Build-Depends version to get the backported patches for LLVM
#30402 and #29163.
* Install debugger_pretty_printers_common to rust-gdb and rust-lldb.
(Closes: #841835)
-- Ximin Luo <infinity0@debian.org> Mon, 07 Nov 2016 14:15:14 +0100
rustc (1.12.0+dfsg1-2) unstable; urgency=medium
* Ignore test run-make/no-duplicate-libs. Fails on i386
* Ignore test run-pass-valgrind/down-with-thread-dtors.rs . Fails on arm64
* I am not switching to llvm 3.9 now because a test freezes. The plan is
to silent the warning breaking the build and upload 1.12.1 after
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 05 Oct 2016 10:48:01 +0200
rustc (1.12.0+dfsg1-1) unstable; urgency=medium
* new upstream release
- Rebase of the patches and removal of deprecated patches
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 29 Sep 2016 20:45:04 +0200
rustc (1.11.0+dfsg1-3) unstable; urgency=medium
* Fix separate build-arch and build-indep builds.
-- Ximin Luo <infinity0@debian.org> Tue, 13 Sep 2016 12:30:41 +0200
rustc (1.11.0+dfsg1-2) unstable; urgency=medium
* Fix rebuilding against the current version, by backporting a patch I wrote
that was already applied upstream. Should fix the FTBFS that was observed
by tests.reproducible-builds.org.
* Ignore a failing stdcall test on arm64; should fix the FTBFS there.
* Backport a doctest fix I wrote, already applied upstream.
-- Ximin Luo <infinity0@debian.org> Mon, 12 Sep 2016 17:40:12 +0200
rustc (1.11.0+dfsg1-1) unstable; urgency=medium
* New upstream release
* Add versioned binutils dependency. (Closes: #819475, #823540)
-- Ximin Luo <infinity0@debian.org> Wed, 07 Sep 2016 10:31:57 +0200
rustc (1.10.0+dfsg1-3) unstable; urgency=medium
* Rebuild with LLVM 3.8, same as what upstream are using
* Dynamically link against LLVM. (Closes: #832565)
-- Ximin Luo <infinity0@debian.org> Sat, 30 Jul 2016 22:36:41 +0200
rustc (1.10.0+dfsg1-2) unstable; urgency=medium
* Tentatively support ARM architectures
* Include upstream arm64,armel,armhf stage0 compilers (i.e. 1.9.0 stable)
in a orig-dl tarball, like how we previously did for amd64,i386.
-- Ximin Luo <infinity0@debian.org> Fri, 22 Jul 2016 15:54:51 +0200
rustc (1.10.0+dfsg1-1) unstable; urgency=medium
* New upstream release
* Add myself to uploaders
* Update our build process to bootstrap from the previous Debian rustc stable
version by default. See README.Debian for other options.
* Update to latest Standards-Version; no changes required.
-- Ximin Luo <infinity0@debian.org> Sun, 17 Jul 2016 03:40:49 +0200
rustc (1.9.0+dfsg1-1) unstable; urgency=medium
* New upstream release (Closes: #825752)
-- Sylvestre Ledru <sylvestre@debian.org> Sun, 29 May 2016 17:57:38 +0200
rustc (1.8.0+dfsg1-1) unstable; urgency=medium
* New upstream release
[ Ximin Luo ]
* Fix using XZ for the orig tarball: needs explicit --repack in debian/watch
* Drop wno-error patch; applied upstream.
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 15 Apr 2016 12:01:45 +0200
rustc (1.7.0+dfsg1-1) unstable; urgency=medium
* New upstream release
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 03 Mar 2016 22:41:24 +0100
rustc (1.6.0+dfsg1-3) unstable; urgency=medium
* Apply upstream fix to silent a valgrind issue in the test suite
(Closes: ##812825)
* Add gcc & libc-dev as dependency of rustc to make sure it works
out of the box
[ Ximin Luo ]
* Work around rust bug https://github.com/rust-lang/rust/issues/31529
* Enable optional tests, and add verbosity/backtraces to tests
* Use XZ instead of GZ compression (will apply to the next new upload)
-- Sylvestre Ledru <sylvestre@debian.org> Tue, 02 Feb 2016 15:08:11 +0100
rustc (1.6.0+dfsg1-2) unstable; urgency=medium
* mk/rt.mk: Modify upstream code to append -Wno-error rather than trying
to remove the string "-Werror". (Closes: #812448)
* Disable new gcc-6 "-Wmisleading-indentation" warning, which triggers
(incorrectly) on src/rt/miniz.c. (Closes: #811573)
* Guard arch-dependent dh_install commands appropriately, fixing
arch-indep-only builds. (Closes: #809124)
-- Angus Lees <gus@debian.org> Tue, 26 Jan 2016 05:40:14 +1100
rustc (1.6.0+dfsg1-1) unstable; urgency=medium
* new upstream release
[ Ximin Luo ]
* Use secure links for Vcs-* fields.
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 22 Jan 2016 10:56:08 +0100
rustc (1.5.0+dfsg1-1) unstable; urgency=medium
* New upstream release
- We believe that we should let rust transit to testing
(Closes: #786836)
* Move away from hash to the same rust naming schema
-- Sylvestre Ledru <sylvestre@debian.org> Thu, 10 Dec 2015 17:23:32 +0100
rustc (1.4.0+dfsg1-1) unstable; urgency=medium
* New upstream release
198068b3 => 1bf6e69c
* Update the download url in debian/watch
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 30 Oct 2015 09:36:02 +0100
rustc (1.3.0+dfsg1-1) unstable; urgency=medium
* New upstream release
62abc69f => 198068b3
* jquery updated from 2.1.0 to 2.1.4
[ Ximin Luo ]
* Use LLVM 3.7 as upstream does, now that it's released. (Closes: #797626)
* Fix debian/copyright syntax mistakes.
* Don't Replace/Break previous versions of libstd-rust-*
* Check that the libstd-rust-* name in d/control matches upstream.
* Several other minor build tweaks.
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 19 Sep 2015 14:39:35 +0200
rustc (1.2.0+dfsg1-1) unstable; urgency=medium
* New upstream release
libstd-rust-7d23ff90 => libstd-rust-62abc69f
* Add llvm-3.6-tools to the build dep as it is
now needed for tests
* Fix the Vcs-Browser value
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 08 Aug 2015 23:13:44 +0200
rustc (1.1.0+dfsg1-3) unstable; urgency=medium
* rust-{gdb,lldb} now Replaces pre-split rustc package.
Closes: #793433.
* Several minor lintian cleanups.
-- Angus Lees <gus@debian.org> Fri, 24 Jul 2015 17:47:48 +1000
rustc (1.1.0+dfsg1-2) unstable; urgency=medium
[ Angus Lees ]
* Replace remote Rust logo with local file in HTML docs.
* Symlink rust-{gdb,lldb}.1 to {gdb,lldb}.1 manpages.
Note that gdb.1 requires the gdb-doc package, and that lldb.1 doesn't
exist yet (see #792908).
* Restore "Architecture: amd64 i386" filter, mistakenly removed in
previous version. Unfortunately the toolchain bootstrap isn't ready
to support all Debian archs yet. Closes: #793147.
-- Angus Lees <gus@debian.org> Wed, 22 Jul 2015 09:51:08 +1000
rustc (1.1.0+dfsg1-1) unstable; urgency=low
[ Angus Lees ]
* Set SONAME when building dylibs
* Split out libstd-rust, libstd-rust-dev, rust-gdb, rust-lldb from rustc
- libs are now installed into multiarch-friendly locations
- rpath is no longer required to use dylibs (but talk to Debian Rust
maintainers before building a package that depends on the dylibs)
* Install /usr/share/rustc/architecture.mk, which declares Rust arch
triples for Debian archs and is intended to help future Rust packaging
efforts. Warning: it may not be complete/accurate yet.
* New upstream release (1.1)
-- Angus Lees <gus@debian.org> Thu, 16 Jul 2015 14:23:47 +1000
rustc (1.0.0+dfsg1-1) unstable; urgency=medium
[ Angus Lees ]
* New upstream release (1.0!)
[ Sylvestre Ledru ]
* Fix the watch file
* Update of the repack to remove llvm sources
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 16 May 2015 08:24:32 +1000
rustc (1.0.0~beta.4-1~exp1) experimental; urgency=low
[ Angus Lees ]
* New upstream release (beta 3)
- Drop manpage patch - now included upstream
* Replace duplicated compile-time dylibs with symlinks to run-time libs
(reduces installed size by ~68MB)
[ Sylvestre Ledru ]
* New upstream release (beta 4)
* Replace two more occurrences of jquery by the package
* Repack upstream to remove an LLVM file with a non-DFSG license
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 06 May 2015 11:14:30 +0200
rustc (1.0.0~alpha.2-1~exp1) experimental; urgency=low
[ Angus Lees ]
* Patch upstream manpages to address minor troff issues
* Make 'debian/rules clean' also clean LLVM source
* Rename primary 'rust' binary package to 'rustc'
* Fix potential FTBFS: rust-doc requires texlive-fonts-recommended (for
pzdr.tfm)
* Build against system LLVM
[ Sylvestre Ledru ]
* New testing release
* Renaming of the source package
* Set a minimal version for dpkg-dev and debhelper (for profiles)
* For now, disable build profiles as they are not supported in Debian
* Introduce some changes by Angus Lees
- Introduction of build stages
- Disable the parallel execution of tests
- Improving of the parallel syntax
- Use override_dh_auto_build-arch
- Use override_dh_auto_build-indep
- Better declarations of the doc
- Update of the description
- Watch file updated (with key check)
[ Luca Bruno ]
* rules: respect 'nocheck' DEB_BUILD_OPTIONS
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 07 Mar 2015 09:25:47 +0100
rust (1.0.0~alpha-0~exp1) experimental; urgency=low
* Initial package (Closes: #689207)
Work done by Luca Bruno, Jordan Justen and Sylvestre Ledru
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 23 Jan 2015 15:47:37 +0100
|