$ rpm -qf /usr/lib/ConsoleKit file /usr/lib/ConsoleKit is not owned by any package $ rpm -qf /usr/lib/ConsoleKit/run-seat.d file /usr/lib/ConsoleKit/run-seat.d is not owned by any package $ rpm -qf /usr/lib/ConsoleKit/run-seat.d/udev-acl.ck udev-171-1.fc16.x86_64 udev should own the /usr/lib/ConsoleKit and /usr/lib/ConsoleKit/run-seat.d dirs. Fix below, let me know if you'd like me to commit and build this for devel. diff --git a/udev.spec b/udev.spec index 4a14c08..acbe4a0 100644 --- a/udev.spec +++ b/udev.spec @@ -286,2 +286,4 @@ rm -rf $RPM_BUILD_ROOT %{udev_scriptdir}/keymaps/* +%dir %{_prefix}/lib/ConsoleKit +%dir %{_prefix}/lib/ConsoleKit/run-seat.d %attr(0644,root,root) %{_prefix}/lib/ConsoleKit/run-seat.d/udev-acl.ck
$ rpm -qf /usr/lib/ConsoleKit ConsoleKit-0.4.5-1.fc15.x86_64
udev might require ConsoleKit then.. not sure, if that is wanted
If udev does not actually require ConsoleKit, the dependency should not be added just for dir ownership, instead the dirs should be owned in udev which is what the patch does. http://fedoraproject.org/wiki/Packaging/Guidelines#File_and_Directory_Ownership
all right! thanks!