This is the mail archive of the
cygwin-apps
mailing list for the Cygwin project.
Re: [ITA] fftw3
On Tue, Apr 08, 2008 at 06:33:40PM -0700, Brian Dessent wrote:
>Brian Dessent wrote:
>>Charles Wilson wrote:
>>>As no one was actually able to install this file, is it OK to replace
>>>it on sourceware (perhaps deleting the .md5sum file) without bumping
>>>the version number?
>>
>>Yes, I considered doing that myself. Sounds like a good idea.
>
>Crap. It looks like there are a lot of these on sourceware:
>
>[briand@sourceware release]$ find . -name \*.tar.bz2 -size -45c
>-printf "%s %P\n" 14
>GNOME/libbonobo2/libbonobo20/libbonobo20-2.10.1-1.tar.bz2 14
>GNOME/libbonobo2/libbonobo20/libbonobo20-2.14.0-1.tar.bz2 14
>GNOME/gnome-libs/gnome-libs-1.4.2-2.tar.bz2 14
>jpeg/libjpeg-devel/libjpeg-devel-6b-11.tar.bz2 ...
I just replaced all of those with an empty .tar.bz2 file:
for f in `find . -name \*.tar.bz2 -size -45c`; do
echo tar -T /dev/null -cjf $f
done | sh -x
Thanks for the heads up.
cgf