コード例 #1
0
def __payload():
    from earlymod import util
    return util.git_build_clone(
        url="https://github.com/mottosso/rez-localz.git",
        branch="master",
        tag="0f7a472b25f0a333ad080bbc42a6140249cb8838",
    )
コード例 #2
0
ファイル: package.py プロジェクト: davidlatwe/rez-ozark
def __payload():
    from earlymod import util
    return util.git_build_clone(
        url="https://github.com/mottosso/Qt.py.git",
        branch="master",
        tag="1.2.6",
    )
コード例 #3
0
ファイル: package.py プロジェクト: davidlatwe/rez-ozark
def __payload():
    from earlymod import util
    return util.git_build_clone(
        url="https://github.com/davidlatwe/rez-pipz.git",
        branch="dev",
        tag="39a78981ae5e6c4dee3d5820064ffeb5006b1003",
    )
コード例 #4
0
ファイル: package.py プロジェクト: davidlatwe/rez-park
def __payload():
    from earlymod import util
    return util.git_build_clone(
        url="https://github.com/davidlatwe/avalon-sftpc.git",
        branch="master",
        tag="535ac3cf8362d633cf49227a388e04c99dfe3c69",
    )
コード例 #5
0
ファイル: package.py プロジェクト: davidlatwe/rez-park
def __payload():
    from earlymod import util

    def get_version(data):
        import subprocess
        data["version"] = subprocess.check_output(
            ["python", "setup.py", "--version"],
            universal_newlines=True,
            cwd=data["repo"],
        ).strip()

    return util.git_build_clone(
        url="https://github.com/pyblish/pyblish-base.git",
        branch="master",
        tag="1.8.7",
        callbacks=[get_version])
コード例 #6
0
def __payload():
    from earlymod import util

    def get_version(data):
        import subprocess
        data["version"] = subprocess.check_output(
            ["python", "setup.py", "--version"],
            universal_newlines=True,
            cwd=data["repo"],
        ).strip()

    return util.git_build_clone(
        url="https://github.com/MoonShineVFX/pyblish-qml.git",
        branch="production",
        tag="7939aaf0cf7f60c005f1de35083168e76ef2c54f",
        callbacks=[get_version]
    )
コード例 #7
0
ファイル: package.py プロジェクト: davidlatwe/rez-ozark
def __payload():
    from earlymod import util

    def get_version(data):
        import subprocess
        data["version"] = subprocess.check_output(
            ["python", "setup.py", "--version"],
            universal_newlines=True,
            cwd=data["repo"],
        ).strip()

    return util.git_build_clone(
        url="https://github.com/davidlatwe/allzpark.git",
        branch="dev",
        tag="1efe2b087d088ce8f1452d23bcc59021bfc092b4",
        callbacks=[get_version]
    )