You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2006/08/09 15:33:02 UTC

svn commit: r430050 - /incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml

Author: tellison
Date: Wed Aug  9 06:33:00 2006
New Revision: 430050

URL: http://svn.apache.org/viewvc?rev=430050&view=rev
Log:
Don't stop building if svn info is unavailable.

Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml

Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml?rev=430050&r1=430049&r2=430050&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml Wed Aug  9 06:33:00 2006
@@ -272,7 +272,7 @@
     </target>
 
     <target name="-svn-prop" depends="-svn-detect" if="svn.available">
-        <exec executable="svn">
+        <exec executable="svn" failifexecutionfails="false">
             <arg value="info" />
             <redirector outputproperty="svn.info">
                 <outputfilterchain>



Re: svn commit: r430050 - /incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml

Posted by Alexei Zakharov <al...@gmail.com>.
> Hopefully this fixes it for Alexei.  If it doesn't cause more havoc I'll
> promote it to make/property.xml and apply it to all modules.

Thanks Tim, everything is fine now.

With Best Regards,

2006/8/9, Tim Ellison <t....@gmail.com>:
> Just saw your note after committing a further tweak.
>
> I thought the same thing, but did it in a slightly different way.  We
> could play like this for hours :-)
>
> Hopefully this fixes it for Alexei.  If it doesn't cause more havoc I'll
> promote it to make/property.xml and apply it to all modules.
>
> Regards,
> Tim
>
> Mark Hindess wrote:
> > On 9 August 2006 at 13:33, tellison@apache.org wrote:
> >> Author: tellison
> >> Date: Wed Aug  9 06:33:00 2006
> >> New Revision: 430050
> >>
> >> URL: http://svn.apache.org/viewvc?rev=430050&view=rev
> >> Log:
> >> Don't stop building if svn info is unavailable.
> >>
> >> Modified:
> >>     incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
> >>
> >> Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
> >> URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/m
> >> odules/luni/build.xml?rev=430050&r1=430049&r2=430050&view=diff
> >> =============================================================================
> >> =
> >> --- incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml (origina
> >> l)
> >> +++ incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml Wed Aug
> >>  9 06:33:00 2006
> >> @@ -272,7 +272,7 @@
> >>      </target>
> >>
> >>      <target name="-svn-prop" depends="-svn-detect" if="svn.available">
> >> -        <exec executable="svn">
> >> +        <exec executable="svn" failifexecutionfails="false">
> >>              <arg value="info" />
> >>              <redirector outputproperty="svn.info">
> >>                  <outputfilterchain>
> >>
> >
> > Now you've changed this I wonder if we need the svn-detect/svn.available
> > check at all?  We might just do:
> >
> >     <target name="-svn-prop">
> >         <exec executable="svn" failifexecutionfails="false"
> >               resultproperty="svn.res" >
> >             <arg value="info" />
> >             <redirector outputproperty="svn.info.tmp">
> >                 <outputfilterchain>
> >                     <linecontainsregexp>
> >                         <regexp pattern="Repository Root:|Revision:" />
> >                     </linecontainsregexp>
> >                     <tokenfilter>
> >                         <replacestring from="Repository Root: " to=""/>
> >                         <replacestring from="Revision: " to=" "/>
> >                     </tokenfilter>
> >                     <striplinebreaks/>
> >                 </outputfilterchain>
> >             </redirector>
> >         </exec>
> >         <condition property="svn.info" value="${svn.info.tmp}" >
> >             <equals arg1="${svn.res}" arg2="0" />
> >         </condition>
> >         <property name="svn.info" value="Unknown" />
> >     </target>
> >
> > This sets it to Unknown even in the case of .svn being there and the
> > executable being missing.
> >
> > Incidentally, my "svn info" doesn't have a "Repository Root:" line?
> >
> > Regards,
> >  Mark.
>
> Tim Ellison (t.p.ellison@gmail.com)
> IBM Java technology centre, UK.



-- 
Alexei Zakharov,
Intel Middleware Product Division

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: svn commit: r430050 - /incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml

Posted by Mark Hindess <ma...@googlemail.com>.
On 9 August 2006 at 15:53, Tim Ellison <t....@gmail.com> wrote:
>
> Just saw your note after committing a further tweak.
> 
> I thought the same thing, but did it in a slightly different way.  We
> could play like this for hours :-)

