converted source releases to git
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"git": [
|
||||
"http://git.artsoft.org/rocksndiamonds.git",
|
||||
"http://git.net-core.org/tome/t-engine4.git",
|
||||
"http://git.pond.sub.org/empserver",
|
||||
"http://repo.or.cz/openal-soft.git",
|
||||
"https://anongit.freedesktop.org/git/pkg-config.git",
|
||||
@@ -35,6 +34,7 @@
|
||||
"https://git.code.sf.net/p/solar-empire/code",
|
||||
"https://git.code.sf.net/p/space-war-2/git",
|
||||
"https://git.code.sf.net/p/stars-nova/code",
|
||||
"https://git.net-core.org/tome/t-engine4.git",
|
||||
"https://git.octaforge.org/engine/octaforge.git",
|
||||
"https://git.savannah.gnu.org/git/adonthell/adonthell-wastesedge.git",
|
||||
"https://git.savannah.gnu.org/git/freedink.git",
|
||||
@@ -274,6 +274,7 @@
|
||||
"https://github.com/tales/tales-client.git",
|
||||
"https://github.com/tarnus/aatraders.git",
|
||||
"https://github.com/tautvilas/epoh.git",
|
||||
"https://github.com/themanaworld/tmwa.git",
|
||||
"https://github.com/thousandparsec/tpclient-pywx.git",
|
||||
"https://github.com/thousandparsec/tpserver-cpp.git",
|
||||
"https://github.com/topherredden/freestars.git",
|
||||
@@ -306,19 +307,26 @@
|
||||
"https://gitlab.com/Trilarion/civilwar.git",
|
||||
"https://gitlab.com/Trilarion/coltoo.git",
|
||||
"https://gitlab.com/Trilarion/conquests.git",
|
||||
"https://gitlab.com/Trilarion/devana.git",
|
||||
"https://gitlab.com/Trilarion/digitalalovestory.git",
|
||||
"https://gitlab.com/Trilarion/dragon-history.git",
|
||||
"https://gitlab.com/Trilarion/dragon-hunt.git",
|
||||
"https://gitlab.com/Trilarion/duelcommander.git",
|
||||
"https://gitlab.com/Trilarion/dungeoncrawl.git",
|
||||
"https://gitlab.com/Trilarion/galaxyng.git",
|
||||
"https://gitlab.com/Trilarion/gm-tools.git",
|
||||
"https://gitlab.com/Trilarion/gwiz.git",
|
||||
"https://gitlab.com/Trilarion/janag.git",
|
||||
"https://gitlab.com/Trilarion/koboldsquest2.git",
|
||||
"https://gitlab.com/Trilarion/kursk.git",
|
||||
"https://gitlab.com/Trilarion/lincity.git",
|
||||
"https://gitlab.com/Trilarion/machinations.git",
|
||||
"https://gitlab.com/Trilarion/mercenarycommander.git",
|
||||
"https://gitlab.com/Trilarion/metalmech.git",
|
||||
"https://gitlab.com/Trilarion/murderpd.git",
|
||||
"https://gitlab.com/Trilarion/openrpgmaker.git",
|
||||
"https://gitlab.com/Trilarion/orient.git",
|
||||
"https://gitlab.com/Trilarion/phaosrpg.git",
|
||||
"https://gitlab.com/Trilarion/pizza-business.git",
|
||||
"https://gitlab.com/Trilarion/planets.git",
|
||||
"https://gitlab.com/Trilarion/promisance.git",
|
||||
@@ -326,16 +334,20 @@
|
||||
"https://gitlab.com/Trilarion/rogueclone.git",
|
||||
"https://gitlab.com/Trilarion/sentient-storage.git",
|
||||
"https://gitlab.com/Trilarion/skrupel.git",
|
||||
"https://gitlab.com/Trilarion/slaygame.git",
|
||||
"https://gitlab.com/Trilarion/spicetrade.git",
|
||||
"https://gitlab.com/Trilarion/tbots.git",
|
||||
"https://gitlab.com/Trilarion/theclans.git",
|
||||
"https://gitlab.com/Trilarion/tuxracer.git",
|
||||
"https://gitlab.com/Trilarion/uwadv.git",
|
||||
"https://gitlab.com/Trilarion/wargamer.git",
|
||||
"https://gitlab.com/Trilarion/watomic.git",
|
||||
"https://gitlab.com/Trilarion/worldofheroes.git",
|
||||
"https://gitlab.com/Trilarion/xconq.git",
|
||||
"https://gitlab.com/Trilarion/zangband.git",
|
||||
"https://gitlab.com/evol/evol-all.git",
|
||||
"https://gitlab.com/freedroid/freedroid-src.git",
|
||||
"https://gitlab.com/manaplus/manaplus.git",
|
||||
"https://gitlab.com/pingus/pingus.git",
|
||||
"https://gitlab.com/solarus-games/zsdx.git",
|
||||
"https://gitlab.com/xonotic/xonotic.git",
|
||||
@@ -380,6 +392,7 @@
|
||||
"https://bitbucket.org/featheredmelody/lost-sky-project-public/src",
|
||||
"https://bitbucket.org/genericcontainer/goblin-camp/src",
|
||||
"https://bitbucket.org/giszmo/glob2",
|
||||
"https://bitbucket.org/mstrobel/supremacy",
|
||||
"https://bitbucket.org/rude/love",
|
||||
"https://bitbucket.org/sumwars/sumwars-code/src"
|
||||
],
|
||||
|
@@ -167,6 +167,8 @@ def run(type, urls):
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
supported_types = ['git', 'hg', 'svn'] # currently no bzr client installed
|
||||
|
||||
folder_name = {
|
||||
'git': git_folder_name,
|
||||
'svn': svn_folder_name,
|
||||
@@ -196,8 +198,7 @@ if __name__ == '__main__':
|
||||
archives = json.loads(text)
|
||||
|
||||
for type in archives:
|
||||
# currently no bzr checkout (problems with the repos)
|
||||
if type == 'bzr':
|
||||
if type not in supported_types:
|
||||
continue
|
||||
urls = archives[type]
|
||||
run(type, urls)
|
||||
|
Reference in New Issue
Block a user