Skip to content

Commit

Permalink
continuing with the Boo => Boo.Lang dance
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.codehaus.org/boo/trunk@1561 2c1201b4-01cd-e047-a400-b836ae1fbc61
  • Loading branch information
bamboo committed May 4, 2005
1 parent 5f77666 commit 04ef4a7
Show file tree
Hide file tree
Showing 34 changed files with 1,170 additions and 1,164 deletions.
14 changes: 7 additions & 7 deletions default.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project name="boo" default="all">

<property name="boo.major.minor.release.version" value="0.5.4" />
<property name="boo.svn.revision" value="1554" />
<property name="boo.svn.revision" value="1560" />
<property name="boo.version" value="${boo.major.minor.release.version}.${boo.svn.revision}" dynamic="true" />

<property name="debug" value="true" />
Expand Down Expand Up @@ -180,7 +180,7 @@
</exec>
</target>

<target name="core" depends="Boo.Lang, Boo.Lang.Compiler, Boo.Lang.Parser, Boo.CodeDom">
<target name="core" depends="Boo.Lang, Boo.Lang.Compiler, Boo.Lang.Parser, Boo.Lang.CodeDom">
</target>

<target name="update-bin" depends="all">
Expand All @@ -193,7 +193,7 @@
<include name="Boo.Lang.Compiler.dll" />
<include name="Boo.Lang.Interpreter.dll" />
<include name="Boo.NAnt.Tasks.dll" />
<include name="Boo.CodeDom.dll" />
<include name="Boo.Lang.CodeDom.dll" />
<include name="booc.exe" />
<include name="booc.rsp" />
<include name="booi.exe" />
Expand All @@ -202,13 +202,13 @@
</copy>
</target>

<target name="Boo.CodeDom" depends="Boo.Lang.Compiler">
<target name="Boo.Lang.CodeDom" depends="Boo.Lang.Compiler">
<csc target="library"
output="build/Boo.CodeDom.dll"
output="build/Boo.Lang.CodeDom.dll"
debug="${debug}"
optimize="${optimize}">

<sources basedir="src/Boo.CodeDom">
<sources basedir="src/Boo.Lang.CodeDom">
<include name="**/*.cs" />
</sources>

Expand Down Expand Up @@ -324,7 +324,7 @@

<exec program="gacutil" useruntimeengine="false" workingdir="build">
<arg value="/i" />
<arg value="Boo.CodeDom.dll" />
<arg value="Boo.Lang.CodeDom.dll" />
<arg value="/package" />
<arg value="boo" />
<arg value="/root" />
Expand Down
8 changes: 4 additions & 4 deletions examples/asp.net/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

<property name="boo.dir" value="${path::get-full-path('../../bin')}" />

<property name="Boo.dll" value="${boo.dir}/Boo.dll" />
<property name="Boo.Lang.dll" value="${boo.dir}/Boo.Lang.dll" />
<property name="Boo.Lang.Compiler.dll" value="${boo.dir}/Boo.Lang.Compiler.dll" />
<property name="Boo.CodeDom.dll" value="${boo.dir}/Boo.CodeDom.dll" />
<property name="Boo.Lang.CodeDom.dll" value="${boo.dir}/Boo.Lang.CodeDom.dll" />
<property name="Boo.Lang.Parser.dll" value="${boo.dir}/Boo.Lang.Parser.dll" />
<property name="Boo.NAnt.Tasks.dll" value="${boo.dir}/Boo.NAnt.Tasks.dll" />

Expand All @@ -19,10 +19,10 @@
<mkdir dir="output" />
<mkdir dir="output/bin" />
<copy todir="output" file="web.config" />
<copy todir="output/bin" file="${Boo.dll}" />
<copy todir="output/bin" file="${Boo.Lang.dll}" />
<copy todir="output/bin" file="${Boo.Lang.Compiler.dll}" />
<copy todir="output/bin" file="${Boo.Lang.Parser.dll}" />
<copy todir="output/bin" file="${Boo.CodeDom.dll}" />
<copy todir="output/bin" file="${Boo.Lang.CodeDom.dll}" />

<loadtasks assembly="${Boo.NAnt.Tasks.dll}" />

Expand Down
2 changes: 1 addition & 1 deletion examples/blog/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<copy todir="build/web/bin">
<fileset basedir="build">
<includes name="Boo.dll" />
<includes name="Boo.Lang.dll" />
<includes name="BooLog.dll" />
<includes name="Bamboo.Prevalence.dll" />
</fileset>
Expand Down
2 changes: 1 addition & 1 deletion examples/db4o/books/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<mkdir dir="build" />
<copy todir="build">
<fileset basedir="${boo.bin}">
<include name="Boo.dll" />
<include name="Boo.Lang.dll" />
</fileset>
</copy>
<copy todir="build">
Expand Down
2 changes: 1 addition & 1 deletion examples/db4o/timetracker/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<mkdir dir="build" />
<copy todir="build">
<fileset basedir="${boo.bin}">
<include name="Boo.dll" />
<include name="Boo.Lang.dll" />
<include name="Boo.Lang.Compiler.dll" />
<include name="Boo.Lang.Parser.dll" />
<include name="Boo.Lang.Interpreter.dll" />
Expand Down
2 changes: 1 addition & 1 deletion examples/pipeline/HelloPipeline/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<copy todir="build">
<fileset basedir="${boo.dir}">
<include name="Boo.dll" />
<include name="Boo.Lang.dll" />
<include name="Boo.Lang.Compiler.dll" />
<include name="Boo.Lang.Parser.dll" />
<include name="Boo.NAnt.Tasks.dll" />
Expand Down
2 changes: 1 addition & 1 deletion examples/pipeline/StyleChecker/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<copy todir="build">
<fileset basedir="${boo.dir}">
<include name="Boo.dll" />
<include name="Boo.Lang.dll" />
<include name="Boo.Lang.Compiler.dll" />
<include name="Boo.Lang.Parser.dll" />
<include name="Boo.NAnt.Tasks.dll" />
Expand Down
2 changes: 1 addition & 1 deletion examples/pipeline/Trace/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<copy todir="build">
<fileset basedir="${boo.dir}">
<include name="Boo.dll" />
<include name="Boo.Lang.dll" />
<include name="Boo.Lang.Compiler.dll" />
<include name="Boo.Lang.Parser.dll" />
<include name="Boo.NAnt.Tasks.dll" />
Expand Down
2 changes: 1 addition & 1 deletion examples/remoting/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<mkdir dir="build" />
<copy todir="build">
<fileset basedir="../../bin">
<include name="Boo.dll" />
<include name="Boo.Lang.dll" />
</fileset>
</copy>
<loadtasks assembly="../../bin/Boo.NAnt.Tasks.dll" />
Expand Down
6 changes: 3 additions & 3 deletions extras/SharpDevelop/BooBinding/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@

<copy todir="${addin.dir}">
<fileset basedir="${boo.dir}">
<include name="Boo.dll" />
<include name="Boo.Lang.dll" />
<include name="Boo.Lang.Compiler.dll" />
<include name="Boo.Lang.Parser.dll" />
<include name="Boo.Lang.Interpreter.dll" />
<include name="Boo.CodeDom.dll" />
<include name="Boo.Lang.CodeDom.dll" />
<include name="booc.exe" />
<include name="booc.rsp" />
</fileset>
Expand All @@ -69,7 +69,7 @@
<include name="${addin.dir}/Boo.Lang.Compiler.dll" />
<include name="${addin.dir}/Boo.Lang.Parser.dll" />
<include name="${addin.dir}/Boo.Lang.Interpreter.dll" />
<include name="${addin.dir}/Boo.CodeDom.dll" />
<include name="${addin.dir}/Boo.Lang.CodeDom.dll" />
<include name="${addin.dir}/booish.gui.exe" />
</references>
<sources basedir=".">
Expand Down
2 changes: 1 addition & 1 deletion extras/SharpDevelop/BooBinding/src/AssemblyInfo.boo
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import System.Runtime.CompilerServices
[assembly: AssemblyProduct("SharpDevelop")]
[assembly: AssemblyCopyright("(c) 2004 Daniel Grunwald")]

[assembly: AssemblyVersion("0.5.4.1554")]
[assembly: AssemblyVersion("0.5.4.1560")]

