mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03:00
Drop svn support in favour of git-svn
Reasons: * Cloning a svn repo via svn doesn't fetch the entire history * Svn checkout is incredibly slow * Svn doesn't have important features such as a 'clean' command The only reason why we kept svn was for anonymous logins to repositories. This is no longer a reason since git-svn also supports them.
This commit is contained in:
parent
13987b5c77
commit
78ff22d952
4 changed files with 6 additions and 56 deletions
|
@ -40,8 +40,6 @@ def main():
|
|||
help="Spew out even more information than normal")
|
||||
parser.add_option("-q", "--quiet", action="store_true", default=False,
|
||||
help="Restrict output to warnings and errors")
|
||||
parser.add_option("--nosvn", action="store_true", default=False,
|
||||
help="Skip svn repositories - for test purposes, because they are too slow.")
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
config = common.read_config(options)
|
||||
|
@ -67,8 +65,6 @@ def main():
|
|||
if not app['builds']:
|
||||
logging.info("Skipping %s: no builds specified" % app['id'])
|
||||
continue
|
||||
elif options.nosvn and app['Repo Type'] == 'svn':
|
||||
continue
|
||||
|
||||
logging.info("Processing " + app['id'])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue