Alexander Hansen wrote: > Robert T Wyatt wrote: > > <snip> >> Failed to fetch >> file:/sw/fink/dists/unstable/crypto/binary-darwin-i386/Packages File >> not found > I'm surprised that "fink scanpackages" didn't fix that.
It turns out that I haven't been running scanpackages explicitly in my current update script (posted below). But perhaps it's a symptom? That was also occurring prior to fink indexing it's own newer version. It went away after I enabled the unstable tree. Here's the output: http://robertwyatt.info/fink/fink-0.27.16-41.txt (That page is very long because I also installed scipy and some other things yesterday.) Within the output there are references to a script that I run (the command used to invoke it is ./fink)--nothing fancy and I've posted versions of it before--but I notice that scanpackages is no longer run explicitly by me (maybe fink runs it now, it's been too long for me to remember clearly). In case you're wondering, I don't have any packages in my local tree on this machine. $ cat ./fink #!/bin/sh echo date echo date echo "* Here's a little information about my environment." echo echo "* My operating system:" sw_vers echo echo "* My architecture: " arch echo echo "* My gcc version: " gcc --version | head -n 1 echo echo "* My fink version:" fink -V | head -n 2 echo echo "* My machine is a: " uname -m echo echo "* My development kits and tools:" fink-virtual-pkgs --debug | head -n 1 echo echo "* A quick selfupdate:" fink selfupdate echo echo "* Finally, a list of installed packages: " echo "* fink list began: " date fink list -i -t echo echo "* Here are the installed but outdated packages:" fink list -o echo "* Here are the packages I've been messing around with in my local tree:" fink --trees=local/main list -t date ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Fink-beginners mailing list [email protected] http://news.gmane.org/gmane.os.apple.fink.beginners
