From 59e870bb2e448d081c15fe81e246bf9d2da9aaae Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 9 Aug 2011 15:48:00 -0400 Subject: [PATCH 1/3] rebuild with higher release number this fixes upgrade pain --- plymouth.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plymouth.spec b/plymouth.spec index cb8ad64..4a7bcba 100644 --- a/plymouth.spec +++ b/plymouth.spec @@ -6,7 +6,7 @@ Summary: Graphical Boot Animation and Logger Name: plymouth Version: 0.8.4 -Release: 0.1.20110304.1%{?dist} +Release: 0.20110809.1%{?dist} License: GPLv2+ Group: System Environment/Base Source0: http://freedesktop.org/software/plymouth/releases/%{name}-%{version}.tar.bz2 @@ -468,6 +468,9 @@ fi %defattr(-, root, root) %changelog +* Tue Aug 09 2011 Ray Strode 0.8.4-0.20110809.1 +- Rebuild + * Fri Mar 04 2011 Ray Strode 0.8.4-0.1.20110304.1 - retry reopening tty if we get EIO Hopefully Resolves: #681167 From acebb512978770c5ca503cec6d48b70c71b0372a Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 22 Aug 2011 10:19:47 -0400 Subject: [PATCH 2/3] Update to latest git snapshot - Reintroduce accidentally dropped spinner theme and systemd integration --- plymouth.spec | 34 ++++++++++++++++++++++++++++++++-- sources | 2 +- 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/plymouth.spec b/plymouth.spec index 4a7bcba..2d9fa5a 100644 --- a/plymouth.spec +++ b/plymouth.spec @@ -6,7 +6,7 @@ Summary: Graphical Boot Animation and Logger Name: plymouth Version: 0.8.4 -Release: 0.20110809.1%{?dist} +Release: 0.20110822.1%{?dist} License: GPLv2+ Group: System Environment/Base Source0: http://freedesktop.org/software/plymouth/releases/%{name}-%{version}.tar.bz2 @@ -223,6 +223,16 @@ This package contains the "script" boot splash theme for Plymouth. It it is a simple example theme the uses the "script" plugin. +%package theme-spinner +Summary: Plymouth "Spinner" theme +Group: System Environment/Base +Requires: %{name}-plugin-two-step = %{version}-%{release} +Requires(post): plymouth-scripts + +%description theme-spinner +This package contains the "spinner" boot splash theme for +Plymouth. It features a small spinner on a dark background. + %prep %setup -q @@ -235,7 +245,8 @@ sed -i -e 's/fade-in/charge/g' src/plymouthd.defaults --with-background-start-color-stop=0x0073B3 \ --with-background-end-color-stop=0x00457E \ --with-background-color=0x3391cd \ - --enable-gdm-transition \ + --disable-gdm-transition \ + --enable-systemd-integration \ --with-system-root-install \ --with-rhgb-compat-link \ --without-log-viewer @@ -313,6 +324,15 @@ if [ $1 -eq 0 ]; then fi fi +%postun theme-spinner +export LIB=%{_lib} +if [ $1 -eq 0 ]; then + if [ "$(%{_sbindir}/plymouth-set-default-theme)" == "spinner" ]; then + %{_sbindir}/plymouth-set-default-theme --reset + %{_libexecdir}/plymouth/plymouth-generate-initrd + fi +fi + %postun theme-solar export LIB=%{_lib} if [ $1 -eq 0 ]; then @@ -419,6 +439,12 @@ fi %{_datadir}/plymouth/themes/fade-in/star.png %{_datadir}/plymouth/themes/fade-in/fade-in.plymouth +%files theme-spinner +%defattr(-, root, root) +%dir %{_datadir}/plymouth/themes/spinner +%{_datadir}/plymouth/themes/spinner/*.png +%{_datadir}/plymouth/themes/spinner/spinner.plymouth + %files plugin-throbgress %defattr(-, root, root) %{_libdir}/plymouth/throbgress.so @@ -468,6 +494,10 @@ fi %defattr(-, root, root) %changelog +* Mon Aug 22 2011 Ray Strode 0.8.4-0.20110822.1 +- Update to latest git snapshot +- Reintroduce accidentally dropped spinner theme and systemd integration + * Tue Aug 09 2011 Ray Strode 0.8.4-0.20110809.1 - Rebuild diff --git a/sources b/sources index deeecee..b95a160 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -53677acd5b9ede1c27ceca37d58f2238 plymouth-0.8.4.tar.bz2 +2e4080a53baa97b874e4689e85d01cc4 plymouth-0.8.4.tar.bz2 From a3d8c175885f0283b55abfa60f89f14f43431612 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 2 Sep 2011 10:53:14 -0400 Subject: [PATCH 3/3] - Make plymouth background dark gray at the request of Mo / design team. --- charge.plymouth | 4 ++-- plymouth.spec | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/charge.plymouth b/charge.plymouth index 139594e..f499c0f 100644 --- a/charge.plymouth +++ b/charge.plymouth @@ -9,5 +9,5 @@ HorizontalAlignment=.5 VerticalAlignment=.5 Transition=none TransitionDuration=0.0 -BackgroundStartColor=0x416fa7 -BackgroundEndColor=0x4b83c1 +BackgroundStartColor=0x202020 +BackgroundEndColor=0x202020 diff --git a/plymouth.spec b/plymouth.spec index 2d9fa5a..67a07bc 100644 --- a/plymouth.spec +++ b/plymouth.spec @@ -6,7 +6,7 @@ Summary: Graphical Boot Animation and Logger Name: plymouth Version: 0.8.4 -Release: 0.20110822.1%{?dist} +Release: 0.20110822.2%{?dist} License: GPLv2+ Group: System Environment/Base Source0: http://freedesktop.org/software/plymouth/releases/%{name}-%{version}.tar.bz2 @@ -494,6 +494,10 @@ fi %defattr(-, root, root) %changelog +* Fri Sep 02 2011 Ray Strode 0.8.4-0.20110822.2 +- Make plymouth background dark gray at the request of Mo / design + team. + * Mon Aug 22 2011 Ray Strode 0.8.4-0.20110822.1 - Update to latest git snapshot - Reintroduce accidentally dropped spinner theme and systemd integration