plymouth-vl.spec 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. %define plymouthdaemon_execdir /sbin
  2. %define plymouthclient_execdir /bin
  3. %define plymouth_libdir /%{_lib}
  4. Summary: Graphical Boot Animation and Logger
  5. Summary(ja): グラフィカルブートアニメーション
  6. Name: plymouth
  7. Version: 0.8.8
  8. Release: 2%{?_dist_release}
  9. License: GPLv2+
  10. Group: System Environment/Base
  11. URL: http://freedesktop.org/software/plymouth/releases
  12. Source0: http://freedesktop.org/software/plymouth/releases/%{name}-%{version}.tar.bz2
  13. Source1: boot-duration
  14. Source2: plymouth-update-initrd-vine
  15. Source10: vinelogo-bw.png
  16. Source11: plymouth-theme-script.tar.bz2
  17. Source12: plymouth-theme-charge.tar.bz2
  18. Patch0: fix-crash.patch
  19. Patch13: plymouth-0.8.3-avoid-sigpipe.patch
  20. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  21. Requires: vine-logos
  22. Requires(post): plymouth-scripts
  23. Requires: initscripts >= 8.90.5
  24. Requires: plymouth-system-theme
  25. Obsoletes: bootsplash <= 3.2
  26. Provides: bootsplash
  27. Obsoletes: plymouth-utils < 0.8.4
  28. Obsoletes: plymouth-gdm-hooks < 0.8.4
  29. BuildRequires: libdrm-devel >= 2.4.40
  30. BuildRequires: gtk2-devel
  31. BuildRequires: kernel-headers
  32. Vendor: Project Vine
  33. Distribution: Vine Linux
  34. Packager: daisuke
  35. %description
  36. Plymouth provides an attractive graphical boot animation in
  37. place of the text messages that normally get shown. Text
  38. messages are instead redirected to a log file for viewing
  39. after boot.
  40. %package system-theme
  41. Summary: Plymouth default theme
  42. Summary(ja): Plymouth default theme
  43. Group: System Environment/Base
  44. Obsoletes: %{name}-system-plugin < %{version}-%{release}
  45. Provides: %{name}-system-plugin = %{version}-%{release}
  46. Requires: plymouth(system-theme) = %{version}-%{release}
  47. %description system-theme
  48. This metapackage tracks the current distribution default theme.
  49. %package core-libs
  50. Summary: Plymouth core libraries
  51. Summary(ja): Plymouth core libraries
  52. Group: Development/Libraries
  53. %description core-libs
  54. This package contains the libply and libply-splash-core libraries
  55. used by Plymouth.
  56. %package graphics-libs
  57. Summary: Plymouth graphics libraries
  58. Summary(ja): Plymouth graphics libraries
  59. Group: Development/Libraries
  60. Requires: %{name}-core-libs = %{version}-%{release}
  61. Obsoletes: %{name}-libs < %{version}-%{release}
  62. Provides: %{name}-libs = %{version}-%{release}
  63. BuildRequires: libpng-devel
  64. %description graphics-libs
  65. This package contains the libply-splash-graphics library
  66. used by graphical Plymouth splashes.
  67. %package devel
  68. Summary: Libraries and headers for writing Plymouth splash plugins
  69. Summary(ja): Libraries and headers for writing Plymouth splash plugins
  70. Group: Development/Libraries
  71. Requires: %{name} = %{version}-%{release}
  72. Requires: pkgconfig
  73. %description devel
  74. This package contains the libply and libplybootsplash libraries
  75. and headers needed to develop 3rd party splash plugins for Plymouth.
  76. %package scripts
  77. Summary: Plymouth related scripts
  78. Summary(ja): Plymouth 関連スクリプト
  79. Group: Applications/System
  80. %description scripts
  81. This package contains scripts that help integrate Plymouth with
  82. the system.
  83. %package plugin-label
  84. Summary: Plymouth label plugin
  85. Summary(ja): Plymouth label plugin
  86. Group: System Environment/Base
  87. Requires: %{name}-libs = %{version}-%{release}
  88. BuildRequires: pango-devel >= 1.21.0
  89. BuildRequires: cairo-devel
  90. %description plugin-label
  91. This package contains the label control plugin for
  92. Plymouth. It provides the ability to render text on
  93. graphical boot splashes using pango and cairo.
  94. %package plugin-fade-throbber
  95. Summary: Plymouth "Fade-Throbber" plugin
  96. Summary(ja): Plymouth "Fade-Throbber" plugin
  97. Group: System Environment/Base
  98. Requires: %{name}-libs = %{version}-%{release}
  99. %description plugin-fade-throbber
  100. This package contains the "Fade-In" boot splash plugin for
  101. Plymouth. It features a centered image that fades in and out
  102. while other images pulsate around during system boot up.
  103. %package theme-fade-in
  104. Summary: Plymouth "Fade-In" theme
  105. Summary(ja): Plymouth "Fade-In" theme
  106. Group: System Environment/Base
  107. Requires: %{name}-plugin-fade-throbber = %{version}-%{release}
  108. %description theme-fade-in
  109. This package contains the "Fade-In" boot splash theme for
  110. Plymouth. It features a centered logo that fades in and out
  111. while stars twinkle around the logo during system boot up.
  112. %package plugin-throbgress
  113. Summary: Plymouth "Throbgress" plugin
  114. Summary(ja): Plymouth "Throbgress" plugin
  115. Group: System Environment/Base
  116. Requires: %{name}-libs = %{version}-%{release}
  117. Requires: plymouth-plugin-label
  118. %description plugin-throbgress
  119. This package contains the "throbgress" boot splash plugin for
  120. Plymouth. It features a centered logo and animated spinner that
  121. spins repeatedly while a progress bar advances at the bottom of
  122. the screen.
  123. %package theme-spinfinity
  124. Summary: Plymouth "Spinfinity" theme
  125. Summary(ja): Plymouth "Spinfinity" theme
  126. Group: System Environment/Base
  127. Requires: %{name}-plugin-throbgress = %{version}-%{release}
  128. %description theme-spinfinity
  129. This package contains the "Spinfinity" boot splash theme for
  130. Plymouth. It features a centered logo and animated spinner that
  131. spins in the shape of an infinity sign.
  132. %package plugin-space-flares
  133. Summary: Plymouth "space-flares" plugin
  134. Summary(ja): Plymouth "space-flares" plugin
  135. Group: System Environment/Base
  136. Requires: %{name}-libs = %{version}-%{release}
  137. Requires: plymouth-plugin-label
  138. %description plugin-space-flares
  139. This package contains the "space-flares" boot splash plugin for
  140. Plymouth. It features a corner image with animated flares.
  141. %package theme-solar
  142. Summary: Plymouth "Solar" theme
  143. Summary(ja): Plymouth "Solar" theme
  144. Group: System Environment/Base
  145. Requires: %{name}-plugin-space-flares = %{version}-%{release}
  146. %description theme-solar
  147. This package contains the "Solar" boot splash theme for
  148. Plymouth. It features a blue flamed sun with animated solar flares.
  149. %package plugin-two-step
  150. Summary: Plymouth "two-step" plugin
  151. Summary(ja): Plymouth "two-step" plugin
  152. Group: System Environment/Base
  153. Requires: %{name}-libs = %{version}-%{release}
  154. Requires: plymouth-plugin-label
  155. %description plugin-two-step
  156. This package contains the "two-step" boot splash plugin for
  157. Plymouth. It features a two phased boot process that starts with
  158. a progressing animation synced to boot time and finishes with a
  159. short, fast one-shot animation.
  160. %package theme-charge
  161. Summary: Plymouth "Charge" plugin
  162. Summary(ja): Plymouth "Charge" plugin
  163. Group: System Environment/Base
  164. Requires: %{name}-plugin-two-step = %{version}-%{release}
  165. %description theme-charge
  166. This package contains the "charge" boot splash theme for
  167. Plymouth. It features the shadowy hull of a logo charge up and
  168. and finally burst into full form.
  169. %package plugin-script
  170. Summary: Plymouth "script" plugin
  171. Summary(ja): Plymouth "script" plugin
  172. Group: System Environment/Base
  173. Requires: %{name}-libs = %{version}-%{release}
  174. %description plugin-script
  175. This package contains the "script" boot splash plugin for
  176. Plymouth. It features an extensible, scriptable boot splash
  177. language that simplifies the process of designing custom
  178. boot splash themes.
  179. %package theme-script
  180. Summary: Plymouth "Script" plugin
  181. Summary(ja): Plymouth "Script" plugin
  182. Group: System Environment/Base
  183. Requires: %{name}-plugin-script = %{version}-%{release}
  184. Requires(post): %{_sbindir}/plymouth-set-default-theme
  185. Provides: plymouth(system-theme) = %{version}-%{release}
  186. %description theme-script
  187. This package contains the "script" boot splash theme for
  188. Plymouth. It it is a simple example theme the uses the "script"
  189. plugin.
  190. %prep
  191. %setup -q
  192. %patch0 -p1 -b .fix-crash
  193. %patch13 -p1 -b .avoid-sigpipe
  194. # Change the default theme
  195. sed -i -e 's/fade-in/script/g' src/plymouthd.defaults
  196. %build
  197. %configure --enable-tracing --disable-tests \
  198. --with-logo=%{_datadir}/pixmaps/vine/vinelogo-bw.png \
  199. --with-background-start-color-stop=0x3A3A6A \
  200. --with-background-end-color-stop=0x000000 \
  201. --with-background-color=0x000000 \
  202. --with-release-file=/etc/vine-release \
  203. --enable-gdm-transition \
  204. --with-system-root-install \
  205. --disable-libkms
  206. make %{?_smp_mflags}
  207. %install
  208. rm -rf $RPM_BUILD_ROOT
  209. make install DESTDIR=$RPM_BUILD_ROOT
  210. # Glow isn't quite ready for primetime
  211. rm -rf $RPM_BUILD_ROOT%{_datadir}/plymouth/glow/
  212. rm -f $RPM_BUILD_ROOT%{_libdir}/plymouth/glow.so
  213. find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} \;
  214. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
  215. # Temporary symlink until rc.sysinit is fixed
  216. (cd $RPM_BUILD_ROOT%{_bindir}; ln -s ../../bin/plymouth)
  217. mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/plymouth
  218. cp $RPM_SOURCE_DIR/boot-duration $RPM_BUILD_ROOT%{_datadir}/plymouth/default-boot-duration
  219. cp $RPM_SOURCE_DIR/boot-duration $RPM_BUILD_ROOT%{_localstatedir}/lib/plymouth
  220. # update script theme
  221. tar xjvf %{SOURCE11} -C $RPM_BUILD_ROOT%{_datadir}/plymouth/themes
  222. # add charge theme
  223. tar xjvf %{SOURCE12} -C $RPM_BUILD_ROOT%{_datadir}/plymouth/themes
  224. # install vinelogo-bw.png
  225. mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps/vine/
  226. cp %{SOURCE10} $RPM_BUILD_ROOT%{_datadir}/pixmaps/vine/
  227. # Override plymouth-update-initrd to work with mkinitrd
  228. cp -f $RPM_SOURCE_DIR/plymouth-update-initrd-vine $RPM_BUILD_ROOT%{_libexecdir}/plymouth/plymouth-update-initrd
  229. # Drop glow
  230. rm -rf $RPM_BUILD_ROOT%{_datadir}/plymouth/themes/glow
  231. %clean
  232. rm -rf $RPM_BUILD_ROOT
  233. %post
  234. [ -f %{_localstatedir}/lib/plymouth/boot-duration ] || cp -f %{_datadir}/plymouth/default-boot-duration %{_localstatedir}/lib/plymouth/boot-duration
  235. %postun
  236. if [ $1 -eq 0 ]; then
  237. rm -f %{_libdir}/plymouth/default.so
  238. rm -f /boot/initrd-plymouth.img
  239. fi
  240. %post core-libs -p /sbin/ldconfig
  241. %postun core-libs -p /sbin/ldconfig
  242. %post graphics-libs -p /sbin/ldconfig
  243. %postun graphics-libs -p /sbin/ldconfig
  244. %files
  245. %defattr(-, root, root)
  246. %doc AUTHORS NEWS README
  247. %dir %{_datadir}/plymouth
  248. %dir %{_datadir}/plymouth/themes
  249. %dir %{_libexecdir}/plymouth
  250. %dir %{_localstatedir}/lib/plymouth
  251. %config(noreplace) %{_sysconfdir}/plymouth/plymouthd.conf
  252. %{plymouthdaemon_execdir}/plymouthd
  253. %{plymouthclient_execdir}/plymouth
  254. %{_bindir}/plymouth
  255. %{_bindir}/rhgb-client
  256. %{_libdir}/plymouth/details.so
  257. %{_libdir}/plymouth/text.so
  258. %{_libdir}/plymouth/renderers/drm*
  259. %{_libdir}/plymouth/renderers/frame-buffer*
  260. %{_datadir}/plymouth/default-boot-duration
  261. %{_datadir}/plymouth/themes/details/details.plymouth
  262. %{_datadir}/plymouth/themes/text/text.plymouth
  263. %{_datadir}/plymouth/plymouthd.defaults
  264. %{_datadir}/pixmaps/vine/*.png
  265. %{_localstatedir}/run/plymouth
  266. %{_localstatedir}/spool/plymouth
  267. %{_mandir}/man?/*
  268. %ghost %{_localstatedir}/lib/plymouth/boot-duration
  269. %files devel
  270. %defattr(-, root, root)
  271. %{plymouth_libdir}/libply.so
  272. %{plymouth_libdir}/libply-splash-core.so
  273. %{_libdir}/libply-splash-graphics.so
  274. %{_libdir}/libply-boot-client.so
  275. %{_libdir}/pkgconfig/ply-splash-core.pc
  276. %{_libdir}/pkgconfig/ply-splash-graphics.pc
  277. %{_libdir}/pkgconfig/ply-boot-client.pc
  278. %{_libdir}/plymouth/renderers/x11*
  279. %{_includedir}/plymouth-1
  280. %files core-libs
  281. %defattr(-, root, root)
  282. %{plymouth_libdir}/libply.so.*
  283. %{plymouth_libdir}/libply-splash-core.so.*
  284. %{_libdir}/libply-boot-client.so.*
  285. %dir %{_libdir}/plymouth
  286. %files graphics-libs
  287. %defattr(-, root, root)
  288. %{_libdir}/libply-splash-graphics.so.*
  289. %files scripts
  290. %defattr(-, root, root)
  291. %{_sbindir}/plymouth-set-default-theme
  292. %{_libexecdir}/plymouth/plymouth-update-initrd
  293. %{_libexecdir}/plymouth/plymouth-generate-initrd
  294. %{_libexecdir}/plymouth/plymouth-populate-initrd
  295. %files plugin-label
  296. %defattr(-, root, root)
  297. %{_libdir}/plymouth/label.so
  298. %files plugin-fade-throbber
  299. %defattr(-, root, root)
  300. %{_libdir}/plymouth/fade-throbber.so
  301. %files theme-fade-in
  302. %defattr(-, root, root)
  303. %dir %{_datadir}/plymouth/themes/fade-in
  304. %{_datadir}/plymouth/themes/fade-in/bullet.png
  305. %{_datadir}/plymouth/themes/fade-in/entry.png
  306. %{_datadir}/plymouth/themes/fade-in/lock.png
  307. %{_datadir}/plymouth/themes/fade-in/star.png
  308. %{_datadir}/plymouth/themes/fade-in/fade-in.plymouth
  309. %files plugin-throbgress
  310. %defattr(-, root, root)
  311. %{_libdir}/plymouth/throbgress.so
  312. %files theme-spinfinity
  313. %defattr(-, root, root)
  314. %dir %{_datadir}/plymouth/themes/spinfinity
  315. %{_datadir}/plymouth/themes/spinfinity/box.png
  316. %{_datadir}/plymouth/themes/spinfinity/bullet.png
  317. %{_datadir}/plymouth/themes/spinfinity/entry.png
  318. %{_datadir}/plymouth/themes/spinfinity/lock.png
  319. %{_datadir}/plymouth/themes/spinfinity/throbber-[0-3][0-9].png
  320. %{_datadir}/plymouth/themes/spinfinity/spinfinity.plymouth
  321. %files plugin-space-flares
  322. %defattr(-, root, root)
  323. %{_libdir}/plymouth/space-flares.so
  324. %files theme-solar
  325. %defattr(-, root, root)
  326. %dir %{_datadir}/plymouth/themes/solar
  327. %{_datadir}/plymouth/themes/solar/*.png
  328. %{_datadir}/plymouth/themes/solar/solar.plymouth
  329. %files plugin-two-step
  330. %defattr(-, root, root)
  331. %{_libdir}/plymouth/two-step.so
  332. %files theme-charge
  333. %defattr(-, root, root)
  334. %dir %{_datadir}/plymouth/themes/charge
  335. %{_datadir}/plymouth/themes/charge/*.png
  336. %{_datadir}/plymouth/themes/charge/charge.plymouth
  337. %files plugin-script
  338. %defattr(-, root, root)
  339. %{_libdir}/plymouth/script.so
  340. %files theme-script
  341. %defattr(-, root, root)
  342. %{_datadir}/plymouth/themes/script/*.png
  343. %{_datadir}/plymouth/themes/script/script.script
  344. %{_datadir}/plymouth/themes/script/script.plymouth
  345. %files system-theme
  346. %defattr(-, root, root)
  347. %changelog
  348. * Thu Oct 30 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.8.8-2
  349. - rebuild with libpng-1.6.12
  350. * Sat Nov 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.8-1
  351. - update to 0.8.8
  352. - build with libdrm-2.4.40
  353. - add BR: gtk2-devel, libdrm-devel
  354. - remove utils/gdm-hooks (plymouth-log-viewer)
  355. * Tue Jun 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.3-9
  356. - add patch13 from ubuntu
  357. - Pass MSG_NOSIGNAL when writing to Plymouth. This stops clients from
  358. getting SIGPIPE'd when Plymouth goes away unexpectedly. (LP: 717153)
  359. - add patch14,15,16 from upstream
  360. - Add OPOST to tty attributes
  361. - Don't set ISTRIP in terminal attributes
  362. - Handle more than 8 events at once
  363. * Thu Jun 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.3-8
  364. - update script theme
  365. * Thu Apr 07 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.3-7
  366. - add Patch12 to update plymouth-{set-default-theme,poplulate-initrd}
  367. - use text as fallback default.
  368. - add R: plymouth-system-theme to main package.
  369. * Thu Mar 10 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.3-6
  370. - add Patch11 to save original tty lock setting
  371. * Wed Mar 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.3-5
  372. - add Patch10 to fix crash on quit with --retain-splash option
  373. http://cgit.freedesktop.org/plymouth/commit/?id=0e232e29765cade22b9e8cba3b0c372eb4db58f9
  374. * Mon May 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.3-4
  375. - update charge theme
  376. - replace plymouth-update-initrd
  377. - drop unused plymouth-set-default-plugin
  378. * Mon May 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.3-3
  379. - remove configure option
  380. - --with-{boot,shutdow}-tty
  381. * Fri May 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.3-2
  382. - add configure option
  383. - --with-boot-tty=tty7
  384. - --with-shutdown-tty1
  385. - Require specific version of initscripts
  386. - add Obsoletes/Provides bootsplash
  387. * Wed May 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.3-1
  388. - new upstream release
  389. * Tue May 11 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.2-1
  390. - new upstream release
  391. - update script theme
  392. - update boot-duration
  393. * Wed Mar 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.0-0.20100305.1
  394. - update to new snapshot
  395. * Tue Feb 16 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.0-0.20100114.1
  396. - initial build for Vine Linux
  397. * Thu Jan 14 2010 Ray Strode <rstrode@redhat.com> 0.8.0-0.20100114.2
  398. - Don't link plymouthd against libpng either
  399. * Thu Jan 14 2010 Ray Strode <rstrode@redhat.com> 0.8.0-0.20100114.1
  400. - Make it possible to do a basic plymouth installations without
  401. libpng
  402. * Thu Jan 07 2010 Ray Strode <rstrode@redhat.com> 0.8.0-0.2009129.2
  403. - Drop nash dep
  404. * Tue Dec 22 2009 Dave Airlie <airlied@redhat.com> 0.8.0-0.2009129.1
  405. - rebuild for API bump in libdrm
  406. * Wed Dec 09 2009 Ray Strode <rstrode@redhat.com> 0.8.0-0.2009129
  407. - Update to latest snapshot
  408. * Tue Sep 29 2009 Ray Strode <rstrode@redhat.com> 0.8.0-0.2009.10.05
  409. - Add new x11-renderer plugin from Charlie Brej for debugging
  410. * Tue Sep 29 2009 Ray Strode <rstrode@redhat.com> 0.8.0-0.2009.29.09
  411. - Fix escape and ask-for-password
  412. * Mon Sep 28 2009 Ray Strode <rstrode@redhat.com> 0.8.0-0.2009.28.09
  413. - Add prerelease of 0.8.0 for multihead support
  414. * Fri Sep 11 2009 Ray Strode <rstrode@redhat.com> 0.7.1-7
  415. - Go back to blue charge background (bug 522460)
  416. * Fri Sep 11 2009 Ray Strode <rstrode@redhat.com> 0.7.1-6
  417. - Remove duplicate Provides: plymouth(system-theme)
  418. * Thu Sep 10 2009 Ray Strode <rstrode@redhat.com> 0.7.1-5
  419. - Fix set_verbose error reported by yaneti.
  420. * Wed Sep 9 2009 Ray Strode <rstrode@redhat.com> 0.7.1-4
  421. - Look for inst() in dracut as well as mkinitrd bash source file
  422. - Drop plymouth initrd for now.
  423. * Fri Aug 28 2009 Ray Strode <rstrode@redhat.com> 0.7.1-3
  424. - Create plymouth supplementary initrd in post (bug 515589)
  425. * Tue Aug 25 2009 Ray Strode <rstrode@redhat.com> 0.7.1-2
  426. - Get plugin path from plymouth instead of trying
  427. to guess. Should fix bug 502667
  428. * Tue Aug 25 2009 Ray Strode <rstrode@redhat.com> 0.7.1-1
  429. - Update to 0.7.1
  430. * Mon Aug 24 2009 Adam Jackson <ajax@redhat.com> 0.7.0-2
  431. - Set charge bgcolor to black. (#519052)
  432. * Tue Aug 11 2009 Ray Strode <rstrode@redhat.com> 0.7.0-1
  433. - Update to 0.7.0
  434. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-0.2010.05.15.1
  435. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  436. * Fri May 15 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.05.15.1
  437. - Fix spinfinity theme to point to the right image directory
  438. (bug 500994)
  439. * Thu May 14 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.05.14.1
  440. - Update to new snapshot that renames plugins to fix upgrades
  441. somewhat (bug 499940)
  442. * Fri May 08 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.05.08.1
  443. - Add some fixes for shutdown
  444. * Fri May 08 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.05.06.4
  445. - Don't slow down progress updating at the end of boot
  446. * Thu May 07 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.05.06.3
  447. - Change colors to transition better to gdm
  448. * Wed May 06 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.05.06.2
  449. - Make "charge" theme require two-step plugin instead of solar (oops)
  450. * Wed May 06 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.05.06.1
  451. - Update to "plugin-rework" branch from git
  452. * Wed Apr 08 2009 Jesse Keating <jkeating@redhat.com> - 0.7.0-0.2009.03.10.3
  453. - Drop the version on system-logos requires for now, causing hell with
  454. other -logos providers not having the same version.
  455. * Wed Mar 18 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.03.10.2
  456. - Destroy terminal on detach (may help with bug 490965)
  457. * Tue Mar 10 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.03.10.1
  458. - Address one more issue with password handling. It wasn't working
  459. well for secondary devices when using the "details" plugin.
  460. * Mon Mar 9 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.03.09.1
  461. - Attempt to address some problems with password handling in the
  462. 0.7.0 snapshots
  463. * Fri Mar 6 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.03.06.2
  464. - Fix set default script
  465. * Fri Mar 6 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.03.06.1
  466. - more scriptlet changes to move from solar to spinfinity
  467. * Fri Mar 6 2009 Ray Strode <rstrode@redhat.com> 0.7.0-0.2009.03.06
  468. - Updated to development snapshot
  469. - Guess progress better on second boot of persistent live images
  470. - Drop upstream patches
  471. - swap "solar" and "spinfinity" scriptlet behavior
  472. * Tue Feb 24 2009 Ray Strode <rstrode@redhat.com> 0.6.0-3
  473. - Add fix-heap-corruptor patch from master. Problem
  474. spotted by Mr. McCann.
  475. * Wed Dec 17 2008 Ray Strode <rstrode@redhat.com> 0.6.0-2
  476. - Add patch from drop-nash branch for jeremy
  477. * Wed Dec 3 2008 Ray Strode <rstrode@redhat.com> 0.6.0-1
  478. - Update to 0.6.0
  479. * Sat Nov 22 2008 Matthias Clasen <mclasen@redhat.com> 0.6.0-0.2008.11.17.3.1
  480. - Strip %%name from %%summary
  481. * Mon Nov 17 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.17.3
  482. - don't give error about missing default.so
  483. - rework packaging of boot-duration to prevent .rpmnew droppings
  484. (bug 469752)
  485. * Mon Nov 17 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.17.2
  486. - Don't tell gdm to transition unless booting into runlevel 3
  487. (bug 471785)
  488. * Mon Nov 17 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.17.1
  489. - Crawl progress bar if boot is way off course (Charlie, bug 471089)
  490. * Fri Nov 14 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.14.2
  491. - Don't loop forever when tty returns NUL byte (bug 471498)
  492. * Fri Nov 14 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.14.1
  493. - Generate solar background dynamically to reduce ondisk size, and
  494. look better at various resolutions (Charlie, bug 471227)
  495. * Thu Nov 13 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.12.4
  496. - Move Obsoletes: plymouth-text-and-details-only to base package
  497. so people who had it installed don't end up solar on upgrade
  498. * Wed Nov 12 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.12.3
  499. - Redo packaging to work better with minimal installs
  500. (bug 471314)
  501. * Wed Nov 12 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.12.2
  502. - Fix plymouth-set-default-plugin to allow external $LIB
  503. * Wed Nov 12 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.12.1
  504. - Fix star image (Charlie, bug 471113)
  505. * Tue Nov 11 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.11.2
  506. - Improve solar flares (Charlie)
  507. - redirect tty again on --show-splash
  508. - ignore subsequent --hide-splash calls after the first one
  509. - turn off kernel printks during boot up
  510. * Tue Nov 11 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.11.1
  511. - Disconnect from tty when init=/bin/bash (bug 471007)
  512. * Mon Nov 10 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.10.5
  513. - Force the right arch when calling plymouth-set-default-plugin
  514. (bug 470732)
  515. * Mon Nov 10 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.10.4
  516. - Drop comet (bug 468705)
  517. - make boot-duration config(noreplace)
  518. * Mon Nov 10 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.10.3
  519. - Don't abort if no splash when root is mounted
  520. - Actually move patches upstream
  521. * Mon Nov 10 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.10.1
  522. - Fix feedback loop with plymouth:debug
  523. - Move patches upstream
  524. - Improve comet animation
  525. * Sun Nov 9 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.06.4
  526. - Fix up more-debug patch to not assert with plymouth:nolog
  527. (bug 470569)
  528. * Fri Nov 7 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.06.3
  529. - add some more debug spew to help debug a problem jlaska is having
  530. * Thu Nov 6 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.06.2
  531. - show details plugin on --hide-splash so people can see why the splash
  532. got hidden.
  533. * Thu Nov 6 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.06.1
  534. - Don't exit on plymouth --show-splash after sulogin
  535. - Properly retake console after that --show-splash
  536. * Wed Nov 5 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.11.05.1
  537. - reset colors on quit --retain-splash
  538. - fix off by one in damage calculation for label
  539. * Tue Nov 4 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.30.5
  540. - Add a sample boot-duration for livecds and first time boots
  541. (bug 469752)
  542. * Mon Nov 3 2008 Jeremy Katz <katzj@redhat.com> - 0.6.0-0.2008.10.30.4
  543. - Allow pre-setting the default plugin when calling plymouth-populate-initrd
  544. * Fri Oct 31 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.30.3
  545. - Add pango minimum version to buildrequires
  546. * Thu Oct 30 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.30.2
  547. - Update prompt text colors to be legible on new artwork
  548. * Thu Oct 30 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.30.1
  549. - Drop upstreamed patches
  550. - Patch from Charlie to update artwork
  551. - Patch from Charlie to make password screen match animation better
  552. (bug 468899)
  553. * Thu Oct 30 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.27.8
  554. - Fix escape at password prompt (bug 467533)
  555. * Tue Oct 28 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.27.7
  556. - Don't require /bin/plymouth before it's installed (bug 468925)
  557. * Tue Oct 28 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.27.6
  558. - Force raw mode for keyboard input with solar and fade-in
  559. (bug 468880)
  560. - make sure windows get closed on exit
  561. * Mon Oct 27 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.27.5
  562. - Make "Solar" lock icon the same as the "Spinfinity" one.
  563. * Mon Oct 27 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.27.4
  564. - Make plymouth-libs own /usr/lib/plymouth (bug 458071)
  565. * Mon Oct 27 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.27.3
  566. - Default to "Solar" instead of "Spinfinity"
  567. * Mon Oct 27 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.27.2
  568. - Don't set plymouth default plugin to text in %%post
  569. * Mon Oct 27 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.27.1
  570. - Add Charlie patch to dither in lower color modes (bug 468276)
  571. * Sun Oct 26 2008 Jeremy Katz <katzj@redhat.com> - 0.6.0-0.2008.10.24.2
  572. - More requires changing to avoid loops (#467356)
  573. * Fri Oct 24 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.24.1
  574. - Add updated progress bar for solar plugin from Charlie
  575. - Log plymouth:debug output to boot log
  576. - Ignore sigpipe signals in daemon
  577. * Thu Oct 23 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.23.2
  578. - Bump so name of libply to hopefully force plymouth to get installed
  579. before kernel (or at least make plymouth-libs and plymouth get installed
  580. on the same side of kernel in the transaction).
  581. * Thu Oct 23 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.23.1
  582. - Add patch from Charlie to align progress bar to milestones during boot up
  583. - force tty to be sane on exit (bug 467207)
  584. * Thu Oct 23 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.21.3
  585. - add empty files section for text-and-details-only so the subpackage
  586. shows up.
  587. * Wed Oct 22 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.21.2
  588. - add text-and-details-only subpackage so davej can uninstall
  589. spinfinity, pango, cairo etc from his router.
  590. * Tue Oct 21 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.21.1
  591. - Minor event loop changes
  592. - drop upstream patches
  593. - Charlie Brej fix for progress bar resetting when escape gets pressed
  594. * Tue Oct 21 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.17.4
  595. - Don't make plymouth-libs require plymouth (more fun with 467356)
  596. * Mon Oct 20 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.17.3
  597. - Add initscripts requires (bug 461322)
  598. * Mon Oct 20 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.17.2
  599. - Put tty1 back in "cooked" mode when going into runlevel 3
  600. (bug 467207)
  601. * Fri Oct 17 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.17.1
  602. - Clear screen in details plugin when it's done
  603. - Make plymouth-update-initrd a small wrapper around mkinitrd instead
  604. of the broken monstrosity it was before.
  605. * Fri Oct 17 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.15.3
  606. - Move plymouth-set-default-plugin, plymouth-update-initrd, and
  607. plymouth-populate-initrd to plymouth-scripts subpackage
  608. (the last fix didn't actually help with bug 467356)
  609. * Fri Oct 17 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.15.2
  610. - Move plymouth-set-default-plugin to -libs (might help with bug 467356)
  611. - Fix up requires, provides and postun scripts
  612. * Wed Oct 15 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.15.1
  613. - Don't free windows on --hide-splash (fix from Jeremy)
  614. * Tue Oct 14 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.14.1
  615. - Solar fixes from Charlie Brej
  616. - Better cpu usage from Charlie
  617. * Fri Oct 10 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.08.2
  618. - Add Requires(post): nash (bug 466500)
  619. * Wed Oct 08 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.08.1
  620. - Rework how "console=" args done again, to hopefully fix
  621. bug 460565
  622. * Mon Oct 06 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.10.06.1
  623. - Add "Solar" plugin from Charles Brej
  624. - Move things around so computers with separate /usr boot
  625. (hopefully this won't break things, but it probably will)
  626. - Make GDM show up on vt1 for all plugins
  627. * Tue Sep 30 2008 Jeremy Katz <katzj@redhat.com> 0.6.0-0.2008.09.25.2
  628. - Remove mkinitrd requires to break the dep loop and ensure things
  629. get installed in the right order
  630. * Thu Sep 25 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.09.25.1
  631. - Add new snapshot to fold in Will Woods progress bar, and
  632. move ajax's splash upstream, putting the old text splash
  633. in a "pulser" subpackage
  634. * Tue Sep 23 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.09.23.1
  635. - Last snapshot was broken
  636. * Mon Sep 22 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.09.22.1
  637. - Update to latest snapshot to get better transition support
  638. * Fri Sep 19 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.09.15.2
  639. - Turn on gdm trigger for transition
  640. * Mon Sep 15 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.09.15.1
  641. - add quit command with --retain-splash option to client
  642. * Wed Sep 10 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.09.10.1
  643. - Fix text rendering for certain machines
  644. * Mon Sep 8 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.09.05.4
  645. - More serial console fixes (bug 460565 again)
  646. * Fri Sep 5 2008 Bill Nottingham <notting@redhat.com> 0.6.0-0.2008.09.05.3
  647. - make the text plugin use the system release info rather than a hardcoded 'Fedora 10'
  648. * Fri Sep 5 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.09.05.2
  649. - Try to support multiple serial consoles better
  650. (bug 460565)
  651. * Fri Sep 5 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.09.05.1
  652. - Fix some confusion with password handling in details plugin
  653. * Wed Aug 27 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.08.27.1
  654. - Fix another crasher for users with encrypted disks (this time in
  655. the text plugin, not the client)
  656. * Wed Aug 27 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.08.27
  657. - Update to latest snapshot
  658. - Add the ability to show text prompts in graphical plugin
  659. - Fix crasher for users with encrypted disks
  660. * Sat Aug 23 2008 Ray Strode <rstrode@redhat.com> 0.6.0-0.2008.08.22
  661. - Update to latest snapshot
  662. * Wed Aug 13 2008 Ray Strode <rstrode@redhat.com> 0.5.0-20.2008.08.13
  663. - Update previous patch to remove some assertions
  664. * Wed Aug 13 2008 Ray Strode <rstrode@redhat.com> 0.5.0-19.2008.08.13
  665. - add a patch that may help serial console users
  666. * Wed Aug 13 2008 Ray Strode <rstrode@redhat.com> 0.5.0-18.2008.08.13
  667. - add spool directory to file list
  668. * Wed Aug 13 2008 Ray Strode <rstrode@redhat.com> 0.5.0-17.2008.08.13
  669. - Make plymouth-gdm-hooks require plymouth-utils
  670. * Wed Aug 13 2008 Ray Strode <rstrode@redhat.com> 0.5.0-16.2008.08.13
  671. - Add a boot failure viewer to login screen (written by Matthias)
  672. * Tue Aug 12 2008 Adam Jackson <ajax@redhat.com> 0.5.0-15.2008.08.08
  673. - plymouth-0.5.0-textbar-hotness.patch: Change the text plugin to a slightly
  674. more traditional progress bar, to maintain the illusion of progress better
  675. than the eternally oscillating cylon. Note: still incomplete.
  676. * Fri Aug 8 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-14.2008.08.08
  677. - Don't require a modifiable text color map (may fix serial consoles)
  678. * Thu Aug 7 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-13.2008.08.07
  679. - Update to new snapshot which when combined with a new mkinitrd should
  680. make unlocking encrypted root partitions work again
  681. * Wed Aug 6 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-12.2008.08.06
  682. - Update to new snapshot which fixes some assertion failures in the
  683. client code
  684. * Wed Aug 6 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-11.2008.08.01
  685. - Add Requires(post): plymouth to plugins so they get plymouth-set-default-plugin (bug 458071)
  686. * Tue Aug 5 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-10.2008.08.01
  687. - Add plymouth dirs to file list (bug 457871)
  688. * Fri Aug 1 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-9.2008.08.01
  689. - new plymout-populate-initrd features don't work with the set -e at the
  690. top of it.
  691. * Thu Jul 31 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-8.2008.08.01
  692. - Update to another snapshot to actually get new
  693. plymouth-populate-initrd features
  694. * Thu Jul 31 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-8.2008.07.31
  695. - Update to snapshot to get new plymouth-populate-initrd features
  696. - Make removing rhgb use details plugin instead of exiting
  697. * Thu Jul 31 2008 Peter Jones <pjones@redhat.com> - 0.5.0-7
  698. - Make it a mkinitrd requires instead of a nash requires (that will
  699. still pull in nash, but we need mkinitrd for newer plymouth-populate-initrd)
  700. * Wed Jul 30 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-6
  701. - Add nash requires
  702. * Wed Jul 9 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-5
  703. - Use a new heuristic for finding libdir, since the old
  704. one falls over on ia64
  705. * Wed Jul 9 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-4
  706. - add ctrl-r to rotate text color palette back to stock values
  707. * Tue Jul 8 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-3
  708. - Fix populate script on ppc (bug 454353)
  709. * Tue Jul 1 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-2
  710. - Pull in spinfinity by default. This whole "figure out
  711. which plugin to use" set of scripts and scriptlets
  712. needs work. We need to separate distro default from
  713. user choice.
  714. * Tue Jul 1 2008 Ray Strode <rstrode@redhat.com> - 0.5.0-1
  715. - Add new client "ask-for-password" command which feeds
  716. the user input to a program instead of standard output,
  717. and loops when the program returns non-zero exit status.
  718. * Thu Jun 26 2008 Ray Strode <rstrode@redhat.com> - 0.4.5-1
  719. - Update to version 0.4.5
  720. - Make text plugin blue and less 80s
  721. * Wed Jun 25 2008 Ray Strode <rstrode@redhat.com> - 0.4.0-4
  722. - Make "Password: " show up correctly in text plugin
  723. * Wed Jun 25 2008 Ray Strode <rstrode@redhat.com> - 0.4.0-3
  724. - Require elfutils (bug 452797)
  725. * Sun Jun 22 2008 Ray Strode <rstrode@redhat.com> - 0.4.0-2
  726. - Make plymouth-set-default-plugin --reset choose the latest
  727. installed plugin, not the earliest
  728. * Sun Jun 22 2008 Ray Strode <rstrode@redhat.com> - 0.4.0-1
  729. - Update to version 0.4.0
  730. - Only run if rhgb is on kernel command line
  731. - Make text plugin more animated
  732. * Mon Jun 16 2008 Ray Strode <rstrode@redhat.com> - 0.3.2-2
  733. - dont go back to text mode on exit
  734. * Mon Jun 16 2008 Ray Strode <rstrode@redhat.com> - 0.3.2-1
  735. - Update to version 0.3.2
  736. - show gradient in spinfinity plugin
  737. - Drop fade out in spinfinity plugin
  738. - fix throbber placement
  739. - rename graphical.so to default.so
  740. * Thu Jun 12 2008 Ray Strode <rstrode@redhat.com> - 0.3.1-3
  741. - scriplet should be preun, not postun
  742. * Thu Jun 12 2008 Ray Strode <rstrode@redhat.com> - 0.3.1-2
  743. - Fix postun scriptlet
  744. * Thu Jun 12 2008 Ray Strode <rstrode@redhat.com> - 0.3.1-1
  745. - Update to version 0.3.1
  746. - Don't ship generated initrd scripts in tarball
  747. * Thu Jun 12 2008 Ray Strode <rstrode@redhat.com> - 0.3.0-1
  748. - Update to version 0.3.0
  749. - Better plugin handling
  750. - Better integration with mkinitrd (pending mkinitrd changes)
  751. - random bug fixes
  752. * Mon Jun 9 2008 Ray Strode <rstrode@redhat.com> - 0.2.0-1
  753. - Update to version 0.2.0
  754. - Integrate more tightly with nash (pending nash changes)
  755. - ship libs for out of tree splash plugins
  756. - gradient support
  757. - random bug fixes
  758. * Fri May 30 2008 Ray Strode <rstrode@redhat.com> - 0.1.0-1
  759. - Initial import, version 0.1.0