You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2013/01/17 00:29:25 UTC

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

Author: sarowe
Date: Wed Jan 16 23:29:25 2013
New Revision: 1434490

URL: http://svn.apache.org/viewvc?rev=1434490&view=rev
Log:
LUCENE-4442: No longer need to copy changes or KEYS, since they are both now handled by 'ant prepare-release' (merged lucene_solr_4_1 r1434487)

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=1434490&r1=1434489&r2=1434490&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/dev-tools/scripts/buildAndPushRelease.py (original)
+++ lucene/dev/branches/branch_4x/dev-tools/scripts/buildAndPushRelease.py Wed Jan 16 23:29:25 2013
@@ -133,9 +133,6 @@ def push(version, root, rev, rcNum, user
   print('    unzip...')
   run('ssh %s@people.apache.org "cd public_html/staging_area/%s/lucene; tar xjf lucene.tar.bz2; rm -f lucene.tar.bz2"' % (username, dir))
   os.remove('lucene.tar.bz2')
-  print('    copy changes...')
-  os.chdir('..')
-  run('scp -r build/docs/changes %s@people.apache.org:public_html/staging_area/%s/lucene/changes-%s' % (username, dir, version))
 
   print('  Solr')
   os.chdir('%s/solr/package' % root)
@@ -149,14 +146,6 @@ def push(version, root, rev, rcNum, user
   run('ssh %s@people.apache.org "cd public_html/staging_area/%s/solr; tar xjf solr.tar.bz2; rm -f solr.tar.bz2"' % (username, dir))
   os.remove('solr.tar.bz2')
 
-  print('  KEYS')
-  run('wget http://people.apache.org/keys/group/lucene.asc')
-  os.rename('lucene.asc', 'KEYS')
-  run('chmod a+r-w KEYS')
-  run('scp KEYS %s@people.apache.org:public_html/staging_area/%s/lucene' % (username, dir))
-  run('scp KEYS %s@people.apache.org:public_html/staging_area/%s/solr' % (username, dir))
-  os.remove('KEYS')
-
   print('  chmod...')
   run('ssh %s@people.apache.org "chmod -R a+rX-w public_html/staging_area/%s"' % (username, dir))