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 2016/06/27 16:58:04 UTC

[1/6] lucene-solr:branch_5_5: Simplify backcompat index file name creation

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_5_5 33ef9eb08 -> 4ead2c2bd
  refs/heads/branch_5x 29f559990 -> 67b31c82a
  refs/heads/branch_6_0 5dce97fd5 -> 78189c226
  refs/heads/branch_6_1 8504e02b6 -> f6b0e1968
  refs/heads/branch_6x eb0714363 -> ea344f9c8
  refs/heads/master 36183cad8 -> 1e182d81d


Simplify backcompat index file name creation


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/4ead2c2b
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/4ead2c2b
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/4ead2c2b

Branch: refs/heads/branch_5_5
Commit: 4ead2c2bd24af062f6013fdc0b606d4019c7e7b0
Parents: 33ef9eb
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jun 27 12:56:17 2016 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jun 27 12:56:17 2016 -0400

----------------------------------------------------------------------
 dev-tools/scripts/addBackcompatIndexes.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4ead2c2b/dev-tools/scripts/addBackcompatIndexes.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/addBackcompatIndexes.py b/dev-tools/scripts/addBackcompatIndexes.py
index 8a8b5b2..543fad6 100644
--- a/dev-tools/scripts/addBackcompatIndexes.py
+++ b/dev-tools/scripts/addBackcompatIndexes.py
@@ -36,10 +36,7 @@ def create_and_add_index(source, indextype, index_version, current_version, temp
   else:
     dirname = indextype
   prefix = 'index' if current_version.is_back_compat_with(index_version) else 'unsupported'
-  filename = {
-    'cfs': '%s.%s-cfs.zip',
-    'nocfs': '%s.%s-nocfs.zip'
-  }[indextype] % (prefix, index_version)
+  filename = '%s.%s-%s.zip' % (prefix, index_version, indextype)
   print('  creating %s...' % filename, end='', flush=True)
   module = 'backward-codecs'
   index_dir = os.path.join('lucene', module, 'src/test/org/apache/lucene/index')


[4/6] lucene-solr:branch_6_1: Simplify backcompat index file name creation

Posted by sa...@apache.org.
Simplify backcompat index file name creation


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/f6b0e196
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/f6b0e196
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/f6b0e196

Branch: refs/heads/branch_6_1
Commit: f6b0e1968818a8fe9d3e45c30f87759a91666b3f
Parents: 8504e02
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jun 27 12:56:17 2016 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jun 27 12:56:55 2016 -0400

----------------------------------------------------------------------
 dev-tools/scripts/addBackcompatIndexes.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/f6b0e196/dev-tools/scripts/addBackcompatIndexes.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/addBackcompatIndexes.py b/dev-tools/scripts/addBackcompatIndexes.py
index 8a8b5b2..543fad6 100644
--- a/dev-tools/scripts/addBackcompatIndexes.py
+++ b/dev-tools/scripts/addBackcompatIndexes.py
@@ -36,10 +36,7 @@ def create_and_add_index(source, indextype, index_version, current_version, temp
   else:
     dirname = indextype
   prefix = 'index' if current_version.is_back_compat_with(index_version) else 'unsupported'
-  filename = {
-    'cfs': '%s.%s-cfs.zip',
-    'nocfs': '%s.%s-nocfs.zip'
-  }[indextype] % (prefix, index_version)
+  filename = '%s.%s-%s.zip' % (prefix, index_version, indextype)
   print('  creating %s...' % filename, end='', flush=True)
   module = 'backward-codecs'
   index_dir = os.path.join('lucene', module, 'src/test/org/apache/lucene/index')


[6/6] lucene-solr:master: Simplify backcompat index file name creation

Posted by sa...@apache.org.
Simplify backcompat index file name creation


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/1e182d81
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/1e182d81
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/1e182d81

Branch: refs/heads/master
Commit: 1e182d81db140ad4d8db86fb7a49a97476c779e4
Parents: 36183ca
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jun 27 12:56:17 2016 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jun 27 12:57:40 2016 -0400

----------------------------------------------------------------------
 dev-tools/scripts/addBackcompatIndexes.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/1e182d81/dev-tools/scripts/addBackcompatIndexes.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/addBackcompatIndexes.py b/dev-tools/scripts/addBackcompatIndexes.py
index 8a8b5b2..543fad6 100644
--- a/dev-tools/scripts/addBackcompatIndexes.py
+++ b/dev-tools/scripts/addBackcompatIndexes.py
@@ -36,10 +36,7 @@ def create_and_add_index(source, indextype, index_version, current_version, temp
   else:
     dirname = indextype
   prefix = 'index' if current_version.is_back_compat_with(index_version) else 'unsupported'
-  filename = {
-    'cfs': '%s.%s-cfs.zip',
-    'nocfs': '%s.%s-nocfs.zip'
-  }[indextype] % (prefix, index_version)
+  filename = '%s.%s-%s.zip' % (prefix, index_version, indextype)
   print('  creating %s...' % filename, end='', flush=True)
   module = 'backward-codecs'
   index_dir = os.path.join('lucene', module, 'src/test/org/apache/lucene/index')


[2/6] lucene-solr:branch_5x: Simplify backcompat index file name creation

Posted by sa...@apache.org.
Simplify backcompat index file name creation


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/67b31c82
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/67b31c82
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/67b31c82

Branch: refs/heads/branch_5x
Commit: 67b31c82a0695f57e77f2489d74ac568f7629186
Parents: 29f5599
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jun 27 12:56:17 2016 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jun 27 12:56:33 2016 -0400

----------------------------------------------------------------------
 dev-tools/scripts/addBackcompatIndexes.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/67b31c82/dev-tools/scripts/addBackcompatIndexes.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/addBackcompatIndexes.py b/dev-tools/scripts/addBackcompatIndexes.py
index 8a8b5b2..543fad6 100644
--- a/dev-tools/scripts/addBackcompatIndexes.py
+++ b/dev-tools/scripts/addBackcompatIndexes.py
@@ -36,10 +36,7 @@ def create_and_add_index(source, indextype, index_version, current_version, temp
   else:
     dirname = indextype
   prefix = 'index' if current_version.is_back_compat_with(index_version) else 'unsupported'
-  filename = {
-    'cfs': '%s.%s-cfs.zip',
-    'nocfs': '%s.%s-nocfs.zip'
-  }[indextype] % (prefix, index_version)
+  filename = '%s.%s-%s.zip' % (prefix, index_version, indextype)
   print('  creating %s...' % filename, end='', flush=True)
   module = 'backward-codecs'
   index_dir = os.path.join('lucene', module, 'src/test/org/apache/lucene/index')


[3/6] lucene-solr:branch_6_0: Simplify backcompat index file name creation

Posted by sa...@apache.org.
Simplify backcompat index file name creation


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/78189c22
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/78189c22
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/78189c22

Branch: refs/heads/branch_6_0
Commit: 78189c226bc3338695e86595a2b011a47c8cb479
Parents: 5dce97f
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jun 27 12:56:17 2016 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jun 27 12:56:47 2016 -0400

----------------------------------------------------------------------
 dev-tools/scripts/addBackcompatIndexes.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/78189c22/dev-tools/scripts/addBackcompatIndexes.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/addBackcompatIndexes.py b/dev-tools/scripts/addBackcompatIndexes.py
index 8a8b5b2..543fad6 100644
--- a/dev-tools/scripts/addBackcompatIndexes.py
+++ b/dev-tools/scripts/addBackcompatIndexes.py
@@ -36,10 +36,7 @@ def create_and_add_index(source, indextype, index_version, current_version, temp
   else:
     dirname = indextype
   prefix = 'index' if current_version.is_back_compat_with(index_version) else 'unsupported'
-  filename = {
-    'cfs': '%s.%s-cfs.zip',
-    'nocfs': '%s.%s-nocfs.zip'
-  }[indextype] % (prefix, index_version)
+  filename = '%s.%s-%s.zip' % (prefix, index_version, indextype)
   print('  creating %s...' % filename, end='', flush=True)
   module = 'backward-codecs'
   index_dir = os.path.join('lucene', module, 'src/test/org/apache/lucene/index')


[5/6] lucene-solr:branch_6x: Simplify backcompat index file name creation

Posted by sa...@apache.org.
Simplify backcompat index file name creation


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/ea344f9c
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/ea344f9c
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/ea344f9c

Branch: refs/heads/branch_6x
Commit: ea344f9c8fe83201794c6ecf3976b0a96359783d
Parents: eb07143
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jun 27 12:56:17 2016 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jun 27 12:57:28 2016 -0400

----------------------------------------------------------------------
 dev-tools/scripts/addBackcompatIndexes.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/ea344f9c/dev-tools/scripts/addBackcompatIndexes.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/addBackcompatIndexes.py b/dev-tools/scripts/addBackcompatIndexes.py
index 8a8b5b2..543fad6 100644
--- a/dev-tools/scripts/addBackcompatIndexes.py
+++ b/dev-tools/scripts/addBackcompatIndexes.py
@@ -36,10 +36,7 @@ def create_and_add_index(source, indextype, index_version, current_version, temp
   else:
     dirname = indextype
   prefix = 'index' if current_version.is_back_compat_with(index_version) else 'unsupported'
-  filename = {
-    'cfs': '%s.%s-cfs.zip',
-    'nocfs': '%s.%s-nocfs.zip'
-  }[indextype] % (prefix, index_version)
+  filename = '%s.%s-%s.zip' % (prefix, index_version, indextype)
   print('  creating %s...' % filename, end='', flush=True)
   module = 'backward-codecs'
   index_dir = os.path.join('lucene', module, 'src/test/org/apache/lucene/index')