File: changelog

package info (click to toggle)
partman-auto 137
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,308 kB
  • ctags: 30
  • sloc: sh: 959; makefile: 17
file content (2413 lines) | stat: -rw-r--r-- 88,739 bytes parent folder | download
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
partman-auto (137) unstable; urgency=medium

  [ Helge Deller ]
  * [hppa] Increase palo partition size to 45-50 MB. Closes: #840467

 -- Christian Perrier <bubulle@debian.org>  Thu, 13 Oct 2016 07:02:40 +0200

partman-auto (136) unstable; urgency=medium

  [ Steve McIntyre ]
  * Add armhf efi recipes by symlinking to the amd64 efi recipes directory.

 -- Steve McIntyre <93sam@debian.org>  Wed, 10 Aug 2016 18:35:13 +0100

partman-auto (135) unstable; urgency=medium

  [ Steve McIntyre ]
  * Update the lower bound for all receipes to 100% for consistency;
    modern machines have a lot more RAM than we're currently allocating
    for.

 -- Christian Perrier <bubulle@debian.org>  Fri, 06 May 2016 08:00:30 +0200

partman-auto (134) unstable; urgency=medium

  [ Colin Watson ]
  * Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.

 -- Christian Perrier <bubulle@debian.org>  Sat, 13 Feb 2016 15:36:56 +0100

partman-auto (133) unstable; urgency=medium

  [ Martin Michlmayr ]
  * Update partition layout defaults:
    - atomic:
      - Set minimimum size of / partition to 900 MB for platforms without
        separate /boot partition and to 800 MB for those with /boot.
    - home:
      - Increase maximum size of / partition to 20 GB or 30 GB, depending
        on the platform.
      - Increase minimum size of / partition to 1500 MB and of /home to
        1000 MB.  This allocates more space to the / partition on smaller
        disks and ensures the separate /home option is not offered on 2 GB
        disks.
      - Increase priority of / partition so more space is allocated to it
        on small disks.  Closes: #770032
    - multi:
      - Increase maximum size of / partition to 25 GB.  Closes: #725642
      - Increase maximum size of /var partition to 10 GB.  Closes: #803604
      - Increase maximum size of /tmp partition to 2 GB.
      - Increase minimum size of / partition to 2000 MB, of /var to 1000 MB,
        of /tmp to 256 MB and of /home to 4000 MB.  This ensures that this
        option is no longer offered on 4 GB disks.
      - Increase priority of /home partition since most space should be
        allocated to it.
      - Increase priority of /tmp partition so more than the minimum is
        allocated to it.
      - Adjust priority of / partition in relation to other partitions.

 -- Christian Perrier <bubulle@debian.org>  Sun, 10 Jan 2016 07:01:50 +0100

partman-auto (132) unstable; urgency=medium

  [ Martin Michlmayr ]
  * Remove recipes for armel/iop32x and armel/ixp4xx as these flavours
    are no longer supported.

 -- Christian Perrier <bubulle@debian.org>  Fri, 08 Jan 2016 06:52:25 +0100

partman-auto (131) unstable; urgency=medium

  [ Helge Deller ]
  * Increase palo and /boot partitions on hppa architecture
  * Increase /boot partition on alpha architecture

 -- Christian Perrier <bubulle@debian.org>  Thu, 08 Oct 2015 07:09:32 +0200

partman-auto (130) unstable; urgency=medium

  [ Aurelien Jarno ]
  * Remove recipes for sb1-bcm91250a sb1a-bcm91480b as these flavours are
    now gone.

 -- Christian Perrier <bubulle@debian.org>  Wed, 02 Sep 2015 07:03:55 +0200

partman-auto (129) unstable; urgency=medium

  [ Updated translations ]
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <bubulle@debian.org>  Mon, 10 Aug 2015 09:13:31 +0200

partman-auto (128) unstable; urgency=medium

  [ Updated translations ]
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <bubulle@debian.org>  Sat, 25 Jul 2015 22:00:29 +0200

partman-auto (127) unstable; urgency=medium

  [ Updated translations ]
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <bubulle@debian.org>  Thu, 02 Jul 2015 15:50:00 +0200

partman-auto (126) unstable; urgency=low

  [ Updated translations ]
  * Danish (da.po) by Joe Hansen

 -- Christian Perrier <bubulle@debian.org>  Sun, 08 Mar 2015 11:45:24 +0100

partman-auto (125) unstable; urgency=medium

  * Reinstate symlinks which were accidentally replaced with older copies of
    their target files in 124. This reinstates the following which were in 123
    or earlier:
    - arm64, arm64-efi and i386-efi:
      - Combine / and /usr partitions in 'multi' recipes (from 123).
      - Increase the EFI System Partition size slightly to ensure that it's at
        least 512MiB, not just 512MB (from 122).
    - mipsel-cobalt:
      - Remove recipes (from 116).

 -- Ian Campbell <ijc@debian.org>  Wed, 28 Jan 2015 09:05:17 +0000

partman-auto (124) unstable; urgency=medium

  * Translations unfuzzied for /usr removal.

 -- Joey Hess <joeyh@debian.org>  Fri, 26 Sep 2014 16:40:03 -0400

partman-auto (123) unstable; urgency=medium

  [ Ben Hutchings ]
  * Combine / and /usr partitions in 'multi' recipes. Closes: #652275

 -- Christian Perrier <bubulle@debian.org>  Thu, 25 Sep 2014 06:42:55 +0200

partman-auto (122) unstable; urgency=medium

  [ Colin Watson ]
  * Increase the EFI System Partition size slightly to ensure that it's at
    least 512MiB, not just 512MB.  See LP #1306164.

 -- Christian Perrier <bubulle@debian.org>  Sun, 07 Sep 2014 08:29:29 +0200

partman-auto (121) unstable; urgency=medium

  [ Ian Campbell ]
  * Add arm64/efi receipe, reusing amd64/efi.

 -- Ian Campbell <ijc@debian.org>  Fri, 05 Sep 2014 19:03:06 +0100

