2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Bump bjam version.

[SVN r21219]
This commit is contained in:
Vladimir Prus
2003-12-11 10:19:42 +00:00
parent 90938dce5d
commit aed5122119
13 changed files with 24 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
Name: boost-jam
Version: 3.1.8
Version: 3.1.9
Summary: Build tool
Release: 1
Source: %{name}-%{version}.tgz

View File

@@ -14,7 +14,7 @@ else { . = "." ; }
# Info about what we are building.
NAME = boost-jam ;
VERSION = 3$(.)1$(.)8 ;
VERSION = 3$(.)1$(.)9 ;
RELEASE = 1 ;
LICENSE = 1_0 ;

View File

@@ -1,3 +1,9 @@
bjam (3.1.9-1) unstable; urgency=low
* Implement NATIVE_FILE builtin and several native rules.
-- Vladimir Prus <ghost@zigzag.lvk.cs.msu.su> Thu, 11 Dec 2003 13:15:26 +0300
bjam (3.1.8-1) unstable; urgency=low
* New upstream release.

View File

@@ -134,7 +134,7 @@
facilitate its use in the Boost Build System, but should be backward
compatible with Perforce Jam.</p>
<p>This is version 3.1.8 of BJam and is based on version 2.4 of Jam/MR:</p>
<p>This is version 3.1.9 of BJam and is based on version 2.4 of Jam/MR:</p>
<pre>
/+\
+\ Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.

View File

@@ -323,7 +323,7 @@ int main( int argc, char **argv, char **arg_environ )
{
/* Pleace don't change the following line. The 'bump_version.py' script
expect a specific format of it. */
char *major_version = "03", *minor_version = "01", *changenum = "08";
char *major_version = "03", *minor_version = "01", *changenum = "09";
var_set( "JAM_VERSION",
list_new( list_new( list_new( L0, newstr( major_version ) ),
newstr( minor_version ) ),

View File

@@ -1,5 +1,5 @@
/* Keep JAMVERSYM in sync with VERSION. */
/* It can be accessed as $(JAMVERSION) in the Jamfile. */
#define VERSION "3.1.8"
#define VERSION "3.1.9"
#define JAMVERSYM "JAMVERSION=3.1"

View File

@@ -1,5 +1,5 @@
Name: boost-jam
Version: 3.1.8
Version: 3.1.9
Summary: Build tool
Release: 1
Source: %{name}-%{version}.tgz

View File

@@ -14,7 +14,7 @@ else { . = "." ; }
# Info about what we are building.
NAME = boost-jam ;
VERSION = 3$(.)1$(.)8 ;
VERSION = 3$(.)1$(.)9 ;
RELEASE = 1 ;
LICENSE = 1_0 ;

View File

@@ -1,3 +1,9 @@
bjam (3.1.9-1) unstable; urgency=low
* Implement NATIVE_FILE builtin and several native rules.
-- Vladimir Prus <ghost@zigzag.lvk.cs.msu.su> Thu, 11 Dec 2003 13:15:26 +0300
bjam (3.1.8-1) unstable; urgency=low
* New upstream release.

View File

@@ -134,7 +134,7 @@
facilitate its use in the Boost Build System, but should be backward
compatible with Perforce Jam.</p>
<p>This is version 3.1.8 of BJam and is based on version 2.4 of Jam/MR:</p>
<p>This is version 3.1.9 of BJam and is based on version 2.4 of Jam/MR:</p>
<pre>
/+\
+\ Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.

View File

@@ -323,7 +323,7 @@ int main( int argc, char **argv, char **arg_environ )
{
/* Pleace don't change the following line. The 'bump_version.py' script
expect a specific format of it. */
char *major_version = "03", *minor_version = "01", *changenum = "08";
char *major_version = "03", *minor_version = "01", *changenum = "09";
var_set( "JAM_VERSION",
list_new( list_new( list_new( L0, newstr( major_version ) ),
newstr( minor_version ) ),

View File

@@ -1,5 +1,5 @@
/* Keep JAMVERSYM in sync with VERSION. */
/* It can be accessed as $(JAMVERSION) in the Jamfile. */
#define VERSION "3.1.8"
#define VERSION "3.1.9"
#define JAMVERSYM "JAMVERSION=3.1"

View File

@@ -6,9 +6,9 @@
# First of all, check the jam version
if $(JAM_VERSION:J="") < 030108
if $(JAM_VERSION:J="") < 030109
{
ECHO "error: Boost.Jam version 3.1.8 or later required" ;
ECHO "error: Boost.Jam version 3.1.9 or later required" ;
EXIT ;
}