Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 2408

Summary: dev-util/ccache missing the files/digest-ccache*
Product: Gentoo Linux Reporter: Paul Thompson <set.mailinglist>
Component: New packagesAssignee: Arcady Genkin (RETIRED) <agenkin>
Status: RESOLVED FIXED    
Severity: normal CC: set.mailinglist
Priority: High    
Version: 1.1a   
Hardware: x86   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Paul Thompson 2002-05-03 15:43:12 UTC
 
Comment 1 Paul Thompson 2002-05-03 16:58:52 UTC
-dev-libs/lzo
-x11-misc/gkrellm-mail

also seem to be missing a files dir and digest.
(I got curious and took a second to wank together 
this ugly script to ferret out these guys)

Paul

#!/bin/sh

cd /usr/portage
find . -name "files" -type d | awk -F '/' -- '{ print $2"/"$3 }' | \
        sort | uniq > hadfiles.$$
find . -mindepth 2 | \
        sed -e'/profiles/d' -e'/scripts/d' -e'/licenses/d' -e'/eclass/d'
-e'/distfiles/d' | \
        awk -F '/' -- '{ print $2"/"$3 }' | sort | uniq > all.$$
diff -u all.$$ hadfiles.$$ | grep "^-"
rm hadfiles.$$ all.$$
Comment 2 Arcady Genkin (RETIRED) gentoo-dev 2002-05-03 17:04:02 UTC
I'll take this one.
Comment 3 Arcady Genkin (RETIRED) gentoo-dev 2002-05-03 17:10:54 UTC
Yes, this happens once in a while.  Thanks for checking.  Should be fixed now.