Re: [HACKERS] make world fails

2011-05-01 Thread Peter Eisentraut
On tor, 2011-04-28 at 00:03 -0400, Tom Lane wrote:
 Peter Eisentraut pete...@gmx.net writes:
  On ons, 2011-04-27 at 17:54 -0300, Alvaro Herrera wrote:
  I take it that if I have a manpages/docbook.xsl in that path, it uses
  that instead of trying to fetch it from sourceforge.
 
  Exactly.
 
  If you don't want to depend on net access, you can do something like
  make whatever XSLTPROCFLAGS=--nonet
 
 Is there a way to say fetch all the documents I need for this build
 into my local cache?  Then you could do that when your network was up,
 and not have to worry about failures in future.  The set of URIs we
 reference doesn't change much.

No, not without some external program to do the caching.



-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


[HACKERS] make world fails

2011-04-27 Thread Kevin Grittner
I just did my usual:
 
make maintainer-clean \
  ./configure --prefix=/usr/local/pgsql-serializable \
--enable-debug \
--enable-cassert \
--enable-depend \
--with-libxml \
--with-python \
  make world
 
Which ended badly with the attached.
 
I've been running this pretty much every day on one or two machines,
and this is new.
 
-Kevin

/usr/bin/perl -p -e 's/\[(amp|copy|egrave|gt|lt|mdash|nbsp|ouml|pi|quot|uuml) 
*\]/\\1;/g;' \
   -e '$_ .= qq{!DOCTYPE book PUBLIC -//OASIS//DTD DocBook 
XML V4.2//EN http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd;\n} if 
$. == 1;' \
  postgres.xmltmp  postgres.xml
rm postgres.xmltmp
xsltproc --stringparam pg.version '9.1devel'  stylesheet-man.xsl postgres.xml
error : No such file or directory
warning: failed to load external entity 
http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl;
compilation error: file stylesheet-man.xsl line 7 element import
xsl:import : unable to load 
http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
make[3]: *** [man-stamp] Error 5
make[3]: Leaving directory `/home/kgrittn/git/postgresql/kgrittn/doc/src/sgml'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/kgrittn/git/postgresql/kgrittn/doc/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/kgrittn/git/postgresql/kgrittn/doc'
make: *** [world-doc-recurse] Error 2

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] make world fails

2011-04-27 Thread Tom Lane
Kevin Grittner kevin.gritt...@wicourts.gov writes:
 I just did my usual:
 make maintainer-clean \
   ./configure --prefix=/usr/local/pgsql-serializable \
 --enable-debug \
 --enable-cassert \
 --enable-depend \
 --with-libxml \
 --with-python \
   make world
 
 Which ended badly with the attached.

Hmm, does it work any better if you revert
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=9412606265c2774712e3f805798896734b32c7fd
?

regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] make world fails

2011-04-27 Thread Alvaro Herrera
Excerpts from Kevin Grittner's message of mié abr 27 16:39:01 -0300 2011:
 I just did my usual:
  
 make maintainer-clean \
   ./configure --prefix=/usr/local/pgsql-serializable \
 --enable-debug \
 --enable-cassert \
 --enable-depend \
 --with-libxml \
 --with-python \
   make world
  
 Which ended badly with the attached.
  

 xsltproc --stringparam pg.version '9.1devel'  stylesheet-man.xsl postgres.xml
 error : No such file or directory
 warning: failed to load external entity 
 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl;
 compilation error: file stylesheet-man.xsl line 7 element import
 xsl:import : unable to load 
 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl

I think somebody mentioned long ago that the new manpage-generating
toolchain can sometimes attempt to download XSL documents from that
website, if not present in the machine.  When you have a working
connection and the site is up it works fine, but bombs out as soon as
there's a network glitch etc.

I think you need to install some Docbook XSL package or other.

-- 
Álvaro Herrera alvhe...@commandprompt.com
The PostgreSQL Company - Command Prompt, Inc.
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] make world fails

2011-04-27 Thread Kevin Grittner
Tom Lane t...@sss.pgh.pa.us wrote:
 Kevin Grittner kevin.gritt...@wicourts.gov writes:
 I just did my usual:
 make maintainer-clean \
   ./configure --prefix=/usr/local/pgsql-serializable \
 --enable-debug \
 --enable-cassert \
 --enable-depend \
 --with-libxml \
 --with-python \
   make world
  
 Which ended badly with the attached.
 
 Hmm, does it work any better if you revert

http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=9412606265c2774712e3f805798896734b32c7fd
 ?
 
It worked with that reverted.  I went back to the master branch and
it worked there, too, on a retry.  Could a transient failure to
communicate with the referenced URL on the Internet:
 
http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
 
have caused this failure?  I don't know for sure that there was a
failure, but that's what the message seemed to say.  I *can* access
that page with my browser at the moment.
 
Is the build contingent on Internet access?  Should it be?
 
-Kevin

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] make world fails

2011-04-27 Thread Dave Page
On Wed, Apr 27, 2011 at 9:29 PM, Kevin Grittner
kevin.gritt...@wicourts.gov wrote:
 Tom Lane t...@sss.pgh.pa.us wrote:
 Kevin Grittner kevin.gritt...@wicourts.gov writes:
 I just did my usual:
 make maintainer-clean \
   ./configure --prefix=/usr/local/pgsql-serializable \
                 --enable-debug \
                 --enable-cassert \
                 --enable-depend \
                 --with-libxml \
                 --with-python \
   make world

 Which ended badly with the attached.

 Hmm, does it work any better if you revert

 http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=9412606265c2774712e3f805798896734b32c7fd
 ?

 It worked with that reverted.  I went back to the master branch and
 it worked there, too, on a retry.  Could a transient failure to
 communicate with the referenced URL on the Internet:

 http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl

 have caused this failure?  I don't know for sure that there was a
 failure, but that's what the message seemed to say.  I *can* access
 that page with my browser at the moment.

 Is the build contingent on Internet access?  Should it be?

I periodically see the installer builds fail at this step. It's really annoying.



-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] make world fails

2011-04-27 Thread Alvaro Herrera
Excerpts from Alvaro Herrera's message of mié abr 27 17:28:32 -0300 2011:

 I think you need to install some Docbook XSL package or other.

In my system (Debian) I have a catalog.xml file from the docbook-xsl
package which has these two lines in it:

  rewriteURI 
uriStartString=http://docbook.sourceforge.net/release/xsl/current/; 
rewritePrefix=.//
  rewriteSystem 
systemIdStartString=http://docbook.sourceforge.net/release/xsl/current/; 
rewritePrefix=.//

(where the ./ appears to refer to the
/usr/share/xml/docbook/stylesheet/docbook-xsl directory) 

I take it that if I have a manpages/docbook.xsl in that path, it uses
that instead of trying to fetch it from sourceforge.

-- 
Álvaro Herrera alvhe...@commandprompt.com
The PostgreSQL Company - Command Prompt, Inc.
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] make world fails

2011-04-27 Thread Peter Eisentraut
On ons, 2011-04-27 at 17:54 -0300, Alvaro Herrera wrote:
 Excerpts from Alvaro Herrera's message of mié abr 27 17:28:32 -0300 2011:
 
  I think you need to install some Docbook XSL package or other.
 
 In my system (Debian) I have a catalog.xml file from the docbook-xsl
 package which has these two lines in it:
 
   rewriteURI 
 uriStartString=http://docbook.sourceforge.net/release/xsl/current/; 
 rewritePrefix=.//
   rewriteSystem 
 systemIdStartString=http://docbook.sourceforge.net/release/xsl/current/; 
 rewritePrefix=.//
 
 (where the ./ appears to refer to the
 /usr/share/xml/docbook/stylesheet/docbook-xsl directory) 
 
 I take it that if I have a manpages/docbook.xsl in that path, it uses
 that instead of trying to fetch it from sourceforge.

Exactly.

If you don't want to depend on net access, you can do something like

make whatever XSLTPROCFLAGS=--nonet


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] make world fails

2011-04-27 Thread Tom Lane
Peter Eisentraut pete...@gmx.net writes:
 On ons, 2011-04-27 at 17:54 -0300, Alvaro Herrera wrote:
 I take it that if I have a manpages/docbook.xsl in that path, it uses
 that instead of trying to fetch it from sourceforge.

 Exactly.

 If you don't want to depend on net access, you can do something like
 make whatever XSLTPROCFLAGS=--nonet

Is there a way to say fetch all the documents I need for this build
into my local cache?  Then you could do that when your network was up,
and not have to worry about failures in future.  The set of URIs we
reference doesn't change much.

regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers