Neil Bothwick wrote:

On Tue, 6 Dec 2005 18:19:27 -0600, Boyd Stephen Smith Jr. wrote:

I've just completed an upgrade to kde-meta-3.5 from kde-meta-3.4 --
what's the beast way to clean up all the old kde 3.4 packages.

As posted yesterday:

qpkg -I -nc -g kde-base | xargs emerge --prune


This is what I use and it works well:

#!/bin/bash
for x in `ls /usr/portage/kde-base`; do
 if [ "$x" != "CVS" ]; then
   echo -n "=kde-base/$x-3.4* "
 fi
done |xargs emerge -Cpv

Cheers,
Kevin
--
gentoo-user@gentoo.org mailing list

Reply via email to