1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Fixing ORM version.

This commit is contained in:
Jonathan H. Wage 2010-05-26 11:47:01 -04:00
parent 113097ffd0
commit 43df6eb989
3 changed files with 83 additions and 25 deletions

View file

@ -30,7 +30,7 @@ if (file_exists($configFile)) {
$helperSet = ($helperSet) ?: new \Symfony\Components\Console\Helper\HelperSet(); $helperSet = ($helperSet) ?: new \Symfony\Components\Console\Helper\HelperSet();
$cli = new \Symfony\Components\Console\Application('Doctrine Command Line Interface', Doctrine\Common\Version::VERSION); $cli = new \Symfony\Components\Console\Application('Doctrine Command Line Interface', Doctrine\ORM\Version::VERSION);
$cli->setCatchExceptions(true); $cli->setCatchExceptions(true);
$cli->setHelperSet($helperSet); $cli->setHelperSet($helperSet);
$cli->addCommands(array( $cli->addCommands(array(

View file

@ -11,8 +11,8 @@
<taskdef classname="phing.tasks.ext.d51PearPkg2Task" name="d51pearpkg2" /> <taskdef classname="phing.tasks.ext.d51PearPkg2Task" name="d51pearpkg2" />
<property file="build.properties" /> <property file="build.properties" />
<!-- <!--
Fileset for artifacts shared across all distributed packages. Fileset for artifacts shared across all distributed packages.
--> -->
<fileset id="shared-artifacts" dir="."> <fileset id="shared-artifacts" dir=".">
@ -27,35 +27,35 @@
<include name="doctrine.php"/> <include name="doctrine.php"/>
</fileset> </fileset>
<!-- <!--
Fileset for the sources of the Doctrine Common dependency. Fileset for the sources of the Doctrine Common dependency.
--> -->
<fileset id="common-sources" dir="./lib"> <fileset id="common-sources" dir="./lib">
<include name="Doctrine/Common/**"/> <include name="Doctrine/Common/**"/>
</fileset> </fileset>
<!-- <!--
Fileset for the sources of the Doctrine DBAL dependency. Fileset for the sources of the Doctrine DBAL dependency.
--> -->
<fileset id="dbal-sources" dir="./lib"> <fileset id="dbal-sources" dir="./lib">
<include name="Doctrine/DBAL/**"/> <include name="Doctrine/DBAL/**"/>
</fileset> </fileset>
<!-- <!--
Fileset for the sources of the Doctrine ORM. Fileset for the sources of the Doctrine ORM.
--> -->
<fileset id="orm-sources" dir="./lib"> <fileset id="orm-sources" dir="./lib">
<include name="Doctrine/ORM/**"/> <include name="Doctrine/ORM/**"/>
</fileset> </fileset>
<!-- <!--
Fileset for source of the Symfony YAML and Console components. Fileset for source of the Symfony YAML and Console components.
--> -->
<fileset id="symfony-sources" dir="./lib/vendor"> <fileset id="symfony-sources" dir="./lib/vendor">
<include name="Symfony/Components/**"/> <include name="Symfony/Components/**"/>
</fileset> </fileset>
<!-- <!--
Fileset for the Doctrine ORM tools + sandbox. Fileset for the Doctrine ORM tools + sandbox.
--> -->
<fileset id="orm-tools" dir="."> <fileset id="orm-tools" dir=".">
@ -69,6 +69,9 @@
<include name="tools/sandbox/index.php"/> <include name="tools/sandbox/index.php"/>
</fileset> </fileset>
<!--
Clean the directory for the next build.
-->
<target name="clean"> <target name="clean">
<available file="./build.properties" property="build_properties_exist" value="true"/> <available file="./build.properties" property="build_properties_exist" value="true"/>
<fail unless="build_properties_exist" message="The build.properties file is missing." /> <fail unless="build_properties_exist" message="The build.properties file is missing." />
@ -78,6 +81,9 @@
<delete dir="${report.dir}" includeemptydirs="true" /> <delete dir="${report.dir}" includeemptydirs="true" />
</target> </target>
<!--
Prepare the new build directories after cleaning
-->
<target name="prepare" depends="clean"> <target name="prepare" depends="clean">
<phingcall target="resolve-dependencies"/> <phingcall target="resolve-dependencies"/>
<echo msg="Creating build directory: ${build.dir}" /> <echo msg="Creating build directory: ${build.dir}" />
@ -89,9 +95,9 @@
<mkdir dir="${build.dir}/logs"/> <mkdir dir="${build.dir}/logs"/>
<mkdir dir="${report.dir}/tests"/> <mkdir dir="${report.dir}/tests"/>
</target> </target>
<!-- <!--
Builds all packages, preparing them for distribution. Builds ORM package, preparing it for distribution.
--> -->
<target name="build-orm" depends="test"> <target name="build-orm" depends="test">
<copy todir="${build.dir}/orm"> <copy todir="${build.dir}/orm">
@ -109,15 +115,16 @@
<copy todir="${build.dir}/orm/bin"> <copy todir="${build.dir}/orm/bin">
<fileset refid="bin-scripts"/> <fileset refid="bin-scripts"/>
</copy> </copy>
<exec command="sed 's/${version}-DEV/${version}/' ${build.dir}/orm/Doctrine/ORM/Version.php > ${build.dir}/orm/Doctrine/ORM/Version2.php" passthru="true" />
<exec command="mv ${build.dir}/orm/Doctrine/ORM/Version2.php ${build.dir}/orm/Doctrine/ORM/Version.php" passthru="true" />
</target> </target>
<target name="build" depends="test, build-orm"/> <target name="build" depends="test, build-orm"/>
<!-- <!--
Runs the full test suite. Runs the full test suite.
--> -->
<target name="test" depends="prepare"> <target name="test" depends="prepare">
<if><equals arg1="${test.phpunit_generate_coverage}" arg2="1" /> <if><equals arg1="${test.phpunit_generate_coverage}" arg2="1" />
<then> <then>
<property name="test.phpunit_coverage_file" value="${build.dir}/logs/clover.xml" /> <property name="test.phpunit_coverage_file" value="${build.dir}/logs/clover.xml" />
@ -126,7 +133,7 @@
<property name="test.phpunit_coverage_file" value="false" /> <property name="test.phpunit_coverage_file" value="false" />
</else> </else>
</if> </if>
<nativephpunit <nativephpunit
testfile="./tests/Doctrine/Tests/AllTests.php" junitlogfile="${build.dir}/logs/testsuites.xml" testfile="./tests/Doctrine/Tests/AllTests.php" junitlogfile="${build.dir}/logs/testsuites.xml"
testdirectory="./tests" coverageclover="${test.phpunit_coverage_file}" configuration="${test.phpunit_configuration_file}" testdirectory="./tests" coverageclover="${test.phpunit_coverage_file}" configuration="${test.phpunit_configuration_file}"
@ -135,7 +142,6 @@
<nativephpunit testfile="./tests/Doctrine/Tests/ORM/Performance/AllTests.php" testdirectory="./tests" haltonfailure="false" haltonerror="false" /> <nativephpunit testfile="./tests/Doctrine/Tests/ORM/Performance/AllTests.php" testdirectory="./tests" haltonfailure="false" haltonerror="false" />
<tstamp/> <tstamp/>
<!--<svnlastrevision svnpath="${svn.path}" workingcopy="." propertyname="svn.lastrevision"/>-->
<copy file="${build.dir}/logs/testsuites.xml" tofile="${log.archive.dir}/latest/log.xml" overwrite="true"/> <copy file="${build.dir}/logs/testsuites.xml" tofile="${log.archive.dir}/latest/log.xml" overwrite="true"/>
<if><equals arg1="${test.pmd_reports}" arg2="1" /> <if><equals arg1="${test.pmd_reports}" arg2="1" />
@ -149,11 +155,10 @@
</if> </if>
</target> </target>
<!-- <!--
Builds distributable PEAR packages. Builds distributable PEAR packages.
--> -->
<target name="build-packages" depends="build-orm"> <target name="build-packages" depends="build-orm">
<d51pearpkg2 baseinstalldir="/" dir="${build.dir}/orm"> <d51pearpkg2 baseinstalldir="/" dir="${build.dir}/orm">
<name>DoctrineORM</name> <name>DoctrineORM</name>
<summary>Doctrine Object Relational Mapper</summary> <summary>Doctrine Object Relational Mapper</summary>
@ -180,8 +185,6 @@
</release> </release>
</d51pearpkg2> </d51pearpkg2>
<exec command="pear package" dir="${build.dir}/orm" passthru="true" /> <exec command="pear package" dir="${build.dir}/orm" passthru="true" />
<exec command="cp DoctrineORM-${version}.tgz ../../dist" dir="${build.dir}/orm" passthru="true" /> <exec command="mv DoctrineORM-${version}.tgz ../../dist" dir="${build.dir}/orm" passthru="true" />
<!--<tar destfile="${dist.dir}/DoctrineORM-${version}.tgz" basedir="${build.dir}/orm" compression="gzip" />-->
</target> </target>
</project>
</project>

View file

@ -0,0 +1,55 @@
<?php
/*
* 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 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace Doctrine\ORM;
/**
* Class to store and retrieve the version of Doctrine
*
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org
* @since 2.0
* @version $Revision$
* @author Benjamin Eberlei <kontakt@beberlei.de>
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
* @author Jonathan Wage <jonwage@gmail.com>
* @author Roman Borschel <roman@code-factory.org>
*/
class Version
{
/**
* Current Doctrine Version
*/
const VERSION = '2.0.0BETA2-DEV';
/**
* Compares a Doctrine version with the current one.
*
* @param string $version Doctrine version to compare.
* @return int Returns -1 if older, 0 if it is the same, 1 if version
* passed as argument is newer.
*/
public static function compare($version)
{
$currentVersion = str_replace(' ', '', strtolower(self::VERSION));
$version = str_replace(' ', '', $version);
return version_compare($version, $currentVersion);
}
}