Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80554 - trunk/tools/build/v2/build
From: jurko.gospodnetic_at_[hidden]
Date: 2012-09-17 06:09:26


Author: jurko
Date: 2012-09-17 06:09:25 EDT (Mon, 17 Sep 2012)
New Revision: 80554
URL: http://svn.boost.org/trac/boost/changeset/80554

Log:
Internal Boost Build cleanup - minor stylistic changes.
Text files modified:
   trunk/tools/build/v2/build/modifiers.jam | 22 +++++++++++++---------
   trunk/tools/build/v2/build/readme.txt | 12 +++++-------
   2 files changed, 18 insertions(+), 16 deletions(-)

Modified: trunk/tools/build/v2/build/modifiers.jam
==============================================================================
--- trunk/tools/build/v2/build/modifiers.jam (original)
+++ trunk/tools/build/v2/build/modifiers.jam 2012-09-17 06:09:25 EDT (Mon, 17 Sep 2012)
@@ -1,12 +1,13 @@
 # Copyright 2003 Rene Rivera
 # 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)
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
 
 # Modifiers are generalized generators that mutate targets in specific ways.
 # This structure allows for grouping a variety of functionality in an
-# orthogonal way to the functionality in toolsets, and without specifying
-# more target variations. In turn the modifiers can be used as building
-# blocks to implement simple requests, like the <version> feature.
+# orthogonal way to the functionality in toolsets, and without specifying more
+# target variations. In turn the modifiers can be used as building blocks to
+# implement simple requests, like the <version> feature.
 
 import modules ;
 import feature ;
@@ -190,12 +191,14 @@
     {
         local match = [ MATCH "<match>(.*)" : $(modifier-spec) ] ;
         local name-parts = [ MATCH $(match) : $(name) ] ;
- local insertions = [ sequence.insertion-sort [ MATCH "(<[0123456789]+>.*)" : $(modifier-spec) ] ] ;
+ local insertions = [ sequence.insertion-sort [ MATCH
+ "(<[0123456789]+>.*)" : $(modifier-spec) ] ] ;
         local new-name-parts ;
         local insert-position = 1 ;
         while $(insertions)
         {
- local insertion = [ MATCH "<$(insert-position)>(.*)" : $(insertions[1]) ] ;
+ local insertion = [ MATCH "<$(insert-position)>(.*)" :
+ $(insertions[1]) ] ;
             if $(insertion)
             {
                 new-name-parts += $(insertion) ;
@@ -218,14 +221,15 @@
 feature.feature name-modify : no yes : incidental optional ;
 generators.register [ new name-modifier ] ;
 
-# Translates <version> property to a set of modification properties
-# that are applied by the name-modifier, and symlink-modifier.
+# Translates <version> property to a set of modification properties that are
+# applied by the name-modifier, and symlink-modifier.
 #
 rule version-to-modifier ( property : properties * )
 {
     return
         <name-modify>yes
- <name-modifier><match>"^([^.]*)(.*)" <name-modifier><2>.$(property:G=)
+ <name-modifier><match>"^([^.]*)(.*)"
+ <name-modifier><2>.$(property:G=)
             <name-modifier><symlink>yes
         ;
 }

Modified: trunk/tools/build/v2/build/readme.txt
==============================================================================
--- trunk/tools/build/v2/build/readme.txt (original)
+++ trunk/tools/build/v2/build/readme.txt 2012-09-17 06:09:25 EDT (Mon, 17 Sep 2012)
@@ -1,13 +1,11 @@
-Copyright 2001, 2002 Dave Abrahams
-Copyright 2002 Vladimir Prus
-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 2001, 2002 Dave Abrahams
+Copyright 2002 Vladimir Prus
+Distributed under the Boost Software License, Version 1.0.
+(See accompanying file LICENSE_1_0.txt or copy at
+http://www.boost.org/LICENSE_1_0.txt)
 
 Development code for new build system. To run unit tests for jam code, execute:
 
   bjam --debug --build-system=test
 
 Comprehensive tests require Python. See ../test/readme.txt
-
-
-


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