Version and compatibility updates

This commit is contained in:
Jeremy Rimpo
2020-09-08 12:13:16 -05:00
parent dc283726b9
commit 0a53f9c433
4 changed files with 24 additions and 22 deletions
+17 -17
View File
@@ -81,38 +81,38 @@ config = {
# manualy set all versions
'7zip_version': '19.00',
'boost_version': '1.73.0',
'boost_version': '1.74.0',
'boost_version_tag': '',
'fmt_version': '6.2.0',
'fmt_version': '7.0.3',
'googletest_version': '1.8.0', # unused. We use the latest source
'grep_version': '3.3',
'icu_version': '66',
'icu_version_minor': '1',
'loot_version': '0.15.2',
'loot_commit': 'g3baa0e8',
'loot_branch': 'master',
'loot_version': '0.16.1',
'loot_commit': 'gd8c9b98',
'loot_branch': '0.16.1',
'lz4_version': '1.9.2',
'lz4_version_minor': '', # leave empty if no patch version (1.2.3.x)
'nasm_version': '2.14.02',
'nuget_version': '4.9.3',
'nmm_version': '0.71.2',
'openssl_version': '1.1.1g',
'pyqt_version': '5.14.2',
'pyqt_pypi_hash': '4d/81/b9a66a28fb9a7bbeb60e266f06ebc4703e7e42b99e3609bf1b58ddd232b9',
'pyqt_version': '5.15.0',
'pyqt_pypi_hash': '8c/90/82c62bbbadcca98e8c6fa84f1a638de1ed1c89e85368241e9cc43fcbc320',
'pyqt_dev_version': '', # leave empty for a standard release
'pyqt_builder_version': '1.3.2',
'pyqt_sip_version': '12.7.2',
'pyqt_builder_version': '1.5.0',
'pyqt_sip_version': '12.8.1',
'python_version': '3.8',
'python_version_minor': '.2',
'python_version_minor': '.5',
'bzip2_version': '1.0.6', # For python
'sip_version': '5.2.0',
'sip_version': '5.4.0',
'sip_dev_version': '', # leave empty for a standard release
'spdlog_version': 'v1.5.0',
'qt_version': '5.14',
'qt_version_minor': '2',
'qt_version_appveyor': '5.14',
'qt_version_minor_appveyor': '2',
'qt_vc_version': '15.0',
'spdlog_version': 'v1.8.0',
'qt_version': '5.15',
'qt_version_minor': '0',
'qt_version_appveyor': '5.15',
'qt_version_minor_appveyor': '0',
'qt_vc_version': '16.0',
'vc_platformtoolset': 'v142',
'vc_TargetPlatformVersion': '10.0.18362.0',
'vc_version': '16.0',
+1 -1
View File
@@ -1,6 +1,6 @@
--- builder.py (date 1575938575861)
+++ builder.py (date 1575938575861)
@@ -402,17 +402,29 @@
@@ -379,17 +379,29 @@
'QMAKE_LFLAGS += -Wl,--version-script={}.exp'.format(
buildable.target))
+1 -1
View File
@@ -22,5 +22,5 @@ from unibuild.modules import cmake, github, build
Project("GTest") \
.depend(cmake.CMake().arguments(["-DCMAKE_BUILD_TYPE={0}".format(config["build_type"])])
.depend(github.Source("google", "googletest", "master", commit="07d4a6e93de43ab47f5a5a3994009f53360e06c8")))
.depend(github.Source("google", "googletest", "master")))
#.depend(github.Source("google", "googletest", "release-{}".format(googletest_version))))
+5 -3
View File
@@ -47,15 +47,17 @@ def copy_stylesheets(context, dir):
copytree_fixed(src, dst)
return True
def create_stylesheet_project(author, name, filename, extension="7z"):
def create_stylesheet_project(author, name, filename=None, extension="7z"):
version = "v" + config[name + "_version"]
if filename is None:
filename = config[name + "_version"]
dir = name + "-" + version
Project(name) \
.depend(build.Execute(lambda context: copy_stylesheets(context, dir))
.depend(github.Release(author, name, version, filename, extension)))
create_stylesheet_project("6788-00", "paper-light-and-dark", "6.0")
create_stylesheet_project("6788-00", "paper-light-and-dark")
create_stylesheet_project("6788-00", "paper-automata", "Paper-Automata")
create_stylesheet_project("6788-00", "paper-mono", "Paper-Mono")
create_stylesheet_project("6788-00", "1809-dark-mode", "2.0")
create_stylesheet_project("6788-00", "1809-dark-mode")