On Fri, Mar 14, 2008 at 8:14 AM, Rémi Cardona <[EMAIL PROTECTED]> wrote: > - the gnome2 eclass now has a pkg_preinst, if you do multiple > inherits, make sure that gnome2_pkg_preinst is called too. The > _games_eclass_ is one of those. [...] > *Please* review these eclasses because with a simple grep, I could find > over _1000_packages_ that inherited gnome2.eclass. But many more use > other eclasses that depend on gnome2-utils.
In case that's of any help, the ugly thing below should lists all eclasses that export pkg_preinst: trillian ~ # for ECLASS_ECLASS in /usr/portage/eclass/*.eclass; do echo "${ECLASS_ECLASS}:$(sed -e :a -e '/\\$/N; s/\\\n//; ta' ${ECLASS_ECLASS} | grep EXPORT_FUNCTIONS)"; done | grep pkg_preinst | cut -d . -f 1 | cut -d / -f 5 common-lisp games kde kernel-2 kernel linux-mod mount-boot myspell mysql perl-module subversion tetex-3 toolchain vmware x-modular And the even uglier thing below should list all ebuilds that inherit a gnome2* eclass and any of the above: trillian ~ # for ECLASS in $(for ECLASS_ECLASS in /usr/portage/eclass/*.eclass; do echo "${ECLASS_ECLASS}:$(sed -e :a -e '/\\$/N; s/\\\n//; ta' ${ECLASS_ECLASS} | grep EXPORT_FUNCTIONS)"; done | grep pkg_preinst | cut -d . -f 1 | cut -d / -f 5); do qgrep -H "inherit " | grep " ${ECLASS}" | grep " gnome2"; done | sort | uniq games-arcade/blobwars/blobwars-1.07.ebuild:inherit eutils gnome2-utils games games-arcade/blobwars/blobwars-1.08.ebuild:inherit eutils gnome2-utils games games-board/gnome-mastermind/gnome-mastermind-0.3.ebuild:inherit eutils games gnome2 games-board/gnono/gnono-1.9.1.ebuild:inherit autotools eutils gnome2-utils games media-video/vlc/vlc-0.8.6e.ebuild:inherit eutils wxwidgets multilib autotools toolchain-funcs gnome2 nsplugins media-video/vlc/vlc-0.9.0_alpha20080117.ebuild:inherit eutils wxwidgets multilib autotools toolchain-funcs gnome2 nsplugins qt4 flag-o-matic media-video/vlc/vlc-0.9.0_alpha20080228.ebuild:inherit eutils wxwidgets multilib autotools toolchain-funcs gnome2 nsplugins qt4 flag-o-matic media-video/vlc/vlc-0.9.0_alpha20080309.ebuild:inherit eutils wxwidgets multilib autotools toolchain-funcs gnome2 nsplugins qt4 flag-o-matic net-im/pidgin/pidgin-2.3.1.ebuild:inherit flag-o-matic eutils toolchain-funcs multilib perl-app gnome2 net-im/pidgin/pidgin-2.4.0.ebuild:inherit flag-o-matic eutils toolchain-funcs multilib perl-app gnome2 sci-astronomy/celestia/celestia-1.4.1-r2.ebuild:inherit eutils flag-o-matic gnome2 kde-functions autotools sci-astronomy/celestia/celestia-1.5.0.ebuild:inherit eutils flag-o-matic gnome2 kde-functions autotools If you remove from that list vlc, pidgin and celestia which are false positives, that leaves us: games-arcade/blobwars/blobwars-1.07.ebuild games-arcade/blobwars/blobwars-1.08.ebuild games-board/gnome-mastermind/gnome-mastermind-0.3.ebuild games-board/gnono/gnono-1.9.1.ebuild If I didn't screw up that shouldn't take long to check. Denis.