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
|
plymouth (24.004.60-5) unstable; urgency=medium
* d/l/plymouth.hook: Avoid installing a font already present in the initramfs
(Closes: #1106115)
-- Laurent Bigonville <bigon@debian.org> Tue, 27 May 2025 10:45:42 +0200
plymouth (24.004.60-4) unstable; urgency=medium
* d/l/plymouth.hook: Do not explicitly install DejaVu fonts.
Rely on fontconfig to tell us which fonts to install in the initramfs.
This will also avoid installing duplicate fonts (Closes: #1105224)
-- Laurent Bigonville <bigon@debian.org> Wed, 14 May 2025 11:04:21 +0200
plymouth (24.004.60-3) unstable; urgency=medium
* d/p/0003-default-theme.patch: Use ceratopsian theme
* d/l/plymouth.hook: Install Cantarell variable font file if available
* Fix fallback not working when fc-match isn't available (Closes: #1093517)
* d/local/plymouth.hook: Install the default/fallback fonts
-- Laurent Bigonville <bigon@debian.org> Tue, 13 May 2025 10:30:17 +0200
plymouth (24.004.60-2) unstable; urgency=medium
* Team upload
* Replace systemd Build-Depends with systemd-dev for systemd.pc
(Closes: #1060564)
* Replace Build-Depends on obsolete pkg-config with pkgconf
* ply-boot-splash: Set unbuffered input when creating a text display.
Patch cherry-picked from upstream Git. (Closes: #1061592)
-- Michael Biebl <biebl@debian.org> Wed, 17 Jul 2024 18:39:45 +0200
plymouth (24.004.60-1) unstable; urgency=medium
* New upstream release (Closes: #1059364)
* debian/gbp.conf: Set upstream-vcs-tag
* d/p/configure.ac-Avoid-embedding-the-date-in-the-version.patch: Dropped,
autotools are gone
* Add meson support
* debian/control: Add new build-dependencies
* debian/plymouth-label.install: Install split label plugins
* debian/plymouth.docs: Fix documentation file names
* debian/control: Mark udev as linux-any
* debian/rules: Workaround a but in meson, it cannot create a symlink if the
target doesn't exist
* debian/libplymouth5.symbols: Add newly exported symbols
* debian/local/plymouth.hook: Continue to use the pango label module for now
* debian/patches/fallback-etc-default-keyboard.patch: Refreshed
-- Laurent Bigonville <bigon@debian.org> Thu, 11 Jan 2024 21:17:19 +0100
plymouth (22.02.122-4) unstable; urgency=medium
[ Helmut Grohne ]
* Fix FTBFS when systemdsystemunitdir changes in systemd.pc. (Closes:
#1052310)
[ Laurent Bigonville ]
* debian/control: Add elogind as an alternative to systemd as elogind
package ships the necessesary udev rules files (Closes: #1035076)
* debian/local/plymouth.hook: Do not copy the security contexts when
building the initramfs (Closes: #1050545)
* Update initramfs for all kernel versions when installing or removing
plymouth (Closes: #916792)
* debian/control: Drop lsb-base, to please lintian
* debian/plymouth.links: Fix .service symlink path after move to /usr
* debian/rules: Move LSB init-functions file to /usr
-- Laurent Bigonville <bigon@debian.org> Sun, 10 Dec 2023 12:00:10 +0100
plymouth (22.02.122-3) unstable; urgency=medium
[ Debian Janitor ]
* Bump debhelper from old 12 to 13.
+ debian/rules: Drop --fail-missing argument to dh_missing, which is now
the default.
* Set upstream metadata fields: Repository-Browse.
* Update standards version to 4.6.1, no changes needed.
* Avoid explicitly specifying -Wl,--as-needed linker flag.
* Use secure URI in Homepage field.
* Set upstream metadata fields: Repository.
[ Laurent Bigonville ]
* debian/patches/0003-default-theme.patch: Switch to emerald theme by
default (Closes: #1029984)
-- Laurent Bigonville <bigon@debian.org> Wed, 01 Feb 2023 18:20:20 +0100
plymouth (22.02.122-2) unstable; urgency=medium
* d/p: Patch the configure.ac to avoid embedding the date in the version.
Thanks to Holger Levsen <holger@layer-acht.org> (Closes: #1017372)
* debian/plymouth.lintian-overrides: Fix mismatched-override
-- Laurent Bigonville <bigon@debian.org> Sun, 25 Sep 2022 10:22:04 +0200
plymouth (22.02.122-1) unstable; urgency=medium
[ Laurent Bigonville ]
* New upstream release, upstream will now release more frequent snapshot
releases
[ Alper Nebi Yasak ]
* debian/local/plymouth.hook: Apply module exclusions for MODULES=dep as well
* debian/local/plymouth.hook: Add panfrost to excluded DRM modules (Closes:
#1007730)
-- Laurent Bigonville <bigon@debian.org> Thu, 17 Mar 2022 18:09:27 +0100
plymouth (0.9.5+git20211018-1) unstable; urgency=medium
* New upstream version 0.9.5+git20211018 (Closes: #967047)
- debian/patches/0005-cmdline.patch: Refreshed
- debian/plymouth.install: Install plymouthd-fd-escrow executable.
Also copy it in the initramfs
- debian/libplymouth5.symbols: Add newly exported symbols
* debian/control: Bump Standards-Version to 4.6.0 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Wed, 10 Nov 2021 16:45:39 +0100
plymouth (0.9.5-3) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/control: Remove dependency the ttf-dejavu-core alternative
* Don't use /etc/vconsole.conf after all as it's not used anywhere in debian
* d/p/0003-default-theme.patch: Switch to homeworld for bullseye
[ Simon McVittie ]
* Unfuzz 0008-show-delay.patch to apply cleanly
-- Laurent Bigonville <bigon@debian.org> Tue, 02 Mar 2021 13:18:12 +0100
plymouth (0.9.5-2) unstable; urgency=medium
* debian/local/plymouth.hook: Copy logo-text-version-64.png in the initramfs
* Use /etc/default/keyboard if /etc/vconsole.conf is not available. This
should fix CAPS lock indicator in some cases. Try to copy both files in
the initramfs as well. See: #968287
* debian/local/plymouth.hook: Remove compatibility with wheezy and previous
versions. Also, do not copy libpango explicitly but rely on copy_exec to
copy it when needed, the label plugin is linked against it.
* Copy the Cantarell font to the initramfs as it's used by spinner and bgrt
themes
* debian/libplymouth5.symbols: Add Build-Depends-Package field
-- Laurent Bigonville <bigon@debian.org> Wed, 09 Dec 2020 15:58:50 +0100
plymouth (0.9.5-1) experimental; urgency=medium
* New upstream version 0.9.5
* Refresh the patches or delete the ones applied upstream
d/p/0003-default-theme.patch, d/p/0005-cmdline.patch,
d/p/0008-show-delay.patch: Refreshed
d/p/0005-Add-RemainAfterExit-yes-to-plymouth-s-systemd-servic.patch,
d/p/0006-main-switch-log-file-when-switching-mode.patch,
d/p/0007-main-fix-mode-changing-before-splash-is-shown.patch: Deleted
* debian/plymouth-themes.install: Remove the throbgress plugin, dropped
upstream
* debian/rules: Remove --enable-gdm-transition, dropped upstream
* debian/plymouth.install: Install logrotate configuration for boot.log
* debian/plymouth.install: Install the translation files
* debian/plymouth-themes.install: Install the new bgrt theme
* debian/rules: Set --with-runtimedir=/run
* Bump libplymouth4 soname to libplymouth5
* debian/local/plymouth.hook: Install the ImageDir even if it's coming from
another theme
-- Laurent Bigonville <bigon@debian.org> Mon, 03 Aug 2020 20:07:40 +0200
plymouth (0.9.4-3) unstable; urgency=medium
* Drop debian/patches/0001-awk.patch and add a break against mawk (<< 1.3.4),
the awk script has been tested gainst mawk (>= 1.3.4) and gawk
* Add RemainAfterExit=yes to plymouth's systemd service files, cherry-picked
patch from upstream
* Properly close the boot.log file when changing mode (Closes: #943424)
-- Laurent Bigonville <bigon@debian.org> Tue, 07 Apr 2020 17:06:13 +0200
plymouth (0.9.4-2) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/plymouth.links: Drop the manpage symlink plymouth-log-viewer.8, the
executable is not installed anymore (Closes: #922320)
* debian/rules: Stop passing start and stop actions for update-rc.d to
dh_installinit. update-rc.d is not supporting that for quite some time
* debian/plymouth.postinst: Remove old cleanup code needed for early 0.9.0
uploads
* debian/control: Bump Standards-Version to 4.5.0 (no further changes)
* Bump debhelper compatibility to 12, switch from dh_systemd_start to
dh_installsystemd
* debian/rules: Disable call to dh_installinitramfs, let's manage that
ourself but update the maintainer scripts to mimic what it's doing.
* debian/rules: Drop dh_strip override, plymouth-dbg is gone for at least
one release and we don't need the migration bits to the -dbgsym package
* Move everything from / to /usr now that the later is mounted at early
boot, add compatibility symlinks for the executable in case the system is
not migrated to usr-merge.
* debian/control: Add Rules-Requires-Root: no
* Move some executables to /usr/libexec now that's allowed in the policy
* debian/rules: Rely on dh_autoreconf to update config.guess and config.sub
* Drop debian/patches/0004-return-code.patch, this doesn't seem needed
anymore, thanks to Sebastien Bacher for noticing
[ Alper Nebi Yasak ]
* Include less modules when appropriate. (Closes: #940014)
-- Laurent Bigonville <bigon@debian.org> Fri, 24 Jan 2020 08:31:05 +0100
plymouth (0.9.4-1.1) unstable; urgency=medium
* Non-maintainer upload.
[ Andreas Henriksson ]
* Pass SYSTEMD_ASK_PASSWORD_AGENT=/bin/systemd-tty-ask-password-agent
to configure for reproducibility on merged-usr vs non-merged.
(Closes: #915213)
[ Jonathan Carter ]
* Non-maintainer upload (co-ordinated with bigon)
* Set default plymouth theme
-- Jonathan Carter <jcc@debian.org> Mon, 08 Apr 2019 14:17:05 +0200
plymouth (0.9.4-1) unstable; urgency=medium
[ Ondřej Nový ]
* d/copyright: Use https protocol in Format field
[ Laurent Bigonville ]
* New upstream version 0.9.3
- Add support screen rotation (Closes: #905429)
- Drop patches merged upstream
- debian/patches/0005-cmdline.patch: Refreshed
- debian/libplymouth4.symbols: Add newly exported symbols
* debian/control: Bump Standards-Version to 4.2.1 (no further changes)
* Do not explicitly set the compression algorithm, to please lintian
* debian/rules: Use dh_missing --fail-missing instead of dh_install
-- Laurent Bigonville <bigon@debian.org> Thu, 08 Nov 2018 02:03:31 +0100
plymouth (0.9.3-3) unstable; urgency=medium
* debian/local/plymouth.hook: Call fc-cache when generating the initramfs,
this will create the fc cache and .uuid files and should mitigate bug
#897572
* debian/control: Update VCS-* fields to point to the salsa machine
-- Laurent Bigonville <bigon@debian.org> Mon, 14 May 2018 11:25:26 +0200
plymouth (0.9.3-2) unstable; urgency=medium
* Import upstream patches coming from the master branch:
- Remove d/p/0002-stderr.patch, replaced by
d/p/0002-scripts-Use-2-instead-of-dev-stderr.patch
- d/p/0006-x11-don-t-call-gdk_display_get_name-before-gtk_init.patch:
Fixes a crash when the x11 renderer is installed (Closes: #878115)
* debian/control: Drop obsolete dh-systemd build-dependency and bump
debhelper minimal version
* debian/control: Bump Standards-Version to 4.1.3 (no further changes)
* debian/watch: Use https:// URL
* Add apport hook, taken from Ubuntu and adjusted to support the fact that
we are not using alternatives to select the default theme
-- Laurent Bigonville <bigon@debian.org> Fri, 19 Jan 2018 11:31:55 +0100
plymouth (0.9.3-1) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/watch: Bump to version 4 and use the macro's
* New upstream version 0.9.3
* debian/libplymouth4.symbols: Adjust the symbols file
* Refresh the patches and drop the one merged upstream
[ Scott Moser ]
* debian/local/plymouth.hook: add only a single copy of nss libs in
initramfs. (Closes: #874502)
-- Laurent Bigonville <bigon@debian.org> Tue, 19 Sep 2017 15:09:29 +0200
plymouth (0.9.2-5) unstable; urgency=medium
[ Aurélien COUDERC ]
* Split labels.so plugin into its own package so debian themes can stop
requiring the whole plymouth-themes package
[ Laurent Bigonville ]
* Run wrap-and-sort
* debian/gbp.conf: Rename git-buildpackage to buildpackage
* debian/control: Bump Standards-Version to 4.0.0 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Wed, 09 Aug 2017 15:20:48 +0200
plymouth (0.9.2-4) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/plymouth.postrm: Remove /var/lib/plymouth/boot-duration on purge
(Closes: #815222)
[ Sjoerd Simons ]
* plymouth.hook: Always install drm modules
[ Laurent Bigonville ]
* debian/control: Update the Vcs-* fields and switch to https to please
lintian
* Drop -dbg package and rely on the automatically built -dbgsym ones
* debian/control: Depends against lsb-base to please lintian
* debian/control: Bump Standards-Version to 3.9.8 (no further changes)
* Drop debian/patches/0007-udev-seat-tag.patch and ensure seat tag is
properly applied instead
* Fix/workaround red and black artefacts caused by compiler issues on i386
(Closes: #801080)
* Do not hardcode to the update-initramfs executable anymore
-- Laurent Bigonville <bigon@debian.org> Sun, 18 Dec 2016 11:50:34 +0100
plymouth (0.9.2-3) unstable; urgency=medium
* debian/plymouth.NEWS: Set the proper release for the entry (Closes:
#801840)
* Add initramfs panic script, this is not yet implemented in the debian
initramfs-tools package, but at least we are ready. (See: #602331)
-- Laurent Bigonville <bigon@debian.org> Sun, 15 Nov 2015 13:55:42 +0100
plymouth (0.9.2-2) unstable; urgency=medium
* debian/plymouth.init: Do not override the TTY during shutdown
* Enable I/O multiplexing functionality of plymouth by default as soon as
the main package is installed. (Closes: #768329)
-- Laurent Bigonville <bigon@debian.org> Wed, 14 Oct 2015 22:18:57 +0200
plymouth (0.9.2-1) unstable; urgency=medium
* Imported Upstream version 0.9.2
* debian/control: Depends against libgtk-3-dev instead of libgtk2.0-dev
* Do not try to build or install the log viewer, it has been dropped
upstream
* d/p/0007-udev-seat-tag.patch: Refreshed
* Drop d/p/0009-use-correct-utf8-multibyte-sequence.patch: Applied Upstream
* Drop d/p/0010-revert-systemd-wantedby.patch: Applied Upstream
* Drop d/p/libply-splash-core-also-monitor-for-file-removal-in-.patch:
Applied Upstream
* Drop d/p/utils-Don-t-create-unix-sockets-non-blocking.patch: Applied
Upstream
* Split libplymouth out of the main plymouth package
* Use the default tty for boot and shutdown
* Do not install plugins static library files
* Move the static libraries and development symlinks from /lib to /usr/lib
* plymouth-themes is now an arch:any package, fix the dependencies
-- Laurent Bigonville <bigon@debian.org> Wed, 07 Oct 2015 22:51:55 +0200
plymouth (0.9.0-9) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/control: Add a dependency against init-system-helpers as we are
explicitly using deb-systemd-helper in the plymouth postinst script
(Closes: #767937)
* debian/local/plymouth.hook: Test if the plugin is present on disk before
trying to copy it to the initramfs (Closes: #767170)
* debian/control: Reword the package description. (Closes: #768350)
Thanks to Justin B Rye <justin.byam.rye@gmail.com>
* debian/local/plymouth.hook: Properly copy .plymouth file into the
initramfs for themes that are not shipping images, this should fix the
tribar theme.
[ Sjoerd Simons ]
* debian/patches/debian/patches/utils-Don-t-create-unix-sockets-non-blocking.patch:
+ Added. Don't open unix socket connections as non-blocking as the read
function assume blocking sockets. Fixes plymouth failing to query the
password from the user (Closes: #763276)
-- Sjoerd Simons <sjoerd@debian.org> Mon, 17 Nov 2014 22:42:50 +0100
plymouth (0.9.0-8) unstable; urgency=medium
* Move the script.so from plymouth-themes to the main plymouth package
(Closes: #764644)
* debian/patches/drop-systemd-vconsole-setup-service.patch: Remove
references to systemd-vconsole-setup.service as it isn't shipped in Debian
(Closes: #755194)
* debian/control: Bump Standards-Version to 3.9.6 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Sun, 26 Oct 2014 01:08:41 +0200
plymouth (0.9.0-7) unstable; urgency=medium
* Add d/p/libply-splash-core-also-monitor-for-file-removal-in-.patch
- Correctly detect the end of coldplugging with udev (>= 213)
-- Sjoerd Simons <sjoerd@debian.org> Sun, 10 Aug 2014 10:36:41 +0200
plymouth (0.9.0-6) unstable; urgency=medium
* New maintainer (Closes: #756075)
* Move the frame-buffer and drm renderers into the main plymouth package and
always install them in the initramfs, this should fix the issue where the
splash is not shown for some users (Closes: #752752)
* Move the libply-splash-graphics library to the main package and the themes
related .so files to the -themes package, this is effectively killing the
-drm package
* Add debian/watch file
* debian/rules:
- Tell dh_makeshlibs to exclude plugins from shlibs file
- Minimize the runtime dependencies by calling dh_autoreconf with
--as-needed and passing the same flag to LDFLAGS
- Pass --disable-silent-rules to the configure
* debian/control:
- Fix short description for plymouth-x11 package to please lintian
- Use ${misc:Pre-Depends} instead of hardcoding multiarch-support package
- Update the Vcs-* fields
* debian/local/plymouth.hook: Always copy text.so and details.so in the
initramfs as they are used as fallbacks
* Add debian/patches/0009-use-correct-utf8-multibyte-sequence.patch: This
should fix the character displayed in the text theme (Closes: #756244)
* Add plymouth-{themes,x11}.postrm: Also regenerate the initramfs when these
two packages are removed
* debian/plymouth.dirs: Create /var/lib/plymouth on installation, this
directory is needed to store boot-duration file
* debian/plymouth.lintian-overrides: Override
init.d-script-depends-on-all-virtual-facility, we really want to be the
last to be started so the splash screen stays until the end of the boot
* Drop debian/patches/0006-initscript-aliases.patch and use symlinks instead
to mask the LSB initscripts
* debian/plymouth.postinst, d/p/0010-revert-systemd-wantedby.patch: The
WantedBy option in the .service files was useless as they are already
statically enabled and has been removed, we also need to cleanup i-s-h
related files on upgrade
* Add debian/gbp.conf file
-- Laurent Bigonville <bigon@debian.org> Wed, 30 Jul 2014 18:08:40 +0200
plymouth (0.9.0-5) unstable; urgency=low
* I don't care anymore, not worth it.. orphaning.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 25 Jul 2014 16:42:29 +0200
plymouth (0.9.0-4) unstable; urgency=low
* Dropping old --disable-libkms and --disable-tests configure flags
(Closes: #752802).
* Setting no delay for fast booting machines (Closes: #752746).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 26 Jun 2014 19:45:22 +0200
plymouth (0.9.0-3) unstable; urgency=low
* Dropping drm module in initrd (Closes: #752575).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 25 Jun 2014 00:57:49 +0200
plymouth (0.9.0-2) unstable; urgency=low
* Adding patch to ignore udev seat tags for the time being (Closes:
#751726).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 16 Jun 2014 06:40:49 +0200
plymouth (0.9.0-1) unstable; urgency=low
* Merging upstream version 0.9.0.
* Refreshing stderr.patch.
* Refreshing default-theme.patch.
* Refreshing cmdline.patch.
* Removing udevadm.patch, not needed anymore.
* Removing deactive.patch, included upstream.
* Removing config-parser.patch, included upstream.
* Refreshing initscript-aliases.patch.
* Renumbering patches.
* Adding build-depends to libudev-dev.
* Adding build-depends to xsltproc.
* Adding build-depends to docbook-xsl.
* Ordering removal of unneeded files in rules for more consistency.
* Including drm module in initrd, thanks to Lukas Anzinger
<l.anzinger@gmail.com> (Closes: #751275).
* Adding build-depends to systemd.
* Keeping building of static libraries.
* Wrapping configure call in rules.
* Updating plymouth package contents for new upstream.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 14 Jun 2014 12:48:42 +0200
plymouth (0.8.8-17) unstable; urgency=low
* Building with dh-autoreconf, thanks to Fernando Seiti Furusato
<ferseiti@br.ibm.com> (Closes: #748988).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 24 May 2014 11:30:48 +0200
plymouth (0.8.8-16) unstable; urgency=low
* Depending on fonts-dejavu-core alternatively to ttf-dejavu-core
(Closes: #743946).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 08 Apr 2014 22:50:39 +0200
plymouth (0.8.8-15) unstable; urgency=low
* Updating to standards version 3.9.5.
* Correcting initscript-aliases.patch description.
* Updating year in copyright file.
* Building with dh --parallel.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 31 Mar 2014 21:23:53 +0200
plymouth (0.8.8-14) experimental; urgency=low
* Merging drm themes into plymouth-themes package.
* Adding debug package.
* Sourcing init-functions in iniscripts.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 18 Sep 2013 10:18:16 +0200
plymouth (0.8.8-13) experimental; urgency=low
* Updating todo file.
* Building without libkms support (Closes: #720560).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 23 Aug 2013 14:17:45 +0200
plymouth (0.8.8-12) experimental; urgency=low
* Updating todo file.
* Updating vcs fields.
* Applying slightly modified patch from Sjoerd Simons
<sjoerd@debian.org> to use dh-systemd (Closes: #719121).
* Applying slightly modified patch from Sjoerd Simons
<sjoerd@debian.org> to add aliases to the systemd service so they mask
the LSB init scripts.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 12 Aug 2013 10:08:14 +0200
plymouth (0.8.8-11) experimental; urgency=low
* Adding vcs fields.
* Wrapping control fields.
* Adding patch from Ray Strode <rstrode@redhat.com> to ignore leading
spaces and blank lines in config parser (Closes: #664187).
* Updating lintian overrides.
* Updating plymouth manpage symlinks.
* Adding todo file.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 17 Jul 2013 21:30:52 +0200
plymouth (0.8.8-10) experimental; urgency=low
* Rebuilding initrd on removal.
* Dropping obsolete sysvinit initscript start/stop numbers.
* Updating plymouth call on stop for proper shutdown (Closes: #610287,
#712543).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 17 Jun 2013 10:36:07 +0200
plymouth (0.8.8-9) experimental; urgency=low
* Adding alternative dependency to dracut, dracut backend still needs to
be done by someone though, patches welcome (Closes: #697432).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 04 Jun 2013 17:34:43 +0200
plymouth (0.8.8-8) experimental; urgency=low
* Updating again initramfs inclusion of pango for jessie and newer
(Closes: #702040, #702900, #704872).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 27 May 2013 19:12:35 +0200
plymouth (0.8.8-7) experimental; urgency=low
* Updating initramfs inclusion of font-dejavu for jessie and newer
(Closes: #707765).
* Ordering fontconfig inclusion in initramfs hook.
* Updating initramfs inclusion of pango for jessie and newer (Closes:
#702040, #702900, #704872).
* Adding patch from upstream to return directly when deactivated
(Closes: #632737).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 23 May 2013 10:31:12 +0200
plymouth (0.8.8-6) unstable; urgency=low
* Removing all references to my old email address.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 10 Mar 2013 21:25:31 +0100
plymouth (0.8.8-5) unstable; urgency=low
* Prefixing patches with four digits.
* Trimming diff headers in patches.
* Adding patch to update udevadm paths for Debian based systems when
using systemd (Closes: #701524).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 27 Feb 2013 18:00:36 +0100
plymouth (0.8.8-4) unstable; urgency=low
* Updating year in copyright file.
* Dropping dpkg compression levels.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 27 Jan 2013 10:13:29 +0100
plymouth (0.8.8-3) unstable; urgency=low
* Moving /usr/lib to /lib (Closes: #695706).
* Dropping pre-wheezy versioned build-depends on dpkg-dev.
* Dropping pre-wheezy conflicts and replaces.
* Updating to standards version 3.9.4.
* Correcting spelling ov NVIDIA in readme.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 12 Dec 2012 09:54:32 +0100
plymouth (0.8.8-2) unstable; urgency=low
* Correcting mistaken conflicts against console-tools instead of
console-common.
* Using lsb post functions instead of pre functions (Closes: #691794).
* Adding dpkg-source local options.
* Temporarily including dummy root account lookup (Closes: #691598).
* Dropping conditional multiarch support, not needed anymore for jessie
and wheezy backports.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 11 Dec 2012 06:42:10 +0100
plymouth (0.8.8-1) unstable; urgency=low
* Merging upstream version 0.8.8.
* Rediffing default-theme.patch.
* Updating cmdline.patch.
* Removing os-release-quotes.patch, included upstream.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 27 Oct 2012 19:30:18 +0200
plymouth (0.8.6.1-1) unstable; urgency=low
* Merging upstream version 0.8.6.1.
* Removing default-osrelease.patch, included upstream.
* Renumbering patches.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 21 Sep 2012 18:43:51 +0200
plymouth (0.8.5.1-8) unstable; urgency=low
* Adding patch from upstream to strip quotes from /etc/os-release.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 31 Aug 2012 07:44:25 +0200
plymouth (0.8.5.1-7) unstable; urgency=low
* Abort early when sourcing /lib/lsb/init-functions.d/99-plymouth and
plymouth isn't active (Closes: #685437).
* Protecting multiarch queries since install files are run with set -
e.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 21 Aug 2012 12:06:58 +0200
plymouth (0.8.5.1-6) unstable; urgency=low
* Using --retain-splash when stopping plymouth on startup, avoids
showing console before display manager is up, thanks to Benjamin
Stark <benny_stark@live.de> (Closes: #683764).
* Adding plymouth specific configuration for lsb msg functions, thanks
to Benjamin Stark <benny_stark@live.de> (Closes: #683763).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 03 Aug 2012 18:51:33 +0200
plymouth (0.8.5.1-5) unstable; urgency=low
* Adding a conflict against console-tools which is about to be removed
from the archive and which is apparently to be incompatible with
plymouth (Closes: #606132).
* Adding modified patch from Luca Capello <luca@pca.it> to allow
plymouth details plugin without plymouth-dkms (Closes: #680700,
#680689).
* Using 'splash' instead of 'plymouth.enable' boot parameter in
systemd unit files, thanks to Laurent Bigonville <bigon@debian.org>
(Closes: #680517).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 09 Jul 2012 02:10:16 +0200
plymouth (0.8.5.1-4) unstable; urgency=low
* Correcting systemd configure option in rules (Closes: #679324).
* Including systemd files in plymouth package.
* Adding desktop-base and plymouth-drm to suggests for plymouth,
recommends would have been even nicer but defeats the initial
package split.
* Also update initramfs for both plymouth-drm and plymouth-x11.
* Including all available drm modules in initramfs hook rather than
ati and intel only.
* Explicitly enable libkms support.
* Updating default-theme.patch to not set the theme in
/etc/plymouthd.conf as active.
* Correcting path for plymouth-update-initrd installation in rules.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 04 Jul 2012 17:09:37 +0200
plymouth (0.8.5.1-3) unstable; urgency=low
* Using multiarch paths for plymouth renderer in initramfs-tools hook
(Closes: #679687, #679938, #679971).
* Correcting --with-boot-tty and --with-shutdown-tty configure call in
rules with full device name (Closes: #680124).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 04 Jul 2012 00:07:16 +0200
plymouth (0.8.5.1-2) unstable; urgency=low
* Switching to xz compression.
* Enabling systemd support (Closes: #679324).
* Sorting configure flags in rules.
* Removing old dpkg trigger for update-initramfs.
* Updating to standards version 3.9.3.
* Updating to debhelper version 9.
* Updating copyright file to format version 1.0.
* Setting boot and shutdown tty to 7 (Closes: #606077).
* Updating debhelper install files for multiarch.
* Applying slightly modified patch from Laurent Bigonville
<bigon@debian.org> to issue a /bin/plymouth update-root-fs --read-
write in order to write the logfiles to the disk (Closes: #678982).
* Simplyfing initscripts.
* Adding conditional pre-depends on multiarch-support.
* Sorting overrides in rules alphabetically.
* Updating lintian overrides.
* Adding missing dependency to remote_fs in plymouth-log initscript.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 30 Jun 2012 12:44:56 +0200
plymouth (0.8.5.1-1) unstable; urgency=low
[ Daniel Baumann ]
* Using compression level 9 also for binary packages.
* Merging upstream version 0.8.5.1 (Closes: #670197):
* Dropping parse-etc-debian_version.patch in favour of using /etc/os-
release.
* Dropping set-default-framebuffer-device-to-dev-fb0.patch, included
upstream.
* Dropping tty.patch, included upstream.
* Rediffing stderr.patch.
* Rediffing return-code.patch.
* Renumbering patches.
[ Andreas Henriksson ]
* Using /etc/os-release from base-files 6.8 as release file.
[ Michael Biebl ]
* Creating pid file /run/plymouth/pid (Closes: #659438).
* Stopping to to load non-existing modules i8042.ko and atkbd.ko
(Closes: #659436).
[ Andreas Henriksson ]
* Using x-display-manager variable in LSB header of initscript
(Closes: #669032).
* Adding --enable-log-viewer configure flag to continue building it.
* Add new plymouth-themes-spinner package
* Adding patch patch to fix upstream error handling code when os-
release is missing.
* Including /etc/os-release in initramfs-tools hook if existing.
* Exit early in initramfs-tools hook if the plymouth module is not
existing (Closes: #629416).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 21 Jun 2012 12:37:05 +0200
plymouth (0.8.3-20) unstable; urgency=low
* Updating maintainer and uploaders fields.
* Removing vcs fields.
* Removing references to my old email address.
* Compacting copyright file.
* Removing superfluous README.source.
* Adding note about nvidia cards in readme.
* Updating to standards version 3.9.2.
* Switching architecture fields to linux-any (Closes: #611593,
#637034).
* Exit early in initscript if package was removed but not purged,
thanks to Maximilian Gaukler <development@maxgaukler.de> (Closes:
#617857).
* Adding patch from Michael Prokop <mika@debian.org> to fix wrong
return code of plymouth-set-default-theme (Closes: #605018).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 08 Sep 2011 15:34:42 +0200
plymouth (0.8.3-19) unstable; urgency=low
* Applying patch from Steve Langasek <steve.langasek@ubuntu.com> to support
multiarch (Closes: #634253).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 30 Jul 2011 20:55:29 +0200
plymouth (0.8.3-18) unstable; urgency=low
* Switching to source format 3.0 (quilt).
* Replacing debian logo with a swirl (Closes: #603286).
* Rediffing set-default-framebuffer-device-to-dev-fb0.patch.
* Adding debian-logo.png to source/include-binaries.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 20 Nov 2010 16:27:22 +0100
plymouth (0.8.3-17) unstable; urgency=medium
[ Julien Cristau ]
* Cherry-pick "[terminal] don't stomp over original tty lock
settings". Prevents setting tty1 in 'echo' mode after boot (Closes:
595178).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 13 Oct 2010 18:01:24 +0200
plymouth (0.8.3-16) unstable; urgency=low
* Correcting themes depends (Closes: #599411).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 07 Oct 2010 15:02:11 +0200
plymouth (0.8.3-15) unstable; urgency=low
* Updating to debhelper version 8.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 07 Oct 2010 08:15:17 +0200
plymouth (0.8.3-14) experimental; urgency=low
* Adding conflicts/replaces for old plymouth on plymouth-x11 (Closes:
#598733).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 02 Oct 2010 11:41:37 +0200
plymouth (0.8.3-13) experimental; urgency=low
* Reverting patch from upstream for make plymouth work with systemd,
made plymouth break otherwise (Reopen: #596680).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 01 Oct 2010 07:18:25 +0200
plymouth (0.8.3-12) experimental; urgency=low
* Adding patch from upstream prepared by Michael Biebl
<biebl@debian.org> to make plymouth work with systemd (Closes:
#596680).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 14 Sep 2010 21:21:39 +0200
plymouth (0.8.3-11) experimental; urgency=low
* Adding symlink from plymouth.8 to plymouth-set-default-theme.8
(Closes: #596570).
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 12 Sep 2010 19:29:47 +0200
plymouth (0.8.3-10) experimental; urgency=low
* Making pango build-depends unversioned, not needed anymore.
* Splitting out kms stuff into plymouth-drm, this allows to have the
plymouth package containing everything for the text splash without
any depends other than libc6 and initramfs-tools.
* Correcting conditionals for text theme in initramfs hook.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 11 Sep 2010 00:01:15 +0200
plymouth (0.8.3-9) unstable; urgency=high
* Removing superfluous reference to intel_agp and drm in
README.Debian, thanks to Julien Cristau <jcristau@debian.org>.
* Shipping preconfigured plymouthd.conf instead of setting the default
theme in postinst which doesn't work reliable (Closes: #594999).
* Correcting typo in fontconfig-config package name in previous
changelog entry.
* Avoid kms bloat if text theme is used (the text theme only works in
non-kms mode anyway).
* Also setting default plugin to text in plymouthd.defaults.
* Downgrading fontconfig-config and ttf-dejavu-core depends to
recommends, they are not needed when running the default text
plugin.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 10 Sep 2010 22:06:46 +0200
plymouth (0.8.3-8) unstable; urgency=low
[ Anisse Astier ]
* Adding fontconfig-config to depends.
[ Daniel Baumann ]
* Updating postinst script to deal with not just with empty but also
with the uninitialized theme.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 06 Sep 2010 13:31:39 +0200
plymouth (0.8.3-7) unstable; urgency=low
* Calling plymouthd with --attach-to-session (Closes: #575177,
#593408, #595178).
* Setting default plugin to text if nothing else was specified
(Closes: #594999).
* Adding shutdown and restart messages in initscript when using text
plugin, thanks to Leszek Lesner <leszek.lesner@googlemail.com>.
* Updating to standards version 3.9.1.
* Updating README.Debian for plymouth 0.8.
* Adding information for AMD (ATI) graphic cards to README.Debian,
thanks to Sebastian Leske <Sebastian.Leske@sleske.name> (Closes:
#591623).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 06 Sep 2010 12:30:29 +0200
plymouth (0.8.3-6) unstable; urgency=low
* Removing old conflicts and replaces.
* Correcting spelling typo in package description (Closes: #592866).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 14 Aug 2010 12:44:50 +0200
plymouth (0.8.3-5) unstable; urgency=high
[ Daniel Baumann ]
* Updating standards version to 3.9.0.
[ Anisse Astier ]
* Starting plymouth as late as possible in order to have it on screen
until X is started on an user mode setting system.
[ Daniel Baumann ]
* Adding depends to ttf-dejavu-core, thanks to Anisse Astier
<anisse@astier.eu>.
[ Michael Prokop ]
* Only copying /etc/plymouth/plymouthd.conf in hook if it exists
(Closes: #587557).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 31 Jul 2010 03:17:35 +0200
plymouth (0.8.3-4) unstable; urgency=medium
* Correcting lsb headers in initscript (Closes: #584204).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 23 Jun 2010 20:58:56 +0200
plymouth (0.8.3-3) unstable; urgency=low
* Restricting plymouth to amd64 and i386 only for the time being.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 08 Jun 2010 12:41:47 +0200
plymouth (0.8.3-2) unstable; urgency=low
* Adding patch to use fd for stdout instead of device node in scripts
(Closes: #581649).
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 30 May 2010 23:01:47 +0200
plymouth (0.8.3-1) unstable; urgency=low
* Merging upstream version 0.8.3.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 07 May 2010 14:20:23 +0200
plymouth (0.8.2-2) unstable; urgency=low
* Making libdrm-dev build-depends unversioned again, now that it has
been uploaded to unstable.
* Uploading to unstable.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 17 Apr 2010 16:50:34 +0200
plymouth (0.8.2-1) experimental; urgency=low
[ Daniel Baumann ]
* Correcting spelling typo in previous changelog entry.
[ Guido Guenther ]
* Add drm modules (Closes: #576731).
[ Daniel Baumann ]
* Updating plymouth lintian overrides.
* Removing patch to disable nouveau, and making libdrm build-depends
versioned.
* Renumbering patches.
* Merging upstream version 0.8.2.
* Removing shlibs depends from theme packages.
* Marking themes packages architecture independent.
* Removing todo file, currently nothing is left.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 14 Apr 2010 19:41:42 +0200
plymouth (0.8.1-2) unstable; urgency=low
* Uploading to unstable.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 06 Apr 2010 12:41:39 +0200
plymouth (0.8.1-1) experimental; urgency=low
[ Daniel Baumann ]
* Merging upstream version 0.8.1.
[ Guido Guenther ]
* Add missing config files.
[ Daniel Baumann ]
* Removing removal of config files in rules so that they actually can
be installed into the package.
[ Guido Guenther ]
* Drop /usr/bin otherwise log-viewer ends up in two packages.
* Update libdrm.patch to not use
ply_renderer_nouveau_driver_get_interface to avoid undefined
reference.
* Update initramfs hook for 0.8.0.
* Install custom plymouth-update-initrd (Closes: #575713).
[ Daniel Baumann ]
* Renaming plugins packages to themes, and including plugins in main
plymouth package (Closes: #575712).
* Dropping no longer needed depends on plymouth themes.
* Adding recommends to plymouth-themes-all.
* Correcting version depends of plymouth-x11 on plymouth.
* Wrapping depends.
* Removing default.plymouth from initramfs hook, doesn't exist anymore
in 0.8.1.
* Adding patch to update awk call in plymouth-set-default-theme to not
always return zero.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 29 Mar 2010 08:27:14 +0200
plymouth (0.8.0-1) experimental; urgency=low
[ Daniel Baumann ]
* Merging upstream version 0.8.0 (Closes: #573582).
* Rediffing parse-etc-debian_version.patch.
* Removing no-need-to-check-for-lib64, not needed anymore.
* Rediffing set-default-framebuffer-device-to-dev-fb0.
* Renumbering patches.
[ Guido Guenther ]
* Disable noveau.
[ Daniel Baumann ]
* Adding TODO file.
* Adding build-depends to libdrm-dev.
[ Guido Guenther ]
* Add new plugins.
* Add renderers.
[ Daniel Baumann ]
* Dropping la files.
* Droppping shlibs file, not needed anymore.
* Correcting typo in plymouth-plugins-script package short-
description.
* Sorting plugins in control.
* Removing deprecated --without-default-plugin from configure call in
rules.
* Reordering install blocks in rule in preparation of using --fail-
missing for dh_install.
* Updating plymouth debhelper install file to include newly added
manpage.
* Sorting plymouth debhelper install file.
* Updating plymouth-dev debhelper install file to include static files
of the newly added renderers.
* Removing removal of /usr/libexec, not needed anymore.
* Updating removal of /var in a more 'break-early-when-things-change'-
way.
* Including upstreams initrd scripts in plymouth.
* Removing plymouthd default configs from build-tree.
* Calling dh_install with --fail-missing.
* Dropping manual removal of empty directories, dh_install doesn't
fail on them.
* Sorting debhelper install files for the plugin packages.
* Dropping library links, not worth the efforts.
* Updating TODO.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 27 Mar 2010 16:26:12 +0100
plymouth (0.7.2-6) unstable; urgency=low
* Applying slightely modifed patch from Christian Meyer
<c2h5oh@web.de> to add notes about how to enable KMS in
README.Debian (Closes: #574755).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 27 Mar 2010 14:28:52 +0100
plymouth (0.7.2-5) experimental; urgency=low
[ Daniel Baumann ]
* Including debian_version file in initramfs hook, thanks to Matthias
Berndt <matthias_berndt@gmx.de> (Closes: #575165).
[ Guido Guenther ]
* Add pango/fontconfig files (Closes: #574829).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 25 Mar 2010 07:13:51 +0100
plymouth (0.7.2-4) experimental; urgency=low
[ Daniel Baumann ]
* Correcting spelling mistake in previous changelog entry.
[ Guido Guenther ]
* Don't stop init script on upgrade (Closes: #574720).
* Honor nosplash option in init script (Closes: #574722).
[ Daniel Baumann ]
* Unify coding style in init script.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 21 Mar 2010 08:39:02 +0100
plymouth (0.7.2-3) experimental; urgency=low
[ Guido Guenther ]
* Add initramfs and init scripts (Closes: #573888).
[ Daniel Baumann ]
* Unify coding style in initramfs files.
* Correcting accidentally dropped install call for Debian's
plymouth-set-default-plugin (Closes: #573947).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 19 Mar 2010 10:37:58 +0100
plymouth (0.7.2-2) experimental; urgency=low
[ Daniel Baumann ]
* Updating year in copyright file.
* Updating to standards 3.8.4.
[ Guido Guenther ]
* Parse /etc/debian_version (Closes: #573602).
* No need to check for lib64 (Closes: #565508).
* Install base themes (Closes: #573577).
* Add missing shared objects (Closes: #573578).
* Set default framebuffer device to /dev/fb0 instead of /dev/fb which
doesn't exist by default (Closes: #573724).
* Add Debian logo (Closes: #573760).
[ Daniel Baumann ]
* Adding entry for the debian logo in copyright file.
[ Guido Guenther ]
* Add themes to hook script (Closes: #573862).
* Simplify initramfs creation (Closes: #573725).
[ Daniel Baumann ]
* Adding REAMDE.source.
* Adding README.Debian (Closes: #546155).
* Removing useless empty line at the end of plymouth.hook.
* Removing TODO file, not needed anymore.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 14 Mar 2010 19:19:51 +0100
plymouth (0.7.2-1) experimental; urgency=low
* Merging upstream version 0.7.2.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 27 Dec 2009 17:23:56 +0100
plymouth (0.7.1-1) experimental; urgency=low
* Merging upstream version 0.7.1.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 27 Dec 2009 17:16:38 +0100
plymouth (0.7.0-1) experimental; urgency=low
* Merging upstream version 0.7.0 (Closes: #541176).
* Updating package to standards version 3.8.3.
* Updating maintainer field.
* Updating vcs fields.
* Removing drop-nash.patch, went upstream.
* Correcting wrong vcs-browser field.
* Adding explicit debian source version 1.0 until switch to 3.0.
* Bumping versioned build-depends on debhelper.
* Adding misc depends.
* Sorting and wrapping depends.
* Adding upstream and maintainer header in copyright.
* Minimizing rules file.
* Updating debhelper install files for new upstream version.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 27 Dec 2009 17:08:18 +0100
plymouth (0.6.0-1) experimental; urgency=low
* Initial release (Closes: #506899).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 07 Feb 2009 19:02:00 +0100
|