Boost logo

Boost-Commit :

From: grafikrobot_at_[hidden]
Date: 2007-11-30 16:44:48


Author: grafik
Date: 2007-11-30 16:44:48 EST (Fri, 30 Nov 2007)
New Revision: 41517
URL: http://svn.boost.org/trac/boost/changeset/41517

Log:
Add latest bjam download.
Added:
   website/public_html/beta/feed/downloads/bjam_3_1_15.qbk (contents, props changed)
   website/public_html/beta/feed/downloads/bjam_3_1_15.xml (contents, props changed)
Text files modified:
   website/public_html/beta/feed/downloads.rss | 109 +++++++++++++++++++++++++++++++++++++++
   1 files changed, 108 insertions(+), 1 deletions(-)

Modified: website/public_html/beta/feed/downloads.rss
==============================================================================
--- website/public_html/beta/feed/downloads.rss (original)
+++ website/public_html/beta/feed/downloads.rss 2007-11-30 16:44:48 EST (Fri, 30 Nov 2007)
@@ -6,7 +6,114 @@
     <description/>
     <language>en-us</language>
     <copyright>Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)</copyright>
- <item><title>Version 1.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span class=&quot;purpose&quot;&gt;
+ <item><title>Boost Jam 3.1.15</title><pubDate>Sun, 30 Sep 2007 16:27:00 GMT</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span class=&quot;purpose&quot;&gt;
+ This release sees a variety of fixes for long standing Perforce/Jam problems.
+ Most of them relating to running actions in parallel with the -jN option. The
+ end result of the changes is that running parallel actions is now reliably
+ possible in Unix and Windows environments. Many thanks to Noel for joining
+ the effort, to implement and fix the Unix side of stuff.
+ &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=72941&amp;release_id=543223><description>&lt;div class=&quot;description&quot;&gt;
+
+ &lt;p&gt;
+ This release sees a variety of fixes for long standing Perforce/Jam problems.
+ Most of them relating to running actions in parallel with the -jN option. The
+ end result of the changes is that running parallel actions is now reliably possible
+ in Unix and Windows environments. Many thanks to Noel for joining the effort,
+ to implement and fix the Unix side of stuff.
+ &lt;/p&gt;
+ &lt;ul&gt;
+ &lt;li&gt;
+ Add support for building bjam with pgi and pathscale toolsets. -- Noel B.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Implement running action commands through pipes (-p option) to fix jumbled
+ output when using parallel execution with -j option. This is implemented for
+ Unix variants, and Windows (Win32/NT). -- Rene R., Noel B.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Add &amp;quot;sun&amp;quot; as alias to Sun Workshop compiler tools. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Set MAXLINE in jam.h to 23k bytes for AIX. The piecemeal archive action was
+ broken with the default MAXLINE of 102400. Because the AIX shell uses some
+ of the 24k default buffer size for its own use, I reduced it to 23k. -- Noel
+ B.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Make use of output dir options of msvc to not polute src dir with compiled
+ files. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ A small fix, so -d+2 will always show the &amp;quot;real&amp;quot; commands being executed
+ instead of casually the name of a temporary batch file. -- Roland S.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Add test to check 'bjam -n'. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Add test to check 'bjam -d2'. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Bring back missing output of -n option. The -o option continues to be broken
+ as it has been for a long time now because of the @ file feature. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Update GC support to work with Boehm GC 7.0. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Revert the BOOST_BUILD_PATH change, since the directory passed to boost-build
+ should be first in searched paths, else project local build system will not
+ be picked correctly. The order had been changed to allow searching of alternate
+ user-config.jam files from boost build. This better should be done with --user-config=
+ switch or similar. -- Roland S.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Initial support for defining action body from Python. -- Vladimir P.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Implement @() expansion during parse phase. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Define OSPLAT var unconditionally, and more generically, when possible. --
+ Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Fix undeclared INT_MAX on some platforms, i.e. Linux. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Modified execunix.c to add support for terminating processes that consume too
+ much cpu or that hang and fail to consume cpu at all. This in support of the
+ bjam -lx option. -- Noel B.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Add internal dependencies for multi-file generating actions to indicate that
+ the targets all only appear when the first target appears. This fixes the long
+ standing problem Perforce/Jam has with multi-file actions and parallel execution
+ (-jN). -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Add test of -l limit option now that it's implemented on windows and unix.
+ -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Add test for no-op @() expansion. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Handle invalid formats of @() as doing a straight substitution instead of erroring
+ out. -- Rene R.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Various fixes to compile on SGI/Irix. -- Noel B.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Add output for when actions timeout with -lN option. -- Rene R., Noel B.
+ &lt;/li&gt;
+ &lt;li&gt;
+ Add needed include (according to XOPEN) for definition of WIFEXITED and WEXITSTATUS.
+ -- Markus S.
+ &lt;/li&gt;
+ &lt;/ul&gt;
+&lt;/div&gt;</description></item><item><title>Version 1.34.1</title><pubDate>Tue, 24 Jul 2007 12:00:00 GMT</pubDate><boostbook:purpose>&lt;span class=&quot;brief&quot;&gt;&lt;span class=&quot;purpose&quot;&gt;
       Bugfix Release.
     &lt;/span&gt;&lt;/span&gt;</boostbook:purpose><boostbook:download>