I tried something like the way you did it first... but... that ends up
with "svn.info" set to "svn: '.' is not a working copy" for the case
where 'svn' executable is available but .svn is not.

-Mark.

> Hopefully this fixes it for Alexei.  If it doesn't cause more havoc I'll
> promote it to make/property.xml and apply it to all modules.
> 
> Regards,
> Tim
> 
> Mark Hindess wrote:
> > On 9 August 2006 at 13:33, tellison@apache.org wrote:
> >> Author: tellison
> >> Date: Wed Aug  9 06:33:00 2006
> >> New Revision: 430050
> >>
> >> URL: http://svn.apache.org/viewvc?rev=430050&view=rev
> >> Log:
> >> Don't stop building if svn info is unavailable.
> >>
> >> Modified:
> >>     incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
> >>
> >> Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
> >> URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trun
> k/m
> >> odules/luni/build.xml?rev=430050&r1=430049&r2=430050&view=diff
> >> ==========================================================================
> ===
> >> =
> >> --- incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml (orig
> ina
> >> l)
> >> +++ incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml Wed A
> ug 
> >>  9 06:33:00 2006
> >> @@ -272,7 +272,7 @@
> >>      </target>
> >>  
> >>      <target name="-svn-prop" depends="-svn-detect" if="svn.available">
> >> -        <exec executable="svn">
> >> +        <exec executable="svn" failifexecutionfails="false">
> >>              <arg value="info" />
> >>              <redirector outputproperty="svn.info">
> >>                  <outputfilterchain>
> >>
> > 
> > Now you've changed this I wonder if we need the svn-detect/svn.available
> > check at all?  We might just do:
> > 
> >     <target name="-svn-prop">
> >         <exec executable="svn" failifexecutionfails="false"
> >               resultproperty="svn.res" >
> >             <arg value="info" />
> >             <redirector outputproperty="svn.info.tmp">
> >                 <outputfilterchain>
> >                     <linecontainsregexp>
> >                         <regexp pattern="Repository Root:|Revision:" />
> >                     </linecontainsregexp>
> >                     <tokenfilter>
> >                         <replacestring from="Repository Root: " to=""/>
> >                         <replacestring from="Revision: " to=" "/>
> >                     </tokenfilter>
> >                     <striplinebreaks/>
> >                 </outputfilterchain>
> >             </redirector>
> >         </exec>
> >         <condition property="svn.info" value="${svn.info.tmp}" >
> >             <equals arg1="${svn.res}" arg2="0" />
> >         </condition>
> >         <property name="svn.info" value="Unknown" />
> >     </target>
> > 
> > This sets it to Unknown even in the case of .svn being there and the 
> > executable being missing.
> > 
> > Incidentally, my "svn info" doesn't have a "Repository Root:" line?
> > 
> > Regards,
> >  Mark.
> > 
> > 
> > 
> > ---------------------------------------------------------------------
> > Terms of use : http://incubator.apache.org/harmony/mailing.html
> > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> > For additional commands, e-mail: harmony-dev-help@incubator.apache.org
> > 
> > 
> 
> -- 
> 
> Tim Ellison (t.p.ellison@gmail.com)
> IBM Java technology centre, UK.
> 
> ---------------------------------------------------------------------
> Terms of use : http://incubator.apache.org/harmony/mailing.html
> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> For additional commands, e-mail: harmony-dev-help@incubator.apache.org



---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: svn commit: r430050 - /incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml

Posted by Tim Ellison <t....@gmail.com>.
Just saw your note after committing a further tweak.

I thought the same thing, but did it in a slightly different way.  We
could play like this for hours :-)

Hopefully this fixes it for Alexei.  If it doesn't cause more havoc I'll
promote it to make/property.xml and apply it to all modules.

Regards,
Tim

Mark Hindess wrote:
> On 9 August 2006 at 13:33, tellison@apache.org wrote:
>> Author: tellison
>> Date: Wed Aug  9 06:33:00 2006
>> New Revision: 430050
>>
>> URL: http://svn.apache.org/viewvc?rev=430050&view=rev
>> Log:
>> Don't stop building if svn info is unavailable.
>>
>> Modified:
>>     incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
>>
>> Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
>> URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/m
>> odules/luni/build.xml?rev=430050&r1=430049&r2=430050&view=diff
>> =============================================================================
>> =
>> --- incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml (origina
>> l)
>> +++ incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml Wed Aug 
>>  9 06:33:00 2006
>> @@ -272,7 +272,7 @@
>>      </target>
>>  
>>      <target name="-svn-prop" depends="-svn-detect" if="svn.available">
>> -        <exec executable="svn">
>> +        <exec executable="svn" failifexecutionfails="false">
>>              <arg value="info" />
>>              <redirector outputproperty="svn.info">
>>                  <outputfilterchain>
>>
> 
> Now you've changed this I wonder if we need the svn-detect/svn.available
> check at all?  We might just do:
> 
>     <target name="-svn-prop">
>         <exec executable="svn" failifexecutionfails="false"
>               resultproperty="svn.res" >
>             <arg value="info" />
>             <redirector outputproperty="svn.info.tmp">
>                 <outputfilterchain>
>                     <linecontainsregexp>
>                         <regexp pattern="Repository Root:|Revision:" />
>                     </linecontainsregexp>
>                     <tokenfilter>
>                         <replacestring from="Repository Root: " to=""/>
>                         <replacestring from="Revision: " to=" "/>
>                     </tokenfilter>
>                     <striplinebreaks/>
>                 </outputfilterchain>
>             </redirector>
>         </exec>
>         <condition property="svn.info" value="${svn.info.tmp}" >
>             <equals arg1="${svn.res}" arg2="0" />
>         </condition>
>         <property name="svn.info" value="Unknown" />
>     </target>
> 
> This sets it to Unknown even in the case of .svn being there and the 
> executable being missing.
> 
> Incidentally, my "svn info" doesn't have a "Repository Root:" line?
> 
> Regards,
>  Mark.
> 
> 
> 
> ---------------------------------------------------------------------
> Terms of use : http://incubator.apache.org/harmony/mailing.html
> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> For additional commands, e-mail: harmony-dev-help@incubator.apache.org
> 
> 

-- 

Tim Ellison (t.p.ellison@gmail.com)
IBM Java technology centre, UK.

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: svn commit: r430050 - /incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml

Posted by Mark Hindess <ma...@googlemail.com>.
On 9 August 2006 at 13:33, tellison@apache.org wrote:
> Author: tellison
> Date: Wed Aug  9 06:33:00 2006
> New Revision: 430050
> 
> URL: http://svn.apache.org/viewvc?rev=430050&view=rev
> Log:
> Don't stop building if svn info is unavailable.
> 
> Modified:
>     incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
> 
> Modified: incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml
> URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/m
> odules/luni/build.xml?rev=430050&r1=430049&r2=430050&view=diff
> =============================================================================
> =
> --- incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml (origina
> l)
> +++ incubator/harmony/enhanced/classlib/trunk/modules/luni/build.xml Wed Aug 
>  9 06:33:00 2006
> @@ -272,7 +272,7 @@
>      </target>
>  
>      <target name="-svn-prop" depends="-svn-detect" if="svn.available">
> -        <exec executable="svn">
> +        <exec executable="svn" failifexecutionfails="false">
>              <arg value="info" />
>              <redirector outputproperty="svn.info">
>                  <outputfilterchain>
> 

Now you've changed this I wonder if we need the svn-detect/svn.available
check at all?  We might just do:

    <target name="-svn-prop">
        <exec executable="svn" failifexecutionfails="false"
              resultproperty="svn.res" >
            <arg value="info" />
            <redirector outputproperty="svn.info.tmp">
                <outputfilterchain>
                    <linecontainsregexp>
                        <regexp pattern="Repository Root:|Revision:" />
                    </linecontainsregexp>
                    <tokenfilter>
                        <replacestring from="Repository Root: " to=""/>
                        <replacestring from="Revision: " to=" "/>
                    </tokenfilter>
                    <striplinebreaks/>
                </outputfilterchain>
            </redirector>
        </exec>
        <condition property="svn.info" value="${svn.info.tmp}" >
            <equals arg1="${svn.res}" arg2="0" />
        </condition>
        <property name="svn.info" value="Unknown" />
    </target>

This sets it to Unknown even in the case of .svn being there and the 
executable being missing.

Incidentally, my "svn info" doesn't have a "Repository Root:" line?

Regards,
 Mark.



---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org