public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* autoconf packaging error
@ 2011-11-15 10:06 Csaba Raduly
  2011-11-15 13:57 ` Charles Wilson
  0 siblings, 1 reply; 2+ messages in thread
From: Csaba Raduly @ 2011-11-15 10:06 UTC (permalink / raw)
  To: cygwin

Hi all,
There seems to be a packaging error in autoconf (autoconf2.5-2.68-1
according to cygcheck -f /usr/share/man/man1/autoconf-2.68.1.gz).
The shorter names for the man pages point to non-existent files:

 ~/workspace/TTCNv3 $ file /usr/share/man/man1/auto*
/usr/share/man/man1/autoconf-2.68.1.gz:   gzip compressed data, was
"autoconf-2.68.1", from Unix, last modified: Sat Jan 15 15:47:49 2011
/usr/share/man/man1/autoconf.1.gz:        broken symbolic link to
`autoconf-2.67.1.gz'
/usr/share/man/man1/autoheader-2.68.1.gz: gzip compressed data, was
"autoheader-2.68.1", from Unix, last modified: Sat Jan 15 15:47:49
2011
/usr/share/man/man1/autoheader.1.gz:      broken symbolic link to
`autoheader-2.67.1.gz'
/usr/share/man/man1/autom4te-2.68.1.gz:   gzip compressed data, was
"autom4te-2.68.1", from Unix, last modified: Sat Jan 15 15:47:49 2011
/usr/share/man/man1/autom4te.1.gz:        broken symbolic link to
`autom4te-2.67.1.gz'
/usr/share/man/man1/automake-1.11.1.gz:   gzip compressed data, was
"automake-1.11.1", from Unix, last modified: Wed Dec 23 17:04:02 2009
/usr/share/man/man1/autopoint.1.gz:       gzip compressed data, was
"autopoint.1", from Unix, last modified: Sun Oct 16 08:33:56 2011
/usr/share/man/man1/autoreconf-2.68.1.gz: gzip compressed data, was
"autoreconf-2.68.1", from Unix, last modified: Sat Jan 15 15:47:49
2011
/usr/share/man/man1/autoreconf.1.gz:      broken symbolic link to
`autoreconf-2.67.1.gz'
/usr/share/man/man1/autoscan-2.68.1.gz:   gzip compressed data, was
"autoscan-2.68.1", from Unix, last modified: Sat Jan 15 15:47:50 2011
/usr/share/man/man1/autoscan.1.gz:        broken symbolic link to
`autoscan-2.67.1.gz'
/usr/share/man/man1/autossh.1.gz:         gzip compressed data, was
"autossh.1", from Unix, last modified: Tue Jul 15 22:35:56 2008
/usr/share/man/man1/autoupdate-2.68.1.gz: gzip compressed data, was
"autoupdate-2.68.1", from Unix, last modified: Sat Jan 15 15:47:50
2011
/usr/share/man/man1/autoupdate.1.gz:      broken symbolic link to
`autoupdate-2.67.1.gz'

The symlinks don't appear in the output of cygcheck -l autoconf2.5; I
suspect the post-install script.

Csaba
-- 
GCS a+ e++ d- C++ ULS$ L+$ !E- W++ P+++$ w++$ tv+ b++ DI D++ 5++
The Tao of math: The numbers you can count are not the real numbers.
Life is complex, with real and imaginary parts.
"Ok, it boots. Which means it must be bug-free and perfect. " -- Linus Torvalds
"People disagree with me. I just ignore them." -- Linus Torvalds

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: autoconf packaging error
  2011-11-15 10:06 autoconf packaging error Csaba Raduly
@ 2011-11-15 13:57 ` Charles Wilson
  0 siblings, 0 replies; 2+ messages in thread
From: Charles Wilson @ 2011-11-15 13:57 UTC (permalink / raw)
  To: cygwin

On 11/15/2011 5:06 AM, Csaba Raduly wrote:
> Hi all,
> There seems to be a packaging error in autoconf (autoconf2.5-2.68-1
> according to cygcheck -f /usr/share/man/man1/autoconf-2.68.1.gz).
> The shorter names for the man pages point to non-existent files:
>
> The symlinks don't appear in the output of cygcheck -l autoconf2.5; I
> suspect the post-install script.

Yes, there's a bug in /etc/postinstall/autoconf2.5.sh:


#!/bin/bash -e

# make unversion man pages
pushd /usr/share/man/man1 >/dev/null 2>&1
for fn in autoconf autoheader autom4te autoreconf autoscan \
         autoupdate config.guess config.sub ifnames
do
         rm -f ${fn}.1.gz 2>/dev/null || /bin/true
-       ln -fs ${fn}-2.67.1.gz ${fn}.1.gz 2>/dev/null || /bin/true
+       ln -fs ${fn}-2.68.1.gz ${fn}.1.gz 2>/dev/null || /bin/true
done
popd >/dev/null 2>&1


For now, the short term workaround is to make the indicated change, and 
re-run the script manually (perhaps in an elevated shell).

--
Chuck

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-11-15 13:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-15 10:06 autoconf packaging error Csaba Raduly
2011-11-15 13:57 ` Charles Wilson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).