http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041&amp;release_id=527428><description>&lt;div class=&quot;description&quot;&gt;
   

Added: website/public_html/beta/feed/downloads/bjam_3_1_15.qbk
==============================================================================
--- (empty file)
+++ website/public_html/beta/feed/downloads/bjam_3_1_15.qbk 2007-11-30 16:44:48 EST (Fri, 30 Nov 2007)
@@ -0,0 +1,37 @@
+[article Boost Jam 3.1.15
+ [quickbook 1.4]
+ [source-mode c++]
+ [purpose This release sees a variety of fixes for long standing Perforce/Jam problems. Most of them relating to running actions in parallel with the -jN option. The end result of the changes is that running parallel actions is now reliably possible in Unix and Windows environments. Many thanks to Noel for joining the effort, to implement and fix the Unix side of stuff.]
+ [authors [Rivera, Rene]]
+ [last-revision Sun, 30 Sep 2007 16:27:00 GMT]
+]
+
+[include ext.qbk]
+
+[download
http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=72941&release_id=543223]
+
+This release sees a variety of fixes for long standing Perforce/Jam problems. Most of them relating to running actions in parallel with the -jN option. The end result of the changes is that running parallel actions is now reliably possible in Unix and Windows environments. Many thanks to Noel for joining the effort, to implement and fix the Unix side of stuff.
+
+* Add support for building bjam with pgi and pathscale toolsets. -- Noel B.
+* Implement running action commands through pipes (-p option) to fix jumbled output when using parallel execution with -j option. This is implemented for Unix variants, and Windows (Win32/NT). -- Rene R., Noel B.
+* Add "sun" as alias to Sun Workshop compiler tools. -- Rene R.
+* Set MAXLINE in jam.h to 23k bytes for AIX. The piecemeal archive action was broken with the default MAXLINE of 102400. Because the AIX shell uses some of the 24k default buffer size for its own use, I reduced it to 23k. -- Noel B.
+* Make use of output dir options of msvc to not polute src dir with compiled files. -- Rene R.
+* A small fix, so -d+2 will always show the "real" commands being executed instead of casually the name of a temporary batch file. -- Roland S.
+* Add test to check 'bjam -n'. -- Rene R.
+* Add test to check 'bjam -d2'. -- Rene R.
+* Bring back missing output of -n option. The -o option continues to be broken as it has been for a long time now because of the @ file feature. -- Rene R.
+* Update GC support to work with Boehm GC 7.0. -- Rene R.
+* Revert the BOOST_BUILD_PATH change, since the directory passed to boost-build should be first in searched paths, else project local build system will not be picked correctly. The order had been changed to allow searching of alternate user-config.jam files from boost build. This better should be done with --user-config= switch or similar. -- Roland S.
+* Initial support for defining action body from Python. -- Vladimir P.
+* Implement @() expansion during parse phase. -- Rene R.
+* Define OSPLAT var unconditionally, and more generically, when possible. -- Rene R.
+* Fix undeclared INT_MAX on some platforms, i.e. Linux. -- Rene R.
+* Modified execunix.c to add support for terminating processes that consume too much cpu or that hang and fail to consume cpu at all. This in support of the bjam -lx option. -- Noel B.
+* Add internal dependencies for multi-file generating actions to indicate that the targets all only appear when the first target appears. This fixes the long standing problem Perforce/Jam has with multi-file actions and parallel execution (-jN). -- Rene R.
+* Add test of -l limit option now that it's implemented on windows and unix. -- Rene R.
+* Add test for no-op @() expansion. -- Rene R.
+* Handle invalid formats of @() as doing a straight substitution instead of erroring out. -- Rene R.
+* Various fixes to compile on SGI/Irix. -- Noel B.
+* Add output for when actions timeout with -lN option. -- Rene R., Noel B.
+* Add needed include (according to XOPEN) for definition of WIFEXITED and WEXITSTATUS. -- Markus S.
\ No newline at end of file

