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
|
apt-setup (1:0.151~deb10u1) buster; urgency=medium
* Rebuild for buster.
-- Cyril Brulebois <kibi@debian.org> Thu, 15 Aug 2019 16:27:55 +0200
apt-setup (1:0.151) unstable; urgency=medium
[ Moritz Mühlenhoff ]
* When preseeding a local repository via apt-setup/localX/repository,
the repository key for Secure Apt needs to be configured with
apt-setup/localX/key. This key used to be set up with apt-key, but
its use is deprecated and apt's former dependency on gnupg has been
demoted to a Suggests, rendering apt-key non-functional in d-i.
Apply a patch by Lars Kollstedt (thanks!) which adds the repository
key(s) to /etc/apt/trusted.gpg.d, following the approach used by
pbuilder (Closes: #851774, #928931):
- .asc suffix if the key file seems to be armoured ASCII (i.e. it
contains a “-----BEGIN PGP PUBLIC KEY BLOCK-----” line);
- .gpg suffix otherwise. Please note that only “GPG key public ring”
are supported by APT, newer “keybox database” format isn't at the
moment.
[ Updated translations ]
* Arabic (ar.po) by ButterflyOfFire
* Hindi (hi.po) by KushagraKarira
* Croatian (hr.po) by gogogogi
-- Cyril Brulebois <kibi@debian.org> Fri, 12 Jul 2019 10:49:08 +0200
apt-setup (1:0.150) unstable; urgency=medium
* Team upload
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years! (Closes: #927494)
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
-- Holger Wansing <hwansing@mailbox.org> Tue, 28 May 2019 07:09:04 +0200
apt-setup (1:0.149) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Ukrainian (uk.po) by Anton Gladky
-- Holger Wansing <hwansing@mailbox.org> Thu, 28 Mar 2019 22:21:19 +0100
apt-setup (1:0.148) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Punjabi (pa.po) by Aman ALam
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Mon, 04 Mar 2019 23:09:07 +0100
apt-setup (1:0.147) unstable; urgency=medium
[ Steve McIntyre ]
* Tweak how media sets are used in generators/41cdset. Live and
full_cd/single media already won't prompt for more media. Re-arrange
to make all "bluray" media work the same way. Will help with Debian
Edu standalone media without affecting other uses. Closes: #919982
-- Steve McIntyre <93sam@debian.org> Mon, 11 Feb 2019 17:11:49 +0000
apt-setup (1:0.146) unstable; urgency=medium
* Team upload
* Fix missing space and superfluous colon in templates file (and sync
translations).
[ Updated translations ]
* German (de.po) by Holger Wansing
* Finnish (fi.po) by Juhani Numminen
* Hebrew (he.po) by Yaron Shahrabani
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Traditional Chinese (zh_TW.po) by Louies
-- Holger Wansing <hwansing@mailbox.org> Fri, 08 Feb 2019 17:22:44 +0100
apt-setup (1:0.145) unstable; urgency=medium
* Team upload
[ Holger Wansing ]
* Remove trailing whitespaces from changelog file, to fix lintian tag.
[ Updated translations ]
* Persian (fa.po) by Nima Sahraneshin
* Finnish (fi.po) by Juhani Numminen
-- Holger Wansing <hwansing@mailbox.org> Thu, 10 Jan 2019 23:20:27 +0100
apt-setup (1:0.144) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Asturian (ast.po) by Xuacu Saturio
* Latvian (lv.po) by Tranzistors
* Marathi (mr.po) by Nayan Nakhare
-- Holger Wansing <hwansing@mailbox.org> Tue, 30 Oct 2018 18:18:41 +0100
apt-setup (1:0.143) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Finnish (fi.po) by Juhani Numminen
* French (fr.po) by Alban Vidal
* Galician (gl.po) by mantinan
* Hindi (hi.po) by Himanshu Awasthi
[ Holger Wansing ]
* Change deprecated Priority: extra into optional.
-- Holger Wansing <hwansing@mailbox.org> Thu, 27 Sep 2018 17:36:02 +0200
apt-setup (1:0.142) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).
[ Updated translations ]
* Finnish (fi.po)
* Hebrew (he.po) by Yaron Shahrabani
* Telugu (te.po) by Praveen Illa
-- Holger Wansing <hwansing@mailbox.org> Fri, 10 Aug 2018 20:45:59 +0200
apt-setup (1:0.141) unstable; urgency=medium
[ Updated translations ]
* Welsh (cy.po) by Huw Waters
* Indonesian (id.po) by Andika Triwidada
-- Christian Perrier <bubulle@debian.org> Thu, 22 Mar 2018 12:14:40 +0100
apt-setup (1:0.140) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Indonesian (id.po) by Al Qalit
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 10 Feb 2018 16:49:19 +0100
apt-setup (1:0.139) unstable; urgency=medium
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Mon, 05 Feb 2018 06:48:13 +0100
apt-setup (1:0.138) unstable; urgency=medium
[ Updated translations ]
* Norwegian Nynorsk (nn.po) by Petter Reinholdtsen
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Mon, 29 Jan 2018 19:46:17 +0100
apt-setup (1:0.137) unstable; urgency=medium
[ Steve McIntyre ]
* If installing from a single-desktop single CD image, comment it out
from sources.list after installation like we do with the netinst
images.
* When commenting sources like this, add a helpful comment in
sources.list too.
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 20 Jan 2018 07:56:21 +0100
apt-setup (1:0.135) unstable; urgency=medium
[ Updated translations ]
* Panjabi (pa.po) by Aman ALam
* Serbian (sr.po) by Filipovic Dragan
-- Christian Perrier <bubulle@debian.org> Fri, 12 Jan 2018 06:22:05 +0100
apt-setup (1:0.134) unstable; urgency=medium
[ Updated translations ]
* Nepali (ne.po) by Jeewal Kunwar
-- Christian Perrier <bubulle@debian.org> Wed, 27 Dec 2017 08:37:37 +0100
apt-setup (1:0.133) unstable; urgency=medium
[ Updated translations ]
* Esperanto (eo.po) by Felipe Castro
* Swedish (sv.po) by Anders Jonsson
-- Christian Perrier <bubulle@debian.org> Fri, 08 Dec 2017 06:49:48 +0100
apt-setup (1:0.132) unstable; urgency=medium
[ Updated translations ]
* Lithuanian (lt.po) by Rimas Kudelis
* Norwegian Nynorsk (nn.po) by Allan Nordhøy
-- Christian Perrier <bubulle@debian.org> Mon, 27 Nov 2017 07:40:54 +0100
apt-setup (1:0.131) unstable; urgency=medium
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Greek (el.po) by Sotirios Vrachas
* Estonian (et.po) by Kristjan Räts
* Swedish (sv.po) by Anders Jonsson
-- Christian Perrier <bubulle@debian.org> Wed, 22 Nov 2017 07:35:20 +0100
apt-setup (1:0.130) unstable; urgency=medium
[ Updated translations ]
* Slovenian (sl.po) by Vanja Cvelbar
-- Christian Perrier <bubulle@debian.org> Tue, 17 Oct 2017 06:38:12 +0200
apt-setup (1:0.129) unstable; urgency=medium
[ Updated translations ]
* Greek (el.po) by Sotirios Vrachas
* Albanian (sq.po) by Silva Arapi
-- Christian Perrier <bubulle@debian.org> Tue, 12 Sep 2017 06:40:21 +0200
apt-setup (1:0.128) unstable; urgency=medium
[ Updated translations ]
* Galician (gl.po) by Jorge Barreiro
* Simplified Chinese (zh_CN.po) by Yangfl
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Tue, 20 Jun 2017 07:50:26 +0200
apt-setup (1:0.127) unstable; urgency=medium
[ Cyril Brulebois ]
* Switch default hostname from ftp.debian.org to deb.debian.org in the
following generators (Closes: #860472):
- 92updates
- 93backports
-- Christian Perrier <bubulle@debian.org> Fri, 21 Apr 2017 06:42:16 +0200
apt-setup (1:0.126) unstable; urgency=medium
[ Updated translations ]
* Italian (it.po) by Milo Casagrande
-- Christian Perrier <bubulle@debian.org> Sun, 19 Feb 2017 08:46:32 +0100
apt-setup (1:0.125) unstable; urgency=medium
[ Updated translations ]
* Korean (ko.po) by Changwoo Ryu
-- Christian Perrier <bubulle@debian.org> Mon, 13 Feb 2017 07:17:01 +0100
apt-setup (1:0.124) unstable; urgency=medium
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino Peña
-- Christian Perrier <bubulle@debian.org> Mon, 30 Jan 2017 19:03:46 +0100
apt-setup (1:0.123) unstable; urgency=medium
[ Steve McIntyre ]
* Tweak which images will offer to scan more discs
* Add myself to uploaders.
-- Steve McIntyre <93sam@debian.org> Wed, 21 Dec 2016 16:29:39 +0000
apt-setup (1:0.122) unstable; urgency=medium
[ Updated translations ]
* Kazakh (kk.po) by Baurzhan Muftakhidinov
-- Christian Perrier <bubulle@debian.org> Tue, 22 Nov 2016 07:40:44 +0100
apt-setup (1:0.121) unstable; urgency=medium
[ Updated translations ]
* Polish (pl.po) by Michał Kułach
-- Christian Perrier <bubulle@debian.org> Sun, 09 Oct 2016 07:43:45 +0200
apt-setup (1:0.120) unstable; urgency=medium
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Wed, 21 Sep 2016 07:56:40 +0200
apt-setup (1:0.119) unstable; urgency=medium
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Sun, 18 Sep 2016 08:30:35 +0200
apt-setup (1:0.118) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 30 Jul 2016 11:31:11 +0200
apt-setup (1:0.117) unstable; urgency=medium
[ Updated translations ]
* Russian (ru.po) by Yuri Kozlov
* Ukrainian (uk.po) by Anton Gladky
-- Christian Perrier <bubulle@debian.org> Sun, 17 Jul 2016 19:06:59 +0200
apt-setup (1:0.116) unstable; urgency=medium
* Rebuild with translation files that include complete information
about translator and last update information.
-- Christian Perrier <bubulle@debian.org> Sun, 05 Jun 2016 15:37:23 +0200
apt-setup (1:0.115) unstable; urgency=medium
* Rebuild with translations back in place
-- Christian Perrier <bubulle@debian.org> Sun, 29 May 2016 16:19:10 +0200
apt-setup (1:0.114) unstable; urgency=medium
[ Updated translations ]
* Serbian (sr.po) by Dragan Filipović
-- Christian Perrier <bubulle@debian.org> Sat, 28 May 2016 12:17:45 +0200
apt-setup (1:0.113) unstable; urgency=medium
[ Updated translations ]
* Serbian (sr.po) by Dragan Filipović
-- Christian Perrier <bubulle@debian.org> Fri, 22 Apr 2016 06:44:32 +0200
apt-setup (1:0.112) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Mon, 15 Feb 2016 06:57:06 +0100
apt-setup (1:0.111) unstable; urgency=medium
[ Colin Watson ]
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Thu, 04 Feb 2016 07:13:47 +0100
apt-setup (1:0.110) unstable; urgency=medium
[ Updated translations ]
* Swedish (sv.po) by Martin Bagge / brother
-- Christian Perrier <bubulle@debian.org> Thu, 28 Jan 2016 09:50:57 +0100
apt-setup (1:0.109) unstable; urgency=medium
[ Updated translations ]
* Dutch (nl.po) by Frans Spiesschaert
-- Christian Perrier <bubulle@debian.org> Sat, 23 Jan 2016 08:39:43 +0100
apt-setup (1:0.108) unstable; urgency=medium
[ Updated translations ]
* Japanese (ja.po) by Kenshi Muto
-- Christian Perrier <bubulle@debian.org> Mon, 11 Jan 2016 19:09:35 +0100
apt-setup (1:0.107) unstable; urgency=medium
[ Julien Cristau ]
* Use /debian-security path on security.debian.org.
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Czech (cs.po) by Miroslav Kure
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
-- Christian Perrier <bubulle@debian.org> Wed, 23 Dec 2015 07:49:10 +0100
apt-setup (1:0.105) unstable; urgency=medium
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Sun, 13 Dec 2015 08:46:02 +0100
apt-setup (1:0.104) unstable; urgency=medium
[ Updated translations ]
* Thai (th.po) by Theppitak Karoonboonyanan
-- Christian Perrier <bubulle@debian.org> Mon, 30 Nov 2015 07:04:21 +0100
apt-setup (1:0.103) unstable; urgency=medium
[ Raphaël Hertzog ]
* Add a new apt-setup/enable-source-repositories question to let the
user disable "deb-src" entries for network repositories that
are listed in /etc/apt/sources.list. Closes: #647405
[ Colin Watson ]
* Fix dh_installdebconf override to work properly with an
architecture-independent-only build (closes: #805994).
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* German (de.po) by Holger Wansing
* French (fr.po) by Christian Perrier
* Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
* Portuguese (pt.po) by Miguel Figueiredo
* Slovak (sk.po) by Ivan Masár
-- Christian Perrier <bubulle@debian.org> Wed, 25 Nov 2015 06:50:56 +0100
apt-setup (1:0.102) unstable; urgency=medium
[ Raphaël Hertzog ]
* Add a new apt-setup/disable-cdrom-entries to be used in preseeding
that will drop the "cdrom" entries in the target /etc/apt/sources.list.
Closes: #702257
* Also disable "cdrom" entries when the detected cd_type is live.
Closes: #652987
-- Christian Perrier <bubulle@debian.org> Fri, 11 Sep 2015 07:01:54 +0200
apt-setup (1:0.101) unstable; urgency=medium
[ Updated translations ]
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Wed, 22 Jul 2015 10:23:51 +0200
apt-setup (1:0.100) unstable; urgency=medium
[ Updated translations ]
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jun 2015 08:50:09 +0200
apt-setup (1:0.99) unstable; urgency=medium
[ Updated translations ]
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
-- Christian Perrier <bubulle@debian.org> Mon, 18 May 2015 14:21:50 +0200
apt-setup (1:0.98) unstable; urgency=medium
[ Updated translations ]
* Tamil (ta.po) by Dr.T.Vasudevan
-- Christian Perrier <bubulle@debian.org> Mon, 11 May 2015 08:38:36 +0200
apt-setup (1:0.97) unstable; urgency=medium
* Stop enabling backports by default (Closes: #764982). Rationale:
- Packages in the base suite are preferred to the ones in the
backports suite so one needs to specifically ask for the version
from backports.
- That isn't true for packages which are only available in the
backports suite.
This means one could possibly install such packages without even
noticing they're not fetched from the base suite; and that seems
a dangerous default.
-- Cyril Brulebois <kibi@debian.org> Tue, 14 Apr 2015 02:58:09 +0200
apt-setup (1:0.96) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
-- Christian Perrier <bubulle@debian.org> Sun, 05 Apr 2015 08:49:52 +0200
apt-setup (1:0.95) unstable; urgency=low
[ Updated translations ]
* Romanian (ro.po) by Bradut Boghita
-- Christian Perrier <bubulle@debian.org> Mon, 23 Mar 2015 06:54:17 +0100
apt-setup (1:0.94) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Vietnamese (vi.po) by Hai-Nam Nguyen
-- Christian Perrier <bubulle@debian.org> Sat, 07 Mar 2015 18:48:23 +0100
apt-setup (1:0.93) unstable; urgency=low
[ Updated translations ]
* German (de.po) by Holger Wansing
-- Christian Perrier <bubulle@debian.org> Mon, 26 Jan 2015 08:18:28 +0100
apt-setup (1:0.92) unstable; urgency=low
[ Updated translations ]
* Slovenian (sl.po) by Vanja Cvelbar
-- Christian Perrier <bubulle@debian.org> Wed, 22 Oct 2014 08:24:53 +0200
apt-setup (1:0.91) unstable; urgency=low
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 20 Sep 2014 09:25:02 +0200
apt-setup (1:0.90) unstable; urgency=medium
[ Colin Watson ]
* Enable amd64 as a foreign architecture by default for x32 installations.
This can be controlled by preseeding apt-setup/multiarch.
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Estonian (et.po) by Mattias Põldaru
* Panjabi (pa.po) by A S Alam
-- Christian Perrier <bubulle@debian.org> Sun, 07 Sep 2014 08:33:47 +0200
apt-setup (1:0.89) unstable; urgency=low
[ Updated translations ]
* Portuguese (pt.po) by Miguel Figueiredo
-- Christian Perrier <bubulle@debian.org> Thu, 08 May 2014 08:52:08 +0200
apt-setup (1:0.88) unstable; urgency=low
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
-- Christian Perrier <bubulle@debian.org> Sat, 05 Apr 2014 08:43:40 +0200
apt-setup (1:0.87) unstable; urgency=low
[ Updated translations ]
* Korean (ko.po) by Changwoo Ryu
-- Christian Perrier <bubulle@debian.org> Wed, 19 Mar 2014 07:02:55 +0100
apt-setup (1:0.86) unstable; urgency=high
[ Colin Watson ]
* Handle proxy and timeout configuration appropriately when installing
over HTTPS (LP: #1135163).
[ Cyril Brulebois ]
* Make sure to disable interactivity in “apt-cdrom ident” calls, by adding
“< /dev/null” as done in some “apt-cdrom add” calls. This command became
interactive in some apt versions (See: #740673), so be explicit about
what we want, which should avoid hanging.
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Bosnian (bs.po) by Amila Valjevčić
* Hungarian (hu.po) by Judit Gyimesi
* Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Cyril Brulebois <kibi@debian.org> Fri, 14 Mar 2014 20:41:00 +0100
apt-setup (1:0.85) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Galician (gl.po) by Jorge Barreiro
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Christian Perrier <bubulle@debian.org> Thu, 07 Nov 2013 06:56:34 +0100
apt-setup (1:0.84) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Greek, Modern (1453-) (el.po) by galaxico
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Croatian (hr.po) by Tomislav Krznar
* Icelandic (is.po) by Sveinn í Felli
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Kannada (kn.po) by Prabodh C P (FSMK Localisation Team)
* Latvian (lv.po) by Rūdolfs Mazurs
* Malayalam (ml.po) by Anish Sheela
* Marathi (mr.po) by sampada
* Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
* Polish (pl.po) by Michał Kułach
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Yuri Chornoivan
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Sun, 13 Oct 2013 17:14:36 +0200
apt-setup (1:0.83) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama Khayat
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Holger Wansing
* Italian (it.po) by Milo Casagrande
* Russian (ru.po) by Yuri Kozlov
-- Christian Perrier <bubulle@debian.org> Thu, 05 Sep 2013 07:00:00 +0200
apt-setup (1:0.82) unstable; urgency=low
[ Jérémy Bobbio ]
* Add support for backports. Closes: #691651
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* French (fr.po) by Christian Perrier
* Japanese (ja.po) by Kenshi Muto
* Slovak (sk.po) by Ivan Masár
* Tajik (tg.po) by Victor Ibragimov
* Thai (th.po) by Kiatkachorn Ratanatharathorn
* Uyghur (ug.po) by Abduqadir Abliz
-- Christian Perrier <bubulle@debian.org> Thu, 22 Aug 2013 15:28:33 +0200
apt-setup (1:0.81) unstable; urgency=low
[ Dmitrijs Ledkovs ]
* Set debian source format to '3.0 (native)'.
* Bump debhelper compat level to 9.
* Set Vcs-* to canonical format.
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jul 2013 13:08:02 +0200
apt-setup (1:0.80) unstable; urgency=low
[ Colin Watson ]
* Update comment on apt-setup/services-select Choices field.
* generators/01setup: Cope with the case where ROOT is unset.
* generators/01setup: If apt-setup/multiarch is empty, remove any existing
foreign architectures (as might have been set up by e.g. a live
filesystem build).
* Bail out cleanly from cdrom generator if /cdrom/.disk/info doesn't exist
or has zero size, to guard against image creation errors (LP: #245519).
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Sun, 12 May 2013 12:49:46 +0200
apt-setup (1:0.79) unstable; urgency=low
* Fix support for apt-setup/multiarch preseed option: call “dpkg
--add-architecture $arch" for each architecture, instead of
generating dpkg.cfg (used by early multiarch implementations);
thanks, Raphaël Hertzog! (Closes: #703995)
-- Cyril Brulebois <kibi@debian.org> Sat, 06 Apr 2013 20:11:42 +0200
apt-setup (1:0.78) unstable; urgency=low
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
-- Christian Perrier <bubulle@debian.org> Sat, 30 Mar 2013 07:53:14 +0100
apt-setup (1:0.77) unstable; urgency=low
[ Updated translations ]
* Hungarian (hu.po) by Dr. Nagy Elemér Károly
-- Christian Perrier <bubulle@debian.org> Sun, 09 Dec 2012 12:27:15 +0100
apt-setup (1:0.76) unstable; urgency=low
[ Updated translations ]
* Malayalam (ml.po) by Hrishikesh K B
-- Christian Perrier <bubulle@debian.org> Sat, 10 Nov 2012 11:34:58 +0100
apt-setup (1:0.75) unstable; urgency=low
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Asturian (ast.po) by ivarela
* Welsh (cy.po) by Dafydd Tomos
* Kannada (kn.po) by Prabodh
* Serbian (sr.po) by Karolina Kalic
* Tamil (ta.po) by Dr.T.Vasudevan
* Ukrainian (uk.po) by Yuri Chornoivan
-- Christian Perrier <bubulle@debian.org> Thu, 25 Oct 2012 06:12:12 +0200
apt-setup (1:0.74) unstable; urgency=low
* [l10n] Drop use of sublevel 6 and move "recently" added
strings to the sublevel they pertain to.
[ Updated translations ]
* Hindi (hi.po) by Kumar Appaiah
-- Christian Perrier <bubulle@debian.org> Sat, 06 Oct 2012 13:21:26 +0200
apt-setup (1:0.73) unstable; urgency=low
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
-- Christian Perrier <bubulle@debian.org> Sun, 30 Sep 2012 11:27:16 +0200
apt-setup (1:0.72) unstable; urgency=low
[ Updated translations ]
* Persian (fa.po) by Hamid
* Lithuanian (lt.po) by Rimas Kudelis
* Traditional Chinese (zh_TW.po) by V字龍 | Vdragon
-- Christian Perrier <bubulle@debian.org> Sun, 23 Sep 2012 14:42:57 +0200
apt-setup (1:0.71) unstable; urgency=low
[ Updated translations ]
* Greek (el.po) by galaxico
-- Christian Perrier <bubulle@debian.org> Sat, 25 Aug 2012 08:07:52 +0200
apt-setup (1:0.70) unstable; urgency=low
* Team upload
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino
* Korean (ko.po) by Changwoo Ryu
-- Christian Perrier <bubulle@debian.org> Thu, 26 Jul 2012 02:19:53 +0200
apt-setup (1:0.69) unstable; urgency=low
* Team upload
[ Updated translations ]
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
-- Christian Perrier <bubulle@debian.org> Tue, 03 Jul 2012 23:17:26 +0200
apt-setup (1:0.68) unstable; urgency=low
* Team upload
[ Updated translations ]
* Malayalam (ml.po) by Praveen
-- Christian Perrier <bubulle@debian.org> Sun, 24 Jun 2012 11:45:07 +0200
apt-setup (1:0.67) unstable; urgency=low
* Team upload
[ Updated translations ]
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
-- Christian Perrier <bubulle@debian.org> Sun, 24 Jun 2012 08:09:23 +0200
apt-setup (1:0.66) unstable; urgency=low
* Team upload
[ Updated translations ]
* Panjabi (pa.po) by A S Alam
* Romanian (ro.po) by Eddy Petrișor
-- Christian Perrier <bubulle@debian.org> Sat, 23 Jun 2012 13:52:22 +0200
apt-setup (1:0.65) unstable; urgency=low
* Team upload
[ Updated translations ]
* Simplified Chinese (zh_CN.po) by YunQiang Su
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
* Dzongkha (dz.po) by Dawa
-- Christian Perrier <bubulle@debian.org> Fri, 22 Jun 2012 18:26:23 +0200
apt-setup (1:0.64) unstable; urgency=low
* Team upload
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Persian (fa.po) by Hamid
* Finnish (fi.po) by Timo Jyrinki
* Lithuanian (lt.po) by Rimas Kudelis
* Macedonian (mk.po) by Arangel Angov
* Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
* Dutch (nl.po) by Jeroen Schot
* Slovenian (sl.po) by Vanja Cvelbar
* Serbian (sr.po) by Karolina Kalic
* Telugu (te.po) by Arjuna Rao Chavala
-- Christian Perrier <bubulle@debian.org> Thu, 21 Jun 2012 22:48:27 +0200
apt-setup (1:0.63) unstable; urgency=low
* Team upload
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
* Latvian (lv.po) by Rūdolfs Mazurs
* Russian (ru.po) by Yuri Kozlov
* Telugu (te.po) by Arjuna Rao Chavala
* Uyghur (ug.po) by Sahran
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Wed, 20 Jun 2012 06:25:38 +0200
apt-setup (1:0.62) unstable; urgency=low
* Team upload
[ Updated translations ]
* Telugu (te.po) by Arjuna Rao Chavala
* Vietnamese (vi.po) by Nguyen Vu Hung
-- Christian Perrier <bubulle@debian.org> Mon, 18 Jun 2012 14:43:35 +0200
apt-setup (1:0.61) unstable; urgency=low
* Team upload
* Replace XC-Package-Type by Package-Type
[ Updated translations ]
* French (fr.po) by Christian Perrier
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Joe Hansen
* Estonian (et.po) by Mattias Põldaru
* Japanese (ja.po) by Kenshi Muto
* Marathi (mr.po) by sampada
* Slovak (sk.po) by Ivan Masár
* Telugu (te.po) by Arjuna Rao Chavala
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Mert Dirik
* Traditional Chinese (zh_TW.po) by 林博仁
-- Christian Perrier <bubulle@debian.org> Sun, 17 Jun 2012 19:26:38 +0200
apt-setup (1:0.60) unstable; urgency=low
[ Philipp Kern ]
* Team upload.
* Replace the volatile name with release updates. (Closes: #665852)
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Telugu (te.po) by Arjuna Rao Chavala
-- Philipp Kern <pkern@debian.org> Sat, 16 Jun 2012 12:47:33 +0200
apt-setup (1:0.59) unstable; urgency=low
* Team upload
* Turn XC-Package-Type into Package-Type
[ Updated translations ]
* Welsh (cy.po) by Daffyd Tomos
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 18:03:57 +0200
apt-setup (1:0.58) unstable; urgency=low
* Team upload
[ Adam D. Barratt ]
* If no network mirror was selected during install, add a (commented-out)
entry pointing at ftp.debian.org, together with a comment explaining why
the entry is commented out and that it should be updated to use a relevant
mirror. The comment is not translated, but this is still preferable to
the previous behaviour of creating clearly broken entries under such
circumstances which users then re-enabled. (Closes: #613910)
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Tibetan (bo.po) by Tennom
* Finnish (fi.po) by Timo Jyrinki
* Galician (gl.po) by Jorge Barreiro
* Lao (lo.po) by Anousak Souphavanh
* Lithuanian (lt.po) by Rimas Kudelis
* Latvian (lv.po) by Rūdolfs Mazurs
* Macedonian (mk.po) by Arangel Angov
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Slovenian (sl.po) by Vanja Cvelbar
* Vietnamese (vi.po) by Hai-Nam Nguyen
* Simplified Chinese (zh_CN.po) by YunQiang Su
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Thu, 14 Jun 2012 20:25:38 +0200
apt-setup (1:0.57) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by Mikel González
* Bulgarian (bg.po) by Damyan Ivanov
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Joe Hansen
* Estonian (et.po) by Mattias Põldaru
* Indonesian (id.po) by Mahyuddin Susanto
* Icelandic (is.po) by Sveinn í Felli
* Italian (it.po) by Milo Casagrande
* Khmer (km.po) by Khoem Sokhem
* Kannada (kn.po) by Prabodh C P
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Norwegian Bokmal (nb.po) by Hans Fredrik Nordhaug
* Dutch (nl.po) by Jeroen Schot
* Polish (pl.po) by Marcin Owsiany
* Serbian (sr.po) by Karolina Kalic
* Uyghur (ug.po) by Sahran
-- Otavio Salvador <otavio@debian.org> Thu, 15 Mar 2012 14:29:39 -0300
apt-setup (1:0.56) unstable; urgency=low
[ Colin Watson ]
* Allow preseeding apt-setup/multiarch to configure the target system for
multiarch. Not enabled by default for any architectures yet since
multiarch dpkg is not yet in unstable.
[ Joey Hess ]
* Improve prompting for mirror when no network is configured.
[ Updated translations ]
* Arabic (ar.po) by Ossama Khayat
* Belarusian (be.po) by Viktar Siarheichyk
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Zenat Rahnuma
* Bosnian (bs.po) by Armin Besirovic
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Holger Wansing
* Greek (el.po) by galaxico
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Basque (eu.po)
* Persian (fa.po) by Behrad Eslamifar
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Kannada (kn.po) by vignesh prabhu
* Korean (ko.po) by Changwoo Ryu
* Lao (lo.po) by Anousak Souphavanh
* Macedonian (mk.po) by Arangel Angov
* Marathi (mr.po) by sampada
* Dutch (nl.po) by Jeroen Schot
* Polish (pl.po) by Marcin Owsiany
* Romanian (ro.po) by Ioan Eugen Stan
* Sinhala (si.po) by Danishka Navin
* Swedish (sv.po) by Martin Bagge / brother
* Tamil (ta.po) by Dr.T.Vasudevan
* Telugu (te.po) by Arjuna Rao Chavala
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Borys Yanovych
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Otavio Salvador <otavio@debian.org> Sat, 19 Nov 2011 16:10:11 -0200
apt-setup (1:0.55) unstable; urgency=low
[ Samuel Thibault ]
* Explicitly unmount bind mounts, do not rely on the OS to do it itself.
[ Colin Watson ]
* Display an error message if downloading the public key for a local
repository fails, and allow the user to retry (LP: #728710).
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* German (de.po) by Holger Wansing
* Basque (eu.po)
* French (fr.po) by Christian Perrier
* Portuguese (pt.po) by Miguel Figueiredo
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
-- Otavio Salvador <otavio@debian.org> Sat, 23 Jul 2011 23:50:40 +0200
apt-setup (1:0.54) unstable; urgency=low
[ Christian Perrier ]
* Add myself to Uploaders to have at least one human maintainer
[ Samuel Thibault ]
* Remove exec mount option on hurd-i386.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Estonian (et.po) by Mattias Põldaru
* Korean (ko.po) by Changwoo Ryu
* Romanian (ro.po) by Eddy Petrișor
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Telugu (te.po) by Arjuna Rao Chavala
* Thai (th.po) by Theppitak Karoonboonyanan
* Uyghur (ug.po) by Sahran
-- Christian Perrier <bubulle@debian.org> Sun, 24 Apr 2011 08:47:37 +0200
apt-setup (1:0.53) unstable; urgency=low
* Support cd_type "bluray". In particular, don't prompt at high priority
for a mirror to be configured. Closes: #609334
* Remove hardcoded bail out if the CD filesystem is not iso9660.
That seems wrong both for usb-hdd media as used by debian-live,
as well as for non-linux OSs (freebsd calls it cd9660).
* Treat usb-hdd media the same as hd-media and isohybrid, leaving
them mounted. Closes: #608201
(Needs cdrom-detect 1.38)
-- Joey Hess <joeyh@debian.org> Sun, 16 Jan 2011 14:49:31 -0400
apt-setup (1:0.52) unstable; urgency=low
[ Otavio Salvador ]
* Fix label reporting with recent APT. Closes: #602421.
[ Colin Watson ]
* Reinitialise a couple of bits of debconf state after calling
chroot_setup in the cdset generator, otherwise sourcing the confmodule
in load-install-cd gets horribly confused. This spaghetti code needs to
be rewritten after squeeze. Closes: #602421.
[ Updated translations ]
* Northern Sami (se.po) by Børre Gaup
-- Colin Watson <cjwatson@debian.org> Thu, 06 Jan 2011 17:23:52 +0000
apt-setup (1:0.51) unstable; urgency=low
[ Updated translations ]
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Fri, 24 Dec 2010 19:47:19 -0200
apt-setup (1:0.50) unstable; urgency=low
[ Christian Perrier ]
* Move security/volatile question to sublevel 3 in
translation files as this question is not asked in
default installs
[ Adam D. Barratt ]
* Support the new suite name for "volatile". Closes: #605640
[ Updated translations ]
* Lao (lo.po) by Anousak Souphavanh
* Northern Sami (se.po) by Børre Gaup
* Sinhala (si.po) by Danishka Navin
* Slovenian (sl.po) by Vanja Cvelbar
-- Christian Perrier <bubulle@debian.org> Tue, 07 Dec 2010 22:06:38 +0100
apt-setup (1:0.49) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Consistently write a blank line between generators, even if a
non-first generator starts its output with a comment.
[ Updated translations ]
* Bengali (bn.po) by Israt Jahan
* Catalan (ca.po) by Jordi Mallach
* Icelandic (is.po) by Sveinn í Felli
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 09:39:59 -0200
apt-setup (1:0.48) unstable; urgency=low
* Set LC_ALL=C when calling 'apt-cdrom ident', since we parse its output.
Broken by the change in 1:0.47 to use chroot-setup.sh, which sets LANG.
* Ask apt-setup/cdrom/media-change at critical priority, since we'll enter
an infinite loop if it isn't presented (thanks, Petter Reinholdtsen;
closes: #598457).
[ Updated translations ]
* Kazakh (kk.po) by Baurzhan Muftakhidinov
-- Colin Watson <cjwatson@debian.org> Mon, 04 Oct 2010 14:28:51 +0100
apt-setup (1:0.47) unstable; urgency=low
[ Joey Hess ]
* When cdrom-detect/hybrid is true, the CD is not mountable by apt,
so behave the same as for a hd-media install.
* Needs cdrom-detect 1.35.
[ Colin Watson ]
* Use chroot-setup.sh to mount /proc and /sys in the target when running
apt-cdrom (closes: #595903). This would normally need di-utils 1.80;
but to avoid breaking d-i squeeze alpha 1 (and possibly beta 1) initrds,
I've temporarily copied a chunk of code from chroot-setup.sh into two
apt-setup generator scripts. This should be cleaned up once
compatibility with older initrds is no longer necessary.
[ Updated translations ]
* Asturian (ast.po) by maacub
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Armin Beširović
* Danish (da.po) by Anders Jenbo
* Persian (fa.po) by Ebrahim Byagowi
* Finnish (fi.po) by Esko Arajärvi
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Mon, 20 Sep 2010 01:06:01 -0300
apt-setup (1:0.46) unstable; urgency=low
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Asturian (ast.po) by astur
* Belarusian (be.po) by Viktar Siarheichyk
* Bosnian (bs.po) by Armin Beširović
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Jacob Sparre Andersen
* German (de.po) by Holger Wansing
* Dzongkha (dz.po) by Jurmey Rabgay
* Persian (fa.po) by acathur
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Croatian (hr.po) by Josip Rodin
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Georgian (ka.po) by Aiet Kolkhi
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Central Khmer (km.po) by Khoem Sokhem
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Changwoo Ryu
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Arangel Angov
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Nepali (ne.po)
* Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by ioan-eugen stan
* Tamil (ta.po) by Dr,T,Vasudevan
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Christian Perrier <bubulle@debian.org> Sat, 10 Jul 2010 20:18:23 +0200
apt-setup (1:0.45) unstable; urgency=low
* There's no need anymore to unmount /target/cdrom.
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Hebrew (he.po) by Omer Zak
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Fri, 12 Mar 2010 23:11:42 +0100
apt-setup (1:0.44) unstable; urgency=low
[ Colin Watson ]
* Re-enable progress bar cancellation; debconf 1.5.27 fixes occasional
bugs where we weren't exiting 30 appropriately, and
debian-installer-utils 1.70 fixes exit code propagation. I've left the
comments in place pending testing.
* Guard against future multiple-CD handling changes in apt. If multiple
CDs are inserted then any one can satisfy a media-change request. We
don't yet deal with multiple CDs everywhere, but at least we won't break
when 'apt-cdrom ident' starts returning multiple labels.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Bengali (bn.po) by Israt Jahan
* German (de.po) by Holger Wansing
* Finnish (fi.po) by Esko Arajärvi
* Panjabi (pa.po) by A S Alam
* Polish (pl.po) by Bartosz Fenski
* Slovenian (sl.po) by Vanja Cvelbar
* Simplified Chinese (zh_CN.po) by 苏运强
-- Otavio Salvador <otavio@debian.org> Mon, 22 Feb 2010 00:00:01 -0300
apt-setup (1:0.43) unstable; urgency=low
[ Colin Watson ]
* Upgrade to debhelper v7.
* Stop abusing $RET in generators/50mirror for things other than debconf.
[ Chris Lamb ]
* Use cdrom-detect/cdrom_fs when remounting the CD to ensure that we do so
using the same filesystem. Patch by Colin Watson, merged back from Ubuntu.
Requires cdrom-detect >= 1.32.
* Don't try and run apt-cdrom for non-ISO9660 "CD-ROMs".
[ Frans Pop ]
* Remove no longer needed Lintian override for missing Standards-
Version field.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Asturian (ast.po) by astur
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Ask Hjorth Larsen
* Greek, Modern (1453-) (el.po)
* Estonian (et.po) by Mattias Põldaru
* Finnish (fi.po) by Esko Arajärvi
* Galician (gl.po) by Marce Villarino
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
* Dutch (nl.po) by Frans Pop
* Russian (ru.po) by Yuri Kozlov
* Slovenian (sl.po) by Vanja Cvelbar
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Mert Dirik
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Wed, 23 Dec 2009 00:34:42 +0100
apt-setup (1:0.42) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Enable universe and multiverse by default for Ubuntu installs.
- For Ubuntu installs, if either restricted or multiverse is enabled,
add commented-out lines for the partner archive.
- Use archive.ubuntu.com as the default source mirror for Ubuntu ports
architectures.
- Add apt-setup/proposed question (never asked); if preseeded to true
for Ubuntu installs, -proposed entries will be added to sources.list
(LP: #181776).
* Adjust cancellation comment in apt-setup-verify: in-target preserves
exit codes as of debian-installer-utils 1.70.
* Use fetch-url instead of wget in local generator, making it possible to
use file:// URLs.
[ Updated translations ]
* Asturian (ast.po) by Marcos Alvarez Costales
* German (de.po) by Holger Wansing
* Esperanto (eo.po) by Felipe Castro
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Hindi (hi.po)
* Italian (it.po) by Milo Casagrande
* Portuguese (pt.po) by Miguel Figueiredo
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Turkish (tr.po) by Mert Dirik
* Simplified Chinese (zh_CN.po) by Deng Xiyue
-- Otavio Salvador <otavio@ossystems.com.br> Tue, 21 Jul 2009 12:13:34 -0300
apt-setup (1:0.41) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Make sure to exit services-select generator cleanly if
apt-setup/services-select is empty.
[ Updated translations ]
* (ast.po) by Marcos Alvarez Costales
* Bengali (bn.po) by Md. Rezwan Shahid
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by marce villarino
* Hindi (hi.po) by Kumar Appaiah
* Italian (it.po) by Milo Casagrande
* Kazakh (kk.po) by daur88
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Marathi (mr.po) by Sampada
* Slovak (sk.po) by Ivan Masár
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
-- Christian Perrier <bubulle@debian.org> Thu, 11 Jun 2009 21:31:24 +0200
apt-setup (1:0.40) unstable; urgency=low
[ Colin Watson ]
* Fix the cdrom generator in the case where log-output is not being used.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Bosnian (bs.po) by Armin Besirovic
* Welsh (cy.po) by Jonathan Price
* Danish (da.po)
* Greek, Modern (1453-) (el.po)
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* French (fr.po) by Christian Perrier
* Croatian (hr.po) by Josip Rodin
* Hungarian (hu.po) by SZERVÁC Attila
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Peteris Krisjanis
* Macedonian (mk.po) by Arangel Angov
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Russian (ru.po) by Yuri Kozlov
* Serbian (sr.po) by Veselin Mijušković
* Ukrainian (uk.po) by Євгеній Мещеряков
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Deng Xiyue
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 21:46:24 -0300
apt-setup (1:0.38) unstable; urgency=high
[ Colin Watson ]
* Initialise local variable 'file' so that apt-setup-verify doesn't get
excruciatingly confused when you pass file=/path on the kernel command
line.
[ Frans Pop ]
* Fix CD-changing for etch installs. The Etch version of apt-cdrom does not
always automatically unmount the CD, so we need to do that ourselves.
* Setting urgency to high as this fix is needed for the etchnhalf netinst.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Italian (it.po) by Milo Casagrande
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Mert Dirik
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Frans Pop <fjp@debian.org> Mon, 28 Jul 2008 00:44:12 +0200
apt-setup (1:0.37) unstable; urgency=low
[ Updated translations ]
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Hungarian (hu.po) by SZERVÁC Attila
* Marathi (mr.po) by Sampada
* Dutch (nl.po) by Frans Pop
* Punjabi (Gurmukhi) (pa.po) by Amanpreet Singh Alam
-- Otavio Salvador <otavio@debian.org> Wed, 07 May 2008 23:58:11 -0300
apt-setup (1:0.36) unstable; urgency=low
* Don't scan the installation CD if it does not include base packages.
* Because of reported issues with accessing the CD in the /target environment
if it is already mounted in the D-I environment, base-installer has been
reverted to loop-mounting the installation CD. In order to still allow
CD-changing while avoiding these issues and keeping installs idempotent, we
now need to allow apt-cdrom to manage mounting/unmounting for all types of
CD images (except for hd-media installs). See: #474346, #475639.
Requires: base-installer (>= 1.90), pkgsel (>= 0.19), di-utils (>= 1.57).
[ Updated translations ]
* Kurdish (ku.po) by Erdal Ronahi
* Marathi (mr.po)
-- Frans Pop <fjp@debian.org> Mon, 28 Apr 2008 07:20:55 +0200
apt-setup (1:0.35) unstable; urgency=low
* Remove code to work around the fact that base-installer loop-mounted the
installation CD on /target/cdrom.
Requires: base-installer (>= 1.89).
* 90services-select: don't fail if question is skipped. Closes: #466066.
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Arabic (ar.po) by Ossama M. Khayat
* Basque (eu.po) by Piarres Beobide
* Dutch (nl.po) by Frans Pop
* Panjabi (pa.po) by Amanpreet Singh Alam
-- Frans Pop <fjp@debian.org> Mon, 24 Mar 2008 23:18:36 +0100
apt-setup (1:0.34) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Dzongkha (dz.po) by Jurmey Rabgay
* Finnish (fi.po) by Esko Arajärvi
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Indonesian (id.po) by Arief S Fitrianto
* Central Khmer (km.po) by Khoem Sokhem
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Nepali (ne.po) by Shyam Krishna Bal
* Panjabi (pa.po) by Amanpreet Singh Alam
* Portuguese (pt.po) by Miguel Figueiredo
* Slovenian (sl.po) by Matej Kovacic
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po)
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 07:40:58 -0200
apt-setup (1:0.33) unstable; urgency=low
[ Joey Hess ]
* Put apt downloading info in the progress bar.
* Allocate 100 steps on the progress bar for each generator,
and 100 steps for verifying each generated block.
* Export PROGRESS_FROM and PROGRESS_TO to generators, giving the
starting and ending progress bar position for that generator. This can
be used by generators that need an absolute progress bar position for
calling debconf-apt-progress.
* apt-setup-verify: Use debconf-apt-progress and add a way for generators
to specify how it should advance the progress bar.
* Allow the progress bar to be canceled.
* 50mirror: Call choose-mirror -n to avoid trashing the progress bar.
* Needs debconf 1.5.17.
[ Frans Pop ]
* debian/rules: move packaging rules from binary-arch to binary-indep.
* Adjust templates for mirror use to also cover installation from CD sets.
* Only ask to use a mirror at low priority if more that 8 CDs or 2 DVDs were
scanned.
* Language tasks fit on CD3/DVD1; don't warn about missing packages from
them unless necessary.
* Move templates for mirror use linked to installation from CD to apt-cdrom
as they can only be used when that is installed.
* Disable option to cancel progress bar as there are issues with it.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Stefano Canepa
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Amed Çeko Jiyan
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Viesturs Zarins
* Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
* Dutch (nl.po) by Frans Pop
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Panjabi (pa.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Frans Pop <fjp@debian.org> Tue, 05 Feb 2008 00:17:21 +0100
apt-setup (1:0.32) unstable; urgency=low
[ Frans Pop ]
* Add support for CD/DVD sets during installation:
- rename generator 50cdrom to 40cdrom to make room for new generator
- add new generator 41cdset to support scanning additional CD/DVDs
- add script load-install-cd
To support CD/DVD changing, the installation CD/DVD needs to be unmounted
in the D-I environment during package installation, which means that e.g.
running anna-install to install udebs is no longer possible. Because of
this components/scripts also need make sure that the installation CD is
loaded and mounted again after package installation.
Components/scripts that can install packages in /target after apt-setup
has been run should either use apt-install, or create the correct
conditions themselves (as pkgsel does).
Requires apt (0.7.9) in testing for #448187 and #448521, and requires
pkgsel (1.16) and di-utils (1.50).
* Add myself as uploader.
[ Colin Watson ]
* Strip 'deb ' from the start of apt-setup/local*/repository, just in case
somebody copies and pastes from an existing sources.list; see also
#420894.
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Dzongkha (dz.po) by Jurmey Rabgay
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Erdal Ronahi
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
* Panjabi (pa.po) by A S Alam
* Polish (pl.po) by Bartosz Fenski
* Slovak (sk.po) by Ivan Masár
-- Frans Pop <fjp@debian.org> Sun, 06 Jan 2008 20:35:19 +0100
apt-setup (1:0.31) unstable; urgency=low
* Correct inverted test for CD sources, which caused it to skip verification
of mirrors.
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino Peña
-- Joey Hess <joeyh@debian.org> Fri, 02 Nov 2007 13:19:03 -0400
apt-setup (1:0.30) unstable; urgency=low
[ Frans Pop ]
* apt-setup-verify: 'apt-get update' does not actually verify CD/DVD
sources, so skip those.
* 50cdrom: rewrite error handling as 'apt-get update' does not verify CDs
but 'apt-cdrom add' will return an error if it fails to identify a CD.
[ Updated translations ]
* Belarusian (be.po) by Hleb Rubanau
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Serge Leblanc
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Korean (ko.po) by Sunjae Park
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
-- Otavio Salvador <otavio@debian.org> Sat, 27 Oct 2007 11:45:54 -0200
apt-setup (1:0.29) unstable; urgency=low
[ Frans Pop ]
* Add back detection if user selected to not configure the network. That
check is unrelated to the loop discussed in #442891. Closes: #402645.
* Allow to continue without selecting a mirror when choose-mirror exits
non-zero. This allows a user to back out of mirror selection in the case
of a netinst install without a network being available while still
avoiding the "use a mirror" question for all netinst based installs.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Jérémy Bobbio <lunar@debian.org> Thu, 27 Sep 2007 18:18:15 +0200
apt-setup (1:0.28) unstable; urgency=low
* Revert detection of unconfigured network in netcfg as it cannot be done
reliably. Closes: #443831, reopens #402645.
-- Joey Hess <joeyh@debian.org> Mon, 24 Sep 2007 14:44:01 -0400
apt-setup (1:0.27) unstable; urgency=low
* Notice if netcfg was skipped entirely (possibly due to there being no
network card), or never asked netcfg/dhcp_options, and behave same
as if the user selected to not configure the network in netcfg.
Closes: #442891
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Stefano Canepa
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Thai (th.po) by Theppitak Karoonboonyanan
-- Joey Hess <joeyh@debian.org> Mon, 17 Sep 2007 17:34:55 -0400
apt-setup (1:0.26) unstable; urgency=low
[ Frans Pop ]
* Default to not using a mirror if the user selected to not configure the
network in netcfg. Mirrors for update services are added commented out
without testing for them. Closes: #402645.
-- Otavio Salvador <otavio@ossystems.com.br> Mon, 20 Aug 2007 13:53:50 -0300
apt-setup (1:0.25) unstable; urgency=low
[ Frans Pop ]
* Fix inconsistency in template names that causes an error during install.
[ Updated translations ]
* Dutch (nl.po) by Bart Cornelis
-- Jérémy Bobbio <lunar@debian.org> Sun, 12 Aug 2007 00:06:07 +0200
apt-setup (1:0.24) unstable; urgency=low
[ Frans Pop ]
* Remove old isinstallable file that was for sarge, we don't support sarge
installs anymore.
* Add support for updates from volatile.debian.org.
* Allow the user to select whether to add security and/or volatile updates.
The question is only asked at medium or low priority. Closes: #401432.
* For CD installs, ask more selectively whether to use a mirror or not. The
question is still mostly asked as even on DVDs some packages belonging to
tasks may be missing on the first image.
- businesscard: mirror will always be used
- netinst: default to true, ask only at medium priority
- full CD: default to true, ask at high priority
- DVD: default to false, ask at high priority
An explanation is displayed that is tailored to the type of CD image.
* Disable netinst CD image in sources.list in target before reboot if other
sources are present. Closes: #379067.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Jamil Ahmed
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Japanese (ja.po) by Kenshi Muto
* Nepali (ne.po) by Nabin Gautam
* Dutch (nl.po) by Frans Pop
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Russian (ru.po) by Yuri Kozlov
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Otavio Salvador <otavio@debian.org> Fri, 10 Aug 2007 17:32:29 -0300
apt-setup (1:0.23) unstable; urgency=low
[ Otavio Salvador ]
* Replace 'base-installer' dependency by 'installed-base' virtual
package. Needs base-installer 1.81.
-- Joey Hess <joeyh@debian.org> Mon, 18 Jun 2007 22:15:29 +0100
apt-setup (1:0.22) unstable; urgency=low
* 50mirror: default suite to codename, similar to what we already do for
network-based installs; choose-mirror will determine the actual suite
from the codename. Closes: #422442.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Esperanto (eo.po) by Serge Leblanc
* Basque (eu.po) by Piarres Beobide
* Romanian (ro.po) by Eddy Petrișor
-- Frans Pop <fjp@debian.org> Mon, 21 May 2007 16:15:02 +0200
apt-setup (1:0.21) unstable; urgency=low
* Multiply menu-item-numbers by 100.
[ Updated translations ]
* Esperanto (eo.po) by Serge Leblanc
* Basque (eu.po) by Piarres Beobide
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:26:40 -0400
apt-setup (1:0.20) unstable; urgency=low
[ Updated translations ]
* Malayalam (ml.po) by Praveen A
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 16:37:56 +0100
apt-setup (1:0.19) unstable; urgency=low
[ Joey Hess ]
* Improve regexp in 90security to not misfire if the mirror's name or path
contains "contrib" or "non-free".
[ Updated translations ]
* Hebrew (he.po) by Lior Kaplan
-- Frans Pop <fjp@debian.org> Tue, 13 Feb 2007 23:23:00 +0100
apt-setup (1:0.18) unstable; urgency=low
[ Updated translations ]
* Romanian (ro.po) by Eddy Petrișor
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:18:40 +0100
apt-setup (1:0.17) unstable; urgency=low
[ Christian Perrier ]
* Fix error in French translation. Closes: #400715.
[ Frans Pop ]
* Make wget respect proxy servers defined for local sources. Based on a
patch suggested by John Morrissey, for which thanks. Closes: #408297.
* Use log-output for commands that produce output if run in the installer.
* Consistently use http protocol when setting up security archive (ftp
reguires a different mirror directory and is thus not easy to support).
* Reduce timeout for testing security mirrors to 30 seconds. As security.d.o
currently has 3 IP addresses listed, and these are tried consecutively, the
total timeout will be 1.5 minutes (was 6 minutes). Closes: #393033.
* apt-setup-verify: reset IFS to avoid problems with option processing.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Safir Secerovic
* Danish (da.po) by Claus Hindsgaul
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* Hebrew (he.po) by Lior Kaplan
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Amed Çeko Jiyan
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Matej Kovačič
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Recai Oktaş
-- Frans Pop <fjp@debian.org> Mon, 29 Jan 2007 21:43:32 +0100
apt-setup (1:0.16) unstable; urgency=low
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Andrei Darashenka
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Danish (da.po) by Claus Hindsgaul
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Tapio Lehtonen
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Croatian (hr.po) by Josip Rodin
* Indonesian (id.po) by Arief S Fitrianto
* Italian (it.po) by Stefano Canepa
* Korean (ko.po) by Sunjae park
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Nepali (ne.po) by Shiva Prasad Pokharel
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 13:48:32 +0200
apt-setup (1:0.15) unstable; urgency=low
* Fix broken proxy setting code in 90security. Closes: #378868
Some systems installed before this fix will have Acquire::http::proxy "false"
set in apt.conf, which leads to breakage in some situations. Also, if a
proxy was set, it would not be written to the file.
-- Joey Hess <joeyh@debian.org> Thu, 17 Aug 2006 17:45:07 -0400
apt-setup (1:0.14) unstable; urgency=low
* Make apt-setup idempotent by removing workfile on back up.
* Allow back up from use network mirror question.
* Make apt-setup-verify responsible for blank lines between sources lines
from different generators.
* Add Lintian override for standards-version.
* Add missing dependencies on debconf.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Greek, Modern (1453-) (el.po) by quad-nrg.net
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Icelandic (is.po) by David Steinn Geirsson
* Dutch (nl.po) by Bart Cornelis
* Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Tue, 15 Aug 2006 02:22:07 +0200
apt-setup (1:0.13) unstable; urgency=low
[ Colin Watson ]
* Only use RET in security generator for data returned from debconf, to
avoid confusion.
* Fix mirror generators not to break if apt-setup/use_mirror isn't asked.
[ Updated translations ]
* Finnish (fi.po) by Tapio Lehtonen
* Panjabi (pa.po) by A S Alam
* Tagalog (tl.po) by Eric Pareja
-- Frans Pop <fjp@debian.org> Tue, 25 Jul 2006 13:01:56 +0200
apt-setup (1:0.12) unstable; urgency=low
[ Colin Watson ]
* Port mirror generator changes from 1:0.11 to Ubuntu mirror generator.
[ Updated translations ]
* Dzongkha (dz.po) by Jurmey Rabgay
* Estonian (et.po) by Siim Põder
* Hungarian (hu.po) by SZERVÑC Attila
* Macedonian (mk.po) by Georgi Stanojevski
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Polish (pl.po) by Bartosz Fenski
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Frans Pop <fjp@debian.org> Thu, 13 Jul 2006 17:11:34 +0200
apt-setup (1:0.11) unstable; urgency=low
[ Frans Pop ]
* Make the use of a network mirror optional if the base system is
installable from CD.
[ Colin Watson ]
* Set $protocol in security generator so that proxy configuration works.
[ Joey Hess ]
* Move mirror use prompt code into mirror generator.
* Run choose-mirror with new -n switch so it does not mess with the existing
progress bar.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bengali (bn.po) by Progga
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Dzongkha (dz.po)
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÑC Attila
* Italian (it.po) by Stefano Canepa
* Japanese (ja.po) by Kenshi Muto
* Georgian (ka.po) by Aiet Kolkhi
* Khmer (km.po) by Khoem Sokhem
* Korean (ko.po) by Sunjae park
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Malagasy (mg.po) by Jaonary Rabarisoa
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Nepali (ne.po) by Shiva Pokharel
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Polish (pl.po) by Bartosz Fenski
* Portuguese (pt.po) by Miguel Figueiredo
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Northern Sami (se.po) by Børre Gaup
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Thu, 15 Jun 2006 13:54:54 -0400
apt-setup (1:0.10) unstable; urgency=low
[ Frans Pop ]
* When the security mirror cannot be reached, do not apt-setup-verify the
source lines again. This saves having to wait for two DNS timeouts.
[ Colin Watson ]
* Add multiverse component support to Ubuntu mirror generator (thanks,
Timo Aaltonen; closes: https://launchpad.net/bugs/29646).
[ Joey Hess ]
* Use cdrom/codename if mirror/codename is empty; part of the cdrom/codename
split.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Ognyan Kulev
* Bosnian (bs.po) by Safir Secerovic
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Sonam Rinchen
* Esperanto (eo.po) by Serge Leblanc
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hungarian (hu.po) by SZERVÑC Attila
* Italian (it.po) by Stefano Canepa
* Japanese (ja.po) by Kenshi Muto
* Khmer (km.po) by Leang Chumsoben
* Macedonian (mk.po) by Georgi Stanojevski
* Dutch (nl.po) by Bart Cornelis
* Polish (pl.po) by Bartosz Fenski
* Portuguese (pt.po) by Miguel Figueiredo
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Frans Pop <fjp@debian.org> Wed, 19 Apr 2006 19:43:31 +0200
apt-setup (1:0.9) unstable; urgency=low
* If no mirror hostname or directory are configured, avoid asking non-free
question or trying to set up a mirror. Useful for cases such as full CD
installs, where the user might choose to skip setting up a mirror.
-- Joey Hess <joeyh@debian.org> Fri, 7 Apr 2006 17:39:58 -0400
apt-setup (1:0.8) unstable; urgency=low
* Add support for preseeding local archives to be appended to
sources.list, based on a patch by Timo Aaltonen (closes: #348509).
[ Updated translations ]
* German (de.po) by Jens Seidel
* Irish (ga.po) by Kevin Patrick Scannell
* Khmer (km.po) by hok kakada
-- Colin Watson <cjwatson@debian.org> Tue, 28 Mar 2006 17:14:50 +0100
apt-setup (1:0.7) unstable; urgency=low
[ Joey Hess ]
* Remove --ignore-time-conflict settings, set globally for the installer
by base-installer 1.49.
[ Frans Pop ]
* Add isinstallable file to skip apt setup when installing Sarge.
[ Updated translations ]
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Welsh (cy.po) by Dafydd Harries
* Basque (eu.po) by Piarres Beobide
* Hindi (hi.po) by Nishant Sharma
* Khmer (km.po) by hok kakada
* Slovak (sk.po) by Peter Mann
* Swedish (sv.po) by Daniel Nylander
-- Frans Pop <fjp@debian.org> Mon, 20 Mar 2006 18:30:54 +0100
apt-setup (1:0.6) unstable; urgency=low
[ Joey Hess ]
* Ignore time conflicts when running apt-get update, should fix later apt
brokenness for systems with clock issues.
[ Updated translations ]
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Tapio Lehtonen
* Hungarian (hu.po) by SZERVÑC Attila
* Polish (pl.po) by Bartosz Fenski
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Matej Kovačič
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Martin Michlmayr <tbm@cyrius.com> Sun, 12 Feb 2006 18:18:48 +0000
apt-setup (1:0.5) unstable; urgency=low
[ Colin Watson ]
* Fix reversed logic for universe and backports in Ubuntu mirror
generator.
* Fix comment typo in Ubuntu mirror generator.
[ Frans Pop ]
* Change menu title to fit in better with rest of menu.
[ Updated translations ]
* Bulgarian (bg.po) by Ognyan Kulev
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Indonesian (id.po) by Parlin Imanuel Toh
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Sunjae park
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Punjabi (India) (pa_IN.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Ming Hua
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Mon, 23 Jan 2006 21:23:37 +0100
apt-setup (1:0.4) unstable; urgency=low
[ Frans Pop ]
* Use the codename for the release in sources.list instead of the suite.
Requires: cdrom-detect >=1.11; choose-mirror >=1.16; iso-scan >=1.10.
Closes: #313235
[ Colin Watson ]
* Make apt-setup-verify preserve blank lines.
* Avoid double slashes in sources.list mirror lines.
-- Colin Watson <cjwatson@debian.org> Fri, 9 Dec 2005 12:09:30 +0000
apt-setup (1:0.3) unstable; urgency=low
* Yet another case of an upload needed to update code to match a value from
a choices list that was changed by someone without checking for the code
that dependned on that value.
[ Updated translations ]
* Danish (da.po) by Claus Hindsgaul
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Sunjae park
* Malagasy (mg.po) by Jaonary Rabarisoa
* Dutch (nl.po) by Bart Cornelis
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Tagalog (tl.po) by Eric Pareja
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joey Hess <joeyh@debian.org> Mon, 5 Dec 2005 19:40:39 -0500
apt-setup (1:0.2) unstable; urgency=low
[ Colin Watson ]
* Add strings for Ubuntu mirror generator to translation infrastructure,
per http://lists.debian.org/debian-boot/2005/10/msg01407.html and
followups.
* Clarify apt-setup/universe description a bit.
[ Joey Hess ]
* If setting up a mirror fails, allow the user to retry or change their
mirror.
* If setting up a CD fails, let the user know there was a problem instead of
quietly continuing without a main apt source.
* Add a comment before commented out lines to make clear why they are
commented out.
[ Christian Perrier ]
* Break Choices in single components in templates
[ Updated translations ]
* Bulgarian (bg.po) by Ognyan Kulev
* Bengali (bn.po) by Baishampayan Ghose
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hindi (hi.po) by Nishant Sharma
* Icelandic (is.po) by David Steinn Geirsson
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Sunjae park
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Polish (pl.po) by Bartosz Fenski
* Portuguese (pt.po) by Miguel Figueiredo
* Russian (ru.po) by Yuri Kozlov
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Joey Hess <joeyh@debian.org> Wed, 16 Nov 2005 17:31:02 -0500
apt-setup (1:0.1) unstable; urgency=low
[ Joey Hess ]
* First release as a udeb broken out from base-config and rewritten.
* This means that apt mirror config uses d-i's mirror configs automatically.
Closes: #220269, #252121, #235980, #251007
* Issues with /dev/cdrom symlinks no longer apply, since that's taken
care of by d-i. Closes: #198759, #264375, #274615
* Issues with CD eject buttons no longer apply, since well, it currently
only supports loading in one CD. Closes: #215639, #215639, #240331
Closes: #333513
(TODO item exists for multiple CDs tho).
* Runs in the first stage so no issues with it running again and eating
configured sources or wanting to clear proxy settings.
Closes: #229048, #196625
* Will deal nicely with failure to reach security.debian.org.
Closes: #251413
* You can enter a mirror manually in choose-mirror and entry proxy info too.
Closes: #277481, #284794
* CD stuff works ok in noninteractive/preseeded modes. Closes: #282356
* Adds deb-src lines for everything, including security updates.
Closes: #269154.
[ Colin Watson ]
* Various small fixes.
* Call the main package apt-setup-udeb to allow for apt-setup.deb in the
future.
* Add translation infrastructure.
* Set epoch to supersede the base-config-based apt-setup-udeb in Ubuntu.
* Don't bother looking for security updates for unstable.
* Strip everything after the first dot from generator names when
constructing progress template names, to allow writing variants of a
generator with the same basic purpose as the original.
* Initial untested mirror generator for Ubuntu. Not added to translation
infrastructure yet, although the templates are there.
-- Joey Hess <joeyh@debian.org> Thu, 27 Oct 2005 18:29:39 -0400
|