[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
4 changes: 2 additions & 2 deletions extras/SharpDevelop/BooBinding/src/BooDesigner.boo
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import ICSharpCode.TextEditor.Document
import System.CodeDom
import System.CodeDom.Compiler

import Boo.CodeDom
import Boo.Lang.CodeDom
import ICSharpCode.SharpDevelop.FormDesigner

class BooDesignerDisplayBinding(AbstractFormDesignerSecondaryDisplayBinding):
Expand Down Expand Up @@ -129,7 +129,7 @@ class BooDesignerDisplayBindingWrapper(FormDesignerDisplayBindingBase, ISecondar

protected override def CreateDesignerHost():
super.CreateDesignerHost()
host.AddService(typeof(CodeDomProvider), Boo.CodeDom.BooCodeProvider()) //Boo.CodeDom
host.AddService(typeof(CodeDomProvider), Boo.Lang.CodeDom.BooCodeProvider()) //Boo.CodeDom

_parseErrors as string = null

Expand Down
2 changes: 1 addition & 1 deletion extras/boo.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ libdir=${prefix}/lib
Name: Boo
Description: A wrist friendly language for the CLI
Version: @VERSION@
Libs: -r:${libdir}/mono/boo/Boo.dll -r:${libdir}/mono/boo/Boo.CodeDom.dll -r:${libdir}/mono/boo/Boo.Lang.Compiler.dll -r:${libdir}/mono/boo/Boo.Lang.Parser.dll -r:${libdir}/mono/boo/Boo.Lang.Interpreter.dll
Libs: -r:${libdir}/mono/boo/Boo.Lang.dll -r:${libdir}/mono/boo/Boo.Lang.CodeDom.dll -r:${libdir}/mono/boo/Boo.Lang.Compiler.dll -r:${libdir}/mono/boo/Boo.Lang.Parser.dll -r:${libdir}/mono/boo/Boo.Lang.Interpreter.dll
2 changes: 1 addition & 1 deletion extras/booish.gui/default.build
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<mkdir dir="build" unless="${directory::exists('build')}" />
<copy todir="build">
<fileset basedir="${boo.dir}">
<include name="Boo.dll" />
<include name="Boo.Lang.dll" />
<include name="Boo.Lang.Compiler.dll" />
<include name="Boo.Lang.Parser.dll" />
<include name="Boo.Lang.Interpreter.dll" />
Expand Down
2 changes: 1 addition & 1 deletion extras/boox/booxw/src/AssemblyInfo.boo
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import System.Security.Permissions
[assembly: AssemblyCopyright("(C) 2004 Rodrigo Barreto de Oliveira")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("0.5.4.1554")]
[assembly: AssemblyVersion("0.5.4.1560")]

[assembly: ReflectionPermission(SecurityAction.RequestMinimum,
ReflectionEmit: true,
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The boo programming language
(c) 2003, 2004 Rodrigo Barreto de Oliveira
(c) 2003, 2004, 2005 Rodrigo Barreto de Oliveira
[email protected]

Building
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
[assembly: AssemblyCopyright("(C) 2004 Rodrigo Barreto de Oliveira")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("0.5.4.1554")]
[assembly: AssemblyVersion("0.5.4.1560")]
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("../src/boo.snk")]
[assembly: AssemblyKeyName("")]
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#region license
// Copyright (c) 2004, Rodrigo B. de Oliveira ([email protected])
// All rights reserved.
//
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
Expand All @@ -13,7 +13,7 @@
// * Neither the name of Rodrigo B. de Oliveira nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Expand Down Expand Up @@ -47,7 +47,7 @@
using Boo.Lang.Compiler.Ast;
using Boo.Lang.Compiler.Steps;

namespace Boo.CodeDom
namespace Boo.Lang.CodeDom
{
/// <summary>
/// ICodeCompiler implementation for Boo.
Expand All @@ -64,7 +64,7 @@ public CompilerResults CompileAssemblyFromDom(
return CompileAssemblyFromDomBatch(options,
new CodeCompileUnit [] {e});
}
public CompilerResults CompileAssemblyFromDomBatch(
public CompilerResults CompileAssemblyFromDomBatch(
CompilerParameters options, CodeCompileUnit [] ea)
{
string[] fileNames = new string [ea.Length];
Expand Down Expand Up @@ -98,7 +98,7 @@ public CompilerResults CompileAssemblyFromDomBatch(
return CompileAssemblyFromFileBatch (options, fileNames);
}

public CompilerResults CompileAssemblyFromFile(
public CompilerResults CompileAssemblyFromFile(
CompilerParameters options, string fileName)
{
return CompileAssemblyFromFileBatch (options, new string [] {fileName});
Expand Down
Loading

0 comments on commit 04ef4a7

Please sign in to comment.