Package Details: plymouth-git 24.004.60.r88.ga0e8b6cf-1

Git Clone URL: https://aur.archlinux.org/plymouth-git.git (read-only, click to copy)
Package Base: plymouth-git
Description: Graphical boot splash screen (git version)
Upstream URL: https://www.freedesktop.org/wiki/Software/Plymouth/
Licenses: GPL-2.0-or-later
Conflicts: plymouth
Provides: plymouth
Submitter: PirateJonno
Maintainer: Taijian
Last Packager: Taijian
Votes: 275
Popularity: 0.42
First Submitted: 2009-05-02 09:53 (UTC)
Last Updated: 2024-12-20 00:13 (UTC)

Required by (174)

Sources (6)

Latest Comments

« First ‹ Previous 1 .. 41 42 43 44 45 46 47 48 49 50 51 Next › Last »

ricardofunke commented on 2011-06-20 17:29 (UTC)

Another thing... The plymouth.conf file shouldn't be overriden at the updates... ;) Thanks!

hellnest commented on 2011-06-20 00:34 (UTC)

Nicely done :), actually i just realize i had a same problem when shutting down using 'shutdown -h' command. But using 'halt' is run fine ^^. Plymouth.functions updated

ricardofunke commented on 2011-06-19 15:33 (UTC)

Sorry, I forgot to thank you for the modifications... ;)

ricardofunke commented on 2011-06-17 19:00 (UTC)

Sorry, but I think you should reduce the time from 5 to 3, I saw later that 5 is too much... Could you put it indented?

ricardofunke commented on 2011-06-16 03:54 (UTC)

My plymouth don't let my notebook shutdown, then I found that "plymouthd --mode=shutdown" hangs and it stops only with kill -9. So I wrote that code above on plymouth.functions to fix it: #### (...) if [ "$0" == "/etc/rc.shutdown" ]; then XPID=`pidof X` if [ "$XPID" ]; then RUNLEVEL=`runlevel` if [ "${RUNLEVEL:2:4}" != '5' ]; then [ -e /var/run/daemons/slim ] && /etc/rc.d/slim stop [ -e /var/run/daemons/gdm ] && /etc/rc.d/gdm stop [ -e /var/run/daemons/kdm ] && /etc/rc.d/kdm stop [ -e /var/run/daemons/xdm ] && /etc/rc.d/xdm stop [ -e /var/run/daemons/entrance ] && /etc/rc.d/entrance stop fi kill -9 $XPID &> /dev/null fi ply_daemon --mode=shutdown --pid-file=/tmp/plymouthd ply_client --show-splash while [[ ( $(ps h $(cat /tmp/plymouthd)) ) && ( $ply_wait -lt 5 ) ]]; do ply_wait=$(( $ply_wait + 1 )) sleep 1 done [[ $(ps h $(cat /tmp/plymouthd)) ]] && kill -9 $(cat /tmp/plymouthd) fi ###

Cilyan commented on 2011-06-11 15:09 (UTC)

pkg-config (once again) is part of the base-devel, which is a prerequisite to build ANY package. https://wiki.archlinux.org/index.php/Creating_Packages That's why it should NOT appear in the [make]depends array.

hellnest commented on 2011-06-11 12:39 (UTC)

The PKGBUILD should running fine, just try it and give any info if it failed to build,

ricardofunke commented on 2011-06-11 11:40 (UTC)

So @dimitar, should pkg_config be as "makedepends" in PKGBUILD?

hellnest commented on 2011-05-22 00:31 (UTC)

Since i'm using it, i will try to maintenance the package

Cilyan commented on 2011-05-21 10:33 (UTC)

Update of PKGBUILD: - Quotes in PKGBUILD to protect paths with spaces - Separate package function - Get package version from autotools (for provides option) - Include fix for getpwid_r with a tweak to cope with different version of nss (should work till version 3 is released)