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
|
pkgsel (0.66) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years! (Closes: #927490)
[ Updated translations ]
* Arabic (ar.po) by Osama
-- Holger Wansing <hwansing@mailbox.org> Tue, 28 May 2019 07:24:25 +0200
pkgsel (0.65) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
* Ukrainian (uk.po) by Anton Gladky
-- Holger Wansing <hwansing@mailbox.org> Sat, 30 Mar 2019 20:50:53 +0100
pkgsel (0.64) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Mon, 04 Mar 2019 05:44:31 +0100
pkgsel (0.63) unstable; urgency=medium
* Team upload
* Correct release date/time of version 0.62 in changelog file.
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Persian (fa.po) by nima sahraneshin
* Finnish (fi.po) by Juhani Numminen
* Gujarati (gu.po) by Kartik Mistry
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Telugu (te.po) by Praveen Illa
* Traditional Chinese (zh_TW.po) by Louies
-- Holger Wansing <hwansing@mailbox.org> Fri, 08 Feb 2019 22:07:38 +0100
pkgsel (0.62) unstable; urgency=medium
* Team upload
[ Holger Wansing ]
* Add forgotten entries (updated translations) to 0.61 changelog.
* Remove trailing whitespaces from changelog file, to fix lintian tag.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Greek (el.po) by Vangelis Skarmoutsos
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Finnish (fi.po) by Juhani Numminen
* Gujarati (gu.po) by Kartik Mistry
* Polish (pl.po) by Michał Kułach
* Romanian (ro.po) by Andrei Popescu
-- Holger Wansing <hwansing@mailbox.org> Sat, 22 Dec 2018 14:05:15 +0100
pkgsel (0.61) unstable; urgency=medium
* Install new dependencies when safe-upgrade (default) is selected
(Closes: #908711)
* Allow update-initramfs to run normally during package upgrade and
installation (Closes: #912073)
[ Updated translations ]
* Japanese (ja.po) by Kenshi Muto
* Latvian (lv.po) by Tranzistors
-- Ben Hutchings <ben@decadent.org.uk> Sat, 27 Oct 2018 23:19:13 +0100
pkgsel (0.60) unstable; urgency=medium
* Team upload.
[ Updated translations ]
* Asturian (ast.po) by Xuacu Saturio
* Hindi (hi.po) by Himanshu Awasthi
* Indonesian (id.po) by Andika Triwidada
* Icelandic (is.po) by Sveinn à Felli
* Lithuanian (lt.po) by Rimas Kudelis
* Marathi (mr.po) by Nayan Nakhare
* Portuguese (pt.po) by Miguel Figueiredo
* Russian (ru.po) by Yuri Kozlov
* Turkish (tr.po) by Mert Dirik
-- Holger Wansing <hwansing@mailbox.org> Tue, 16 Oct 2018 22:19:21 +0200
pkgsel (0.59) unstable; urgency=medium
* Team upload.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* French (fr.po) by Alban Vidal. (Closes: #908179)
* Galician (gl.po) by mantinan
* Croatian (hr.po) by Valentin Vidic
* Hungarian (hu.po) by flekken
* Italian (it.po) by Milo Casagrande
* Norwegian Bokmal (nb.po) by Allan Nordhøy
-- Holger Wansing <hwansing@mailbox.org> Fri, 07 Sep 2018 22:20:28 +0200
pkgsel (0.58) unstable; urgency=medium
* Team upload.
[ Updated translations ]
* Estonian (et.po) by Kristjan Räts
* Finnish (fi.po) by Arto Keiski
* Hebrew (he.po) by Yaron Shahrabani
* Hungarian (hu.po) by Dr. Nagy Elemér Károly
* Korean (ko.po) by Changwoo Ryu
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
* Telugu (te.po) by Praveen Illa
-- Holger Wansing <hwansing@mailbox.org> Mon, 13 Aug 2018 17:17:02 +0200
pkgsel (0.57) unstable; urgency=medium
* Team upload.
[ Cyril Brulebois ]
* Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).
[ Raphaël Hertzog ]
* No longer install unattended-upgrades by default as requested
by the Debian security team:
https://lists.debian.org/debian-boot/2018/05/msg00250.html
Closes: #875858
* Drop duplicate Section field (spotted by lintian).
-- Raphaël Hertzog <hertzog@debian.org> Sat, 21 Jul 2018 14:52:38 +0200
pkgsel (0.56) unstable; urgency=medium
[ Updated translations ]
* Welsh (cy.po) by Huw Waters
* Indonesian (id.po) by Andika Triwidada
-- Christian Perrier <bubulle@debian.org> Tue, 10 Apr 2018 15:59:20 +0200
pkgsel (0.55) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Indonesian (id.po) by Al Qalit
* Russian (ru.po) by Yuri Kozlov
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Mon, 19 Feb 2018 18:38:13 +0100
pkgsel (0.54) unstable; urgency=medium
[ Updated translations ]
* Norwegian Nynorsk (nn.po) by Petter Reinholdtsen
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Thu, 25 Jan 2018 07:14:55 +0100
pkgsel (0.53) unstable; urgency=medium
[ Updated translations ]
* Icelandic (is.po) by Sveinn í Felli
* Bokmål, Norwegian (nb.po) by Alexander Jansen
* Panjabi (pa.po) by Aman ALam
* Serbian (sr.po) by Filipovic Dragan
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Mon, 15 Jan 2018 07:23:34 +0100
pkgsel (0.52) unstable; urgency=medium
[ Updated translations ]
* Nepali (ne.po) by Jeewal Kunwar
-- Christian Perrier <bubulle@debian.org> Tue, 02 Jan 2018 07:44:11 +0100
pkgsel (0.51) unstable; urgency=medium
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Polish (pl.po) by Michał Kułach
-- Christian Perrier <bubulle@debian.org> Sun, 10 Dec 2017 07:50:37 +0100
pkgsel (0.50) unstable; urgency=medium
[ Updated translations ]
* German (de.po) by Holger Wansing
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Hungarian (hu.po) by Dr. Nagy Elemér Károly
* Korean (ko.po) by Changwoo Ryu
* Lithuanian (lt.po) by Rimas Kudelis
* Panjabi (pa.po) by Aman ALam
-- Christian Perrier <bubulle@debian.org> Mon, 04 Dec 2017 07:11:22 +0100
pkgsel (0.49) unstable; urgency=medium
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Estonian (et.po) by Kristjan Räts
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Norwegian Nynorsk (nn.po) by Allan Nordhøy
* Swedish (sv.po) by Anders Jonsson
* Simplified Chinese (zh_CN.po) by Boyuan Yang
* Traditional Chinese (zh_TW.po) by Chang-Chia Tseng
-- Christian Perrier <bubulle@debian.org> Sun, 26 Nov 2017 20:52:07 +0100
pkgsel (0.48) unstable; urgency=medium
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
-- Christian Perrier <bubulle@debian.org> Sun, 12 Nov 2017 07:14:50 +0100
pkgsel (0.47) unstable; urgency=medium
* Apply the common writing rules for debconf templates: no
question-style for "select" templates. No use of second person writing
style.
[ Updated translations ]
* French (fr.po) by Christian Perrier
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
* Portuguese (pt.po) by Miguel Figueiredo
-- Christian Perrier <bubulle@debian.org> Wed, 01 Nov 2017 13:50:44 +0100
pkgsel (0.46) unstable; urgency=medium
* Team upload.
* Merge pkgsel/update-policy preseed from Ubuntu to offer to install
unattended-upgrades.
* No longer divert scrollkeeper, the rarian-compat implementation is fast
now.
* Ensure a file is not already diverted before diverting it.
* Run updatedb by default when a locate implementation has been installed.
This can be disabled with the pkgsel/updatedb preseed.
* Despite the use of triggers, we often have multiple update-initramfs calls
in a single installation run. Thus divert the command during installation
and do a single run at the end.
* Add a final "apt-get clean" call at the end to ensure that we don't have
any .deb file remaining in APT's cache.
* Install/enable unattended-upgrades by default. Closes: #875858
-- Raphaël Hertzog <hertzog@debian.org> Tue, 24 Oct 2017 16:21:06 +0200
pkgsel (0.45) unstable; urgency=medium
* Export DEBIAN_TASKS_ONLY=1 when running tasksel in target, to make
sure only tasksel-data tasks are made available within the Debian
Installer (See: #758116, #846002).
-- Cyril Brulebois <kibi@debian.org> Sat, 24 Dec 2016 13:48:59 +0100
pkgsel (0.44) unstable; urgency=medium
[ Colin Watson ]
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Sun, 14 Feb 2016 19:25:06 +0100
pkgsel (0.43) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Mon, 09 Mar 2015 07:49:15 +0100
pkgsel (0.42) unstable; urgency=low
* Drop last use of aptitude. Thanks to Daniel Hartwig for the patch
and his tests.
-- Christian Perrier <bubulle@debian.org> Sun, 02 Feb 2014 16:17:31 +0100
pkgsel (0.41) unstable; urgency=low
[ Updated translations ]
* Hungarian (hu.po) by Judit Gyimesi
-- Christian Perrier <bubulle@debian.org> Thu, 19 Dec 2013 20:16:18 +0100
pkgsel (0.40) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 17 Aug 2013 08:36:05 +0200
pkgsel (0.39) unstable; urgency=low
[ Dmitrijs Ledkovs ]
* Set debian source format to '3.0 (native)'.
* Bump debhelper compat level to 9.
* Set Vcs-* to canonical format.
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jul 2013 13:40:53 +0200
pkgsel (0.38) unstable; urgency=low
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Sun, 19 May 2013 18:21:03 +0200
pkgsel (0.37) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
-- Christian Perrier <bubulle@debian.org> Wed, 12 Dec 2012 21:11:44 +0100
pkgsel (0.36) unstable; urgency=low
* Team upload
* Replace XC-package-Type by Package-Type
[ Updated translations ]
* Tibetan (bo.po) by Tennom
* Welsh (cy.po) by Dafydd Tomos
* Galician (gl.po) by Jorge Barreiro
* 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
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 18:40:11 +0200
pkgsel (0.35) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by Mikel González
* Bulgarian (bg.po) by Damyan Ivanov
* German (de.po) by Holger Wansing
* Estonian (et.po) by Mattias Põldaru
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Indonesian (id.po) by Mahyuddin Susanto
* Icelandic (is.po) by Sveinn í Felli
* Italian (it.po) by Milo Casagrande
* Kannada (kn.po) by Prabodh C P
* Macedonian (mk.po) by Arangel Angov
* Polish (pl.po) by Marcin Owsiany
* Romanian (ro.po) by Ioan Eugen Stan
* Sinhala (si.po)
* Ukrainian (uk.po) by Borys Yanovych
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Otavio Salvador <otavio@debian.org> Thu, 15 Mar 2012 15:16:51 -0300
pkgsel (0.34) unstable; urgency=low
* Add myself to Uploaders to have at least one human maintainer
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Korean (ko.po) by Changwoo Ryu
* Romanian (ro.po) by Eddy Petrișor
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Telugu (te.po) by Arjuna Rao Chavala
* Thai (th.po) by Theppitak Karoonboonyanan
* Uyghur (ug.po) by Sahran
-- Christian Perrier <bubulle@debian.org> Sun, 24 Apr 2011 09:04:32 +0200
pkgsel (0.33) 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
-- Otavio Salvador <otavio@ossystems.com.br> Fri, 24 Dec 2010 21:34:22 -0200
pkgsel (0.32) unstable; urgency=low
[ Updated translations ]
* Bengali (bn.po) by Israt Jahan
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 16:29:36 -0200
pkgsel (0.31) unstable; urgency=low
[ Colin Watson ]
* Fix log comment about pkgsel/include/install-recommends; its replacement
is base-installer/install-recommends, not base-installer/recommends.
[ Updated translations ]
* Asturian (ast.po) by maacub
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Armin Beirovi
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Jacob Sparre Andersen
* Persian (fa.po) by Ebrahim Byagowi
* Icelandic (is.po) by Sveinn Felli
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Mon, 01 Nov 2010 19:10:20 -0200
pkgsel (0.30) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by astur
* Belarusian (be.po) by Viktar Siarheichyk
* German (de.po) by Holger Wansing
* Persian (fa.po) by acathur
* Central Khmer (km.po) by Khoem Sokhem
* Kurdish (ku.po) by Erdal Ronahi
* Macedonian (mk.po) by Arangel Angov
* Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
* Romanian (ro.po) by ioan-eugen stan
-- Christian Perrier <bubulle@debian.org> Sun, 11 Jul 2010 17:55:01 +0200
pkgsel (0.29) unstable; urgency=low
* 90popcon: really, really make installation of popcon work again.
[ Updated translations ]
* French (fr.po) by Christian Perrier
* Lithuanian (lt.po) by Kęstutis Biliūnas
-- Frans Pop <fjp@debian.org> Tue, 23 Mar 2010 04:34:41 +0100
pkgsel (0.28) unstable; urgency=low
* 90popcon: fix syntax error.
[ Updated translations ]
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Sun, 14 Mar 2010 08:29:49 +0100
pkgsel (0.27) unstable; urgency=low
* Use apt-install instead of apt-get to install popularity-contest. Use the
--no-recommends option to avoid pulling in an MTA (exim4).
* Ensure installation of popularity-contest is done late to keep its dialog
as close as possible to tasksel.
[ Updated translations ]
* German (de.po) by Holger Wansing
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Mon, 22 Feb 2010 04:38:23 +0100
pkgsel (0.26) unstable; urgency=low
[ Frans Pop ]
* Log the start of the different stages of pkgsel.
* No longer disable Recommends; it is now a global setting. Also drop the
template pkgsel/include/install-recommends as that is now redundant.
The --without-recommends option is preserved for the security update
step to avoid installing new packages during that step. Allowing it
there would result in inconsistent behavior.
* Remove no longer needed Lintian override for missing Standards-Version
field.
* Drop Etch compatibility hack to skip (security) updates.
[ Colin Watson ]
* Upgrade to debhelper v7.
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Asturian (ast.po) by astur
* Belarusian (be.po) by Pavel Piatruk
* Galician (gl.po) by Marce Villarino
* Hindi (hi.po)
* Italian (it.po) by Milo Casagrande
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Wed, 23 Dec 2009 00:45:10 +0100
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.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.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.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.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.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.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.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.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.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.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
|