From 3aeeebc8c5225a5c91f42091c67dea5f0c3e9014 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Jun 12 2008 14:40:29 +0000 Subject: - Update to version 0.3.0 - Better plugin handling - Better integration with mkinitrd (pending mkinitrd changes) - random bug fixes --- diff --git a/.cvsignore b/.cvsignore index e4e78f6..be7b554 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -plymouth-0.2.0.tar.bz2 +plymouth-0.3.0.tar.bz2 diff --git a/plymouth.spec b/plymouth.spec index b1e20a7..b10c3ec 100644 --- a/plymouth.spec +++ b/plymouth.spec @@ -1,6 +1,6 @@ Summary: Plymouth Graphical Boot Animation and Logger Name: plymouth -Version: 0.2.0 +Version: 0.3.0 Release: 1%{?dist} License: GPLv2+ Group: System Environment/Base @@ -65,8 +65,10 @@ spins in the shape of an infinity sign. %build %configure --enable-tracing --disable-tests --without-boot-entry \ + --without-default-plugin \ --with-logo=%{_datadir}/pixmaps/system-logo-white.png \ - --with-background-color=0x005391 + --with-background-start-color-stop=0x0073B3 \ + --with-background-end-color-stop=0x00457E make @@ -83,6 +85,29 @@ rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig +if [ $1 -eq 1 ]; then + %{_sbindir}/plymouth-set-default-plugin --reset +fi + +%post plugin-spinfinity +if [ $1 -eq 1 ]; then + %{_sbindir}/plymouth-set-default-plugin spinfinity +fi + +%postun plugin-spinfinity +if [ $1 -eq 0 ]; then + %{_sbindir}/plymouth-set-default-plugin --reset +fi + +%post plugin-fade-in +if [ $1 -eq 1 ]; then + %{_sbindir}/plymouth-set-default-plugin fade-in +fi + +%postun plugin-fade-in +if [ $1 -eq 0 ]; then + %{_sbindir}/plymouth-set-default-plugin --reset +fi %files %defattr(-, root, root) @@ -91,6 +116,7 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/plymouth/plymouthd %{_libexecdir}/plymouth/plymouth-update-initrd %{_libexecdir}/plymouth/plymouth-populate-initrd +%{_sbindir}/plymouth-set-default-plugin %{_bindir}/plymouth %{_bindir}/rhgb-client %{_libdir}/plymouth/details.so @@ -129,6 +155,12 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/plymouth/spinfinity.so %changelog +* Thu Jun 12 2008 Ray Strode - 0.3.0-1 +- Update to version 0.3.0 +- Better plugin handling +- Better integration with mkinitrd (pending mkinitrd changes) +- random bug fixes + * Mon Jun 9 2008 Ray Strode - 0.2.0-1 - Update to version 0.2.0 - Integrate more tightly with nash (pending nash changes) diff --git a/sources b/sources index e23da9f..66bf98f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -19b7cc5a3728b04136f9dbfb627ea32d plymouth-0.2.0.tar.bz2 +7f34e7ba1e43f08a4af70fd198ab39a8 plymouth-0.3.0.tar.bz2