Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 2408 - dev-util/ccache missing the files/digest-ccache*
Summary: dev-util/ccache missing the files/digest-ccache*
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Arcady Genkin (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-05-03 15:43 UTC by Paul Thompson
Modified: 2003-02-04 19:42 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.