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
|
pkgsel (0.25ubuntu4) karmic; urgency=low
* Don't set the "incomplete language support" note if only gimp-help-* is
missing, since it's far too big to fit on CDs (LP: #452516).
-- Colin Watson <cjwatson@ubuntu.com> Fri, 23 Oct 2009 21:03:20 +0100
pkgsel (0.25ubuntu3) karmic; urgency=low
* Use check-language-support if available to select language support
packages (LP: #434173).
-- Colin Watson <cjwatson@ubuntu.com> Wed, 14 Oct 2009 22:38:12 +0100
pkgsel (0.25ubuntu2) karmic; urgency=low
* Update translations from Launchpad.
-- Colin Watson <cjwatson@ubuntu.com> Tue, 01 Sep 2009 13:28:17 +0100
pkgsel (0.25ubuntu1) karmic; urgency=low
* Resynchronise with Debian. Remaining changes:
- Install language packs and language support packages. If this fails,
install the language-selector update-notifier hook so that the user is
prompted to install more complete language support after installation.
- Mark any pending update notifications as seen after installation.
- Move final sources.list into place before trying to install
pkgsel/include items and language packs.
- Remove special popularity-contest handling; Ubuntu just includes it in
standard.
- Divert update-initramfs and call it just once at the end (with
bind-mounted /dev, /proc, and /sys, and a preceding update-dev).
- Don't divert scrollkeeper-* any more; we use rarian-compat now and
Sebastien says it's fast enough.
- Ask whether the user wants to install updates automatically, using
either unattended-upgrades or landscape-client. This question is only
asked at a high enough priority to be displayed on server or netboot
installations, but may be preseeded on other installations.
- Run updatedb at the end of pkgsel, unless pkgsel/updatedb is preseeded
to false.
-- Muharem Hrnjadovic <muharem@ubuntu.com> Mon, 15 Jun 2009 13:24:14 +0200
pkgsel (0.25) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Allow preseeding pkgsel/include/install-recommends to install what the
packages on pkgsel/include Recommend, defaulting to false (Timo
Aaltonen, LP: #315363).
[ Updated translations ]
* Asturian (ast.po) by Marcos Alvarez Costales
* Bengali (bn.po) by Md. Rezwan Shahid
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po) by Piarres Beobide
* Hindi (hi.po) by Kumar Appaiah
* Kazakh (kk.po) by daur88
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Marathi (mr.po) by Sampada
* Tagalog (tl.po) by Eric Pareja
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jun 2009 09:31:56 +0200
pkgsel (0.24ubuntu2) karmic; urgency=low
* Add support for setting pkgsel/language-packs to "ALL", to install
everything available on the installation media (LP: #371470).
-- Colin Watson <cjwatson@ubuntu.com> Thu, 04 Jun 2009 23:52:04 +0100
pkgsel (0.24ubuntu1) karmic; urgency=low
* Resynchronise with Debian. Remaining changes:
- Install language packs and language support packages. If this fails,
install the language-selector update-notifier hook so that the user is
prompted to install more complete language support after installation.
- Mark any pending update notifications as seen after installation.
- Move final sources.list into place before trying to install
pkgsel/include items and language packs.
- Remove special popularity-contest handling; Ubuntu just includes it in
standard.
- Divert update-initramfs and call it just once at the end (with
bind-mounted /dev, /proc, and /sys, and a preceding update-dev).
- Don't divert scrollkeeper-* any more; we use rarian-compat now and
Sebastien says it's fast enough.
- Ask whether the user wants to install updates automatically, using
either unattended-upgrades or landscape-client. This question is only
asked at a high enough priority to be displayed on server or netboot
installations, but may be preseeded on other installations.
- Allow preseeding pkgsel/install-recommends to install what the
packages on pkgsel/include Recommend, defaulting to false.
- Run updatedb at the end of pkgsel, unless pkgsel/updatedb is preseeded
to false.
* Run 'apt-get clean' after package installation (LP: #364249).
-- Colin Watson <cjwatson@ubuntu.com> Wed, 06 May 2009 12:03:24 +0100
pkgsel (0.24) unstable; urgency=low
[ Updated translations ]
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Bosnian (bs.po) by Armin Besirovic
* Danish (da.po)
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Hebrew (he.po) by Lior Kaplan
* Croatian (hr.po) by Josip Rodin
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Georgian (ka.po) by Aiet Kolkhi
* Central Khmer (km.po) by KHOEM Sokhem
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Arangel Angov
* Nepali (ne.po) by Shiva Prasad Pokharel
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Panjabi (pa.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
* Slovenian (sl.po) by Vanja Cvelbar
* Albanian (sq.po) by Elian Myftiu
* Serbian (sr.po) by Veselin Mijušković
* Tamil (ta.po) by Dr.T.Vasudevan
* Ukrainian (uk.po) by Borys Yanovych
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Deng Xiyue
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 19:38:10 -0300
pkgsel (0.23) unstable; urgency=low
* Check for codename instead of suite to avoid system upgrades for Etch.
Thanks to Ferenc Wagner for spotting the error.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Hindi (hi.po) by Kumar Appaiah
-- Frans Pop <fjp@debian.org> Thu, 28 Aug 2008 12:27:46 +0200
pkgsel (0.22) unstable; urgency=low
[ Frans Pop ]
* Disable system upgrades for Etch installs as upgrade options used are
incompatible with the Etch version of aptitude. Closes: #492593.
* There is no need to run debconf-apt-progress --config as in-target already
sets the correct environment.
* Multiply progress steps by 10 in postinst script.
* Advance progress bar when running pre-pkgsel.d scripts.
* Drop the advancement of the progress bar in pre-pkgsel.d/10popcon.
(Closes: #492861)
[ Jérémy Bobbio ]
* Add missing warning() definition in postinst script.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
* Greek, Modern (el.po) by Emmanuel Galatoulas
* Esperanto (eo.po) by Felipe Castro
* French (fr.po) by Christian Perrier
* Croatian (hr.po) by Josip Rodin
* Italian (it.po) by Milo Casagrande
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Russian (ru.po) by Yuri Kozlov
* Traditional Chinese (zh_TW.po) by Tetralet
-- Jérémy Bobbio <lunar@debian.org> Tue, 26 Aug 2008 10:58:05 +0200
pkgsel (0.21) unstable; urgency=low
[ Joey Hess ]
* Move redundant error handling code into a function.
* Add a call to aptitude safe-upgrade before running tasksel,
so that security fixes not present on install CDs (or mirrors)
will be pulled in. Closes: #479431.
- debconf prompts during the upgrade will be provided to d-i
- dpkg is forced to install new verisons of conffiles
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Esko Arajärvi
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Gujarati (gu.po) by Kartik Mistry
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Marathi (mr.po) by Sampada
* Dutch (nl.po) by Frans Pop
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrișor
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Mert Dirik
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Wed, 16 Jul 2008 13:49:53 +0200
pkgsel (0.20ubuntu15) jaunty; urgency=low
* Update Ubuntu-specific strings from Launchpad.
-- Colin Watson <cjwatson@ubuntu.com> Thu, 09 Apr 2009 02:24:31 +0100
pkgsel (0.20ubuntu14) jaunty; urgency=low
* If installing basic language packs fails the first time round, probably
because they aren't on the CD, try again once we have the final
sources.list in place (LP: #348393).
-- Colin Watson <cjwatson@ubuntu.com> Fri, 27 Mar 2009 12:01:08 +0000
pkgsel (0.20ubuntu13) jaunty; urgency=low
* Run updatedb at the end of pkgsel, unless pkgsel/updatedb is preseeded
to false (LP: #8195).
-- Colin Watson <cjwatson@ubuntu.com> Thu, 05 Mar 2009 23:52:57 +0000
pkgsel (0.20ubuntu12) jaunty; urgency=low
* Fix the postinst, missing a double-quote.
-- Timo Aaltonen <tjaalton@ubuntu.com> Tue, 27 Jan 2009 10:30:17 +0200
pkgsel (0.20ubuntu11) jaunty; urgency=low
[ Colin Watson ]
* Fix logic to check whether pkgsel/language-packs has been preseeded.
[ Timo Aaltonen ]
* Allow preseeding pkgsel/install-recommends to install what the
packages on pkgsel/include Recommend. The default is false.
(LP: #315363)
-- Timo Aaltonen <tjaalton@ubuntu.com> Mon, 26 Jan 2009 10:41:42 +0200
pkgsel (0.20ubuntu10) intrepid; urgency=low
* Update Ubuntu-specific strings from Launchpad.
-- Colin Watson <cjwatson@ubuntu.com> Sun, 12 Oct 2008 00:13:46 +0100
pkgsel (0.20ubuntu9) intrepid; urgency=low
* Preseed unattended-upgrades/enable_auto_updates to true if
unattended-upgrades is selected (LP: #84918).
-- Colin Watson <cjwatson@ubuntu.com> Fri, 10 Oct 2008 20:59:09 +0100
pkgsel (0.20ubuntu8) intrepid; urgency=low
* Don't download package lists again after moving the final sources.list
into place (LP: #267884).
-- Colin Watson <cjwatson@ubuntu.com> Thu, 09 Oct 2008 14:55:49 +0100
pkgsel (0.20ubuntu7) intrepid; urgency=low
* Allow preseeding pkgsel/language-packs to empty to indicate that no
language packs should be installed.
-- Colin Watson <cjwatson@ubuntu.com> Sat, 06 Sep 2008 10:49:20 +0100
pkgsel (0.20ubuntu6) intrepid; urgency=low
* Preseed landscape-client/register_system to true if Landscape is
selected.
-- Colin Watson <cjwatson@ubuntu.com> Wed, 27 Aug 2008 18:51:44 +0100
pkgsel (0.20ubuntu5) intrepid; urgency=low
* Check /cdrom/.disk/info before unmounting /cdrom.
-- Colin Watson <cjwatson@ubuntu.com> Wed, 27 Aug 2008 15:31:28 +0100
pkgsel (0.20ubuntu4) intrepid; urgency=low
* Ask whether the user wants to install updates automatically, using
either unattended-upgrades or landscape-client. This question is only
asked at a high enough priority to be displayed on server or netboot
installations, but may be preseeded on other installations.
-- Colin Watson <cjwatson@ubuntu.com> Wed, 27 Aug 2008 00:37:51 +0100
pkgsel (0.20ubuntu3) intrepid; urgency=low
* Don't divert scrollkeeper-* any more; we use rarian-compat now and
Sebastien says it's fast enough.
-- Colin Watson <cjwatson@ubuntu.com> Fri, 18 Jul 2008 12:44:16 +0100
pkgsel (0.20ubuntu2) intrepid; urgency=low
* If we fail to install complete language support, install the
language-selector update-notifier hook so that the user is prompted to
install more complete language support after installation (LP: #9392).
-- Colin Watson <cjwatson@ubuntu.com> Tue, 15 Jul 2008 16:05:26 +0100
pkgsel (0.20ubuntu1) intrepid; urgency=low
* Resynchronise with Debian. Remaining changes:
- Install language packs and language support packages.
- Expand progress bar length to 1000 for better granularity.
- Mark any pending update notifications as seen after installation.
- Move final sources.list into place before trying to install
pkgsel/include items and language packs.
- Remove special popularity-contest handling; Ubuntu just includes it in
standard.
- Divert update-initramfs and call it just once at the end (with
bind-mounted /dev, /proc, and /sys, and a preceding update-dev).
-- Colin Watson <cjwatson@ubuntu.com> Thu, 12 Jun 2008 10:32:52 +0100
pkgsel (0.20) unstable; urgency=low
[ Updated translations ]
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Marathi (mr.po) by Sampada
* Dutch (nl.po) by Frans Pop
* Punjabi (Gurmukhi) (pa.po) by Amanpreet Singh Alam
-- Otavio Salvador <otavio@debian.org> Thu, 08 May 2008 00:26:24 -0300
pkgsel (0.19) unstable; urgency=low
* Change back to using apt-install in pre-pkgsel.d/01laptop-detect now that
it's safe to do so. Requires: di-utils (>= 1.56).
* Unmount /cdrom during package installation even if the user did not scan
additional CDs as otherwise accessing the CD may fail. Closes: #474346.
[ Updated translations ]
* Marathi (mr.po)
* Panjabi (pa.po) by Amanpreet Singh Alam
-- Frans Pop <fjp@debian.org> Mon, 28 Apr 2008 07:20:08 +0200
pkgsel (0.18) unstable; urgency=low
* Avoid using apt-install in pre-pkgsel.d/01laptop-detect because it
interferes with multi-CD support.
-- Frans Pop <fjp@debian.org> Wed, 05 Mar 2008 05:31:39 +0100
pkgsel (0.17ubuntu1) hardy; urgency=low
* Resynchronise with Debian. Remaining changes:
- Install language packs and language support packages.
- Expand progress bar length to 1000 for better granularity.
- Mark any pending update notifications as seen after installation.
Requires update-notifier (>= 0.40.1) to take effect.
- Move final sources.list into place before trying to install
pkgsel/include items and language packs.
- Remove special popularity-contest handling; Ubuntu just includes it in
standard.
- Divert update-initramfs and call it just once at the end (with
bind-mounted /dev, /proc, and /sys, and a preceding update-dev).
-- Colin Watson <cjwatson@ubuntu.com> Fri, 21 Mar 2008 00:23:34 +0000
pkgsel (0.17) unstable; urgency=low
[ Colin Watson ]
* Pass pkgsel/include to aptitude following "--" to prevent typos in
preseed files being interpreted as aptitude options by accident.
* Silence syslog noise if /usr/lib/pre-pkgsel.d is empty.
[ Otavio Salvador ]
* Install laptop-detect only when running at i386, amd64 and powerpc.
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Indonesian (id.po) by Arief S Fitrianto
* Korean (ko.po) by Changwoo Ryu
* Latvian (lv.po) by Viesturs Zarins
* Malayalam (ml.po) by A|
* Panjabi (pa.po) by A S Alam
* Slovak (sk.po) by Ivan MasPraveenr
-- Otavio Salvador <otavio@debian.org> Wed, 13 Feb 2008 12:06:05 -0200
pkgsel (0.16ubuntu2) hardy; urgency=low
* Move final sources.list into place before processing pkgsel/include, so
that you can use that to install packages not on the CD.
-- Colin Watson <cjwatson@ubuntu.com> Mon, 18 Feb 2008 18:05:27 +0000
pkgsel (0.16ubuntu1) hardy; urgency=low
* Resynchronise with Debian. Remaining changes:
- Install language packs and language support packages.
- Expand progress bar length to 1000 for better granularity.
- Mark any pending update notifications as seen after installation.
Requires update-notifier (>= 0.40.1) to take effect.
- Move final sources.list into place before trying to install language
packs.
- Remove special popularity-contest handling; Ubuntu just includes it in
standard.
- Divert update-initramfs and call it just once at the end (with
bind-mounted /dev, /proc, and /sys, and a preceding update-dev).
* Update pkgsel/language-packs choices.
* Use unauthenticated Vcs-Bzr URL.
-- Colin Watson <cjwatson@ubuntu.com> Mon, 10 Dec 2007 17:08:25 +0000
pkgsel (0.16) unstable; urgency=low
[ Dann Frazier ]
* Add support for a /usr/lib/pre-pkgsel.d run-parts style directory.
Closes: #447326.
[ Frans Pop ]
* Support CD/DVD changing during package installation.
For this to be possible, the installation CD/DVD has to be unmounted in
the D-I environment, which means that during most of pkgsel (including
pre-pkgsel.d scripts) the installation of udebs is not possible. The
installation CD/DVD is reloaded before the end of pkgsel to ensure
following components can again install udebs.
[ Updated translations ]
* Belarusian (be.po) by Hleb Rubanau
* Bulgarian (bg.po) by Damyan Ivanov
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Sunjae Park
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Frans Pop <fjp@debian.org> Mon, 12 Nov 2007 13:27:54 +0100
pkgsel (0.15ubuntu1) hardy; urgency=low
* Resynchronise with Debian. Remaining changes:
- Install language packs and language support packages.
- Expand progress bar length to 1000 for better granularity.
- Mark any pending update notifications as seen after installation.
Requires update-notifier (>= 0.40.1) to take effect.
- Move final sources.list into place before trying to install language
packs.
- Remove special popularity-contest handling; Ubuntu just includes it in
standard.
- Divert update-initramfs and call it just once at the end (with
bind-mounted /dev, /proc, and /sys, and a preceding update-dev).
* Use -o APT::Install-Recommends=false rather than
--no-install-recommends.
* Set XS-Vcs-Bzr for Ubuntu.
-- Colin Watson <cjwatson@ubuntu.com> Thu, 08 Nov 2007 14:56:05 -0500
pkgsel (0.15) unstable; urgency=low
[ Frans Pop ]
* Drop isinstallable test for sarge, we don't support sarge installs
anymore.
[ Updated translations ]
* Italian (it.po) by Stefano Canepa
* Panjabi (pa.po) by A S Alam
* Portuguese (pt.po) by Miguel Figueiredo
* Vietnamese (vi.po) by Clytie Siddall
-- Otavio Salvador <otavio@debian.org> Tue, 11 Sep 2007 09:30:21 -0300
pkgsel (0.14) unstable; urgency=low
[ Joey Hess ]
* Pass APT::Install-Recommends=false to apt when installing
popularity-contest to avoid dragging in any recommends there with the new
apt.
* No need to do this for aptitude runs, the existing --without-recommends
is sufficient.
[ Otavio Salvador ]
* Avoid running in case live-installer is being used.
[ Updated translations ]
* Romanian (ro.po) by Eddy Petrișor
-- Otavio Salvador <otavio@ossystems.com.br> Thu, 21 Jun 2007 11:51:33 -0300
pkgsel (0.13ubuntu3) gutsy; urgency=low
* debian/postinst:
- Revert the changes in 0.13ubuntu2 and use diversion of update-initramfs
again. When not doing it, we have the unsolvable situation that some
things (e. g. root on encrypted file system) fail with a static
/target/dev/, and some other things (like configuration of libraw1394)
fail with an udevish bind-mounted /target/dev.
- Use a bind-mounted /target/dev for calling the final update-initramfs,
so that scripts in the target system can resolve UUIDs. Also make /proc
and /sys available.
- Call udevtrigger, so that we get UUIDs for newly created and formatted
partitions, too.
- LP: #144390
-- Martin Pitt <martin.pitt@ubuntu.com> Mon, 08 Oct 2007 22:43:52 +0200
pkgsel (0.13ubuntu2) gutsy; urgency=low
* update-initramfs now uses dpkg triggers, so stop diverting it.
-- Colin Watson <cjwatson@ubuntu.com> Fri, 28 Sep 2007 11:20:27 +0100
pkgsel (0.13ubuntu1) gutsy; urgency=low
* Resynchronise with Debian. Remaining changes:
- Install language packs and language support packages.
- Expand progress bar length to 1000 for better granularity.
- Mark any pending update notifications as seen after installation.
Requires update-notifier (>= 0.40.1) to take effect.
- Move final sources.list into place before trying to install language
packs.
- Remove special popularity-contest handling; Ubuntu just includes it in
standard.
- Divert update-initramfs and call it just once at the end.
-- Colin Watson <cjwatson@ubuntu.com> Thu, 26 Apr 2007 21:04:00 +0100
pkgsel (0.13) unstable; urgency=low
* Multiply menu-item-numbers by 100
[ Updated translations ]
* Esperanto (eo.po) by Serge Leblanc
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:40:27 -0400
pkgsel (0.12) unstable; urgency=low
[ Updated translations ]
* Malayalam (ml.po) by Praveen A
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 16:59:38 +0100
pkgsel (0.11) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Danish (da.po) by Claus Hindsgaul
* Hungarian (hu.po) by SZERVÁC Attila
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by rizoye-xerzi
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Eddy Petrișor
* Slovenian (sl.po) by Matej Kovačič
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:54:49 +0100
pkgsel (0.10ubuntu2) feisty; urgency=low
* Set Maintainer to ubuntu-installer@lists.ubuntu.com.
-- Colin Watson <cjwatson@ubuntu.com> Thu, 15 Mar 2007 00:57:02 +0000
pkgsel (0.10ubuntu1) feisty; urgency=low
* Resynchronise with Debian. Remaining changes:
- Install language packs and language support packages.
- Expand progress bar length to 1000 for better granularity.
- Mark any pending update notifications as seen after installation.
Requires update-notifier (>= 0.40.1) to take effect.
- Move final sources.list into place before trying to install language
packs.
- Remove special popularity-contest handling; Ubuntu just includes it in
standard.
- Divert update-initramfs and call it just once at the end.
-- Colin Watson <cjwatson@ubuntu.com> Thu, 9 Nov 2006 22:54:45 -0800
pkgsel (0.10) unstable; urgency=low
* Add missing debconf dependency.
* Add Lintian override for standards-version.
[ Updated translations ]
* Belarusian (be.po) by Andrei Darashenka
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Croatian (hr.po) by Josip Rodin
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 16:25:18 +0200
pkgsel (0.09) unstable; urgency=low
* Revert postinst back to last working version.
-- Joey Hess <joeyh@debian.org> Thu, 24 Aug 2006 14:30:48 -0400
pkgsel (0.08) unstable; urgency=low
[ Colin Watson ]
* Add a facility to install a few extra packages in addition to tasks by
preseeding pkgsel/include.
* fc-cache is slow. Divert it away during installation, and run it just
once at the end.
[ Otavio Salvador ]
* Add a facility to disable installation of popularity-contest by
preseeding popularity-contest/participate to false.
* Add a facility to disable tasksel run by preseeding tasksel/first to
an empty string.
[ Updated translations ]
* Panjabi (pa.po) by A S Alam
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Tue, 8 Aug 2006 00:21:26 -0300
pkgsel (0.07ubuntu3) edgy; urgency=low
* Now that we're installing usplash and its theme from pkgsel rather than
base-installer, it's worthwhile to divert update-initramfs and call it
just once at the end.
* Use apt-get rather than aptitude to install language packs (closes:
Malone #62712).
-- Colin Watson <cjwatson@ubuntu.com> Fri, 13 Oct 2006 10:45:44 +0100
pkgsel (0.07ubuntu2) edgy; urgency=low
* Use new tasksel --debconf-apt-from and --debconf-apt-to options to allow
it to present a progress bar for desktop.preinst.
-- Colin Watson <cjwatson@ubuntu.com> Fri, 6 Oct 2006 12:16:27 +0100
pkgsel (0.07ubuntu1) edgy; urgency=low
* Resynchronise with Debian.
* Backport from trunk (closes: Malone #29033):
- Add a facility to install a few extra packages in addition to tasks by
preseeding pkgsel/include.
* Use tasksel (as in Debian) rather than aptitude to do most of the work.
Instead of preseeding pkgsel/install-pattern, you should now preseed
tasksel/first (for tasks) and/or pkgsel/include (for individual
packages).
* Drop backward compatibility for base-config/* preseeding from Breezy.
-- Colin Watson <cjwatson@ubuntu.com> Wed, 26 Jul 2006 14:10:59 +0100
pkgsel (0.07) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bengali (bn.po) by Progga
* Bosnian (bs.po) by Safir Secerovic
* Danish (da.po) by Claus Hindsgaul
* Dzongkha (dz.po)
* Estonian (et.po) by Siim Põder
* Irish (ga.po) by Kevin Patrick Scannell
* Hungarian (hu.po) by SZERVÑC Attila
* Georgian (ka.po) by Aiet Kolkhi
* Khmer (km.po) by Leang Chumsoben
* Kurdish (ku.po) by Erdal Ronahi
* Malagasy (mg.po) by Jaonary Rabarisoa
* Nepali (ne.po) by Shiva Pokharel
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Russian (ru.po) by Yuri Kozlov
* Northern Sami (se.po) by Børre Gaup
* Slovenian (sl.po) by Jure Čuhalev
* Tamil (ta.po) by Damodharan Rajalingam
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Thu, 13 Jul 2006 17:34:53 +0200
pkgsel (0.06ubuntu1) edgy; urgency=low
* Resynchronise with Debian.
-- Colin Watson <cjwatson@ubuntu.com> Fri, 30 Jun 2006 11:25:43 +0100
pkgsel (0.06) unstable; urgency=low
* Add isinstallable file to skip pkgsel when installing Sarge.
[ Updated translations ]
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Basque (eu.po) by Piarres Beobide
* Hungarian (hu.po) by SZERVÑC Attila
* Khmer (km.po) by hok kakada
* Slovenian (sl.po) by Matej Kovačič
-- Frans Pop <fjp@debian.org> Mon, 20 Mar 2006 18:34:28 +0100
pkgsel (0.05) unstable; urgency=low
[ Joey Hess ]
* Remove the read-edid and mdetect code; tasksel takes care of this as of
version 2.39.
[ Updated translations ]
* Bulgarian (bg.po) by Ognyan Kulev
* Catalan (ca.po) by Jordi Mallach
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Tapio Lehtonen
* Hebrew (he.po) by Lior Kaplan
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Punjabi (Gurmukhi) (pa_IN.po) by Amanpreet Singh Alam
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Romanian (ro.po) by Eddy Petrişor
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Cuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Wed, 25 Jan 2006 16:13:34 +0100
pkgsel (0.04ubuntu6) dapper; urgency=low
* Update pkgsel/language-pack-patterns description to take account of
language pack change in pkgsel 0.04ubuntu4.
* fc-cache is slow. Divert it away during installation, and run it just
once at the end. Saves 2 minutes out of 14 for pkgsel in a stopwatch
test here.
-- Colin Watson <cjwatson@ubuntu.com> Tue, 11 Apr 2006 13:32:23 +0100
pkgsel (0.04ubuntu5) dapper; urgency=low
* Don't ask whether to download language support if networking is disabled
by telling netcfg "Do not configure the network at this time" (closes:
Malone #28301). This is a very ugly way to figure this out, but
unfortunately nothing else seems to be reliable enough. Ideally, netcfg
would write out a piece of explicit state somewhere to let us know
whether a network is available.
-- Colin Watson <cjwatson@ubuntu.com> Fri, 27 Jan 2006 17:35:06 +0000
pkgsel (0.04ubuntu4) dapper; urgency=low
* Move language support question to the start.
* Install basic language packs (language-pack-$LL) here, as
localechooser's post-base-installer script runs before apt-setup which
is too early.
* Remove special popularity-contest handling entirely; Ubuntu just
includes it in standard.
-- Colin Watson <cjwatson@ubuntu.com> Tue, 17 Jan 2006 15:10:38 +0000
pkgsel (0.04ubuntu3) dapper; urgency=low
* Fix language support package detection.
* Fix asking of pkgsel/install-language-support.
-- Colin Watson <cjwatson@ubuntu.com> Mon, 2 Jan 2006 19:26:43 +0000
pkgsel (0.04ubuntu2) dapper; urgency=low
* Ask pkgsel/install-language-support if installing from a CD and language
support packages aren't available (formerly asked by archive-copier).
* Move final sources.list into place before trying to install language
packs.
* Run dpkg --configure -a if language pack installation fails.
-- Colin Watson <cjwatson@ubuntu.com> Sun, 1 Jan 2006 16:15:57 +0000
pkgsel (0.04ubuntu1) dapper; urgency=low
* Port package selection changes over from base-config:
- Install xresprobe, laptop-detect, and discover1 for X preconfiguration
instead of read-edid and mdetect.
- Expand progress bar length to 1000 for better granularity.
- Use aptitude with preseeded patterns instead of tasksel. Note to
customisers: the previous base-config/package-selection question is
now pkgsel/install-pattern.
- Install language packs and language support packages. Note to
customisers: the base-config/language-packs,
base-config/language-pack-patterns, and
base-config/install-language-support questions are now
pkgsel/language-packs, pkgsel/language-pack-patterns, and
pkgsel/install-language-support respectively, and language-pack-$LL no
longer needs to be listed explicitly as localechooser takes care of
installing that.
- Support old base-config/* preseeded question names until after the
release of dapper for backward compatibility.
- Mark any pending update notifications as seen after installation.
Requires update-notifier (>= 0.40.1) to take effect.
* Skip popularity-contest purge for now, until we get cdebconf 0.93
merged.
-- Colin Watson <cjwatson@ubuntu.com> Sun, 1 Jan 2006 11:12:02 +0000
pkgsel (0.04) unstable; urgency=low
* Use in-target for purging, debconf seems to be talking to cdebconf during
the purge otherwise.
* Run dpkg --configure -a if tasksel fails to avoid leaving the system
with packages in an unconfigured state and breaking pkgsel re-runs.
* Detect cleanup failure and log about it and still take down the progress
bar.
[ Updated translations ]
* Greek, Modern (1453-) (el.po) by quad-nrg.net
-- Joey Hess <joeyh@debian.org> Thu, 29 Dec 2005 08:05:05 -0500
pkgsel (0.03) unstable; urgency=low
[ Colin Watson ]
* Propagate debian-installer/keymap from cdebconf to /target, used by
xserver-xorg to infer the X keymap.
* Use loops for diversion handling so that the list is kept in just one
place.
* Stop removing popularity-contest for now until the cdebconf PURGE crash
is fixed.
[ Joey Hess ]
* Consolidate debconf-copydbs into one command.
* Pass -q to a few apt-get commands, to avoid gratuotous logging of download
progress (the main cause of this will be fixed in tasksel though).
* Propigate out nonzero exit codes from tasksel to main-menu so that it can
signal a back up.
[ Updated translations ]
* Catalan (ca.po) by Guillem Jover
-- Colin Watson <cjwatson@debian.org> Mon, 26 Dec 2005 23:30:48 +0000
pkgsel (0.02) unstable; urgency=low
[ Joey Hess ]
* Set LANG to C in postinst so that the bare chroot calls don't trigger
perl warning messages for C.UTF-8 locale. (See #344159)
* Note that this does not affect the LANG set for the main package
installation run, which will be handled by in-target.
* Fix progress bar title.
[ Colin Watson ]
* Fix di-utils build-dependency, and bump required version to 1.20 for
in-target.
* Capitalise db_progress subcommand names.
* Remove trailing spaces from pkgsel.templates, which confused cdebconf.
* Change section to debian-installer (fixes lintian warning).
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Indonesian (id.po) by Parlin Imanuel Toh
* Italian (it.po) by Giuseppe Sacco
* Korean (ko.po) by Sunjae park
* Macedonian (mk.po) by Georgi Stanojevski
* Dutch (nl.po) by Frans Pop
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Tagalog (tl.po) by Eric Pareja
-- Colin Watson <cjwatson@debian.org> Sat, 24 Dec 2005 18:31:54 +0000
pkgsel (0.01) unstable; urgency=low
[ Joey Hess ]
* First release, split off from base-config.
* Needs tasksel 2.36 and debconf 1.4.62.
[ Christian Perrier ]
* Change the menu entry to be more friendly to non technical users
* Add a few comments for translators
[ Joey Hess ]
* Propagate three debconf variables from cdebconf to /target:
debian-installer/language, debian-installer/country
sed by dictionaries-common to determine which dictionary to default to.
passwd/username
Used by exim4-config to determine where to send root mail.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Andrei Darashenka
* Bulgarian (bg.po) by Ognyan Kulev
* Bengali (bn.po) by Baishampayan Ghose
* Bosnian (bs.po) by Safir Šećerović
* Catalan (ca.po) by Guillem Jover
* Czech (cs.po) by Miroslav Kure
* Welsh (cy.po) by Dafydd Harries
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* 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
* Persian (fa.po) by Arash Bijanzadeh
* 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 Krunoslav Gernhard
* Hungarian (hu.po) by VEROK Istvan
* 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
* Korean (ko.po) by Sunjae park
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po)
* Norwegian Nynorsk (pa_IN.po) by Amanpreet Singh 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
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Xhosa (xh.po) by Canonical Ltd
* Simplified Chinese (zh_CN.po) by Ming Hua
* Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Fri, 16 Dec 2005 13:10:03 -0500
|