diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 73d899b9..7f12f19e 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -3985,7 +3985,6 @@ def is_repo_file(filename, for_gpg_signing=False): b'categories.txt', b'entry.jar', b'index-v1.jar', - b'index-v2.jar', b'index.css', b'index.html', b'index.jar', diff --git a/fdroidserver/deploy.py b/fdroidserver/deploy.py index cecf8c65..1ca90ab4 100644 --- a/fdroidserver/deploy.py +++ b/fdroidserver/deploy.py @@ -62,7 +62,6 @@ def _get_index_excludes(repo_section): os.path.join(repo_section, 'index-v1.jar'), os.path.join(repo_section, 'index-v1.json'), os.path.join(repo_section, 'index-v1.json.asc'), - os.path.join(repo_section, 'index-v2.jar'), os.path.join(repo_section, 'index-v2.json'), os.path.join(repo_section, 'index-v2.json.asc'), os.path.join(repo_section, 'index.jar'), diff --git a/tests/common.TestCase b/tests/common.TestCase index b36cdcd1..a5d8daf1 100755 --- a/tests/common.TestCase +++ b/tests/common.TestCase @@ -2470,7 +2470,6 @@ class CommonTest(unittest.TestCase): 'repo/entry.json', 'repo/index-v1.jar', 'repo/index-v1.json', - 'repo/index-v2.jar', 'repo/index-v2.json', 'repo/index.css', 'repo/index.html', diff --git a/tests/deploy.TestCase b/tests/deploy.TestCase index 046dcc2b..70030e4d 100755 --- a/tests/deploy.TestCase +++ b/tests/deploy.TestCase @@ -69,8 +69,6 @@ class DeployTest(unittest.TestCase): '--exclude', 'repo/index-v1.json.asc', '--exclude', - 'repo/index-v2.jar', - '--exclude', 'repo/index-v2.json', '--exclude', 'repo/index-v2.json.asc', @@ -166,8 +164,6 @@ class DeployTest(unittest.TestCase): '--exclude', 'archive/index-v1.json.asc', '--exclude', - 'archive/index-v2.jar', - '--exclude', 'archive/index-v2.json', '--exclude', 'archive/index-v2.json.asc',