Added: website/public_html/beta/feed/downloads/bjam_3_1_15.xml
==============================================================================
--- (empty file)
+++ website/public_html/beta/feed/downloads/bjam_3_1_15.xml 2007-11-30 16:44:48 EST (Fri, 30 Nov 2007)
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN" "http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
+<article id="boost_jam_3_1_15" name="Boost Jam 3.1.15" dirname="boost_jam_3_1_15"
+last-revision="Sun, 30 Sep 2007 16:27:00 GMT" xmlns:xi="http://www.w3.org/2001/XInclude">
+ <articleinfo>
+ <authorgroup>
+ <author>
+ <firstname>Rene</firstname> <surname>Rivera</surname>
+ </author>
+ </authorgroup>
+ <articlepurpose>
+ This release sees a variety of fixes for long standing Perforce/Jam problems.
+ Most of them relating to running actions in parallel with the -jN option. The
+ end result of the changes is that running parallel actions is now reliably
+ possible in Unix and Windows environments. Many thanks to Noel for joining
+ the effort, to implement and fix the Unix side of stuff.
+ </articlepurpose>
+ </articleinfo>
+ <title>Boost Jam 3.1.15</title>
+ <para>
+ <download><![CDATA[http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=72941&release_id=543223]]></download>
+ </para>
+ <para>
+ This release sees a variety of fixes for long standing Perforce/Jam problems.
+ Most of them relating to running actions in parallel with the -jN option. The
+ end result of the changes is that running parallel actions is now reliably possible
+ in Unix and Windows environments. Many thanks to Noel for joining the effort,
+ to implement and fix the Unix side of stuff.
+ </para>
+ <itemizedlist>
+ <listitem>
+ Add support for building bjam with pgi and pathscale toolsets. -- Noel B.
+ </listitem>
+ <listitem>
+ Implement running action commands through pipes (-p option) to fix jumbled
+ output when using parallel execution with -j option. This is implemented for
+ Unix variants, and Windows (Win32/NT). -- Rene R., Noel B.
+ </listitem>
+ <listitem>
+ Add &quot;sun&quot; as alias to Sun Workshop compiler tools. -- Rene R.
+ </listitem>
+ <listitem>
+ Set MAXLINE in jam.h to 23k bytes for AIX. The piecemeal archive action was
+ broken with the default MAXLINE of 102400. Because the AIX shell uses some
+ of the 24k default buffer size for its own use, I reduced it to 23k. -- Noel
+ B.
+ </listitem>
+ <listitem>
+ Make use of output dir options of msvc to not polute src dir with compiled
+ files. -- Rene R.
+ </listitem>
+ <listitem>
+ A small fix, so -d+2 will always show the &quot;real&quot; commands being executed
+ instead of casually the name of a temporary batch file. -- Roland S.
+ </listitem>
+ <listitem>
+ Add test to check 'bjam -n'. -- Rene R.
+ </listitem>
+ <listitem>
+ Add test to check 'bjam -d2'. -- Rene R.
+ </listitem>
+ <listitem>
+ Bring back missing output of -n option. The -o option continues to be broken
+ as it has been for a long time now because of the @ file feature. -- Rene R.
+ </listitem>
+ <listitem>
+ Update GC support to work with Boehm GC 7.0. -- Rene R.
+ </listitem>
+ <listitem>
+ Revert the BOOST_BUILD_PATH change, since the directory passed to boost-build
+ should be first in searched paths, else project local build system will not
+ be picked correctly. The order had been changed to allow searching of alternate
+ user-config.jam files from boost build. This better should be done with --user-config=
+ switch or similar. -- Roland S.
+ </listitem>
+ <listitem>
+ Initial support for defining action body from Python. -- Vladimir P.
+ </listitem>
+ <listitem>
+ Implement @() expansion during parse phase. -- Rene R.
+ </listitem>
+ <listitem>
+ Define OSPLAT var unconditionally, and more generically, when possible. --
+ Rene R.
+ </listitem>
+ <listitem>
+ Fix undeclared INT_MAX on some platforms, i.e. Linux. -- Rene R.
+ </listitem>
+ <listitem>
+ Modified execunix.c to add support for terminating processes that consume too
+ much cpu or that hang and fail to consume cpu at all. This in support of the
+ bjam -lx option. -- Noel B.
+ </listitem>
+ <listitem>
+ Add internal dependencies for multi-file generating actions to indicate that
+ the targets all only appear when the first target appears. This fixes the long
+ standing problem Perforce/Jam has with multi-file actions and parallel execution
+ (-jN). -- Rene R.
+ </listitem>
+ <listitem>
+ Add test of -l limit option now that it's implemented on windows and unix.
+ -- Rene R.
+ </listitem>
+ <listitem>
+ Add test for no-op @() expansion. -- Rene R.
+ </listitem>
+ <listitem>
+ Handle invalid formats of @() as doing a straight substitution instead of erroring
+ out. -- Rene R.
+ </listitem>
+ <listitem>
+ Various fixes to compile on SGI/Irix. -- Noel B.
+ </listitem>
+ <listitem>
+ Add output for when actions timeout with -lN option. -- Rene R., Noel B.
+ </listitem>
+ <listitem>
+ Add needed include (according to XOPEN) for definition of WIFEXITED and WEXITSTATUS.
+ -- Markus S.
+ </listitem>
+ </itemizedlist>
+</article>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk