aedi: switch targets to zdoom github organization

This commit is contained in:
alexey.lysiuk 2022-07-26 10:17:32 +03:00
parent 59a24c3624
commit bb85949507
2 changed files with 6 additions and 6 deletions

View File

@ -525,7 +525,7 @@ class ZMusicTarget(CMakeStaticDependencyTarget):
def prepare_source(self, state: BuildState):
state.download_source(
'https://github.com/coelckers/ZMusic/archive/refs/tags/1.1.10.tar.gz',
'https://github.com/ZDoom/ZMusic/archive/refs/tags/1.1.10.tar.gz',
'378435b35f02a3123ee9e01b5e7990017f9bc1244b788e3bf54b37b34a2985ba')
def detect(self, state: BuildState) -> bool:

View File

@ -121,7 +121,7 @@ class GZDoomTarget(ZDoomVulkanBaseTarget):
super().__init__(name)
def prepare_source(self, state: BuildState):
state.checkout_git('https://github.com/coelckers/gzdoom.git')
state.checkout_git('https://github.com/ZDoom/gzdoom.git')
class QZDoomTarget(ZDoomVulkanBaseTarget):
@ -129,7 +129,7 @@ class QZDoomTarget(ZDoomVulkanBaseTarget):
super().__init__(name)
def prepare_source(self, state: BuildState):
state.checkout_git('https://github.com/madame-rachelle/qzdoom.git')
state.checkout_git('https://github.com/ZDoom/qzdoom.git')
class LZDoomTarget(ZDoomBaseTarget):
@ -157,7 +157,7 @@ class RazeTarget(ZDoomVulkanBaseTarget):
super().__init__(name)
def prepare_source(self, state: BuildState):
state.checkout_git('https://github.com/coelckers/Raze.git')
state.checkout_git('https://github.com/ZDoom/Raze.git')
class AccTarget(CMakeMainTarget):
@ -166,7 +166,7 @@ class AccTarget(CMakeMainTarget):
self.outputs = ('acc',)
def prepare_source(self, state: BuildState):
state.checkout_git('https://github.com/rheit/acc.git')
state.checkout_git('https://github.com/ZDoom/acc.git')
class WadExtTarget(CMakeMainTarget):
@ -175,7 +175,7 @@ class WadExtTarget(CMakeMainTarget):
self.outputs = (name,)
def prepare_source(self, state: BuildState):
state.checkout_git('https://github.com/coelckers/wadext.git')
state.checkout_git('https://github.com/ZDoom/wadext.git')
class PrBoomPlusTarget(CMakeMainTarget):