You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2014/04/22 14:20:28 UTC

svn commit: r1589106 - in /lucene/dev/branches/branch_4x: ./ dev-tools/ dev-tools/scripts/buildAndPushRelease.py

Author: uschindler
Date: Tue Apr 22 12:20:27 2014
New Revision: 1589106

URL: http://svn.apache.org/r1589106
Log:
Merged revision(s) 1589105 from lucene/dev/trunk:
Create staging URL without https, because it makes smoketester take much longer. Also remove obsolete extra changes dir

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/dev-tools/   (props changed)
    lucene/dev/branches/branch_4x/dev-tools/scripts/buildAndPushRelease.py

Modified: lucene/dev/branches/branch_4x/dev-tools/scripts/buildAndPushRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/dev-tools/scripts/buildAndPushRelease.py?rev=1589106&r1=1589105&r2=1589106&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/dev-tools/scripts/buildAndPushRelease.py (original)
+++ lucene/dev/branches/branch_4x/dev-tools/scripts/buildAndPushRelease.py Tue Apr 22 12:20:27 2014
@@ -181,7 +181,7 @@ def push(version, root, rev, rcNum, user
   run('ssh %s@people.apache.org "chmod -R a+rX-w public_html/staging_area/%s"' % (username, dir))
 
   print('  done!')
-  url = 'https://people.apache.org/~%s/staging_area/%s' % (username, dir)
+  url = 'http://people.apache.org/~%s/staging_area/%s' % (username, dir)
   return url
 
 def pushLocal(version, root, rev, rcNum, localDir):
@@ -202,8 +202,6 @@ def pushLocal(version, root, rev, rcNum,
   print('    unzip...')
   run('tar xjf "%s/lucene/dist/lucene.tar.bz2"' % root)
   os.remove('%s/lucene/dist/lucene.tar.bz2' % root)
-  print('    copy changes...')
-  run('cp -r "%s/lucene/build/docs/changes" changes-%s' % (root, version))
 
   print('  Solr')
   os.chdir('%s/solr/package' % root)