Re: svn commit: r1084324 - in /lucene/dev/branches/branch_3x: lucene/build.xml solr/build.xml solr/common-build.xml

2011-03-22 Thread Uwe Schindler
Thanks, we should add this rev also to the 3.1.1 issue still open. Maybe we get 
another rc, we can merge then earlier.
--
Uwe Schindler
H.-H.-Meier-Allee 63, 28213 Bremen
http://www.thetaphi.de



sar...@apache.org schrieb:

Author: sarowe Date: Tue Mar 22 19:50:05 2011 New Revision: 1084324 URL: 
http://svn.apache.org/viewvc?rev=1084324view=rev Log: use ${svn.exe} property 
instead of directly calling svn executable Modified: 
lucene/dev/branches/branch_3x/lucene/build.xml 
lucene/dev/branches/branch_3x/solr/build.xml 
lucene/dev/branches/branch_3x/solr/common-build.xml Modified: 
lucene/dev/branches/branch_3x/lucene/build.xml URL: 
http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/build.xml?rev=1084324r1=1084323r2=1084324view=diff_
--- lucene/dev/branches/branch_3x/lucene/build.xml (original) +++ 
lucene/dev/branches/branch_3x/lucene/build.xml Tue Mar 22 19:50:05 2011 @@ 
-373,7 +373,7 @@ target name=svn-export-source depends=get-svn-info 
delete dir=${svn.export.dir} includeemptydirs=true failonerror=false/ 
mkdir dir=${build.dir}/ - exec dir=. executable=svn 
failonerror=true + exec dir=. executable=${svn.exe} failonerror=true 
arg value=export/ arg value=--native-eol/ arg value=LF/ @@ -388,7 
+388,7 @@ !-- Populates properties svn.URL and svn.Revision using svn info. 
-- !--_
-- target name=get-svn-info - exec dir=. executable=svn 
outputproperty=svn.info failonerror=true + exec dir=. 
executable=${svn.exe} outputproperty=svn.info failonerror=true arg 
value=info/ /exec loadproperties Modified: 
lucene/dev/branches/branch_3x/solr/build.xml URL: 
http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/build.xml?rev=1084324r1=1084323r2=1084324view=diff_
--- lucene/dev/branches/branch_3x/solr/build.xml (original) +++ 
lucene/dev/branches/branch_3x/solr/build.xml Tue Mar 22 19:50:05 2011 @@ -761,7 
+761,7 @@ target name=svn-export-source depends=get-svn-info delete 
dir=${svn.export.dir} includeemptydirs=true failonerror=false/ mkdir 
dir=${dest}/ - exec dir=. executable=svn failonerror=true + exec 
dir=. executable=${svn.exe} failonerror=true arg value=export/ arg 
value=--native-eol/ arg value=LF/ @@ -774,7 +774,7 @@ !-- Populates 
properties svn.URL and svn.Revision using svn info -- target 
name=get-svn-info - exec dir=.. executable=svn 
outputproperty=svn.info failonerror=true + exec dir=.. 
executable=${svn.exe} outputproperty=svn.info failonerror=true arg 
value=info/ /exec loadproperties @@ -874,7 +874,7 @@ /target target 
name=svn-up - exec executable=svn + exec executable=${svn.exe} arg 
value=update/ /exec /target Modified:
lucene/dev/branches/branch_3x/solr/common-build.xml URL: 
http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/common-build.xml?rev=1084324r1=1084323r2=1084324view=diff_
--- lucene/dev/branches/branch_3x/solr/common-build.xml (original) +++ 
lucene/dev/branches/branch_3x/solr/common-build.xml Tue Mar 22 19:50:05 2011 @@ 
-81,6 +81,7 @@ default PATH. (this is useful for Hudson) -- property 
name=svnversion.exe value=svnversion / + property name=svn.exe 
value=svn / !-- Java Version we are compatible with -- property 
name=java.compat.version value=1.5 / 



RE: svn commit: r1084324 - in /lucene/dev/branches/branch_3x: lucene/build.xml solr/build.xml solr/common-build.xml

2011-03-22 Thread Steven A Rowe
I agree – I’ve added it. - Steve

From: Uwe Schindler [mailto:u...@thetaphi.de]
Sent: Tuesday, March 22, 2011 3:54 PM
To: dev@lucene.apache.org
Subject: Re: svn commit: r1084324 - in /lucene/dev/branches/branch_3x: 
lucene/build.xml solr/build.xml solr/common-build.xml

Thanks, we should add this rev also to the 3.1.1 issue still open. Maybe we get 
another rc, we can merge then earlier.
--
Uwe Schindler
H.-H.-Meier-Allee 63, 28213 Bremen
http://www.thetaphi.de


sar...@apache.orgmailto:sar...@apache.org schrieb:
Author: sarowe Date: Tue Mar 22 19:50:05 2011 New Revision: 1084324 URL: 
http://svn.apache.org/viewvc?rev=1084324view=rev Log: use ${svn.exe} property 
instead of directly calling svn executable Modified: 
lucene/dev/branches/branch_3x/lucene/build.xml 
lucene/dev/branches/branch_3x/solr/build.xml 
lucene/dev/branches/branch_3x/solr/common-build.xml Modified: 
lucene/dev/branches/branch_3x/lucene/build.xml URL: 
http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/build.xml?rev=1084324r1=1084323r2=1084324view=diff

--- lucene/dev/branches/branch_3x/lucene/build.xml (original) +++ 
lucene/dev/branches/branch_3x/lucene/build.xml Tue Mar 22 19:50:05 2011 @@ 
-373,7 +373,7 @@ target name=svn-export-source depends=get-svn-info 
delete dir=${svn.export.dir} includeemptydirs=true failonerror=false/ 
mkdir dir=${build.dir}/ - exec dir=. executable=svn 
failonerror=true + exec dir=. executable=${svn.exe} failonerror=true 
arg value=export/ arg value=--native-eol/ arg value=LF/ @@ -388,7 
+388,7 @@ !-- Populates properties svn.URL and svn.Revision using svn info. 
-- !--

-- target name=get-svn-info - exec dir=. executable=svn 
outputproperty=svn.infohttp://svn.info failonerror=true + exec dir=. 
executable=${svn.exe} outputproperty=svn.infohttp://svn.info 
failonerror=true arg value=info/ /exec loadproperties Modified: 
lucene/dev/branches/branch_3x/solr/build.xml URL: 
http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/build.xml?rev=1084324r1=1084323r2=1084324view=diff

--- lucene/dev/branches/branch_3x/solr/build.xml (original) +++ 
lucene/dev/branches/branch_3x/solr/build.xml Tue Mar 22 19:50:05 2011 @@ -761,7 
+761,7 @@ target name=svn-export-source depends=get-svn-info delete 
dir=${svn.export.dir} includeemptydirs=true failonerror=false/ mkdir 
dir=${dest}/ - exec dir=. executable=svn failonerror=true + exec 
dir=. executable=${svn.exe} failonerror=true arg value=export/ arg 
value=--native-eol/ arg value=LF/ @@ -774,7 +774,7 @@ !-- Populates 
properties svn.URL and svn.Revision using svn info -- target 
name=get-svn-info - exec dir=.. executable=svn 
outputproperty=svn.infohttp://svn.info failonerror=true + exec dir=.. 
executable=${svn.exe} outputproperty=svn.infohttp://svn.info 
failonerror=true arg value=info/ /exec loadproperties @@ -874,7 
+874,7 @@ /target target name=svn-up - exec executable=svn + exec 
executable=${svn.exe} arg value=update/ /exec /target Modified: 
lucene/dev/branches/branch_3x/solr/common-build.xml URL: 
http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/common-build.xml?rev=1084324r1=1084323r2=1084324view=diff

--- lucene/dev/branches/branch_3x/solr/common-build.xml (original) +++ 
lucene/dev/branches/branch_3x/solr/common-build.xml Tue Mar 22 19:50:05 2011 @@ 
-81,6 +81,7 @@ default PATH. (this is useful for Hudson) -- property 
name=svnversion.exe value=svnversion / + property name=svn.exe 
value=svn / !-- Java Version we are compatible with -- property 
name=java.compat.version value=1.5 /