On Apr 17, 2011, at 2:27 AM, Hannes Magnusson wrote: > On Sun, Apr 17, 2011 at 00:09, Philip Olson <phi...@roshambo.org> wrote: >> >> On Apr 16, 2011, at 7:10 AM, Hannes Magnusson wrote: >> >>> bjori Sat, 16 Apr 2011 13:10:51 +0000 >>> >>> Revision: http://svn.php.net/viewvc?view=revision&revision=310256 >>> >>> Log: >>> New pman release (sheez, been a almost exactly a year since the last >>> pman-2010.04.28.tgz release!) >> >> Hmm, I wonder what's causing this: >> >> $ pear upgrade phpdocs/pman >> downloading pman-2011.04.16.tgz ... >> Starting to download pman-2011.04.16.tgz (5,250,332 bytes) >> ...........................................done: 5,250,332 bytes >> ERROR: bad md5sum for file /Users/philip/php/lib/php/doc/pman/man3/glob.3.gz >> >> This is [apparently] causing pman to not update. > > Looks like your download failed somehow, it work fine for me: <snip>
Just figured it out. The problem is name collision on a case-insensitive file system like Mac, a problem similar to our xinclude() issue a couple of years ago (where we simply deleted the old PHP 4 DOMXML version as the solution.) Here: philip@water /tmp> tar -ztvf pman-2011.04.16.tgz |grep -i glob.3 -rw-r--r-- 0 0 0 1273 Apr 16 07:30 pman-2011.04.16/man3/glob.3.gz -rw-r--r-- 0 0 0 659 Apr 16 07:30 pman-2011.04.16/man3/Glob.3.gz The glob.3 is for wrappers.glob whereas Glob.3 is for glob(). Thoughts? A hack solution is to not include wrappers in man. Regards, Philip