partman-auto (120) unstable; urgency=medium

  [ Updated translations ]
  * Estonian (et.po) by Mattias Põldaru

  [ Frederic Bonnard ]
  * Add ppc64el recipes (closes: #752418).

 -- Aurelien Jarno <aurel32@debian.org>  Wed, 27 Aug 2014 09:54:38 +0200

partman-auto (119) unstable; urgency=medium

  [ Mario Limonciello ]
  * Add the rest of the support necessary to allow reusing EFI partitions
    (closes: #729326).

 -- Colin Watson <cjwatson@debian.org>  Tue, 08 Jul 2014 12:56:28 +0100

partman-auto (118) unstable; urgency=low

  * Add arm64 recipe

 -- dann frazier <dannf@debian.org>  Tue, 14 Jan 2014 17:27:35 -0700

partman-auto (117) unstable; urgency=low

  [ Updated translations ]
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <bubulle@debian.org>  Sun, 05 Jan 2014 15:27:10 +0100

partman-auto (116) unstable; urgency=low

  [ Martin Michlmayr ]
  * Remove recipes for Cobalt.

 -- Christian Perrier <bubulle@debian.org>  Sun, 05 Jan 2014 15:26:10 +0100

partman-auto (115) unstable; urgency=low

  [ Miquel van Smoorenbur ]
  * don't hide /dev/md* arrays if they are provisioned on whole-disk
    devices - in that case the md array itself is partitionable, e.g. for
    md-fakeraid like imsm (Intel Matrix raid). (Closes: #699431)

 -- Dmitrijs Ledkovs <xnox@ubuntu.com>  Mon, 02 Dec 2013 22:30:17 +0000

partman-auto (114) unstable; urgency=low

  [ Colin Watson ]
  * Filter out reused partitions when calculating the size used by a recipe
    (LP: #1197766).

 -- Christian Perrier <bubulle@debian.org>  Tue, 01 Oct 2013 07:22:08 +0200

partman-auto (112) unstable; urgency=low

  * Skip installer disk when using
    isohybrid ISO on USB stick. Closes: #607536

 -- Christian Perrier <bubulle@debian.org>  Wed, 25 Sep 2013 07:29:54 +0200

partman-auto (111) unstable; urgency=low

  [ Updated translations ]
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <bubulle@debian.org>  Fri, 16 Aug 2013 23:16:22 +0200

partman-auto (110) unstable; urgency=low

  [ Cyril Brulebois ]
  * Drop reiserfs from recipes.sh, it's no longer supported.

 -- Christian Perrier <bubulle@debian.org>  Mon, 22 Jul 2013 20:06:10 +0200

partman-auto (109) unstable; urgency=low

  [ Petter Reinholdtsen ]

  * Introduce new hook /lib/partman/not-enough-space.d/ called if
    there is not enough space available to use the provided recipe.
    This make it possible for Debian derivatives to abort the
    installation if it is going to fail before the partitioning take
    place (Closes: #653305).

 -- Christian Perrier <bubulle@debian.org>  Thu, 18 Jul 2013 20:09:29 +0200

partman-auto (108) 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 14:18:03 +0200

partman-auto (107) unstable; urgency=low

  [ Updated translations ]
  * Croatian (hr.po) by Tomislav Krznar

 -- Christian Perrier <bubulle@debian.org>  Sat, 18 May 2013 14:47:31 +0200

partman-auto (106) unstable; urgency=low

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach

 -- Christian Perrier <bubulle@debian.org>  Wed, 12 Dec 2012 06:52:35 +0100

partman-auto (105) unstable; urgency=low

  [ Updated translations ]
  * Asturian (ast.po) by ivarela

 -- Christian Perrier <bubulle@debian.org>  Mon, 15 Oct 2012 22:05:44 +0200

partman-auto (104) unstable; urgency=low

  [ Steve McIntyre ]
  * Add x86 UEFI support, merging some code from Ubuntu to help:
    + Add extra recipe method "reusemethod" to help us reuse existing EFI
      system partitions
    + Clone the ia64 recipes for {amd64,i386}-efi and tweak. Merge
      across some of the Ubuntu settings for these new recipes, including
      use of reusemethod.
    + Make the EFI system partition large by default to meet fat32
      recommendations

 -- Cyril Brulebois <kibi@debian.org>  Thu, 20 Sep 2012 15:25:52 +0200

partman-auto (103) unstable; urgency=low

  [ Milan Kupcevic ]
  * Increase /boot partition size in powermac_oldworld recipes.
    (Closes: #683233)
  * Enable ext2 formatted /boot partition in chrp_pegasos recipes.  Pegasos
    is not able to boot from ext4.

  [ Christian Perrier ]
  * Add self to Uploaders and drop Anton who is inactive for a while now
    Thanks for your contributions, Anton.
  * Replace XC-Package-Type by Package-Type
  * Add a lintian override for using-imperative-form-in-templates

 -- Christian Perrier <bubulle@debian.org>  Sat, 04 Aug 2012 09:20:23 +0200

partman-auto (102) unstable; urgency=low

  [ Colin Watson ]
  * Tweak armhf atomic recipes slightly: if $default_filesystem{ } is used,
    then the parted filesystem should be $default_filesystem too.

  [ Updated translations ]
  * Tibetan (bo.po) by Tennom
  * Welsh (cy.po) by Dafydd Tomos
  * 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)
  * Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)

 -- Christian Perrier <bubulle@debian.org>  Fri, 15 Jun 2012 12:23:51 +0200

partman-auto (101) unstable; urgency=low

  [ Updated translations ]
  * Asturian (ast.po) by Mikel González
  * Bulgarian (bg.po) by Damyan Ivanov
  * Estonian (et.po) by Mattias Põldaru
  * Hebrew (he.po) by Lior Kaplan
  * Indonesian (id.po) by Mahyuddin Susanto
  * Icelandic (is.po) by Sveinn í Felli
  * Kannada (kn.po) by Prabodh C P

 -- Otavio Salvador <otavio@debian.org>  Thu, 15 Mar 2012 14:54:05 -0300

partman-auto (100) unstable; urgency=low

  [ Colin Watson ]
  * Merge from Ubuntu:
    - Determine memory size for RAM-dependent recipe elements more
      accurately on i386 (LP: #604765).

  [ Matt Kraai ]
  * Enable LVM in mipsel/loongson-2f recipes (closes: #637970).

  [ Philipp Kern ]
  * Skip auto/choices on s390x.

  [ Updated translations ]
  * Belarusian (be.po) by Viktar Siarheichyk
  * Bulgarian (bg.po) by Damyan Ivanov
  * German (de.po) by Holger Wansing
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Kumar Appaiah
  * Italian (it.po) by Milo Casagrande
  * Macedonian (mk.po) by Arangel Angov
  * Polish (pl.po) by Marcin Owsiany
  * Romanian (ro.po) by Ioan Eugen Stan
  * Sinhala (si.po) by Danishka Navin
  * Turkish (tr.po) by Mert Dirik
  * Simplified Chinese (zh_CN.po) by YunQiang Su

 -- Philipp Kern <pkern@debian.org>  Thu, 06 Oct 2011 18:50:22 +0200

partman-auto (99) unstable; urgency=low

  * Add mipsel/loongson-2f recipes.

 -- Colin Watson <cjwatson@debian.org>  Fri, 03 Jun 2011 11:19:26 +0100

partman-auto (98) unstable; urgency=low

  [ Colin Watson ]
  * Update old comment about partman-auto-lvm and $iflabel.

  [ Updated translations ]
  * Uyghur (ug.po) by Sahran

 -- Christian Perrier <bubulle@debian.org>  Sat, 23 Apr 2011 19:40:06 +0200

partman-auto (97) unstable; urgency=low

  [ Konstantinos Margaritis ]
  * Added armhf recipe

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * Spanish (es.po) by Javier Fernández-Sanguino
  * Basque (eu.po) by Piarres Beobide
  * French (fr.po) by Christian Perrier
  * Kazakh (kk.po) by Baurzhan Muftakhidinov
  * Nepali (ne.po)
  * Portuguese (pt.po) by Miguel Figueiredo
  * Russian (ru.po) by Yuri Kozlov
  * Northern Sami (se.po) by Børre Gaup
  * 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

 -- Hector Oron <zumbi@debian.org>  Tue, 22 Mar 2011 12:24:32 +0000

partman-auto (96) unstable; urgency=low

  [ Updated translations ]
  * Lao (lo.po) by Anousak Souphavanh
  * Northern Sami (se.po) by Børre Gaup
  * Sinhala (si.po) by Danishka Navin

 -- Hector Oron <zumbi@debian.org>  Tue, 22 Mar 2011 12:20:16 +0000

partman-auto (95) unstable; urgency=low

  [ Updated translations ]
  * Bengali (bn.po) by Israt Jahan

 -- Otavio Salvador <otavio@debian.org>  Fri, 12 Nov 2010 16:18:15 -0200

partman-auto (94) unstable; urgency=low

  * Team upload
  * Bump minimum root partition size to 900MiB in the home
    recipe. 
    This will allow installing the standard task and leave room for
    and extra kernel package in later life of the machine
    Closes: #528914
  * Adapt minimum sizes for /var and / in the multi recipe:
    /var must cope with about 150MiB downloads and has 125MiB data
    for the standard task install
    / has about 150MiB installed and should cope with an
    extra kernel at least
  * Adapt minimum size for / in the atomic recipe, to 900MiB
    Same rationale than above.

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Icelandic (is.po) by Sveinn í Felli

 -- Christian Perrier <bubulle@debian.org>  Wed, 03 Nov 2010 22:00:19 +0100

partman-auto (93) unstable; urgency=low

  * Team upload

  [ Colin Watson ]
  * Use 'dh $@ --options' rather than 'dh --options $@', for
    forward-compatibility with debhelper v8.

  [ Christian Perrier ]
  * Limit swap to 200% of physical memory. Closes: #597087

  [ Updated translations ]
  * Asturian (ast.po) by maacub
  * Bulgarian (bg.po) by Damyan Ivanov
  * Bosnian (bs.po) by Armin Beširović
  * Danish (da.po) by Jacob Sparre Andersen
  * Persian (fa.po) by Ebrahim Byagowi
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Telugu (te.po) by Arjuna Rao Chavala

 -- Christian Perrier <bubulle@debian.org>  Sun, 10 Oct 2010 10:01:02 +0200

partman-auto (92) unstable; urgency=low

  [ Petter Reinholdtsen ]
  * Increase max size for /usr/ in the multi recipe from 5000 to 6000
    MB, based on feedback from Nima Azarbayjany on debian-boot@.

  [ Colin Watson ]
  * Remove stray error message text left around from version 90.

  [ Updated translations ]
  * Belarusian (be.po) by Viktar Siarheichyk
  * Persian (fa.po) by acathur
  * Kazakh (kk.po) by Baurzhan Muftakhidinov
  * Central Khmer (km.po) by Khoem Sokhem
  * Kurdish (ku.po) by Erdal Ronahi
  * Macedonian (mk.po) by Arangel Angov
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)

 -- Christian Perrier <bubulle@debian.org>  Sun, 11 Jul 2010 18:54:33 +0200

partman-auto (91) unstable; urgency=low

  * Fix $iflabel{ } logic to avoid including the partition anyway if the
    current directory is not a subdirectory of /var/lib/partman/devices.
    This caused automatic LVM partitioning to be calculated with a biosgrub
    partition regardless of the disk label type, although as it happened
    this cancelled out with another bug so that partition would never
    actually be written to disk (LP: #538536).
  * Run clean_method before starting autopartitioning instead of in the
    middle of performing a recipe, and call autopartition just once for
    multi-disk partitioning.  This means that methods applied to partitions
    of physical disks in RAID recipes are applied to all disks rather than
    just the last one (LP: #566965).

  [ Updated translations ]
  * Asturian (ast.po) by astur
  * Danish (da.po) by Jacob Sparre Andersen
  * German (de.po) by Holger Wansing
  * French (fr.po) by Christian Perrier
  * Hebrew (he.po) by Omer Zak
  * Korean (ko.po) by Changwoo Ryu
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
  * Slovenian (sl.po) by Vanja Cvelbar
  * Tamil (ta.po) by Dr,T,Vasudevan

 -- Colin Watson <cjwatson@debian.org>  Tue, 25 May 2010 16:01:39 +0100

partman-auto (90) unstable; urgency=low

  [ Colin Watson ]
  * Merge from Ubuntu:
    - Remove explicit $primary{ } specifiers from standard recipes. We only
      need them to be primary if no other primary partitions exist already.
  * Change expert recipe error message to focus on the available disk space
    being too small, not the recipe being too large (idea from "Rorschach",
    LP: #415488).

  [ Frans Pop ]
  * Remove no longer needed Lintian override for missing Standards-Version
    field.
  * After choosing "biggest free" option followed by backing up from the recipe
    dialog, don't exit to main menu but return to initial partman-auto dialog.

  [ Updated translations ]
  * Belarusian (be.po) by Pavel Piatruk
  * German (de.po) by Holger Wansing
  * Galician (gl.po) by Marce Villarino
  * Italian (it.po) by Milo Casagrande
  * Slovenian (sl.po) by Vanja Cvelbar
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Simplified Chinese (zh_CN.po) by 苏运强

 -- Frans Pop <fjp@debian.org>  Mon, 22 Feb 2010 04:15:54 +0100

partman-auto (89) unstable; urgency=low

  * Upgrade to debhelper v7.
  * Add a biosgrub partition to default recipes, used only if the disk label
    is GPT (closes: #491376). Requires partman-partitioning 71. Thanks to
    Otavio Salvador for reviewing this.

  [ Updated translations ]
  * Korean (ko.po) by Changwoo Ryu
  * Russian (ru.po) by Yuri Kozlov

 -- Colin Watson <cjwatson@debian.org>  Mon, 07 Sep 2009 12:09:20 +0100

partman-auto (88) unstable; urgency=low

  [ Colin Watson ]
  * Move "Guided partitioning" above "Configure software RAID"; it seems
    more natural at the top of the choose_partition menu.

  [ Aurelien Jarno ]
  * Recognize ufs as an allowed partition type.
  * Depends on partman-ext3 on Linux only and on partman-ufs on kFreeBSD only
    (iow on the default filesystem).

  [ Updated translations ]
  * Basque (eu.po) by Piarres Beobide
  * Italian (it.po) by Milo Casagrande

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 22 Aug 2009 18:48:18 +0200

partman-auto (87) unstable; urgency=low

  * Add support for writing sizes as a number plus a percentage of RAM, e.g.
    "2000+50%". This is useful when doing automatic partitioning with the
    expectation of creating swap files.
  * If we're creating primary partitions and find that we've reached the end
    of the recipe, use "full" rather than "beginning" as the place passed to
    NEW_PARTITION, thereby avoiding rounding problems and matching the
    process for creating logical partitions (closes: #516347, LP: #287571).

  [ Updated translations ]
  * Hindi (hi.po)

 -- Colin Watson <cjwatson@debian.org>  Tue, 14 Jul 2009 14:35:51 +0100

partman-auto (86) unstable; urgency=low

  [ Colin Watson ]
  * Merge from Ubuntu:
    - Only ensure that there is at least one primary partition after
      autopartitioning on partition tables that use extended partitions.

  [ Updated translations ]
  * Bengali (bn.po) by Md. Rezwan Shahid
  * Estonian (et.po) by Mattias Põldaru
  * Slovak (sk.po) by Ivan Masár

 -- Christian Perrier <bubulle@debian.org>  Fri, 12 Jun 2009 07:03:33 +0200

partman-auto (85) unstable; urgency=low

  [ Colin Watson ]
  * Merge from Ubuntu:
    - Add ext4 support.
    - Add support for $default_filesystem as the partition type in a recipe,
      and $default_filesystem{ } as an internal specifier. These are
      equivalent to FS and filesystem{ FS } respectively, where FS is the
      value of partman/default_filesystem. Requires partman-base 129.
    - Exit straight away if a called script is killed by a signal.

  [ Frans Pop ]
  * Remove myself as uploader.

  [ Martin Michlmayr ]
  * Remove recipes for the old arm port.
  * Use the same recipes on Marvell Kirkwood as on Orion.

  [ Updated translations ]
  * Basque (eu.po) by Piarres Beobide
  * 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
  * Slovak (sk.po) by Ivan Masár
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Tagalog (tl.po) by Eric Pareja

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 03 Apr 2009 15:58:56 +0200

partman-auto (84) unstable; urgency=low

  * recipes.sh: correct error handling for non-existant recipe description.
  * Increase minimum size of root partition in multi recipe. This is mainly
    needed in case there is no separate /boot partition, but also to allow
    for e.g. the /emul directory.
  * Use "-1" instead of "1000000000" to indicate unlimited partition size in
    partman recipes. This avoids an error when setting up LVM on disks larger
    than 1TB. See: #510544.

 -- Frans Pop <fjp@debian.org>  Mon, 12 Jan 2009 22:12:55 +0100

partman-auto (83) unstable; urgency=low

  [ Giuseppe Iuculano ]
  * lib/auto-shared.sh: Consider device-mapper devices/dmraid arrays with the
    sataraid flag set as usable for automatic partitioning.
    Patch based on work done by Luke Yelavich <themuso@ubuntu.com> in Ubuntu.

  [ Frans Pop ]
  * Factor out is_multipath_dev function to base.sh function library.
    Requires partman-base (>= 126).

  [ Updated translations ]
  * Belarusian (be.po) by Pavel Piatruk
  * Bosnian (bs.po) by Armin Besirovic
  * Danish (da.po)
  * Hebrew (he.po) by Omer Zak
  * Croatian (hr.po) by Josip Rodin
  * Latvian (lv.po) by Peteris Krisjanis
  * Macedonian (mk.po) by Arangel Angov
  * Slovenian (sl.po) by Vanja Cvelbar
  * Serbian (sr.po) by Veselin Mijušković

 -- Otavio Salvador <otavio@debian.org>  Sun, 21 Sep 2008 22:05:34 -0300

partman-auto (81) unstable; urgency=low

  [ Jérémy Bobbio ]
  * Move dev_to_partman() to lib/auto-shared.sh.
    Based on a patch by Grégory Oestreicher.
  * Use convert_to_megabytes() in decode_recipe(), autopartition and
    perform_recipe.
    Depends: partman-base (>= 125)
  * Rename $devfspv_devices to $pv_devices in lib/auto-shared.sh now that we
    don't have devfs devices anymore.
  * create_primary_partitions() and create_partitions() now add dm-crypt
    devices to $pv_devices when using the "crypto" method, like it is done for
    LVM.
  * Call prepare_new_labels() before calling create_new_label().
    Depends: partman-partitioning (>= 62)
  * Move get_last_free_partition_infos() out of auto_init_disk() in
    lib/auto-shared.sh.  autopartition has been updated accordingly.
    Based on a patch by Grégory Oestreicher.
    Breaks: partman-auto-lvm (<< 29)
  * Rename auto_init_disk() to auto_init_disks() as it can now initialize
    multiple disks at once.  autopartition has been updated accordingly.
    Breaks: partman-auto-lvm (<< 29)
  * Call autopartition-lvm on all disks in partman-auto/disk at once to enable
    proper support of multiple disks partitioning.
    Depends: partman-auto-lvm (>= 29)
  * Call auto_init_disks() with all disks that are going to be used in a
    "raid" method in order to avoid bogus partman restarts.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)

 -- Jérémy Bobbio <lunar@debian.org>  Mon, 25 Aug 2008 21:04:38 +0200

partman-auto (80) unstable; urgency=low

  [ Jérémy Bobbio ]
  * Propagate debconf_select() cancel return code in choose_recipe().
  * Correctly handle GOBACK in automatically_partition/some_device/do_option.
    (Closes: #487694)
  * Update to the new debconf_select interface.
    Requires partman-base (>= 124).

  [ Updated translations ]
  * Esperanto (eo.po) by Felipe Castro
	
 -- Otavio Salvador <otavio@debian.org>  Tue, 05 Aug 2008 13:40:40 -0300

partman-auto (79) unstable; urgency=low

  [ Martin Michlmayr ]
  * Use the size values for /boot from the generic recipe for iop32x
    and orion5x since there's no reason to divert from the default.
  * Allow LVM on iop32x and orion5x.
  * Add recipes for ixp4xx that allocate more swap than other recipes
    (for the Linksys NSLU2 which only has 32 MB RAM).
  * ixp4xx: Don't offer lvm by default since it uses many resources.

  [ Frans Pop ]
  * Change default file system for /boot partition from ext3 to ext2.
    As they are relatively small the journal overhead is fairly big and
    because the transaction volume is very low the need for a journal is
    a lot less than on other partitions.

  [ Updated translations ]
  * Belarusian (be.po) by Pavel Piatruk
  * Basque (eu.po) by Iñaki Larrañaga Murgoitio
  * Finnish (fi.po) by Esko Arajärvi
  * Italian (it.po) by Milo Casagrande
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Slovak (sk.po) by Ivan Masár
  * Turkish (tr.po) by Mert Dirik

 -- Frans Pop <fjp@debian.org>  Wed, 16 Jul 2008 13:53:09 +0200

partman-auto (78) unstable; urgency=low

  [ Updated translations ]
  * Amharic (am.po) by tegegne tefera
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
  * Marathi (mr.po) by Sampada
  * Panjabi (pa.po) by Amanpreet Singh Alam

 -- Otavio Salvador <otavio@debian.org>  Thu, 08 May 2008 00:52:40 -0300

partman-auto (77) unstable; urgency=low

  [ Frans Pop ]
  * auto-shared.sh: skip both /dev/md/X and /dev/mdX RAID devices.

  [ Martin Michlmayr ]
  * Add a recipe for orion5x, so a separate /boot partition will
    be used.  Some Orion devices boot from disk and u-boot only
    supports ext2/ext3 boot partitions.
  * Make arm recipes also available on armel.

  [ Updated translations ]
  * Marathi (mr.po)

 -- Frans Pop <fjp@debian.org>  Mon, 07 Apr 2008 17:47:25 +0200

partman-auto (76) unstable; urgency=low

  [ Colin Watson ]
  * Support preseeding partman-auto/choose_recipe using the name of the
    recipe you want (e.g. "home"), as an alternative to the localised
    description.
  * Ensure that there is always at least one primary partition after
    autopartitioning. An existing primary partition on the disk satisfies
    this, as does a recipe partition explicitly marked $primary{ }; if
    neither of those exists, then arbitrarily promote the first recipe
    partition to be a primary partition.

  [ Guido Guenther ]
  * Allow multipath devices as auto_disks

  [ Updated translations ]
  * Portuguese (pt.po) by Miguel Figueiredo
  * Slovak (sk.po) by Ivan Masár

 -- Frans Pop <fjp@debian.org>  Thu, 20 Mar 2008 09:26:56 +0100

partman-auto (75) unstable; urgency=low

  [ Updated translations ]
  * Finnish (fi.po) by Esko Arajärvi
  * Hindi (hi.po) by Kumar Appaiah
  * Indonesian (id.po) by Arief S Fitrianto
  * Latvian (lv.po) by Viesturs Zarins
  * Panjabi (pa.po) by Amanpreet Singh Alam
  * Turkish (tr.po) by Recai Oktaş
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Otavio Salvador <otavio@ossystems.com.br>  Fri, 15 Feb 2008 09:33:08 -0200

partman-auto (74) unstable; urgency=low

  * Don't create the last partition as a logical partition when all partitions
    are defined as primary and there are sufficient primary partitions
    available. Closes: #413505.
  * Make it possible to use a primary partition for LVM. Thanks to Grégory
    Oestreicher for spotting the issue and providing an initial patch.
  * recipes.sh: simplify foreach_partition(); improves debug log readability.

  [ Updated translations ]
  * Amharic (am.po) by tegegne tefera
  * Korean (ko.po) by Changwoo Ryu
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
  * Portuguese (pt.po) by Miguel Figueiredo

 -- Frans Pop <fjp@debian.org>  Mon, 21 Jan 2008 09:59:51 +0100

partman-auto (73) unstable; urgency=low

  * Moved definitions.sh to ./lib/base.sh.
  * Move recipes.sh and auto-shared.sh to ./lib/.
  * auto-shared.sh: rename wipe_disk() to auto_init_disk().
  * Use functions provided by partman-partitioning in auto_init_disk():
    - use the create_new_label function; don't prompt for disk label to use
      unless the default is invalid
    - create_new_label will now take care of removing existing LVM data from
      the selected device; the actual code to erase existing LVM data has been
      moved to partman-lvm
    Changes inspired by and partially based on a patch proposed in #396023 by
    Jérémy Bobbio.
  * Major whitespace cleanup and some coding style improvements.
  * Requires: partman-base (>= 114); partman-partitioning (>= 54).

  [ Updated translations ]
  * Esperanto (eo.po) by Serge Leblanc
  * Japanese (ja.po) by Kenshi Muto
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ

 -- Frans Pop <fjp@debian.org>  Tue, 11 Dec 2007 14:03:38 +0100

partman-auto (72) unstable; urgency=low

  * Revert support for erasing encrypted LVM volumes introduced in (69).
    There are too many problems with it and starting fresh seems better than
    stacking change on change to fix it. Closes: #425829.
  * lvm-wipe-disk(): needs device-mapper support while removing devices.
  * lvm-wipe-disk(): fix restart logic.

  [ Updated translations ]
  * Dzongkha (dz.po) by Jurmey Rabgay
  * French (fr.po) by Christian Perrier
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
  * Polish (pl.po) by Bartosz Fenski
  * Slovak (sk.po) by Ivan Masár

 -- Frans Pop <fjp@debian.org>  Wed, 05 Dec 2007 13:17:01 +0100

partman-auto (71) unstable; urgency=low

  * Fix regression preventing to exit to main menu when using go back from
    initial guided partitioning screen. Closes: #446994.

 -- Frans Pop <fjp@debian.org>  Thu, 15 Nov 2007 12:28:20 +0100

partman-auto (70) unstable; urgency=low

  [ Frans Pop ]
  * Move deletion of SVN directories to install-rc script.
  * Improve the way install-rc is called.

  [ Colin Watson ]
  * Fix divide-by-zero error if the sum of the factors in the scheme is
    equal to the sum of the minimum sizes, or if we run off the maximum size
    of the recipe before we run out of disk to allocate.
  * Minor optimisations using ${parameter:-word} and ${parameter:+word}
    expansions.
  * Use 'mkdir -p' rather than more awkward test-then-create constructions.

  [ Anton Zinoviev ]
  * Rename auto.d to display.d.  Be more careful with the exit code of the
    script in display.d and when to remove /var/lib/partman/initial_auto.

  [ Updated translations ]
  * Bengali (bn.po) by Jamil Ahmed
  * Catalan (ca.po) by Jordi Mallach
  * Czech (cs.po) by Miroslav Kure
  * Danish (da.po) by Claus Hindsgaul
  * 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
  * Hungarian (hu.po) by SZERVÁC Attila
  * Italian (it.po) by Stefano Canepa
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Nepali (ne.po) by Nabin Gautam
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Punjabi (Gurmukhi) (pa.po) by A S Alam
  * Polish (pl.po) by Bartosz Fenski
  * 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
  * Swedish (sv.po) by Daniel Nylander
  * Ukrainian (uk.po)
  * Vietnamese (vi.po) by Clytie Siddall
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke

 -- Colin Watson <cjwatson@debian.org>  Tue, 02 Oct 2007 16:45:42 +0100

partman-auto (69) unstable; urgency=low

  [ David Härdeman ]
  * Change wipe_disk in auto-shared.sh to take an explicit argument
    rather than relying on an implicit one
  * Allow LVM and device-mapper (i.e. crypto) volumes to be deallocated.
    This partially fixes #381892 and #396023

  [ Colin Watson ]
  * Fix a couple of minor glitches if no disks are present.
  * Don't offer some_device automatic partitioning if no disks are present.
  * Merge from Ubuntu:
    - auto.d/initial_auto: If an autopartitioning choice fails, remove
      /var/lib/partman/initial_auto so that we can try again.
    - auto.d/initial_auto: If partman-auto/method is preseeded and
      partman-auto/disk is not but there is only one disk, act as though
      partman-auto/disk had been preseeded to that disk. This simplifies a
      number of preseeding scenarios complicated by the removal of devfs
      path support.

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Bengali (bn.po) by Mahay Alam Khan (মাহে আলম)
  * Dzongkha (dz.po) by translator
  * 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
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Sunjae Park
  * Norwegian Bokmål (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * Portuguese (pt.po) by Miguel Figueiredo
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Romanian (ro.po) by Eddy Petrișor
  * Slovenian (sl.po) by Matej Kovacic
  * Albanian (sq.po) by Elian Myftiu
  * Tamil (ta.po) by Dr.T.Vasudevan
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Tagalog (tl.po) by Eric Pareja
  * Simplified Chinese (zh_CN.po) by Ming Hua
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Colin Watson <cjwatson@debian.org>  Mon, 09 Apr 2007 22:16:42 +0100

partman-auto (68) unstable; urgency=low

  * Increase maximum size for the root partition in "atomic" recipes.
    Closes: #412624.

 -- Frans Pop <fjp@debian.org>  Thu,  8 Mar 2007 12:36:14 +0100

partman-auto (67) unstable; urgency=low

  [ Updated translations ]
  * Hebrew (he.po) by Lior Kaplan
  * Malayalam (ml.po) by Praveen A
  * Swedish (sv.po) by Daniel Nylander

 -- Frans Pop <fjp@debian.org>  Tue, 27 Feb 2007 18:15:47 +0100

partman-auto (66) unstable; urgency=low

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Esperanto (eo.po) by Serge Leblanc
  * Hebrew (he.po) by Lior Kaplan
  * Korean (ko.po) by Sunjae park
  * Romanian (ro.po) by Eddy Petrișor

 -- Frans Pop <fjp@debian.org>  Wed, 31 Jan 2007 12:19:14 +0100

partman-auto (65) unstable; urgency=low

  * Fix errors due to missing environment variable DEVICES.

  [ Updated translations ]
  * Latvian (lv.po) by Aigars Mahinovs
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)

 -- Frans Pop <fjp@debian.org>  Sat, 20 Jan 2007 16:16:04 +0100

partman-auto (64) unstable; urgency=low

  * Don't offer "Guided - use the largest continuous free space" if the only
    free space available is unusable.

 -- Colin Watson <cjwatson@debian.org>  Fri, 12 Jan 2007 13:31:14 +0000

partman-auto (63) unstable; urgency=low

  [ Colin Watson ]
  * choose_partition/auto/do_option: Improve ask_user exit code handling as
    follows: 255 is backup, so return to the choose_partition menu (rather
    than propagating 255 and thus backing up all the way to the d-i main
    menu); 100-254 means that an automatically_partition script attempted to
    skip the manual partitioner, assuming that it was running from the
    initial auto.d pass, but this doesn't make sense if the manual
    partitioner has already been displayed so we can treat this exactly the
    same as a backup. All other exit codes are handled (99: retry) or
    propagated (anything else) as before.

  [ Frans Pop ]
  * Don't offer guided partitioning if no disks are detected. Closes: #406325.

  [ Updated translations ]
  * Belarusian (be.po) by Pavel Piatruk
  * Danish (da.po) by Claus Hindsgaul
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Galician (gl.po) by Jacobo Tarrio
  * Kurdish (ku.po) by Amed Çeko Jiyan
  * 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
  * Slovenian (sl.po) by Matej Kovačič
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan

 -- Frans Pop <fjp@debian.org>  Wed, 10 Jan 2007 19:16:31 +0100

partman-auto (62) unstable; urgency=low

  [ Frans Pop ]
  * Remove /boot partition from powerpc-prep recipes as kernel is installed on
    prep partition, not in /boot. Closes: #401271.
  * Move init.d scripts to auto.d to avoid progress bar conflicts.
    Requires partman-base 99. Closes: #391676.

  [ Colin Watson ]
  * Propagate ask_user exit code from initial_auto, so that backup works.

  [ Updated translations ]
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * Galician (gl.po) by Jacobo Tarrio
  * Kurdish (ku.po) by Erdal Ronahi
  * Latvian (lv.po) by Aigars Mahinovs
  * Panjabi (pa.po) by A S Alam

 -- Frans Pop <fjp@debian.org>  Fri,  8 Dec 2006 18:31:06 +0100

partman-auto (61) unstable; urgency=low

  [ Martin Michlmayr ]
  * Increase the minimimum amount of swap created from 64 to 96 MB.  This
    is needed for installations on systems with 32 MB RAM and only a 1 GB
    drive.  Closes: #399951.

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Bosnian (bs.po) by Safir Secerovic
  * Estonian (et.po) by Siim Põder
  * Hungarian (hu.po) by SZERVÁC Attila
  * Georgian (ka.po) by Aiet Kolkhi
  * Kurdish (ku.po) by rizoye-xerzi
  * Norwegian Bokmål (nb.po) by Bjørn Steensrud
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Polish (pl.po) by Bartosz Fenski
  * Slovenian (sl.po) by Matej Kovačič
  * Swedish (sv.po) by Daniel Nylander
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 24 Nov 2006 13:00:18 +0100

partman-auto (60) unstable; urgency=low

  [ Updated translations ]
  * Belarusian (be.po) by Andrei Darashenka
  * Catalan (ca.po) by Jordi Mallach
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * Hindi (hi.po) by Nishant Sharma
  * Hungarian (hu.po) by SZERVÁC Attila
  * Indonesian (id.po) by Arief S Fitrianto
  * Italian (it.po) by Giuseppe Sacco
  * Korean (ko.po) by Sunjae park
  * Kurdish (ku.po) by Erdal Ronahi
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Macedonian (mk.po) by Georgi Stanojevski
  * Nepali (ne.po) by Shiva Prasad Pokharel
  * Albanian (sq.po) by Elian Myftiu
  * 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>  Tue, 24 Oct 2006 15:44:39 +0200

partman-auto (59) unstable; urgency=low

  * Display selected target for partitioning when choosing a recipe.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Bengali (bn.po) by Jamil Ahmed
  * 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) by Jurmey Rabgay
  * Greek, Modern (1453-) (el.po) by QUAD-nrg.net
  * 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
  * Khmer (km.po) by Khoem Sokhem
  * Norwegian Bokmål (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * 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
  * Tamil (ta.po) by Damodharan Rajalingam
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Vietnamese (vi.po) by Clytie Siddall

 -- Frans Pop <fjp@debian.org>  Sat, 14 Oct 2006 02:10:02 +0200

partman-auto (58) unstable; urgency=low

  [ Colin Watson ]
  * Print a log message if the recipe specified in
    partman-auto/expert_recipe is too large.

  [ Frans Pop ]
  * Activate LVM support in recipes for hppa.
  * Implement selection of method before disk for regular guided partitioning.
    Closes: #391071.

  [ Simon Huggins ]
  * Add a raid method so we get multiple disk partitioning functionality back
    again.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Bengali (bn.po) by Mahay Alam Khan (মাহে আলম)
  * 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) by Jurmey Rabgay
  * Greek (el.po) by quad-nrg.net
  * 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
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Nishant Sharma
  * Croatian (hr.po) by Josip Rodin
  * Hungarian (hu.po) by SZERVÁC Attila
  * Icelandic (is.po) by David Steinn Geirsson
  * Italian (it.po) by Stefano Canepa
  * Japanese (ja.po) by Kenshi Muto
  * 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
  * Macedonian (mk.po) by Georgi Stanojevski
  * Norwegian Bokmal (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * 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
  * Albanian (sq.po) by Elian Myftiu
  * Swedish (sv.po) by Daniel Nylander
  * Tamil (ta.po) by Damodharan Rajalingam
  * 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
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Frans Pop <fjp@debian.org>  Wed, 11 Oct 2006 04:34:10 +0200

partman-auto (57) unstable; urgency=low

  [ David Härdeman ]
  * Fix broken <go back> logic. Closes: #387350.

  [ Frans Pop ]
  * Add Lintian override for standards-version.
  * Add dependency on debconf.

  [ Updated translations ]
  * Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
  * German (de.po) by Jens Seidel
  * Basque (eu.po) by Piarres Beobide
  * Finnish (fi.po) by Tapio Lehtonen
  * Hebrew (he.po) by Lior Kaplan
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Sunjae park
  * Latvian (lv.po) by Aigars Mahinovs
  * Norwegian Bokmål (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * Slovak (sk.po) by Peter Mann
  * Slovenian (sl.po) by Jure Čuhalev
  * Turkish (tr.po) by Recai Oktaş

 -- Frans Pop <fjp@debian.org>  Fri, 15 Sep 2006 06:24:28 +0200

partman-auto (56) unstable; urgency=low

  * Switch menu order back to what it was before, so preseeding files don't
    need to be changed and users get autopartitioning by default.

  [ Updated translations ]
  * French (fr.po) by Christian Perrier

 -- Joey Hess <joeyh@debian.org>  Wed,  6 Sep 2006 12:48:29 -0400

partman-auto (55) unstable; urgency=low

  [ Simon Huggins ]
  * Add support for autopartitioning multiple disks.
  * Move initial_auto to priority 96 for partman-auto-raid to squeeze in
    afterwards.

  [ Martin Michlmayr ]
  * Create recipes for arm/iop32x (separate /boot partition, as needed by
    the GLAN Tank).

  [ David Härdeman ]
  * Mark swap partitions as lvmok in recipies which support lvm per
    discussion in debian-boot (http://lists.debian.org/debian-
    boot/2006/08/msg00862.html)
  * Add a function to remove LVM configs from a disk which is about to
    be wiped. Closes: #375491, #381693, #382315.
  * Do not suggest part'ing RAID/LVM volumes. Closes: #255024, #375257
  * Implement two-level menu split. Closes: #384527

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Czech (cs.po) by Miroslav Kure
  * Danish (da.po) by Claus Hindsgaul
  * German (de.po) by Jens Seidel
  * Greek, Modern (1453-) (el.po) by quad-nrg.net
  * 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
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Gujarati (gu.po) by Kartik Mistry
  * Hebrew (he.po) by Lior Kaplan
  * Hungarian (hu.po) by SZERVÁC Attila
  * Indonesian (id.po) by Arief S Fitrianto
  * Icelandic (is.po) by David Steinn Geirsson
  * Italian (it.po) by Giuseppe Sacco
  * Japanese (ja.po) by Kenshi Muto
  * Khmer (km.po) by Khoem Sokhem
  * Korean (ko.po) by Sunjae park
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Macedonian (mk.po) by Georgi Stanojevski
  * Norwegian Bokmål (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * Panjabi (pa.po) by A S Alam
  * 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
  * 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
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke
  * Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Joey Hess <joeyh@debian.org>  Thu, 31 Aug 2006 17:21:00 -0400

partman-auto (54) unstable; urgency=low

  * Support preseeding of partman-auto-lvm/disk.

  [ Updated translations ]
  * Estonian (et.po) by Siim Põder
  * Polish (pl.po) by Bartosz Fenski

 -- Frans Pop <fjp@debian.org>  Mon, 26 Jun 2006 12:04:11 +0200

partman-auto (53) unstable; urgency=low

  * Do not run partman-auto on S/390. Main reason is that S/390 installations
    will mostly use multiple disks. As partman-auto currently only supports
    partitioning a single disk, running it is not very useful.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Catalan (ca.po) by Jordi Mallach
  * Czech (cs.po) by Miroslav Kure
  * Danish (da.po) by Claus Hindsgaul
  * German (de.po) by Jens Seidel
  * 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
  * 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
  * Georgian (ka.po) by Aiet Kolkhi
  * Khmer (km.po) by Khoem Sokhem
  * Korean (ko.po) by Sunjae park
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Bokmål, Norwegian (nb.po) by Bjørn Steensrud
  * Dutch (nl.po) by Bart Cornelis
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * 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
  * Turkish (tr.po) by Recai Oktaş
  * Vietnamese (vi.po) by Clytie Siddall

 -- Frans Pop <fjp@debian.org>  Wed, 21 Jun 2006 13:52:38 +0200

partman-auto (52) unstable; urgency=low

  * Since partman-auto-lvm erases disks w/o warning when used, reword the
    template to not say that the user will get a chance to undo things.
    (See #368633)

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Danish (da.po) by Claus Hindsgaul
  * German (de.po) by Jens Seidel
  * Dzongkha (dz.po)
  * Esperanto (eo.po) by Serge Leblanc
  * Hebrew (he.po) by Lior Kaplan
  * Hungarian (hu.po) by SZERVÑC Attila
  * Khmer (km.po) by Leang Chumsoben
  * Kurdish (ku.po) by Erdal Ronahi
  * Nepali (ne.po) by Shiva Pokharel
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Northern Sami (se.po) by Børre Gaup
  * Slovenian (sl.po) by Jure Čuhalev
  * Swedish (sv.po) by Daniel Nylander
  * Tamil (ta.po) by Damodharan Rajalingam
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Vietnamese (vi.po) by Clytie Siddall

 -- Joey Hess <joeyh@debian.org>  Thu, 25 May 2006 17:13:20 -0400

partman-auto (51) unstable; urgency=low

  * Also set free_type in wipe_disk as that is needed by the function
    create_primary_partitions. This allows partman-auto-lvm to actually create
    the /boot partition as a primary partition.
  * Allow to include definitions of partitions in regular recipes that should
    only be used for a certain type of auto partitioning. This is useful to
    allow e.g. a definition for a /boot partition to be included that is not
    to be used for regular auto partitioning, but is needed for auto-lvm.
    The actual implementation is in reverse as that seems more flexible: a
    partition can be marked using "$<type>ignore" (where <type> is default or
    lvm) and will then not be included. Multiple ignore marks are possible.
    To implement this, the functions choose_recipe and decode_recipe now take
    an extra argument indicating the type of autopartitioning being done.
  * Add myself to uploaders.

  [ Updated translations ]
  * Bosnian (bs.po) by Safir Secerovic
  * Catalan (ca.po) by Jordi Mallach
  * German (de.po) by Jens Seidel
  * Basque (eu.po) by Piarres Beobide
  * Irish (ga.po) by Kevin Patrick Scannell
  * Khmer (km.po) by hok kakada
  * Northern Sami (se.po) by Børre Gaup
  * Slovenian (sl.po) by Jure Cuhalev
  * Tamil (ta.po) by Damodharan Rajalingam

 -- Frans Pop <fjp@debian.org>  Sun,  9 Apr 2006 22:44:36 +0200

partman-auto (50) unstable; urgency=low

  [ Sven Luther ]
  * [powerpc] Added lvm auto-partitioning support to prep and ibm_chrp
    recipes.
  * [powerpc] Added chrp_pegasos, oldworld and apus recipes.
  * [powerpc] Fixed boot-prep -> prep renaming.
    boot-prep died in libparted on january 2005, well before the sarge release.

  [ Frans Pop ]
  * recipes.sh: make code to select a recipe directory into separate function.

  [ Martin Michlmayr ]
  * Add support for the Broadcom BCM91480B evaluation board (aka "BigSur").
  * Rename sb1-swarm-bn recipes to sb1-bcm91250a for consistency.

  [ Updated translations ]
  * Bosnian (bs.po) by Safir Secerovic
  * Catalan (ca.po) by Jordi Mallach
  * Galician (gl.po) by Jacobo Tarrio
  * Hungarian (hu.po) by SZERVÑC Attila
  * Japanese (ja.po) by Kenshi Muto
  * Swedish (sv.po) by Daniel Nylander

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 17 Mar 2006 22:23:32 +0000

partman-auto (49) unstable; urgency=low

  * Enable auto-lvm in partitioning schemes for Sparc.

  [ Updated translations ]
  * Hungarian (hu.po) by SZERVÑC Attila
  * Slovenian (sl.po) by Matej Kovačič

 -- Frans Pop <fjp@debian.org>  Mon, 13 Feb 2006 12:38:08 +0100

partman-auto (48) unstable; urgency=low

  * Make sure no .svn directories get included in the package.

 -- Frans Pop <fjp@debian.org>  Sat, 28 Jan 2006 17:16:38 +0100

partman-auto (47) unstable; urgency=low

  [ Updated translations ]
  * Bulgarian (bg.po) by Ognyan Kulev
  * Catalan (ca.po) by Jordi Mallach
  * Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
  * Finnish (fi.po) by Tapio Lehtonen
  * 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
  * 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
  * Dutch (nl.po) by Bart Cornelis
  * Punjabi (Gurmukhi) (pa_IN.po) by Amanpreet Singh Alam
  * Polish (pl.po) by Bartosz Fenski
  * Slovenian (sl.po) by Jure Cuhalev
  * Albanian (sq.po) by Elian Myftiu
  * Swedish (sv.po) by Daniel Nylander
  * Turkish (tr.po) by Recai Oktaş
  * Vietnamese (vi.po) by Clytie Siddall
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke

 -- Frans Pop <fjp@debian.org>  Tue, 24 Jan 2006 21:55:44 +0100

partman-auto (46) unstable; urgency=low

  [ Joey Hess ]
  * Renamed multi_user scheme to just "multi" as in multiple partitions.
    There are more uses for this scheme than multi user systems.
  * Switch package to arch all and only include recipes for the given
    architecture and any subarches in each package.
  * Rules file cleanups.
  * Control file cleanups.
  * Change descriptions of home and multi recipes to just list the partitions
    that are included. Closes: #287409, #288884
  * Increase minimal size of / partition in home recipe to 500 mb.
    Closes: #289419, #330079
  * Double the weight of the root partition in the multi scheme from 400 to
    800. This should increase the size allocated on reasonable size disks
    from the previous 250 mb to something slightly more reasonable.
    Closes: #328514

  [ Steve Langasek ]
  * Add a smalldisk recipe for alpha, so that systems with little disk space
    can use a single ext2 partition for the whole install (closes: #261182).

  [ Colin Watson ]
  * Remove duplicated chrp_rs6k recipes and install a symlink instead.

  [ Fabio M. Di Nitto ]
  * Start implementing bits required to avoid code duplication with
    partman-auto-lvm as per discussion on debian-boot mailing list.
    (See http://lists.debian.org/debian-boot/2005/10/msg00842.html)
  * Add lvmok{ } to recipes as per discussion on debian-boot mailing list.
    NOTES:
      - nobody objected to a tag/properties/flag name or proposed something
        different. It is clearly ok to rename it if it doesn't fit.
      - swap will stay out of LVM for now. In some cases it is known to break
        suspend/resume. It seems not all kernels are able to resume from it.
      - porters will have to adjust their recipes. I could only test
        i386/amd64 (via recipes) and powerpc-powermac_newworld (via
        recipes-powerpc-powermac_newworld).
  * Move common code into auto-shared.sh shelllib and create 3 functions:
    wipe_disk, create_primary_partitions (see comments in the file) and
    create_partitions.
  * Install auto-shared.sh in /lib/partman (chages debian/rules)
  * Make perform_recipe and autopartition use auto-shared.sh.
  * Make create_partitions set a var for all the devices that will be marked
    as pv. This is actually only used by partman-auto-lvm, but it is generic
    enough that could be used later on for other tasks.
    NOTES: the above changes have been tested on i386/amd64/ppc and there is
    no known breakage. The code is only moved around and none of the actual
    recipes use method{ lvm } used by partman-auto-lvm to mark partitions as
    pv volumes.

 -- Joey Hess <joeyh@debian.org>  Wed,  7 Dec 2005 21:55:20 -0500

partman-auto (45) unstable; urgency=low

  [ Fabio M. Di Nitto ]
  * Move 2 chunks of code from perform_recipe into recipes.sh and make them
    functions. This code is shared with partman-auto-lvm so there is very
    little point in duplicating it.

  [ Colin Watson ]
  * Use 'rm -f' rather than more awkward test-then-remove constructions.

  [ Sven Luther ]
  * Adapted to chrp_rs6k -> chrp_ibm transition.

  [ Frans Pop ]
  * Use gpt instead of msdos disklabel for disks larger than 2TB.

  [ Updated translations ]
  * Bengali (bn.po) by Baishampayan Ghose
  * French (fr.po) by Christian Perrier
  * Icelandic (is.po) by David Steinn Geirsson
  * Romanian (ro.po) by Eddy Petrişor
  * Swedish (sv.po) by Daniel Nylander
  
 -- Joey Hess <joeyh@debian.org>  Tue, 15 Nov 2005 19:25:01 -0500

partman-auto (44) unstable; urgency=low

  [ Updated translations ]
  * Greek, Modern (1453-) (el.po) by Greek Translation Team
  * Galician (gl.po) by Jacobo Tarrio
  * Kurdish (ku.po) by Erdal Ronahi
  * Romanian (ro.po) by Eddy Petrisor

 -- Joey Hess <joeyh@debian.org>  Mon, 26 Sep 2005 17:28:03 +0200

partman-auto (43) unstable; urgency=low

  [ Frans Pop ]
  * Changed dependency from partman to partman-base.

  [ Sven Luther ]
  * Added prep recipes, as a plain copy of the chrp_rs6k ones. 

 -- Sven Luther <luther@debian.org>  Thu,  1 Sep 2005 13:04:10 +0200

partman-auto (42) unstable; urgency=low

  * Updated translations: 
    - Arabic (ar.po) by Ossama M. Khayat
    - Belarusian (be.po) by Andrei Darashenka
    - German (de.po) by Dennis Stampfer
    - Greek, Modern (1453-) (el.po) by Greek Translation Team
    - 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
    - Hebrew (he.po) by Lior Kaplan
    - Italian (it.po) by Giuseppe Sacco
    - Lithuanian (lt.po) by Kęstutis Biliūnas
    - Malagasy (mg.po) by Jaonary Rabarisoa
    - Macedonian (mk.po) by Georgi Stanojevski
    - Macedonian (pa_IN.po) by Amanpreet Singh Alam
    - 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
    - Tagalog (tl.po) by Eric Pareja
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Vietnamese (vi.po) by Clytie Siddall
    - Wolof (wo.po) by Mouhamadou Mamoune Mbacke
    - Xhosa (xh.po) by Canonical Ltd

 -- Joey Hess <joeyh@debian.org>  Fri, 15 Jul 2005 17:17:14 +0300

partman-auto (41) unstable; urgency=low

  * Colin Watson
    - Add jfs to the valid filesystems list.
  * Steve Langasek
    - Fix the alpha multiuser recipe to use fewer partitions, working
      around a parted problem with full disklabels. Closes: #260093.
  * Updated translations: 
    - Bosnian (bs.po) by Safir Šećerović
    - Catalan (ca.po) by Guillem Jover
    - German (de.po) by Dennis Stampfer
    - Greek, Modern (1453-) (el.po) by Greek Translation Team
    - Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
    - French (fr.po) by French Team
    - Gallegan (gl.po) by Jacobo Tarrio
    - Hebrew (he.po) by Lior Kaplan
    - Lithuanian (lt.po) by Kęstutis Biliūnas
    - Dutch (nl.po) by Bart Cornelis
    - Romanian (ro.po) by Eddy Petrisor
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Traditional Chinese (zh_TW.po) by Tetralet

 -- Steve Langasek <vorlon@debian.org>  Sun, 27 Feb 2005 15:33:40 -0800

partman-auto (40) unstable; urgency=low

  * Add sun disk label write then read hack to autopartition script as was
    earlier done to other parts of partman to fix bug #237400.
  * Re-enable whole-device autopartitioning for sparc. Closes: #249142
  * Updated translations: 
    - Italian (it.po) by Stefano Canepa

 -- Joey Hess <joeyh@debian.org>  Thu, 11 Nov 2004 01:46:37 -0500

partman-auto (39) unstable; urgency=low

  * Fix reverse devfs mapping code. Closes: #277357

 -- Joey Hess <joeyh@debian.org>  Tue,  2 Nov 2004 10:17:17 -0500

partman-auto (38) unstable; urgency=high

  * Joey Hess
    - Allow preseeding of partman-auto/choose_recipe.

 -- Joey Hess <joeyh@debian.org>  Fri, 22 Oct 2004 13:07:28 -0400

partman-auto (37) unstable; urgency=low

  * Matt Kraai
    - Add hfs to lists of valid filesystems. Closes: #276741

 -- Joey Hess <joeyh@debian.org>  Wed, 20 Oct 2004 22:44:44 -0400

partman-auto (36) unstable; urgency=low

  * Updated translations: 
    - Bulgarian (bg.po) by Ognyan Kulev
    - Catalan (ca.po) by Jordi Mallach
    - Czech (cs.po) by Miroslav Kure
    - Welsh (cy.po) by Dafydd Harries
    - Danish (da.po) by Claus Hindsgaul
    - German (de.po) by Dennis Stampfer
    - Greek, Modern (1453-) (el.po) by Greek Translation Team
    - Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
    - Basque (eu.po) by Piarres Beobide Egaña
    - Finnish (fi.po) by Tapio Lehtonen
    - French (fr.po) by French Team
    - Hebrew (he.po) by Lior Kaplan
    - Croatian (hr.po) by Krunoslav Gernhard
    - Hungarian (hu.po) by VEROK Istvan
    - Indonesian (id.po) by Debian Indonesia Team
    - Japanese (ja.po) by Kenshi Muto
    - Korean (ko.po) by Changwoo Ryu
    - Lithuanian (lt.po) by Kęstutis Biliūnasn
    - Latvian (lv.po) by Aigars Mahinovs
    - Bøkmal, Norwegian (nb.po) by Bjorn Steensrud
    - 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 André Luís Lopes
    - Romanian (ro.po) by Eddy Petrisor
    - Russian (ru.po) by Russian L10N Team
    - Slovak (sk.po) by Peter KLFMANiK Mann
    - Slovenian (sl.po) by Jure Čuhalev
    - Albanian (sq.po) by Elian Myftiu
    - Swedish (sv.po) by Per Olofsson
    - Turkish (tr.po) by Recai Oktaş
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
    - Traditional Chinese (zh_TW.po) by Tetralet

 -- Joey Hess <joeyh@debian.org>  Wed,  6 Oct 2004 15:43:06 -0400

partman-auto (35) unstable; urgency=low

  * Anton Zinoviev
    - recipes.sh (decode_recipe): calculate properly the RAM size on 2.6 kernel
  * Updated translations: 
    - Bulgarian (bg.po) by Ognyan Kulev
    - Greek, Modern (1453-) (el.po) by Greek Translation Team
    - French (fr.po) by French Team
    - Indonesian (id.po) by Parlin Imanuel Toh
    - Lithuanian (lt.po) by Kęstutis Biliūnasn
    - Bøkmal, Norwegian (nb.po) by Axel Bojer
    - Norwegian Nynorsk (nn.po) by Håvard Korsvoll
    - Polish (pl.po) by Bartosz Fenski
    - Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
    - Russian (ru.po) by Russian L10N Team
    - Swedish (sv.po) by Per Olofsson

 -- Joey Hess <joeyh@debian.org>  Mon, 27 Sep 2004 21:01:22 -0400

partman-auto (34) unstable; urgency=low

  * Joey Hess
    - Documentation of recipe format has moved to
      installer/doc/devel/partman-auto-recipe.txt
    - Make the expert recipe stuff preseedable.
    - Make autopartition be used for both types of autopartitioning.
    - Add partman-auto/disk which can be preseeded to force use of a specific
      disk for autopartitioning.
  * Updated translations: 
    - Catalan (ca.po) by Jordi Mallach
    - Czech (cs.po) by Miroslav Kure
    - Danish (da.po) by Claus Hindsgaul
    - German (de.po) by Dennis Stampfer
    - Greek, Modern (1453-) (el.po) by Greek Translation Team
    - Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
    - Finnish (fi.po) by Tapio Lehtonen
    - French (fr.po) by French Team
    - Hebrew (he.po) by Lior Kaplan
    - Croatian (hr.po) by Krunoslav Gernhard
    - Hungarian (hu.po) by VERÓK István
    - Italian (it.po) by Stefano Canepa
    - Korean (ko.po) by Changwoo Ryu
    - Norwegian Nynorsk (nn.po) by Håvard Korsvoll
    - Polish (pl.po) by Bartosz Fenski
    - Romanian (ro.po) by Eddy Petrisor
    - Slovenian (sl.po) by Jure Čuhalev
    - Turkish (tr.po) by Recai Oktaş
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu

 -- Joey Hess <joeyh@debian.org>  Fri, 10 Sep 2004 20:37:07 -0400

partman-auto (33) unstable; urgency=low

  * Stop unsetting seen flags, that is not necessary for months and it
    breaks prseeding.

 -- Joey Hess <joeyh@debian.org>  Wed,  1 Sep 2004 16:02:28 -0400

partman-auto (32) unstable; urgency=low

  * Joey Hess
    - Remove all mount options from all recipes. This is not the time
      to be making this sort of change to the base systems. Closes: #269227
      - Especially when it's not tested and breaks dpkg. Closes: #269253

 -- Joey Hess <joeyh@debian.org>  Tue, 31 Aug 2004 12:52:11 -0400

partman-auto (31) unstable; urgency=low

  * Anton Zinoviev
    - second try: closes:  #261244
    - raise the maximal size for / in multi_user recipes (150->280MB).
      Thanks to Chris Walker, closes: #248278.
    - resipes.sh (setup_partition): allow creation of subdirectories in
      the partition directories.
    - add "noatime" mount option in the atomic and home recipes.  Thanks
      to Ryan Underwood, closes: #265295
    - add mount options in the multi_user recipes:
         "nodev" and "noexec" for /boot,
         "nodev" for /usr,
         "nodev", "noexec", "usrquota" and "grpquota" for /var,
         "nodev", "nosuid", "usrquota" and "grpquota" for /tmp,
         "nodev", "nosuid", "usrquota" and "grpquota" for /home
    - move the swap between / and /home in the home recipes; reorder the
      partitions in the multi_user recipe so that swap is in the middle and
      the most often accessible partitions are around it:
      (/boot), /, /usr, /var, swap, /tmp, /home.
    - templates: rename the recipes:
         home:        Desktop machine
         multi_user:  Multi-user workstation
      Thanks to Margarita Manterola, closes: #251414
    - limit the maximum size of the swap to 3 times the available RAM but
      not less than 64 MB.  Thanks to Margarita Manterola, closes: #254935
    - README: document #261244 and #265290
  * Updated translations: 
    - Arabic (ar.po) by Christian Perrier
    - Bulgarian (bg.po) by Ognyan Kulev
    - Bosnian (bs.po) by Safir Šećerović
    - Catalan (ca.po) by Jordi Mallach
    - Czech (cs.po) by Miroslav Kure
    - Welsh (cy.po) by Dafydd Harries
    - Danish (da.po) by Claus Hindsgaul
    - Greek, Modern (1453-) (el.po) by Greek Translation Team
    - Basque (eu.po) by Piarres Beobide Egaña
    - French (fr.po) by French Team
    - Hebrew (he.po) by Lior Kaplan
    - Croatian (hr.po) by Krunoslav Gernhard
    - Japanese (ja.po) by Kenshi Muto
    - Lithuanian (lt.po) by Kęstutis Biliūnas
    - Latvian (lv.po) by Aigars Mahinovs
    - Bøkmal, Norwegian (nb.po) by Bjørn Steensrud
    - 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
    - Russian (ru.po) by Yuri Kozlov
    - Turkish (tr.po) by Recai Oktaş
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
  
 -- Joey Hess <joeyh@debian.org>  Mon, 30 Aug 2004 12:13:24 -0400

partman-auto (30) unstable; urgency=low

  * Jim Lieb
    - Add ia64 recipes.  Closes: #253697, #253697, #257910.
      Thanks to Peter Chubb, Florent de Dinechin and Bdale Garbee
  * Joshua Kwan
    - Add sparc recipes.
  * Martin Michlmayr
    - Add recipes for the Broadcom SWARM MIPS board.
  * Updated translations:
    - Bosnian (bs.po) by Safir Šećerović
    - Basque (eu.po) by Piarres Beobide Egaña

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 15 Aug 2004 14:25:14 +0100

partman-auto (29) unstable; urgency=low

  * Updated translations:
    - Swedish (sv.po) by Per Olofsson

 -- Joey Hess <joeyh@debian.org>  Sun, 25 Jul 2004 19:22:25 -0400

partman-auto (28) unstable; urgency=low

  * Christian Perrier
    - Changed minimum size for /var to 70MB in multi_user recipes
      Closes: #261244

 -- Christian Perrier <bubulle@debian.org>  Sun, 25 Jul 2004 16:03:38 +0200

partman-auto (27) unstable; urgency=low

  * Steve Langasek
    - refine the alpha recipes to also add a /boot partition
  * Updated translations:
    - Arabic (ar.po) by Abdulaziz Al-Arfaj
    - Catalan (ca.po) by Jordi Mallach
    - Czech (cs.po) by Miroslav Kure
    - Greek, Modern (1453-) (el.po) by George Papamichelakis
    - Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
    - Hebrew (he.po) by Lior Kaplan
    - Croatian (hr.po) by Krunoslav Gernhard
    - Japanese (ja.po) by Kenshi Muto
    - Korean (ko.po) by Changwoo Ryu
    - Lithuanian (lt.po) by Kęstutis Biliūnas
    - Norwegian Nynorsk (nn.po) by Håvard Korsvoll
    - Polish (pl.po) by Bartosz Fenski
    - Portuguese (pt.po) by Miguel Figueiredo
    - Romanian (ro.po) by Eddy Petrisor
    - Turkish (tr.po) by Osman Yüksel
    - Simplified Chinese (zh_CN.po) by Ming Hua

 -- Steve Langasek <vorlon@debian.org>  Fri, 23 Jul 2004 03:23:12 -0700

partman-auto (26) unstable; urgency=low

  * Christian Perrier
    - renamed templates to partman-auto.templates
    - run debconf-updatepo
  * Steve Langasek
    - remember to *install* the #*&@ alpha recipes in the package, so
      they might possibly get used.
  * Updated translations:
    - Bulgarian (bg.po) by Ognyan Kulev
    - Danish (da.po) by Claus Hindsgaul
    - German (de.po) by Dennis Stampfer
    - Greek (el.po) by George Papamichelakis
    - Basque (eu.po) by Piarres Beobide Egaña
    - Finnish (fi.po) by Tapio Lehtonen
    - French (fr.po) by Christian Perrier
    - hr (hr.po) by Krunoslav Gernhard
    - Japanese (ja.po) by Kenshi Muto
    - Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
    - Slovak (sk.po) by Peter KLFMANiK Mann
    - Albanian (sq.po) by Elian Myftiu
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov

 -- Steve Langasek <vorlon@debian.org>  Wed, 21 Jul 2004 10:22:13 -0700

partman-auto (25) unstable; urgency=low

  * Steve Langasek
    - New recipes for alpha, that know about the requirement for an aboot
      partition
  * Anton Zinoviev
    - templates (partman-auto/automatically_partition): "Disk space to
      partition" instead of "Disk to partition"
    - templates (partman-auto/text/use_biggest_free): "Use the largest
      continuous free space" instead of "Use free space"
    - init.d/initial_auto: show the initial autopartitioning dialog at any
      debconf priority as 1. not showing it confuses the users and 2. it
      is needed in order to use partman for noninteractive installs
      (priority=critical)
    - init.d/initial_auto: do not abort the partitioning if the user
      presses the <back> button
  * Updated translations:
    - Albanian (sq.po) by Elian Myftiu

 -- Anton Zinoviev <zinoviev@debian.org>  Tue, 20 Jul 2004 15:53:35 +0300

partman-auto (24) unstable; urgency=low

  * Christian Perrier
    - Change the progress dialog box title. Closes: #254905
  * Updated translations:
    - German (de.po) by Dennis Stampfer
    - French (fr.po) by Christian Perrier
    - Japanese (ja.po) by Kenshi Muto
    - Norwegian Nynorsk (nn.po) by Håvard Korsvoll
    - Polish (pl.po) by Bartosz Fenski
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov

 -- Joey Hess <joeyh@debian.org>  Sun, 18 Jul 2004 16:57:32 -0400

partman-auto (23) unstable; urgency=low

  * Colin Watson
    - The root partition on powerpc/powermac_newworld shouldn't be bootable.
    - There's never any point in making the newworld bootstrap partition
      larger than 1MB (actually 800KB, but hey).
  * Updated translations:
    - Welsh (cy.po) by Dafydd Harries
    - Slovenian (sl.po) by Jure Čuhalev

 -- Colin Watson <cjwatson@debian.org>  Sat, 29 May 2004 18:35:01 -0300

partman-auto (22) unstable; urgency=low

  * Updated translations:
    - Bulgarian (bg.po) by Ognyan Kulev

 -- Joey Hess <joeyh@debian.org>  Tue, 25 May 2004 12:35:25 -0300

partman-auto (21) unstable; urgency=high

  * Urgency=high because this fixes an important bug
  * Christian Perrier
    - Change minimum filesystem sizes for multi_user recipes
      This involved increasing the minimum size for / from 30 to 70
      because a Debian base system installs 48MB on / for i386
      Same limits used for other arches. Closes: #249786

 -- Christian Perrier <bubulle@debian.org>  Fri, 21 May 2004 18:52:33 +0200

partman-auto (20) unstable; urgency=low

  * Martin Michlmayr
    - use the same formating for all recipes - use tabs, and no trailing
      white space.
    - add a customized recipe for MIPS based Cobalt machines
      (mipsel/cobalt): copy the existing recipes, but add a boot partition
      with an ext2 revision 0 file system.  closes: #244100
    - likewise for Netwinder (arm/netwinder).
    - make sure in the above recipes that / is on a primary partition.
  * Updated translations:
    - Polish (pl.po) by Bartosz Fenski
    - Russian (ru.po) by Yuri Kozlov

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 17 May 2004 01:54:03 +0100

partman-auto (19) unstable; urgency=low

  * Anton Zinoviev
    - move the item in the main partitioning menu up.
    - recipes/multi_user: give higher priority to the size of /tmp, the
      limits are still the same (min = about 20MB, max = about 400MB).
      Thanks to Ivan Nestlerode, closes: #246749
    - recipes.sh (choose_recipe): add support for architecture dependent
      recipes
    - add recipes customised for powerpc newworld.  Thanks to Brett Wuth,
      Giuseppe Sacco, Jared Sulem and Dave Miller,
      closes: #241817, #244957, #243253, #244977
    - add recipes customised for hppa

 -- Anton Zinoviev <zinoviev@debian.org>  Sat, 15 May 2004 07:41:49 +0300

partman-auto (18) unstable; urgency=low

  * Joey Hess
    - Support running at critical debconf priority; the user will not be asked
      for a recipe, so need to set a default (cdebconf behaves differently
      from debconf for selects that are asked and not displayed).
  * Updated translations:
    - Bulgarian (bg.po) by Ognyan Kulev
    - Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
    - Norwegian Nynorsk (nn.po) by Håvard Korsvoll

 -- Joey Hess <joeyh@debian.org>  Thu,  6 May 2004 15:10:27 -0400

partman-auto (17) unstable; urgency=low

  * Updated translations:
    - Bokmal, Norwegian (nb.po) by Bjørn Steensrud
    - Norwegian Nynorsk (nn.po) by Håvard Korsvoll
    - Russian (ru.po) by Nikolai Prokoschenko

 -- Joey Hess <joeyh@debian.org>  Fri, 23 Apr 2004 13:17:54 -0400

partman-auto (16) unstable; urgency=low

  * Jordi Mallach
    - Typo fix in templates.
  * Updated translations:
    - Catalan (ca.po) by Jordi Mallach
    - Czech (cs.po) by Miroslav Kure
    - Danish (da.po) by Claus Hindsgaul
    - German (de.po) by Dennis Stampfer
    - Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
    - Basque (eu.po) by Piarres Beobide Egaña
    - Finnish (fi.po) by Tapio Lehtonen
    - French (fr.po) by Christian Perrier
    - Gallegan (gl.po) by Héctor Fernández López
    - Hebrew (he.po) by Lior Kaplan
    - Hungarian (hu.po) by VERÓK István
    - Indonesian (id.po) by I Gede Wijaya S
    - Italian (it.po) by Stefano Canepa
    - Japanese (ja.po) by Kenshi Muto
    - Korean (ko.po) by Changwoo Ryu
    - Lithuanian (lt.po) by Kęstutis Biliūnas
    - Bokmal, Norwegian (nb.po) by Axel Bojer
    - 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 Petrisor
    - Russian (ru.po) by Nikolai Prokoschenko
    - Slovak (sk.po) by Peter KLFMANiK Mann
    - Albanian (sq.po) by Elian Myftiu
    - Swedish (sv.po) by André Dahlqvist
    - Turkish (tr.po) by Osman Yüksel
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
    - Traditional Chinese (zh_TW.po) by Tetralet

 -- Joey Hess <joeyh@debian.org>  Tue, 20 Apr 2004 10:00:02 -0400

partman-auto (15) unstable; urgency=low

  * Anton Zinoviev
    - templates: use the word "wizard" instead of automatic partitioning
    - add a "multi-user" recipe with compliance with the instructions in
      the install manual.  Sometimes inexperienced people have to install
      and administer such systems...
    - convert properly smaller than 10 bytes sizes to megabytes.
    - rules: remove .svn directories from the package
    - init.d/initial_auto: the <back> button exits partman.  Thanks to
      Blars Blarson, closes: #240411.
    - autopartitioning, automatically_partition/some_device/do_option: the
      synopsis of menudir_default_choice has changed
    - change the recipes to be in accordance with recent changes in partman:
        1. create files `use_filesystem' in partition directories with
           assigned file system
        2. linux-swap is not a file system but method
  * Joshua Kwan
    - switch to new debhelper udeb support
  * Joey Hess
    - Template polishing. Notably, removed the term "the Wizard", using
      instead "guided partitioning".
  * Updated translations:
    - Czech (cs.po) by Miroslav Kure
    - Danish (da.po) by Claus Hindsgaul
    - German (de.po) by Dennis Stampfer
    - Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
    - Basque (eu.po) by Piarres Beobide Egaña
    - French (fr.po) by Christian Perrier
    - Hebrew (he.po) by Lior Kaplan
    - Hungarian (hu.po) by VERÓK István
    - Indonesian (id.po) by I Gede Wijaya S
    - Italian (it.po) by Stefano Canepa
    - Japanese (ja.po) by Kenshi Muto
    - Korean (ko.po) by Changwoo Ryu
    - Lithuanian (lt.po) by Kęstutis Biliūnas
    - 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 Petrisor
    - Slovak (sk.po) by Peter KLFMANiK Mann
    - Albanian (sq.po) by Elian Myftiu
    - Swedish (sv.po) by André Dahlqvist
    - Turkish (tr.po) by Osman Yüksel
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
    - Traditional Chinese (zh_TW.po) by Tetralet

 -- Joey Hess <joeyh@debian.org>  Sun, 11 Apr 2004 21:21:56 -0400

partman-auto (14) unstable; urgency=low

  * Updated translations:
    - Bosnian (bs.po) by Safir Šećerović
    - Hungarian (hu.po) by VERÓK István
    - Italian (it.po) by Stefano Canepa
    - Polish (pl.po) by Bartosz Fenski
    - Romanian (ro.po) by Eddy Petrisor
    - Swedish (sv.po) by André Dahlqvist
    - Turkish (tr.po) by Osman Yüksel
    - Traditional Chinese (zh_TW.po) by Tetralet
    - Albanian (sq.po) by Elian Myftiu

 -- Joey Hess <joeyh@debian.org>  Tue, 30 Mar 2004 15:22:17 -0500

partman-auto (13) unstable; urgency=low

  * Updated translations:
    - Italian (it.po) by Stefano Canepa
    - Russian (ru.po) by Nikolai Prokoschenko
    - Turkish (tr.po) by Osman Yüksel

 -- Anton Zinoviev <zinoviev@debian.org>  Sun, 14 Mar 2004 17:15:03 +0200

partman-auto (12) unstable; urgency=low

  * Updated translations:
    - Bulgarian (bg.po) by Ognyan Kulev
    - German (de.po) by Dennis Stampfer
    - Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
    - Albanian (sq.po) by Elian Myftiu
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu

 -- Joey Hess <joeyh@debian.org>  Sat, 13 Mar 2004 12:31:46 -0500

partman-auto (11) unstable; urgency=low

  * Anton Zinoviev
    - deactivate automatically_partition/some_device when the default disk
      label type is sun.

  * Translations:
    - Steinar H. Gunderson: Updated Norwegian Bokmål translation (nb.po).
    - Elian Myftiu: Updated Albanian translation (sq.po)

 -- Joey Hess <joeyh@debian.org>  Fri, 12 Mar 2004 12:49:08 -0500

partman-auto (10) unstable; urgency=low

  * Anton Zinoviev
    - two recipes: atomic (/ and swap) and home (/, /home and swap).
  * Joey Hess
    - remove the old debconf templates for the old recipes

 -- Joey Hess <joeyh@debian.org>  Tue,  9 Mar 2004 19:53:27 -0500

partman-auto (9) unstable; urgency=low

  * Joey Hess
    - Remove autogenerated postrm.
  * Maybe some translations changed. I don't know.

 -- Joey Hess <joeyh@debian.org>  Mon,  8 Mar 2004 19:29:40 -0500

partman-auto (8) unstable; urgency=low

  * Anton Zinoviev
    - automatically_partition/some_device/do_option: creates new partition
      table with the default for the architecture type.  Closes: #235923
    - perform_recipe: start progress bar, as autopartitioning can be quiet
      slow
  * Joey Hess
    - add xfs and reiserfs to the valid fs list (should this use info from the
      plugins?)
    - if there is no valid recipe, bail with an error instead of hanging.
      Closes: #235964
  * Updated translations:
    - Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
    - Finnish (fi.po) by Tapio Lehtonen
    - French (fr.po) by Christian Perrier
    - Hungarian (hu.po) by VERÓK István
    - Italian (it.po) by Stefano Canepa
    - Japanese (ja.po) by Kenshi Muto
    - Lithuanian (lt.po) by Kęstutis Biliūnas
    -  (nn.po) by Håvard Korsvoll
    - Portuguese (pt.po) by Miguel Figueiredo
    - Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
    (Erm, so the automated script says, but I don't think all these really
    changed -- JEH)

 -- Joey Hess <joeyh@debian.org>  Fri,  5 Mar 2004 09:17:48 -0900

partman-auto (7) unstable; urgency=low

  * Joey Hess
    - Use a different question for the initial autopartitioning.
    - After autopartitioning, set the default menu item on choose_partitions
      to the one that finishes the install. Closes: #235900
  * Anton Zinoviev
    - new files: perform_recipe and recipes.sh
    - extract most parts of autopartition to perform_recipe and
      recipes.sh
    - perform_recipe: remove all old method files.  Closes: #235194.
    - recipes.sh: new function choose_recipe
    - automatically_partition/some_device/do_option: use directly
      choose_recipe and perform_recipe instead of autopartition.  Create
      new partition table only when the user has already chosen a recipe.
      Closes: #235377.
    - Scripts that include recipes.sh  include also definition.sh,
      recipes.sh doesn't include definitions.sh any more.

  * Updated translations:
    - Czech (cs.po) by Miroslav Kure
    - Danish (da.po) by Claus Hindsgaul
    - German (de.po) by Dennis Stampfer
    - Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
    - Finnish (fi.po) by Tapio Lehtonen
    - French (fr.po) by Christian Perrier
    - Hungarian (hu.po) by VERÓK István
    - Japanese (ja.po) by Kenshi Muto
    - Korean (ko.po) by Changwoo Ryu
    - Lithuanian (lt.po) by Kęstutis Biliūnas
    - Bokmal, Norwegian (nb.po) by Axel Bojer
    -  (nn.po) by Håvard Korsvoll
    - Portuguese (pt.po) by Miguel Figueiredo
    - Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
    - Romanian (ro.po) by Eddy Petrisor
    - Slovak (sk.po) by Peter KLFMANiK Mann
    - Albanian (sq.po) by Elian Myftiu
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu

 -- Joey Hess <joeyh@debian.org>  Thu,  4 Mar 2004 11:36:18 -0500

partman-auto (6) unstable; urgency=low

  * Joey Hess
    - Depend on partman-basicfilesystems, partman-ext3, so it can properly set
      up swap and ext3 partitions. Closes: #235374
    - Improve some templates.
    - Hide the manual partitioning scheme from the scheme selection menu.
      It's still available for custom installers. Closes: #235378
    - Fix display of some_device in the automatically_partition menu.
      Closes: #235373
    - If priority >= high, when partman is first initialised, display the
      automatically_partition menu.
    - Add me to uploaders.
  * Translations :
    - Miguel Figueiredo
      - Updated Portuguese translation (pt.po)
    - Christian Perrier
      - Updated French translation (fr.po)
    - André Luís Lopes
      - Updated Brazilian Portuguese translation (pt_BR.po)
    - Kenshi Muto
      - Updated Japanese translation (ja.po)
    - Changwoo Ryu
      - Updated Korean translation (ko.po)
    - Elian Myftiu
      - Updated Albanian translation (sq.po)
    - Carlos Z.F. Liu
      - Updated Simplified Chinese translation (zh_CN.po)
    - Eugeniy Meshcheryakov
      - Updated Ukrainian translation (uk.po)
    - Miroslav Kure
      - Updated Czech translation (cs.po)
    - Claus Hindsgaul
      - Update Danish translation (da.po)
    - Konstantinos Margaritis
      - Updated Greek translation (el.po)
    - Dennis Stampfer
      - Update German translation (de.po)
    - Håvard Korsvoll
      - Update Norwegian, nynorsk translation (nn.po)
      - Added Norwegian, bokmål translation, (nb.po). From Axel Bojer
    - Peter Mann
      - Updated Slovak translation (sk.po)

 -- Joey Hess <joeyh@debian.org>  Sun, 29 Feb 2004 14:24:02 -0500

partman-auto (5) unstable; urgency=low

  * Anton Zinoviev
    - new release
  * Joey Hess
    - this package should be available by default, so standard priority
  * Updated Translations:
    - Bartosz Fenski      : Updated Polish translation (pl.po)
    - Bart Cornelis       : Updated Dutch Translation (nl.po)
    - Javier Fernandez-Sanguino : Added Spanish translation (es.po)
    - Ming Hua: Initial and updated Traditional Chinese translation
                (zh_TW.po), by Tetralet

 -- Joey Hess <joeyh@debian.org>  Sat, 28 Feb 2004 19:18:24 -0500

partman-auto (4) unstable; urgency=low

  * Anton Zinoviev
    - Changed number of choose_partition/auto (55->65).

  * Updated translations:
    - Carlos Z.F. Liu      : Updated Simplified Chinese translation (zh_CN.po)
    - Kęstutis Biliūnas    : Updated Lithuanian translation (lt.po)
    - Elian Myftiu	   : Updated Albanian translation (sq.po)
    - Changwoo Ryu	   : Added Korean translation (ko.po)
    - Håvard Korsvoll	   : Added Norwegian, nynorsk translation (nn.po)

 -- Anton Zinoviev <zinoviev@debian.org>  Tue, 24 Feb 2004 20:12:17 +0200

partman-auto (3) unstable; urgency=low

  * Christian Perrier
    - unmess changelog
  * Anton Zinoviev
    - /bin/autopartition made smarter.  Now it is more unlikely to fail.
  * Updated translations:
    - Stefano Canepa
      - Added Italian translation
    - Peter Mann
      - Update Slovak translation
    - Nikolai Prokoschenko
      - Updated Russian translation
    - Nuno Sénica
      - Added Portuguese translation (pt.po)
    - h3li0s
      - added albanian translation (sq.po)
    - Jordi Mallach
      - Add Catalan translation (ca.po).
    - Eugen Meshcheryakov
      - added Ukrainian translation (uk.po)
    - André Luís Lopes
      - Updated Brazilian Portuguese translation (pt_BR.po)
    - Dennis Stampfer
      - Update German translation (de.po)
    - Kenshi Muto
      - Updated Japanese translation (ja.po)
    - Christian Perrier
      - Updated French translation (fr.po)
    - Konstantinos Margaritis
      - Updated Greek translation (el.po)
    - Claus Hindsgaul
      - Initial Danish translation (da.po)
    - Miroslav Kure
      - Updated Czech translation (cs.po)
    - Peter Mann
      - Updated Slovak translation (sk.po)

 -- Anton Zinoviev <zinoviev@debian.org>  Mon, 16 Feb 2004 11:55:28 +0200

partman-auto (2) unstable; urgency=low

  * Bartosz Fenski
    - Add Polish (pl) translation.
  * Kenshi Muto
    - Add Japanese translation (ja.po)
    - Update Japanese translation
  * Christian Perrier
    - First debconf templates polishing
    - Run debconf-updatepo
  * André Luís Lopes
    - Added Brazilian Portuguese (pt_BR) translation.
  * Nikolai Prokoschenko
    - Added russian translation (ru.po)
  * Christian Perrier
    - Added French (fr) translation.
  * Peter Mann
    - Initial Slovak translation
  * Dennis Stampfer
    - Initial German translation (de.po)
  * Anton Zinoviev
    - the install target in debian/rules removes all files CVS from the
      generated package.
    - added local variable for Emacs `coding: utf-8' at the end of the
      changelog.
  * Anmar Oueja
    - created and translated to Arabic (ar.po)
  * Claus Hindsgaul
    - Initial Danish translation (da.po)
  * Miroslav Kure
    - Initial Czech translation (cs.po)
  * Ming Hua
    - Initial Simplified Chinese translation (zh_CN.po)
  * Bart Cornelis
    - Initial Dutch (nl.po) translation
  * Kęstutis Biliūnas
    - Initial Lithuanian (lt.po) translation.
  * Safir Secerovic
    - Add Bosnian translation (bs.po).
  * Joey Hess
    - Change udeb filename to use "all".

 -- Joey Hess <joeyh@debian.org>  Wed, 21 Jan 2004 14:09:34 -0500

partman-auto (1) unstable; urgency=low

  * First version.
  * Konstantinos Margaritis
    - Initial Greek translation (el.po)

 -- Anton Zinoviev <zinoviev@debian.org>  Sat,  3 Jan 2004 18:28:41 +0200

Local Variables:
coding: utf-8
End: