|
41 | 41 |
|
42 | 42 | BINTRAY_SNAPSHOT_SERVER_PATH = "https://oss.jfrog.org/artifactory/oss-snapshot-local" |
43 | 43 | BINTRAY_RELEASE_SERVER_PATH = "https://oss.jfrog.org/artifactory/oss-release-local" |
44 | | -BINTRAY_MAVEN_GROUP_PATH = "/org/github/alberthdev/cemu/" |
| 44 | +BINTRAY_MAVEN_GROUP_PATH = "/org/github/CE-Programming/CEmu/" |
45 | 45 | MAX_ATTEMPTS = 5 |
46 | 46 | SHA256_STRICT = False |
47 | 47 |
|
@@ -329,8 +329,8 @@ def dl_and_validate(url): |
329 | 329 | if check_url(url + ".sha256"): |
330 | 330 | dlfile(url + ".sha256") |
331 | 331 | else: |
332 | | - # https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/alberthdev/cemu/appveyor-qt/Qt5.12.0_Rel_Static_Win32_DevDeploy.7z |
333 | | - # https://oss.jfrog.org/api/storage/oss-snapshot-local/org/github/alberthdev/cemu/appveyor-qt/Qt5.12.0_Rel_Static_Win32_DevDeploy.7z |
| 332 | + # https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/CE-Programming/CEmu/appveyor-qt/Qt5.15.0_Rel_Static_Win32_DevDeploy.7z |
| 333 | + # https://oss.jfrog.org/api/storage/oss-snapshot-local/org/github/CE-Programming/CEmu/appveyor-qt/Qt5.15.0_Rel_Static_Win32_DevDeploy.7z |
334 | 334 | url_parsed = urlparse(url) |
335 | 335 | if url_parsed.netloc == "oss.jfrog.org" and url_parsed.path.startswith("/artifactory"): |
336 | 336 | file_info_json_url = url.replace("://oss.jfrog.org/artifactory/", "://oss.jfrog.org/api/storage/") |
@@ -395,14 +395,14 @@ def extract(filename): |
395 | 395 |
|
396 | 396 | def install_deps(): |
397 | 397 | print(" * Attempting to download dependencies...") |
398 | | - dl_and_validate('https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/alberthdev/cemu/appveyor-qt/Qt5.12.0_Rel_Static_Win32_DevDeploy.7z.001') |
399 | | - dl_and_validate('https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/alberthdev/cemu/appveyor-qt/Qt5.12.0_Rel_Static_Win32_DevDeploy.7z.002') |
400 | | - dl_and_validate('https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/alberthdev/cemu/appveyor-qt/Qt5.12.0_Rel_Static_Win64_DevDeploy.7z.001') |
401 | | - dl_and_validate('https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/alberthdev/cemu/appveyor-qt/Qt5.12.0_Rel_Static_Win64_DevDeploy.7z.002') |
| 398 | + dl_and_validate('https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/CE-Programming/CEmu/appveyor-qt/Qt5.15.0_Rel_Static_Win32_DevDeploy.7z.001') |
| 399 | + dl_and_validate('https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/CE-Programming/CEmu/appveyor-qt/Qt5.15.0_Rel_Static_Win32_DevDeploy.7z.002') |
| 400 | + dl_and_validate('https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/CE-Programming/CEmu/appveyor-qt/Qt5.15.0_Rel_Static_Win64_DevDeploy.7z.001') |
| 401 | + dl_and_validate('https://oss.jfrog.org/artifactory/oss-snapshot-local/org/github/CE-Programming/CEmu/appveyor-qt/Qt5.15.0_Rel_Static_Win64_DevDeploy.7z.002') |
402 | 402 |
|
403 | 403 | print(" * Attempting to install dependencies...") |
404 | | - extract('Qt5.12.0_Rel_Static_Win32_DevDeploy.7z.001') |
405 | | - extract('Qt5.12.0_Rel_Static_Win64_DevDeploy.7z.001') |
| 404 | + extract('Qt5.15.0_Rel_Static_Win32_DevDeploy.7z.001') |
| 405 | + extract('Qt5.15.0_Rel_Static_Win64_DevDeploy.7z.001') |
406 | 406 |
|
407 | 407 | print(" * Successfully installed build dependencies!") |
408 | 408 |
|
@@ -670,36 +670,36 @@ def deploy_snapshots(): |
670 | 670 | # Release |
671 | 671 | collect_static_main_files("x86 Static", os.path.join("build_static_32", "release"), os.path.join("deploy_static", "release32"), |
672 | 672 | #extra_wc = { |
673 | | - # "EGL Library" : r"C:\Qt\Qt5.12.0-static\bin\libEGL.dll", |
674 | | - # "GLESv2 Library" : r"C:\Qt\Qt5.12.0-static\bin\libGLESv2.dll", |
675 | | - # "DirectX Compiler Library" : r"C:\Qt\5.12.0\msvc2015\bin\d3dcompiler_*.dll", |
676 | | - # "Mesa OpenGL Software Rendering Library" : r"C:\Qt\5.12.0\msvc2015\bin\opengl32sw.dll", |
| 673 | + # "EGL Library" : r"C:\Qt\Qt5.15.0-static\bin\libEGL.dll", |
| 674 | + # "GLESv2 Library" : r"C:\Qt\Qt5.15.0-static\bin\libGLESv2.dll", |
| 675 | + # "DirectX Compiler Library" : r"C:\Qt\5.15.0\msvc2015\bin\d3dcompiler_*.dll", |
| 676 | + # "Mesa OpenGL Software Rendering Library" : r"C:\Qt\5.15.0\msvc2015\bin\opengl32sw.dll", |
677 | 677 | # } |
678 | 678 | ) |
679 | 679 | collect_static_main_files("x64 Static", os.path.join("build_static_64", "release"), os.path.join("deploy_static", "release64"), |
680 | 680 | #extra_wc = { |
681 | | - # "EGL Library" : r"C:\Qt\Qt5.12.0x64-static\bin\libEGL.dll", |
682 | | - # "GLESv2 Library" : r"C:\Qt\Qt5.12.0x64-static\bin\libGLESv2.dll", |
683 | | - # "DirectX Compiler Library" : r"C:\Qt\5.12.0\msvc2015_64\bin\d3dcompiler_*.dll", |
684 | | - # "Mesa OpenGL Software Rendering Library" : r"C:\Qt\5.12.0\msvc2015_64\bin\opengl32sw.dll", |
| 681 | + # "EGL Library" : r"C:\Qt\Qt5.15.0x64-static\bin\libEGL.dll", |
| 682 | + # "GLESv2 Library" : r"C:\Qt\Qt5.15.0x64-static\bin\libGLESv2.dll", |
| 683 | + # "DirectX Compiler Library" : r"C:\Qt\5.15.0\msvc2015_64\bin\d3dcompiler_*.dll", |
| 684 | + # "Mesa OpenGL Software Rendering Library" : r"C:\Qt\5.15.0\msvc2015_64\bin\opengl32sw.dll", |
685 | 685 | # } |
686 | 686 | ) |
687 | 687 |
|
688 | 688 | # Debug |
689 | 689 | collect_static_main_files("x86 Static Debug", os.path.join("build_static_32", "debug"), os.path.join("deploy_static", "release32_debug"), |
690 | 690 | #extra_wc = { |
691 | | - # "EGL Library" : r"C:\Qt\Qt5.12.0-static\bin\libEGLd.dll", |
692 | | - # "GLESv2 Library" : r"C:\Qt\Qt5.12.0-static\bin\libGLESv2d.dll", |
693 | | - # "DirectX Compiler Library" : r"C:\Qt\5.12.0\msvc2015\bin\d3dcompiler_*.dll", |
694 | | - # "Mesa OpenGL Software Rendering Library" : r"C:\Qt\5.12.0\msvc2015\bin\opengl32sw.dll", |
| 691 | + # "EGL Library" : r"C:\Qt\Qt5.15.0-static\bin\libEGLd.dll", |
| 692 | + # "GLESv2 Library" : r"C:\Qt\Qt5.15.0-static\bin\libGLESv2d.dll", |
| 693 | + # "DirectX Compiler Library" : r"C:\Qt\5.15.0\msvc2015\bin\d3dcompiler_*.dll", |
| 694 | + # "Mesa OpenGL Software Rendering Library" : r"C:\Qt\5.15.0\msvc2015\bin\opengl32sw.dll", |
695 | 695 | # } |
696 | 696 | ) |
697 | 697 | collect_static_main_files("x64 Static Debug", os.path.join("build_static_64", "debug"), os.path.join("deploy_static", "release64_debug"), |
698 | 698 | #extra_wc = { |
699 | | - # "EGL Library" : r"C:\Qt\Qt5.12.0x64-static\bin\libEGLd.dll", |
700 | | - # "GLESv2 Library" : r"C:\Qt\Qt5.12.0x64-static\bin\libGLESv2d.dll", |
701 | | - # "DirectX Compiler Library" : r"C:\Qt\5.12.0\msvc2015_64\bin\d3dcompiler_*.dll", |
702 | | - # "Mesa OpenGL Software Rendering Library" : r"C:\Qt\5.12.0\msvc2015_64\bin\opengl32sw.dll", |
| 699 | + # "EGL Library" : r"C:\Qt\Qt5.15.0x64-static\bin\libEGLd.dll", |
| 700 | + # "GLESv2 Library" : r"C:\Qt\Qt5.15.0x64-static\bin\libGLESv2d.dll", |
| 701 | + # "DirectX Compiler Library" : r"C:\Qt\5.15.0\msvc2015_64\bin\d3dcompiler_*.dll", |
| 702 | + # "Mesa OpenGL Software Rendering Library" : r"C:\Qt\5.15.0\msvc2015_64\bin\opengl32sw.dll", |
703 | 703 | # } |
704 | 704 | ) |
705 | 705 |
|
|
0 commit comments