├── .gitmodules ├── .tag ├── LICENSE.FDL ├── LICENSE.GPL3-EXCEPT ├── LICENSE.GPLv2 ├── LICENSE.GPLv3 ├── LICENSE.LGPLv21 ├── LICENSE.LGPLv3 ├── LICENSE.QT-LICENSE-AGREEMENT ├── Qt 5 for OS2 roadmap.pdf ├── README ├── README.md ├── _clang-format ├── coin ├── README ├── platform_configs │ ├── default.yaml │ ├── flashing-wizard.yaml │ ├── meta-boot2qt.yaml │ ├── ogl-runtime.yaml │ ├── qdb.yaml │ ├── qt3d-runtime.yaml │ ├── qt5.yaml │ ├── qtbase.yaml │ ├── qtconnectivity.yaml │ ├── qtdeclarative.yaml │ ├── qtsaferenderer.yaml │ ├── qtsdk.yaml │ ├── qtwebkit.yaml │ ├── tqtc-qt-config-gui.yaml │ └── tqtc-qt-rta.yaml ├── pre-provisioning │ ├── qtci-windows-10-x86 │ │ ├── README_MANUAL_INSTALLATIONS │ │ ├── disable-defragment.ps1 │ │ ├── disable-ntp.ps1 │ │ ├── disable-schedule-tasks.ps1 │ │ ├── disable-update-orchestrator.ps1 │ │ ├── disable-windefender.ps1 │ │ ├── disable-windows-file-protector.ps1 │ │ ├── disable-windows-update-medic.ps1 │ │ ├── disable-windows-updates.ps1 │ │ ├── msvc2015.txt │ │ ├── msvc2017.txt │ │ ├── msvc2017_build_tools.txt │ │ └── msvc2019.txt │ └── qtci-windows-10-x86_64 │ │ ├── 01-enable-dotnet-framework.ps1 │ │ ├── README_MANUAL_INSTALLATIONS │ │ ├── disable-clean-manager.ps1 │ │ ├── disable-defragment.ps1 │ │ ├── disable-ntp.ps1 │ │ ├── disable-schedule-tasks.ps1 │ │ ├── disable-update-orchestrator.ps1 │ │ ├── disable-windefender.ps1 │ │ ├── disable-windows-file-protector.ps1 │ │ ├── disable-windows-update-medic.ps1 │ │ ├── disable-windows-updates.ps1 │ │ ├── msvc2015_update.txt │ │ ├── msvc2019.txt │ │ └── virtio.txt └── provisioning │ ├── common │ ├── linux │ │ ├── android_linux.sh │ │ ├── apt_wait_loop.sh │ │ ├── cmake_linux.sh │ │ ├── devel_languages_go.SUSE_repo_key.pub │ │ ├── disable-cracklib.sh │ │ ├── disable-mlocate.sh │ │ ├── disable-notifications.sh │ │ ├── disable-ntp_linux.sh │ │ ├── disable_selinux.sh │ │ ├── docker.sh │ │ ├── fbx_linux.sh │ │ ├── gcc.sh │ │ ├── install_dwz.sh │ │ ├── integrity.sh │ │ ├── openssl_for_android_linux.sh │ │ ├── qnx_660.sh │ │ ├── qnx_700.sh │ │ ├── remove-apport.sh │ │ ├── remove-update_notifier.sh │ │ ├── squish-coco.sh │ │ ├── telegraf-coin.conf │ │ ├── ubuntu-version.sh │ │ └── version.sh │ ├── macos │ │ ├── InstallAppFromCompressedFileFromURL.sh │ │ ├── InstallPKGFromURL.sh │ │ ├── cmake.sh │ │ ├── disable-notifications_and_warnings.sh │ │ ├── disable_spotlight.sh │ │ ├── disable_update_downloads.sh │ │ ├── fbx_macos.sh │ │ ├── homebrew.sh │ │ ├── increase_limits.sh │ │ ├── install-commandlinetools.sh │ │ ├── install_xcode.sh │ │ ├── java.sh │ │ ├── libiodbc.rb │ │ ├── libiodbc.sh │ │ ├── libusb.sh │ │ ├── limit.maxfiles.plist │ │ ├── limit.maxproc.plist │ │ ├── macos-version.sh │ │ ├── pip.sh │ │ ├── pkgconfig.sh │ │ ├── python2.sh │ │ ├── python3.sh │ │ ├── sha1sum-compatibility.sh │ │ ├── system_updates.sh │ │ ├── telegraf-coin.conf │ │ ├── version.sh │ │ └── virtualenv.sh │ ├── shared │ │ ├── http_proxy.txt │ │ ├── network_test_server_ip.txt │ │ ├── requirements.txt │ │ ├── telegraf │ │ │ ├── influxdb.repo_key.pub │ │ │ ├── telegraf-ioping.sh │ │ │ └── telegraf_packages.sha256.txt │ │ └── testserver │ │ │ ├── apache2 │ │ │ └── Dockerfile │ │ │ ├── apache2_18.04 │ │ │ └── Dockerfile │ │ │ ├── californium │ │ │ └── Dockerfile │ │ │ ├── cyrus │ │ │ └── Dockerfile │ │ │ ├── cyrus_18.04 │ │ │ └── Dockerfile │ │ │ ├── danted │ │ │ ├── Dockerfile │ │ │ ├── danted │ │ │ └── danted-authenticating │ │ │ ├── danted_18.04 │ │ │ └── Dockerfile │ │ │ ├── docker_images.sh │ │ │ ├── docker_machine.sh │ │ │ ├── docker_testserver.sh │ │ │ ├── echo │ │ │ └── Dockerfile │ │ │ ├── echo_18.04 │ │ │ └── Dockerfile │ │ │ ├── freecoap │ │ │ └── Dockerfile │ │ │ ├── ftp-proxy │ │ │ └── Dockerfile │ │ │ ├── ftp-proxy_18.04 │ │ │ └── Dockerfile │ │ │ ├── iptables │ │ │ └── Dockerfile │ │ │ ├── iptables_18.04 │ │ │ └── Dockerfile │ │ │ ├── qt_ubuntu_16.04 │ │ │ └── Dockerfile │ │ │ ├── qt_ubuntu_18.04 │ │ │ └── Dockerfile │ │ │ ├── settings.sh │ │ │ ├── squid │ │ │ └── Dockerfile │ │ │ ├── squid_18.04 │ │ │ └── Dockerfile │ │ │ ├── vsftpd │ │ │ └── Dockerfile │ │ │ └── vsftpd_18.04 │ │ │ └── Dockerfile │ ├── unix │ │ ├── DownloadURL.sh │ │ ├── InstallFromCompressedFileFromURL.sh │ │ ├── SetEnvVar.sh │ │ ├── check_and_set_proxy.sh │ │ ├── common.sourced.sh │ │ ├── disable-ntp_macos.sh │ │ ├── emsdk.sh │ │ ├── install-breakpad.sh │ │ ├── install-openssl.sh │ │ ├── install_protobuff.sh │ │ ├── libclang-v100-dyn.sh │ │ ├── libclang.sh │ │ ├── mqtt_broker.sh │ │ ├── python_modules.sh │ │ ├── squishInstall.sh │ │ ├── telegraf_install.sh │ │ └── telegraf_password.sh │ └── windows │ │ ├── 3dstudio_3rdparty.ps1 │ │ ├── allow-remote-desktop-access.ps1 │ │ ├── android-openssl.ps1 │ │ ├── android.ps1 │ │ ├── cmake.ps1 │ │ ├── conan.ps1 │ │ ├── conan_manifests │ │ ├── icu │ │ │ └── 65.1 │ │ │ │ └── qtproject │ │ │ │ └── stable │ │ │ │ ├── export │ │ │ │ └── conanmanifest.txt │ │ │ │ └── package │ │ │ │ ├── 488cd5989854dc1a08e31f9977289ed30f65b0f0 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 5a523494e1f78e9c3900ce2f09380672c297a203 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 5df173d8cb73784907692ca167e7d2e8316b10c7 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── a4f43a91306db32ecaa845a88306f02b0613c925 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── ab841b0a4eaa947ac9d6b85f19b13aaf18c6911d │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── b78a3590f375c283e83a188d891b97d04832121e │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── c55d3669e198b38f9cbd3031c1943896d7bcdad9 │ │ │ │ └── conanmanifest.txt │ │ │ │ └── cd2d3d20ffbb190b9b990f98e6dedc2be0228764 │ │ │ │ └── conanmanifest.txt │ │ ├── libjpeg-turbo │ │ │ └── 2.0.5 │ │ │ │ └── qtproject │ │ │ │ └── stable │ │ │ │ ├── export │ │ │ │ └── conanmanifest.txt │ │ │ │ └── package │ │ │ │ ├── 1655126cc73fa38b3abf5795b2008935595969ae │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 1c8544b57637b92dcdfce760b76b459bde0ce701 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 4985763cfece81b148d7c11f16d564e42ee2756c │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 6fe55a250d22d4408ba9c4b99015260e933b58f0 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 793aa46df280f94646f5e993f5e3553e18ec8ae9 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 7fbb66ade701b46f34dff2e121edef66968608b5 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 9b721b63e452039565ba8417e25a183d1bbcb4df │ │ │ │ └── conanmanifest.txt │ │ │ │ └── acb703d92685c00a6f85ed3ca8225725f0e186c1 │ │ │ │ └── conanmanifest.txt │ │ ├── libxml2 │ │ │ └── 2.9.10 │ │ │ │ └── qtproject │ │ │ │ └── stable │ │ │ │ ├── export │ │ │ │ └── conanmanifest.txt │ │ │ │ └── package │ │ │ │ ├── 12ee02550ebaf136555a7f3bbc8cc25cfb8bb72b │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 1955c51c7e0a6365c20c2d798832186de95c0213 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 3c8e91368468fdcd96258c1b561b15aca6819857 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 52cf7dbd8248b3f021f6d94e6a16c70823093916 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 6950736270999084f676eb62bcb88ece1b8351b7 │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── 852e73d42d44dff3fe4b6ed5d6a4546250ec180e │ │ │ │ └── conanmanifest.txt │ │ │ │ ├── c32d851699c84c9ca05d351cd671598c4b2b7ea5 │ │ │ │ └── conanmanifest.txt │ │ │ │ └── eae1effa51b2513b93fde5c749bae61b6203abfa │ │ │ │ └── conanmanifest.txt │ │ └── libxslt │ │ │ └── 1.1.34 │ │ │ └── qtproject │ │ │ └── stable │ │ │ ├── export │ │ │ └── conanmanifest.txt │ │ │ └── package │ │ │ ├── 19663639a14063d996b277c7fac0e00264689c20 │ │ │ └── conanmanifest.txt │ │ │ ├── 466fc39fa8b7a19ee2095aa945fff98630acdd12 │ │ │ └── conanmanifest.txt │ │ │ ├── 7e451536519482997336e237346b93d95b87eb32 │ │ │ └── conanmanifest.txt │ │ │ ├── 8c83c725f7fefe466a2c6c18ff17d3b0b91202c6 │ │ │ └── conanmanifest.txt │ │ │ ├── a19b1f00428920c59efe23b98acbe83d331049b4 │ │ │ └── conanmanifest.txt │ │ │ ├── d4099b870b7e1ab748c13f5751cb2d32f893a78f │ │ │ └── conanmanifest.txt │ │ │ ├── d9686cd1257700d08189681d9907564e4a9147cb │ │ │ └── conanmanifest.txt │ │ │ └── f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727 │ │ │ └── conanmanifest.txt │ │ ├── conan_requirements.txt │ │ ├── disable-autoreboot.ps1 │ │ ├── disable-clean-manager.ps1 │ │ ├── disable-defragment.ps1 │ │ ├── disable-netadapterlso.ps1 │ │ ├── disable-ntp.ps1 │ │ ├── disable-quickedit.ps1 │ │ ├── disable-sleep.ps1 │ │ ├── disable-uac.ps1 │ │ ├── disable-windefender.ps1 │ │ ├── disable-windows-module-installer.ps1 │ │ ├── disable-windows-updates.ps1 │ │ ├── dxsdk.ps1 │ │ ├── emsdk.ps1 │ │ ├── exceutequeueditems.ps1 │ │ ├── fbx_windows.ps1 │ │ ├── helpers.ps1 │ │ ├── icu.ps1 │ │ ├── install-azure-tool.ps1 │ │ ├── install-breakpad.ps1 │ │ ├── install-dependencywalker.ps1 │ │ ├── install-dotnet.ps1 │ │ ├── install-git.ps1 │ │ ├── install-gnuwin32.ps1 │ │ ├── install-jdk.ps1 │ │ ├── install-mcuxpresso.ps1 │ │ ├── install-mingw.ps1 │ │ ├── install-msys2.ps1 │ │ ├── install-notepad++.ps1 │ │ ├── install-protobuf.ps1 │ │ ├── install-ruby.ps1 │ │ ├── install-sed.ps1 │ │ ├── install-sevenzip.ps1 │ │ ├── install-stm32cubeprogrammer.ps1 │ │ ├── install-strawberry-perl.ps1 │ │ ├── install_telegraf.ps1 │ │ ├── jom.ps1 │ │ ├── libclang-v100-dyn.ps1 │ │ ├── libclang.ps1 │ │ ├── libusb.ps1 │ │ ├── memorypershell.ps1 │ │ ├── mesa_llvmpipe.ps1 │ │ ├── mqtt_broker.ps1 │ │ ├── msvc-2013-update5.ps1 │ │ ├── msys.ps1 │ │ ├── mysql.ps1 │ │ ├── ninja.ps1 │ │ ├── nodejs.ps1 │ │ ├── opcua_unifiedautomation.ps1 │ │ ├── openssl.ps1 │ │ ├── postgresql.ps1 │ │ ├── python.ps1 │ │ ├── python3.ps1 │ │ ├── set-network-test-server.ps1 │ │ ├── set-proxy.ps1 │ │ ├── squish-coco.ps1 │ │ ├── squishInstall.ps1 │ │ ├── telegraf-coin.conf │ │ ├── telegraf_password.ps1 │ │ ├── unset-proxy.ps1 │ │ ├── update-msvc2019.ps1 │ │ ├── vc_redist.ps1 │ │ ├── vclibs_debug.ps1 │ │ ├── version.ps1 │ │ ├── vulkansdk.ps1 │ │ ├── win10-enable-devmode.ps1 │ │ ├── win10sdk.ps1 │ │ ├── winrtrunner.ps1 │ │ └── wsearch-off.ps1 │ ├── qtci-linux-CentOS-8.1-x86_64 │ └── 05-libclang-v100-dyn.sh │ ├── qtci-linux-RHEL-7.6-x86_64 │ ├── 01-disable-mlocate.sh │ ├── 01-install_telegraf.sh │ ├── 01-refresh-subscription-manager.sh │ ├── 01-systemsetup.sh │ ├── 02-enable-repos.sh │ ├── 03-install-devtoolset.sh │ ├── 03-install-rhel-epel.sh │ ├── 04-install-packages.sh │ ├── 04-p7zip.sh │ ├── 05-libclang.sh │ ├── 06-cmake.sh │ ├── 07-qnx_700.sh │ ├── 08-integrity.sh │ ├── 08-libclang-v100-dyn.sh │ ├── 09-disable_selinux.sh │ ├── 09-install-openssl.sh │ ├── 22-mqtt_broker.sh │ ├── 30-fbx.sh │ ├── 30-install_icu.sh │ ├── 35-install-breakpad.sh │ ├── 40-android_linux.sh │ ├── 50-openssl_for_android_linux.sh │ ├── 60-install_protobuff.sh │ ├── 70-install_dwz.sh │ ├── 90-squish.sh │ └── 99-version.sh │ ├── qtci-linux-SLES-15-x86_64 │ ├── 01-disable-btrfs-balance.sh │ ├── 01-disable-cron_daily.sh │ ├── 01-disable-fstrim_timer.sh │ ├── 01-install_telegraf.sh │ ├── 01-systemsetup.sh │ ├── 02-disable-gnome-notifications.sh │ ├── 02-disable-ntp.sh │ ├── 02-enable-modules.sh │ ├── 02-zypperpackages.sh │ ├── 08-libclang.sh │ ├── 08-pythondev.sh │ ├── 09-install-openssl.sh │ ├── 18-icc.sh │ ├── 22-mqtt_broker.sh │ ├── 55-emsdk.sh │ ├── 90-squish.sh │ ├── 99-unset-proxy.sh │ └── 99-version.sh │ ├── qtci-linux-Ubuntu-18.04-x86_64 │ ├── 01-install_telegraf.sh │ ├── 01-systemsetup.sh │ ├── 02-apt.sh │ ├── 02-disable-notifications.sh │ ├── 02-disable-ntp.sh │ ├── 02-git_lfs.sh │ ├── 02-remove-apport.sh │ ├── 02-remove-update_notifier.sh │ ├── 03-gcc.sh │ ├── 03-qemu.sh │ ├── 04-libclang.sh │ ├── 04-yocto.sh │ ├── 04-yocto_ssh_configurations.sh │ ├── 09-install-openssl.sh │ ├── 22-mqtt_broker.sh │ ├── 30-fbx.sh │ ├── 35-install-breakpad.sh │ ├── 40-android_linux.sh │ ├── 40-cmake.sh │ ├── 50-openssl_for_android_linux.sh │ ├── 60-qnx660.sh │ ├── 70-qnx700.sh │ ├── 80-docker.sh │ ├── 90-squish.sh │ ├── 91-squish-coco.sh │ └── 99-version.sh │ ├── qtci-linux-Ubuntu-20.04-x86_64 │ └── 04-libclang-v100-dyn.sh │ ├── qtci-linux-openSUSE-15.1-x86_64 │ ├── 01-install_telegraf.sh │ ├── 01-systemsetup.sh │ ├── 02-disable-ntp.sh │ ├── 02-zypperpackages.sh │ ├── 08-libclang.sh │ ├── 08-pythondev.sh │ ├── 09-cmake.sh │ ├── 09-install-openssl.sh │ ├── 18-icc.sh │ ├── 22-mqtt_broker.sh │ ├── 55-emsdk.sh │ ├── 90-squish.sh │ ├── 99-unset-proxy.sh │ └── 99-version.sh │ ├── qtci-linux-openSUSE-15.2-x86_64 │ └── 08-libclang-v100-dyn.sh │ ├── qtci-macos-10.13-x86_64 │ ├── 01-disable-notifications_and_warnings.sh │ ├── 01-increase_limits.sh │ ├── 01-install_telegraf.sh │ ├── 01-sha1sum-compatibility.sh │ ├── 02-disable-ntp.sh │ ├── 03-bashprofile.sh │ ├── 05-systemsetup.sh │ ├── 06-crashreporter.sh │ ├── 06-disable_spotlight.sh │ ├── 06-disable_update_downloads.sh │ ├── 07-SSL_keychain.sh │ ├── 07-openssl-sh │ ├── 08-homebrew.sh │ ├── 08-nodejs.sh │ ├── 15-xz.sh │ ├── 20-java.sh │ ├── 20-xcode.sh │ ├── 21-install-commandlinetools.sh │ ├── 25-cmake.sh │ ├── 25-mysql.sh │ ├── 25-pip.sh │ ├── 25-postgresql.sh │ ├── 25-python2.sh │ ├── 25-python3.sh │ ├── 26-odbc.sh │ ├── 26-p7zip.sh │ ├── 26-pkgconfig.sh │ ├── 26-virtualenv.sh │ ├── 27-libclang.sh │ ├── 27-libusb.sh │ ├── 28-libclang-v100-dyn.sh │ ├── 30-android.sh │ ├── 30-fbx.sh │ ├── 35-install-breakpad.sh │ ├── 35-install_protobuff.sh │ ├── 36-emsdk.sh │ ├── 40-qnx700.sh │ ├── 55-signtools.sh │ ├── 90-python-modules.sh │ ├── 90-squish.sh │ └── 99-mac-version.sh │ ├── qtci-macos-10.14-x86_64 │ ├── 01-disable-notifications_and_warnings.sh │ ├── 01-increase_limits.sh │ ├── 01-install_telegraf.sh │ ├── 01-sha1sum-compatibility.sh │ ├── 03-bashprofile.sh │ ├── 05-systemsetup.sh │ ├── 06-crashreporter.sh │ ├── 06-disable_spotlight.sh │ ├── 06-disable_update_downloads.sh │ ├── 07-SSL_keychain.sh │ ├── 15-xz.sh │ ├── 20-java.sh │ ├── 20-xcode.sh │ ├── 21-install-commandlinetools.sh │ ├── 25-cmake.sh │ ├── 25-homebrew.sh │ ├── 25-mysql.sh │ ├── 25-pip.sh │ ├── 25-postgresql.sh │ ├── 25-python2.sh │ ├── 25-python3.sh │ ├── 26-odbc.sh │ ├── 26-p7zip.sh │ ├── 27-libclang.sh │ ├── 28-libclang-v100-dyn.sh │ ├── 30-android.sh │ ├── 30-fbx.sh │ ├── 30-nodejs.sh │ ├── 35-install-breakpad.sh │ ├── 35-install_protobuff.sh │ ├── 35-openssl.sh │ ├── 36-emsdk.sh │ ├── 40-qnx700.sh │ ├── 55-signtools.sh │ ├── 90-squish.sh │ └── 99-mac-version.sh │ ├── qtci-windows-10-x86 │ ├── 00-disable-clean-manager.ps1 │ ├── 00-disable-netadapterlso.ps1 │ ├── 00-install-sevenzip.ps1 │ ├── 01-allow-remote-desktop-access.ps1 │ ├── 01-disable-notifications.ps1 │ ├── 01-disable-windows-telemetry.ps1 │ ├── 01-enable-guest-logon.ps1 │ ├── 01-install_telegraf.ps1 │ ├── 02-disable-autoreboot.ps1 │ ├── 02-python.ps1 │ ├── 05-enable-devmode.ps1 │ ├── 05-msvc.ps1 │ ├── 05-wsearch-off.ps1 │ ├── 06-mesa_llvmpipe.ps1 │ ├── 06-ninja.ps1 │ ├── 08-install-git.ps1 │ ├── 08-install-jdk.ps1 │ ├── 08-libclang.ps1 │ ├── 08-python3.ps1 │ ├── 09-install-dependencywalker.ps1 │ ├── 09-install-ruby.ps1 │ ├── 09-install-strawberry-perl.ps1 │ ├── 09-openssl.ps1 │ ├── 09-postgresql.ps1 │ ├── 09-vulkansdk.ps1 │ ├── 10-icu.ps1 │ ├── 11-conan.ps1 │ ├── 22-mqtt_broker.ps1 │ ├── 23-winrtrunner.ps1 │ ├── 36-install-gnuwin32.ps1 │ ├── 60-jom.ps1 │ ├── 70-cmake.ps1 │ ├── 80-win10sdk.ps1 │ ├── 85-disable_quickedit_powershell.ps1 │ ├── 90-exceutequeueditems.ps1 │ ├── 90-libusb.ps1 │ ├── 90-mysql.ps1 │ ├── 90-signing-tools.ps1 │ ├── 90-squish.ps1 │ ├── 90-vclibs_debug.ps1 │ ├── 99-version.ps1 │ └── conanfiles │ │ └── qtwebkit.txt │ ├── qtci-windows-10-x86_64 │ ├── 00-disable-netadapterlso.ps1 │ ├── 00-install-sevenzip.ps1 │ ├── 01-allow-remote-desktop-access.ps1 │ ├── 01-change-resolution.ps1 │ ├── 01-disable-notifications.ps1 │ ├── 01-disable-windows-telemetry.ps1 │ ├── 01-enable-guest-logon.ps1 │ ├── 01-install_telegraf.ps1 │ ├── 01-set-proxy.ps1 │ ├── 02-disable-autoreboot.ps1 │ ├── 02-disable-sleep.ps1 │ ├── 02-python-32bit.ps1 │ ├── 02-python.ps1 │ ├── 03-nodejs.ps1 │ ├── 04-msys.ps1 │ ├── 05-enable-devmode.ps1 │ ├── 05-msvc.ps1 │ ├── 05-qnx_700.ps1 │ ├── 05-wsearch-off.ps1 │ ├── 06-mesa_llvmpipe.ps1 │ ├── 06-ninja.ps1 │ ├── 08-install-git.ps1 │ ├── 08-install-jdk.ps1 │ ├── 08-libclang-v100-dyn.ps1 │ ├── 08-libclang.ps1 │ ├── 08-python3.ps1 │ ├── 09-install-dependencywalker.ps1 │ ├── 09-install-mingw530.ps1 │ ├── 09-install-mingw630.ps1 │ ├── 09-install-mingw730.ps1 │ ├── 09-install-mingw730_64.ps1 │ ├── 09-install-mingw810.ps1 │ ├── 09-install-mingw810_64.ps1 │ ├── 09-install-ruby.ps1 │ ├── 09-install-sed.ps1 │ ├── 09-install-strawberry-perl.ps1 │ ├── 09-openssl.ps1 │ ├── 09-set-network-test-server.ps1 │ ├── 09-vulkansdk.ps1 │ ├── 10-dxsdk.ps1 │ ├── 10-icu.ps1 │ ├── 10-install-msys2.ps1 │ ├── 11-conan.ps1 │ ├── 22-mqtt_broker.ps1 │ ├── 23-winrtrunner.ps1 │ ├── 30-fbx.ps1 │ ├── 35-install-breakpad.ps1 │ ├── 36-install-gnuwin32.ps1 │ ├── 40-android.ps1 │ ├── 50-openssl_for_android.ps1 │ ├── 60-jom.ps1 │ ├── 70-cmake.ps1 │ ├── 79-opcua_unifiedautomation.ps1 │ ├── 80-emsdk.ps1 │ ├── 85-disable_quickedit_powershell.ps1 │ ├── 90-3dstudio_3rdparty.ps1 │ ├── 90-exceutequeueditems.ps1 │ ├── 90-install-dotnet.ps1 │ ├── 90-install-mcuxpresso.ps1 │ ├── 90-install-notepad++.ps1 │ ├── 90-install-stm32cubeprogrammer.ps1 │ ├── 90-install-virtualbox.ps1 │ ├── 90-libusb.ps1 │ ├── 90-mysql.ps1 │ ├── 90-postgresql.ps1 │ ├── 90-python-modules.ps1 │ ├── 90-signing-tools.ps1 │ ├── 90-squish.ps1 │ ├── 90-vclibs_debug.ps1 │ ├── 91-install-azure-tool.ps1 │ ├── 91-squish-coco.ps1 │ ├── 92-install-protobuf.ps1 │ ├── 98-disable-windows-module-installer.ps1 │ ├── 99-unset-proxy.ps1 │ ├── 99-version.ps1 │ └── conanfiles │ │ └── qtwebkit.txt │ ├── qtci-windows-7-x86 │ ├── 00-disable-clean-manager.ps1 │ ├── 00-disable-windefender.ps1 │ ├── 00-install-sevenzip.ps1 │ ├── 01-allow-remote-desktop-access.ps1 │ ├── 01-disable-uac.ps1 │ ├── 01-install_telegraf.ps1 │ ├── 01-set-proxy.ps1 │ ├── 02-disable-autoreboot.ps1 │ ├── 02-disable-defragment.ps1 │ ├── 02-disable-ntp.ps1 │ ├── 02-disable-sleep.ps1 │ ├── 02-memorypershell.ps1 │ ├── 02-python.ps1 │ ├── 04-disable-windows-updates.ps1 │ ├── 05-wsearch-off.ps1 │ ├── 07-vc_redist.ps1 │ ├── 08-install-git.ps1 │ ├── 08-install-jdk.ps1 │ ├── 08-libclang.ps1 │ ├── 08-mesa_llvmpipe.ps1 │ ├── 08-ninja.ps1 │ ├── 08-python3.ps1 │ ├── 09-cmake.ps1 │ ├── 09-install-dependencywalker.ps1 │ ├── 09-install-mingw730.ps1 │ ├── 09-install-mingw810.ps1 │ ├── 09-install-ruby.ps1 │ ├── 09-install-strawberry-perl.ps1 │ ├── 09-jom.ps1 │ ├── 09-mysql.ps1 │ ├── 09-openssl.ps1 │ ├── 09-postgresql.ps1 │ ├── 09-set-network-test-server.ps1 │ ├── 10-dxsdk.ps1 │ ├── 10-icu.ps1 │ ├── 11-conan.ps1 │ ├── 22-mqtt_broker.ps1 │ ├── 35-install-breakpad.ps1 │ ├── 36-install-gnuwin32.ps1 │ ├── 90-exceutequeueditems.ps1 │ ├── 90-install-notepad++.ps1 │ ├── 90-squish.ps1 │ ├── 99-unset-proxy.ps1 │ ├── 99-version.ps1 │ └── conanfiles │ │ └── qtwebkit.txt │ ├── qtci-windows-7-x86_64 │ ├── 00-disable-windefender.ps1 │ ├── 00-install-sevenzip.ps1 │ ├── 01-allow-remote-desktop-access.ps1 │ ├── 01-disable-uac.ps1 │ ├── 01-install_telegraf.ps1 │ ├── 02-disable-autoreboot.ps1 │ ├── 02-disable-defragment.ps1 │ ├── 02-disable-ntp.ps1 │ ├── 02-disable-sleep.ps1 │ ├── 02-install-notepad++.ps1 │ ├── 02-python.ps1 │ ├── 04-disable-windows-updates.ps1 │ ├── 05-wsearch-off.ps1 │ ├── 07-vc_redist.ps1 │ ├── 08-install-git.ps1 │ ├── 08-install-jdk.ps1 │ ├── 08-mesa_llvmpipe.ps1 │ ├── 08-ninja.ps1 │ ├── 09-cmake.ps1 │ ├── 09-install-dependencywalker.ps1 │ ├── 09-install-ruby.ps1 │ ├── 09-install-strawberry-perl.ps1 │ ├── 09-jom.ps1 │ ├── 09-mysql.ps1 │ ├── 09-openssl.ps1 │ ├── 09-postgresql.ps1 │ ├── 09-set-network-test-server.ps1 │ ├── 10-dxsdk.ps1 │ ├── 12-icu.ps1 │ ├── 25-python.ps1 │ ├── 25-python3.ps1 │ ├── 27-squish.ps1 │ ├── 35-install-breakpad.ps1 │ ├── 36-install-gnuwin32.ps1 │ ├── 90-exceutequeueditems.ps1 │ └── 99-version.ps1 │ ├── qtci-windows-8.1-x86 │ ├── 00-disable-netadapterlso.ps1 │ ├── 00-disable-windefender.ps1 │ ├── 00-install-sevenzip.ps1 │ ├── 01-allow-remote-desktop-access.ps1 │ ├── 01-disable-uac.ps1 │ ├── 01-install_telegraf.ps1 │ ├── 02-disable-autoreboot.ps1 │ ├── 02-disable-defragment.ps1 │ ├── 02-disable-ntp.ps1 │ ├── 02-disable-sleep.ps1 │ ├── 04-disable-windows-updates.ps1 │ ├── 05-wsearch-off.ps1 │ ├── 08-install-jdk.ps1 │ ├── 09-msvc-2013-update5.ps1 │ ├── 09-openssl.ps1 │ ├── 09-set-network-test-server.ps1 │ ├── 36-install-gnuwin32.ps1 │ ├── 60-jom.ps1 │ ├── 90-exceutequeueditems.ps1 │ ├── 90-squish.ps1 │ └── 99-version.ps1 │ └── qtci-windows-8.1-x86_64 │ ├── 00-disable-netadapterlso.ps1 │ ├── 00-disable-windefender.ps1 │ ├── 00-install-sevenzip.ps1 │ ├── 01-allow-remote-desktop-access.ps1 │ ├── 01-disable-uac.ps1 │ ├── 01-install_telegraf.ps1 │ ├── 02-disable-autoreboot.ps1 │ ├── 02-disable-defragment.ps1 │ ├── 02-disable-ntp.ps1 │ ├── 02-disable-sleep.ps1 │ ├── 04-disable-windows-updates.ps1 │ ├── 05-wsearch-off.ps1 │ ├── 07-python2.ps1 │ ├── 08-install-jdk.ps1 │ ├── 08-msvc-2013-update5.ps1 │ ├── 08-python3.ps1 │ ├── 09-install-dependencywalker.ps1 │ ├── 09-openssl.ps1 │ ├── 09-set-network-test-server.ps1 │ ├── 36-install-gnuwin32.ps1 │ ├── 60-jom.ps1 │ ├── 90-exceutequeueditems.ps1 │ ├── 90-squish.ps1 │ └── 99-version.ps1 ├── configure ├── configure.bat ├── configure.json ├── gnuwin32 ├── README ├── bin │ ├── bison.exe │ ├── data │ │ ├── README │ │ ├── bison.m4 │ │ ├── c++-skel.m4 │ │ ├── c++.m4 │ │ ├── c-like.m4 │ │ ├── c-skel.m4 │ │ ├── c.m4 │ │ ├── glr.c │ │ ├── glr.cc │ │ ├── java-skel.m4 │ │ ├── java.m4 │ │ ├── lalr1.cc │ │ ├── lalr1.java │ │ ├── local.mk │ │ ├── location.cc │ │ ├── m4sugar │ │ │ ├── foreach.m4 │ │ │ └── m4sugar.m4 │ │ ├── stack.hh │ │ ├── variant.hh │ │ ├── xslt │ │ │ ├── bison.xsl │ │ │ ├── xml2dot.xsl │ │ │ ├── xml2text.xsl │ │ │ └── xml2xhtml.xsl │ │ └── yacc.c │ ├── flex.exe │ ├── gperf.exe │ ├── iconv.exe │ ├── libcharset1.dll │ ├── libiconv2.dll │ ├── libintl3.dll │ ├── m4.exe │ └── regex2.dll ├── contrib │ ├── gperf │ │ └── 3.0.1 │ │ │ ├── depends-GnuWin32.lst │ │ │ ├── gperf-3.0.1-GnuWin32.README │ │ │ ├── gperf-3.0.1-src │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── NEWS │ │ │ └── README │ │ │ └── gperf-3.0.1 │ │ │ ├── check.log │ │ │ └── check_err.log │ └── libiconv │ │ └── 1.9.2 │ │ ├── depends-GnuWin32.lst │ │ ├── libiconv-1.9.2-1-GnuWin32.README │ │ └── libiconv-1.9.2-src │ │ ├── ABOUT-NLS │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── DESIGN │ │ ├── NEWS │ │ ├── NOTES │ │ ├── PORTS │ │ ├── README │ │ ├── THANKS │ │ ├── djgpp │ │ └── README │ │ ├── extras │ │ └── ChangeLog │ │ ├── libcharset │ │ ├── AUTHORS │ │ ├── ChangeLog │ │ ├── NEWS │ │ ├── README │ │ ├── djgpp │ │ │ └── README │ │ ├── lib │ │ │ └── ChangeLog │ │ ├── m4 │ │ │ └── ChangeLog │ │ └── tools │ │ │ └── README │ │ └── po │ │ └── ChangeLog ├── lib │ ├── charset.alias │ ├── libcharset.la │ ├── libcharset.la.orig │ ├── libiconv.la │ └── libiconv.la.orig ├── man │ ├── cat1 │ │ ├── gperf.1.txt │ │ ├── iconv.1.txt │ │ └── yacc.1.txt │ ├── cat1p │ │ └── yacc.1p.txt │ └── cat3 │ │ ├── iconv.3.txt │ │ ├── iconv_close.3.txt │ │ └── iconv_open.3.txt ├── manifest │ ├── gperf-3.0.1-bin.mft │ ├── gperf-3.0.1-bin.ver │ ├── libiconv-1.9.2-1-bin.mft │ ├── libiconv-1.9.2-1-bin.ver │ ├── libiconv-1.9.2-1-dep.mft │ └── libiconv-1.9.2-1-dep.ver ├── patches │ └── win_flex.patch └── share │ ├── aclocal │ └── bison-i18n.m4 │ └── locale │ ├── ca │ └── LC_MESSAGES │ │ └── libiconv.mo │ ├── da │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── de │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── el │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ └── bison.mo │ ├── eo │ └── LC_MESSAGES │ │ └── libiconv.mo │ ├── es │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── et │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── fi │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ └── libiconv.mo │ ├── fr │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── ga │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── gl │ └── LC_MESSAGES │ │ └── libiconv.mo │ ├── hr │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── hu │ └── LC_MESSAGES │ │ └── libiconv.mo │ ├── id │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── it │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── ja │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ └── bison.mo │ ├── ky │ └── LC_MESSAGES │ │ └── bison-runtime.mo │ ├── lt │ └── LC_MESSAGES │ │ └── bison-runtime.mo │ ├── ms │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ └── bison.mo │ ├── nb │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ └── bison.mo │ ├── nl │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── pl │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── pt_BR │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── ro │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── ru │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── sk │ └── LC_MESSAGES │ │ └── libiconv.mo │ ├── sl │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ └── libiconv.mo │ ├── sr │ └── LC_MESSAGES │ │ └── libiconv.mo │ ├── sv │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── th │ └── LC_MESSAGES │ │ └── bison-runtime.mo │ ├── tr │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── uk │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ ├── bison.mo │ │ └── libiconv.mo │ ├── vi │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ └── bison.mo │ ├── wa │ └── LC_MESSAGES │ │ └── libiconv.mo │ ├── zh_CN │ └── LC_MESSAGES │ │ ├── bison-runtime.mo │ │ └── libiconv.mo │ └── zh_TW │ └── LC_MESSAGES │ ├── bison-runtime.mo │ └── bison.mo ├── init-repository-os2.sh └── qt.pro /.tag: -------------------------------------------------------------------------------- 1 | 0f75d3248afa940f7a82d9cfaefd4266fa44a7bc 2 | -------------------------------------------------------------------------------- /Qt 5 for OS2 roadmap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/Qt 5 for OS2 roadmap.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Qt 5 for OS/2 2 | 3 | This is a root repository of the Qt software development framework version 5 for OS/2. It tracks ports of all Qt modules applicable to the OS/2 operating system and maintains OS/2 versions of bootstrap and configure scripts necessary to build the Qt framework. 4 | 5 | Currently, the following modules have been (or are being) ported to OS/2: 6 | 7 | * Qt Base 8 | * Qt Declarative 9 | * Qt SVG 10 | * Qt Tools 11 | * Qt Multimedia 12 | * Qt WebChannel 13 | * Qt WebSockets 14 | * Qt WebEngine 15 | 16 | Also, a Qt fork of Chromium (and its build tools, GN and Ninja), which is a "work horse" for Qt WebEngine, has been ported to OS/2. 17 | 18 | Please consult to README.md files of individual modules for more information about the ports. 19 | 20 | Build instructions are available online in the [github Wiki](https://github.com/bitwiseworks/qt5-os2/wiki/Developers#building-qt). 21 | 22 | *bww bitwiseworks GmbH\ 23 | August, 2019* 24 | -------------------------------------------------------------------------------- /coin/README: -------------------------------------------------------------------------------- 1 | Continuous Integration 2 | ====================== 3 | 4 | This directory contains files used by Qt's Continuous Integration system (Coin). 5 | 6 | pre-provisioning 7 | ---------------- 8 | Contains scripts which are used to install software to tier1 machines manually. 9 | E.g. Visual studio installation takes too long to be included to automatic provisioning of tier2 templates. 10 | 11 | provisioning 12 | ------------ 13 | Contains scripts that apply to different test machines in order to run automatic tests on them. 14 | For Windows scripts, make sure that the machine has "Set-ExecutionPolicy RemoteSigned -Force" set. 15 | (Run as admin in PowerShell) 16 | 17 | -------------------------------------------------------------------------------- /coin/platform_configs/meta-boot2qt.yaml: -------------------------------------------------------------------------------- 1 | - 2 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 3 | Compiler: 'Yocto' 4 | Target arch: 'TARGET1' 5 | - 6 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 7 | Compiler: 'Yocto' 8 | Target arch: 'TARGET2' 9 | - 10 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 11 | Compiler: 'Yocto' 12 | Target arch: 'TARGET3' 13 | - 14 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 15 | Compiler: 'Yocto' 16 | Target arch: 'TARGET4' 17 | - 18 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 19 | Compiler: 'Yocto' 20 | Target arch: 'TARGET5' 21 | - 22 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 23 | Compiler: 'Yocto' 24 | Target arch: 'TARGET6' 25 | - 26 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 27 | Compiler: 'Yocto' 28 | Target arch: 'TARGET7' 29 | - 30 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 31 | Compiler: 'Yocto' 32 | Target arch: 'TARGET8' 33 | - 34 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 35 | Compiler: 'Yocto' 36 | Target arch: 'TARGET9' 37 | - 38 | Template: 'qtci-linux-Ubuntu-18.04-x86_64' 39 | Compiler: 'Yocto' 40 | Target arch: 'TARGET10' 41 | -------------------------------------------------------------------------------- /coin/platform_configs/ogl-runtime.yaml: -------------------------------------------------------------------------------- 1 | qt5.yaml 2 | -------------------------------------------------------------------------------- /coin/platform_configs/qt3d-runtime.yaml: -------------------------------------------------------------------------------- 1 | qt5.yaml 2 | -------------------------------------------------------------------------------- /coin/platform_configs/qtconnectivity.yaml: -------------------------------------------------------------------------------- 1 | - 2 | Template: 'qtci-windows-10-x86_64-52' 3 | Target os: 'WinRT_10' 4 | Target arch: 'x86_64' 5 | Compiler: 'MSVC2015' 6 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -static -nomake tests -nomake examples -no-icu -force-debug-info -platform win32-msvc2015 -xplatform winrt-x64-msvc2015' 7 | -------------------------------------------------------------------------------- /coin/platform_configs/qtsaferenderer.yaml: -------------------------------------------------------------------------------- 1 | Version: 2 2 | Configurations: 3 | - 4 | Template: 'qtci-windows-10-x86_64-52' 5 | Compiler: 'Mingw' 6 | Environment variables: ['PATH=C:\MINGW810\mingw64\bin;$PATH'] 7 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -nomake tests -opengl dynamic -openssl -I %OPENSSL_INCLUDE_x64% -L %OPENSSL_LIB_x64% -plugin-sql-mysql -plugin-sql-sqlite -plugin-sql-odbc -I %MYSQL_INCLUDE_x64% -L %MYSQL_LIB_x64% -plugin-sql-psql -I %POSTGRESQL_INCLUDE_x64% -L %POSTGRESQL_LIB_x64% -platform win32-g++' 8 | - 9 | Template: 'qtci-windows-10-x86_64-52' 10 | Compiler: 'Mingw' 11 | Environment variables: ['PATH=C:\MINGW810\mingw64\bin;$PATH'] 12 | Features: ['Packaging', 'DisableTests'] 13 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -static -nomake tests -nomake examples -no-icu -opengl dynamic -openssl -I %OPENSSL_INCLUDE_x64% -L %OPENSSL_LIB_x64% -plugin-sql-mysql -plugin-sql-sqlite -plugin-sql-odbc -I %MYSQL_INCLUDE_x64% -L %MYSQL_LIB_x64% -platform win32-g++' 14 | - 15 | Template: 'qtci-linux-RHEL-7.6-x86_64' 16 | Compiler: 'GCC' 17 | Features: ['Packaging', 'DisableTests'] 18 | Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -static -nomake tests -nomake examples -no-use-gold-linker -no-icu -no-fontconfig -qt-freetype -no-opengl -qpa offscreen -no-xcb -qt-libpng -no-vulkan' 19 | -------------------------------------------------------------------------------- /coin/platform_configs/qtsdk.yaml: -------------------------------------------------------------------------------- 1 | - 2 | Template: 'qtci-windows-10-x86-4' 3 | Compiler: 'MSVC2019' 4 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests' 5 | - 6 | Template: 'qtci-linux-RHEL-6.6-x86_64' 7 | Compiler: 'GCC' 8 | Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -force-debug-info -nomake examples -nomake tests' 9 | - 10 | Template: 'qtci-windows-8.1-x86' 11 | Compiler: 'MSVC2015' 12 | Features: ['DisableTests'] 13 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests' 14 | -------------------------------------------------------------------------------- /coin/platform_configs/qtwebkit.yaml: -------------------------------------------------------------------------------- 1 | Version: 2 2 | Configurations: 3 | - 4 | Template: 'qtci-windows-7-x86-3' 5 | Compiler: 'Mingw' 6 | Environment variables: ['PATH=C:\MINGW810_i686\mingw32\bin;$PATH'] 7 | Features: ['Packaging', 'DisableTests'] 8 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl dynamic -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -no-sql-mysql -plugin-sql-sqlite -plugin-sql-odbc -I %MYSQL_INCLUDE_x86% -L %MYSQL_LIB_x86% -plugin-sql-psql -I %POSTGRESQL_INCLUDE_x86% -L %POSTGRESQL_LIB_x86% -platform win32-g++ QMAKE_LFLAGS_APP+=-s' 9 | - 10 | Template: 'qtci-windows-10-x86_64-16' 11 | Compiler: 'Mingw73' 12 | Features: ['Packaging'] 13 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl dynamic -openssl -I %OPENSSL_INCLUDE_x64% -L %OPENSSL_LIB_x64% -no-sql-mysql -plugin-sql-sqlite -plugin-sql-odbc -I %MYSQL_INCLUDE_x64% -L %MYSQL_LIB_x64% -plugin-sql-psql -I %POSTGRESQL_INCLUDE_x64% -L %POSTGRESQL_LIB_x64% -platform win32-g++ QMAKE_LFLAGS_APP+=-s' 14 | -------------------------------------------------------------------------------- /coin/platform_configs/tqtc-qt-rta.yaml: -------------------------------------------------------------------------------- 1 | - 2 | Template: 'qtci-windows-7-x86_64-4' 3 | Compiler: 'MSVC2013' 4 | Features: ['DisableTests'] 5 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests' 6 | - 7 | Template: 'qtci-windows-8.1-x86_64' 8 | Compiler: 'MSVC2013' 9 | Features: ['DisableTests'] 10 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests' 11 | - 12 | Template: 'qtci-windows-10-x86-4' 13 | Compiler: 'MSVC2019' 14 | Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests' 15 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86/disable-ntp.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\..\provisioning\common\windows\helpers.ps1" 2 | 3 | # Disable the NTP from syncing 4 | Run-Executable "w32tm.exe" "/config /syncfromflags:NO" 5 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86/disable-update-orchestrator.ps1: -------------------------------------------------------------------------------- 1 | # Disable UpdateOrchestrator 2 | 3 | $name = "UpdateOrchestrator" 4 | $path = "C:\Windows\System32\Tasks\Microsoft\Windows\$name" 5 | 6 | takeown /F $path /A /R 7 | icacls $path /grant Administrators:F /T 8 | SCHTASKS /Change /TN "Microsoft\Windows\$name\Reboot" /DISABLE 9 | del "$path\Schedule Scan" 10 | del "$path\Schedule Scan Static Task" 11 | del "$path\Backup Scan" 12 | del "$path\UpdateModelTask" 13 | del "$path\USO_UxBroker" 14 | 15 | # Disable Update orchestrator service 16 | reg.exe ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsoSvc" /V Start /T REG_dWORD /D 4 /F 17 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86/disable-windows-file-protector.ps1: -------------------------------------------------------------------------------- 1 | # Disable Windows File Protection 2 | # Windows File Protection feature in Microsoft Windows prevents programs from replacing critical Windows system files. 3 | 4 | reg.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /V SFCDisable /T REG_dWORD /D 0xffffff9d /F 5 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86/disable-windows-update-medic.ps1: -------------------------------------------------------------------------------- 1 | # Windows Update Medic Service (WaaSMedicSvc)'PerformRemediation' helps recover update-related services to the supported configuration. 2 | # WaasMedicSvc keeps re-starting Windows Update, even if it disabled manually. 3 | # Even Admin user don't have privileged to disable PerformRemediation from Task Scheduler which means that WaaSMedicSvc.dll need's to be removed from the system 4 | 5 | $limit = (Get-Date).AddMinutes(20) 6 | $path = "C:\Windows\System32\WaaSMedicSvc.dll" 7 | 8 | DO { 9 | takeown /F $path 10 | icacls $path /grant Administrators:f 11 | Write-host "Deleting $path" 12 | 13 | Try { 14 | del $path 15 | } 16 | Catch [System.UnauthorizedAccessException] { 17 | Write-host "Access to the path '$path' is denied." 18 | Continue 19 | } 20 | 21 | if ((Get-Date) -gt $limit) { 22 | exit 1 23 | } 24 | 25 | }while (Test-Path -Path "$path") 26 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86/msvc2015.txt: -------------------------------------------------------------------------------- 1 | # Install visual studio 2015 2 | 3 | version = "2015 update 3" 4 | installer = "http://ci-files01-hki.intra.qt.io/input/windows/en_visual_studio_professional_2015_x86_x64_web_installer_6846650.exe" 5 | # Select default values 6 | # Make sure these are selected: 7 | * All values from 'Universal Windows App Development Tools' 8 | * 'Visual C++' 9 | * 'Common Tools for Visual C++ 2015' 10 | * 'Windows XP Support for C++' 11 | * 'Common Tools and Software Development Kits' 12 | * 'Android Native Development Kit (R11C, 32 bits) 13 | * 'Apache Ant (1.9.3) 14 | 15 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86_64/01-enable-dotnet-framework.ps1: -------------------------------------------------------------------------------- 1 | # The DirectX SDK installer requires .Net framework 3.5 which isn't installed 2 | # by default 3 | 4 | $netFeature = "NetFx3" 5 | try { 6 | $netFeatureState = (Get-WindowsOptionalFeature -Online -FeatureName "$netFeature").State 7 | if ($netFeatureState -eq "Enabled") { 8 | Write-Host ".Net Framework is already installed" 9 | exit 0 10 | } 11 | } catch { 12 | Write-Host "Could not find .Net Framework Windows feature." 13 | exit 1 14 | } 15 | 16 | Write-Host "Installing .Net Framework client" 17 | try { 18 | Enable-WindowsOptionalFeature -Online -FeatureName "$netFeature" -All -NoRestart 19 | } catch { 20 | Write-Host "Could not install .Net framework" 21 | exit 1 22 | } 23 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86_64/disable-clean-manager.ps1: -------------------------------------------------------------------------------- 1 | # This script will disable automatic disk cleanup 2 | 3 | . "$PSScriptRoot\..\..\provisioning\common\windows\helpers.ps1" 4 | 5 | Run-Executable "reg.exe" "ADD `"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy`" /V 04 /T REG_dWORD /D 0 /F" 6 | 7 | # Maintenance task used by the system to launch a silent auto disk cleanup when running low on free disk space. 8 | DisableSchedulerTask "DiskCleanup\SilentCleanup" 9 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86_64/disable-ntp.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\..\provisioning\common\windows\helpers.ps1" 2 | 3 | # Disable the NTP from syncing 4 | Run-Executable "w32tm.exe" "/config /syncfromflags:NO" 5 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86_64/disable-update-orchestrator.ps1: -------------------------------------------------------------------------------- 1 | # Disable UpdateOrchestrator 2 | 3 | $name = "UpdateOrchestrator" 4 | $path = "C:\Windows\System32\Tasks\Microsoft\Windows\$name" 5 | 6 | takeown /F $path /A /R 7 | icacls $path /grant Administrators:F /T 8 | del "$path\Schedule Scan" 9 | del "$path\Schedule Scan Static Task" 10 | del "$path\UpdateModelTask" 11 | del "$path\USO_UxBroker" 12 | 13 | # Disable Update orchestrator service 14 | reg.exe ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsoSvc" /V Start /T REG_dWORD /D 4 /F 15 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86_64/disable-windows-file-protector.ps1: -------------------------------------------------------------------------------- 1 | # Disable Windows File Protection 2 | # Windows File Protection feature in Microsoft Windows prevents programs from replacing critical Windows system files. 3 | 4 | reg.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /V SFCDisable /T REG_dWORD /D 0xffffff9d /F 5 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86_64/disable-windows-update-medic.ps1: -------------------------------------------------------------------------------- 1 | # Windows Update Medic Service (WaaSMedicSvc)'PerformRemediation' helps recover update-related services to the supported configuration. 2 | # WaasMedicSvc keeps re-starting Windows Update, even if it disabled manually. 3 | # Even Admin user don't have privileged to disable PerformRemediation from Task Scheduler which means that WaaSMedicSvc.dll need's to be removed from the system 4 | 5 | $limit = (Get-Date).AddMinutes(20) 6 | $path = "C:\Windows\System32\WaaSMedicSvc.dll" 7 | 8 | DO { 9 | takeown /F $path 10 | icacls $path /grant Administrators:f 11 | Write-host "Deleting $path" 12 | 13 | Try { 14 | del $path 15 | } 16 | Catch [System.UnauthorizedAccessException] { 17 | Write-host "Access to the path '$path' is denied." 18 | Continue 19 | } 20 | 21 | if ((Get-Date) -gt $limit) { 22 | exit 1 23 | } 24 | 25 | }while (Test-Path -Path "$path") 26 | -------------------------------------------------------------------------------- /coin/pre-provisioning/qtci-windows-10-x86_64/msvc2015_update.txt: -------------------------------------------------------------------------------- 1 | # Visual Studio $version was installed manually using $installer. 2 | $version = "2015 update 3" 3 | $version_number ="14.0.25420.1" 4 | $installer = "en_visual_studio_professional_2015_with_update_3_x86_x64_web_installer_8922978.exe" 5 | 6 | # default plus following components were selected: 7 | # * Programming Languages 8 | # * Visual C++ 9 | # - Common Tools for Visual C++ 2015 10 | # * Universal Windows App Development Tools 11 | # - Tools (1.4.1) and Windows SDK (10.0.14393) 12 | # - Windows 10 SDK (10.0.10586) 13 | # - Windows 10 SDK (10.0.10240) 14 | # * Common Tools 15 | # -Visual Studio Extensibility Tools Update 3 16 | 17 | # NOTE! Windows SDK 10.0.14393 installation failed through visual studio installer so it was installed using $sdk_installer 18 | $sdk_installer = "http://ci-files01-hki.intra.qt.io/input/windows/sdksetup.exe" 19 | -------------------------------------------------------------------------------- /coin/provisioning/common/linux/devel_languages_go.SUSE_repo_key.pub: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP PUBLIC KEY BLOCK----- 2 | Version: GnuPG v1.4.5 (GNU/Linux) 3 | 4 | mQGiBEyvJq8RBAD64FtKbU3VFsZ4PAzcSi9rETc1qXZLVQYtrE38niriIJUuT/tC 5 | kxGjkduD7ozP6rxL+M8fk9UdbbmzhHhXzQT2blyYy2iwpZP5+AFeQawz+oyMRVze 6 | x6IY5qO31TiRu+aEBptk6nco4DULlKABlvtjKI+gJ4buJm+TumyrPaxe9wCgpFwl 7 | O0fEjpOfQd+6Du0sCnPX7+8D/3xYVj9q5ILmrJ9zehBKjRYEcaP0rZVqudH51FUS 8 | I0LQNHsJdzKLzhT+Zj7TJU4KnCN4sX7amfYL3GT9qyZEBDx2alubvEsI36wtNq0i 9 | ewU4XmyZ+Rd7Q4mAPNoBGe5DsUA8wn/7iHGg9aJHu+GXvH7T3DVoUxW5W2KqPw+h 10 | jzqGBACWGuuCefa683uf6aKqpTS3JB+01BDPf+sG9qJ+k7xcJOsEiXIe1X5vH9ov 11 | kEvTM12kzY7SGwlsFsTDT1xioDl62g5nPlZMXErUBVnjoMtjl9bDwUPJY/vP1S9M 12 | VaONBMoJEON3HRui9jhdEK25LTdrcFlFpRzJI3AgdXwy8aQyiLRGZGV2ZWw6bGFu 13 | Z3VhZ2VzOmdvIE9CUyBQcm9qZWN0IDxkZXZlbDpsYW5ndWFnZXM6Z29AYnVpbGQu 14 | b3BlbnN1c2Uub3JnPohmBBMRAgAmBQJc9DoCAhsDBQkUY8NTBgsJCAcDAgQVAggD 15 | BBYCAwECHgECF4AACgkQr0z+TTB9e/lQZgCfXIjj30HyCPvUbSbSd6zOS0seAegA 16 | n3DXayMpRphNmyJgLvl5qKfsX7f6iEYEExECAAYFAkyvJq8ACgkQOzARt2udZSOg 17 | qQCeOba7kjk7CI+64GOkhhTGSdjnjdQAn2IC5tx+PW38XKwl3Jr5YVp0RyR0 18 | =AOj6 19 | -----END PGP PUBLIC KEY BLOCK----- 20 | -------------------------------------------------------------------------------- /coin/provisioning/common/linux/disable-cracklib.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | sudo chmod -x /etc/cron.daily/cracklib-runtime 4 | 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/linux/disable-mlocate.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | sudo chmod -x /etc/cron.daily/mlocate* 4 | -------------------------------------------------------------------------------- /coin/provisioning/common/linux/disable-notifications.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | gsettings set org.gnome.desktop.notifications.application:/update-manager/ enable false 4 | gsettings set org.gnome.desktop.notifications show-banners false 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/linux/disable_selinux.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # We need to disable selinux while we are overwriting some binaries 4 | # required by it. If this is not done, ICU provisioning will create 5 | # template that is not booting. 6 | 7 | sudo sed -i s/SELINUX=enforcing/SELINUX=disabled/g /etc/selinux/config 8 | -------------------------------------------------------------------------------- /coin/provisioning/common/linux/remove-apport.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | sudo apt-get purge apport -y 4 | -------------------------------------------------------------------------------- /coin/provisioning/common/linux/remove-update_notifier.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | sudo apt -q -y remove update-notifier update-manager python3-distupgrade python3-update-manager ubuntu-release-upgrader-core update-manager-core 4 | -------------------------------------------------------------------------------- /coin/provisioning/common/linux/telegraf-coin.conf: -------------------------------------------------------------------------------- 1 | [global_tags] 2 | [agent] 3 | interval = "10s" 4 | round_interval = true 5 | metric_batch_size = 100 6 | metric_buffer_limit = 10000 7 | collection_jitter = "0s" 8 | flush_interval = "10s" 9 | flush_jitter = "5s" 10 | precision = "" 11 | logfile = "/var/log/telegraf-coin.log" 12 | hostname = "$COIN_UNIQUE_JOB_ID" 13 | omit_hostname = false 14 | [[outputs.influxdb]] 15 | urls= ["https://qtinfluxdb01.intra.qt.io:8086"] 16 | insecure_skip_verify = true 17 | database = "coin_vms" 18 | skip_database_creation = true 19 | username = "coin_vms_writer" 20 | password = "COIN_VMS_WRITER_PASS" 21 | [[inputs.cpu]] 22 | percpu = true 23 | totalcpu = true 24 | collect_cpu_time = false 25 | report_active = false 26 | [[inputs.disk]] 27 | ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"] 28 | [[inputs.diskio]] 29 | [[inputs.kernel]] 30 | [[inputs.mem]] 31 | [[inputs.processes]] 32 | [[inputs.swap]] 33 | [[inputs.system]] 34 | [[inputs.kernel_vmstat]] # linux-only 35 | [[inputs.netstat]] 36 | 37 | 38 | # Monitor Coin process 39 | [[inputs.procstat]] 40 | exe = "coin-" 41 | pid_finder = "native" 42 | 43 | 44 | # Monitor I/O latency 45 | [[inputs.exec]] 46 | data_format = "influx" 47 | commands = [ "/usr/bin/telegraf-ioping.sh /" ] 48 | -------------------------------------------------------------------------------- /coin/provisioning/common/macos/disable-notifications_and_warnings.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Unload notificationcenterui.plist" 4 | launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist 5 | 6 | echo "Remove 32-bit warnings" 7 | rm ~/Library/Preferences/com.apple.coreservices.uiagent.plist 8 | -------------------------------------------------------------------------------- /coin/provisioning/common/macos/disable_update_downloads.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sudo defaults write /Library/Preferences/com.apple.SoftwareUpdate AutomaticDownload -boolean FALSE 3 | 4 | -------------------------------------------------------------------------------- /coin/provisioning/common/macos/homebrew.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | # Will install homebrew package manager for macOS. 5 | # WARNING: Requires commandlinetools 6 | 7 | 8 | set -e 9 | 10 | . "$(dirname "$0")"/../../common/unix/DownloadURL.sh 11 | 12 | 13 | DownloadURL \ 14 | http://ci-files01-hki.intra.qt.io/input/mac/homebrew-install.c744a716f9845988d01e6e238eee7117b8c366c9.rb \ 15 | https://raw.githubusercontent.com/Homebrew/install/c744a716f9845988d01e6e238eee7117b8c366c9/install \ 16 | b9782cc0b550229de77b429b56ffce04157e60486ab9df00461ccf3dad565b0a \ 17 | /tmp/homebrew_install 18 | /usr/bin/ruby /tmp/homebrew_install :build 8 | depends_on "automake" => :build 9 | depends_on "libtool" => :build 10 | 11 | conflicts_with "unixodbc", :because => "both install 'odbcinst.h' header" 12 | 13 | def install 14 | system "./autogen.sh" 15 | system "./configure", "--prefix=#{prefix}" 16 | system "make", "install" 17 | end 18 | 19 | test do 20 | system bin/"iodbc-config", "--version" 21 | end 22 | end 23 | 24 | -------------------------------------------------------------------------------- /coin/provisioning/common/macos/limit.maxfiles.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Label 6 | limit.maxfiles 7 | ProgramArguments 8 | 9 | launchctl 10 | limit 11 | maxfiles 12 | 65536 13 | 524288 14 | 15 | RunAtLoad 16 | 17 | ServiceIPC 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /coin/provisioning/common/macos/limit.maxproc.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Label 6 | limit.maxproc 7 | ProgramArguments 8 | 9 | launchctl 10 | limit 11 | maxproc 12 | 8192 13 | 32768 14 | 15 | RunAtLoad 16 | 17 | ServiceIPC 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /coin/provisioning/common/macos/pip.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | function InstallPip { 4 | 5 | python=$1 6 | 7 | # Will install pip utility for python 8 | curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py 9 | sudo "$python" get-pip.py 10 | rm get-pip.py 11 | } 12 | -------------------------------------------------------------------------------- /coin/provisioning/common/macos/virtualenv.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Will install virtual env for python 3 | sudo pip install virtualenv 4 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/http_proxy.txt: -------------------------------------------------------------------------------- 1 | proxy=http://proxy.intra.qt.io:3128 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/network_test_server_ip.txt: -------------------------------------------------------------------------------- 1 | network_test_server_ip=10.212.2.216 2 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/requirements.txt: -------------------------------------------------------------------------------- 1 | # This file holds all python3 packages need for a certain qt module 2 | # When adding new packages here, first add a comment with the name of the module 3 | # Then all the packages. Duplicates are wanted as every module should install 4 | # all packages it needs and shouldn't depend on a package from another module 5 | # 6 | # qtivi 7 | antlr4-python3-runtime==4.7.1 8 | argh==0.26.2 9 | click==6.7 10 | coloredlogs==10.0 11 | humanfriendly==4.15.1 12 | Jinja2==2.10.3 13 | MarkupSafe==1.0 14 | path.py==11.0.1 15 | pathtools==0.1.2 16 | PyYAML==5.1 17 | six==1.11.0 18 | typing==3.6.4 19 | watchdog==0.8.3 20 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/telegraf/telegraf-ioping.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Measure I/O latency once, return data in InfluxDB format 4 | # 5 | # Run one ioping command for read, and one for write. 6 | # Each one sends 3 requests and reports the minimum time, in nanoseconds. 7 | # (Because of limitations of ioping, we can't just send one request and get 8 | # the number back in the batch format. Additionally, the number seems to be 9 | # fluctuating quite a bit so taking the smallest number out of 3 requests is 10 | # stabilising it a bit.) 11 | 12 | 13 | set -e 14 | 15 | [ x"$1" = x ] && echo "$0 takes a path as a first argument" && exit 1 16 | 17 | # Try to run in high priority to avoid slow-downs because of 18 | # factors other than I/O. 19 | renice -n -10 -p $$ >/dev/null 2>&1 || true 20 | 21 | 22 | rlatency="$(ioping -B -k -c 3 -i 0.1 "$1" | cut -d " " -f 5)" 23 | wlatency="$(ioping -B -k -c 3 -i 0.1 -W "$1" | cut -d " " -f 5)" 24 | 25 | printf "ioping,path=$1 read_latency_ns=%u,write_latency_ns=%u\n" \ 26 | $rlatency $wlatency 27 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/telegraf/telegraf_packages.sha256.txt: -------------------------------------------------------------------------------- 1 | https://dl.influxdata.com/telegraf/releases/telegraf-1.12.6_darwin_amd64.tar.gz 2bc056e1ad38af2ba95d2cb1d43b513cc611fdd3b851b2ff5e09991d52b01253 2 | https://dl.influxdata.com/telegraf/releases/telegraf-1.12.6_linux_amd64.tar.gz b33cf0f5935a5c225ab0de69db1e6b249d581f3213313de62a8de928aedadbec 3 | https://dl.influxdata.com/telegraf/releases/telegraf-1.12.6_windows_amd64.zip 5d025d85070e8c180c443580afa8a27421a7bbcf14b5044894e9f3298d0ce97a 4 | https://dl.influxdata.com/telegraf/releases/telegraf-1.12.6_windows_i386.zip 5178a0bdaab448c2ef965b0e36f835849cea731ccd87c4a4527f0f05fbbdf271 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/apache2/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_16.04 2 | ARG packages="avahi-daemon apache2 libcgi-session-perl" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 80 443 5 | 6 | # install configurations and test data 7 | 8 | COPY rfc3252.txt . 9 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/apache2_18.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon apache2 libcgi-session-perl" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 80 443 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/californium/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon maven default-jdk" 3 | RUN apt-get update && apt-get -y install $packages 4 | 5 | # Get californium-based CoAP test server 6 | WORKDIR /root/src 7 | ADD californium-*.tar.gz . 8 | RUN mv californium-* californium 9 | WORKDIR /root/src/californium 10 | RUN mvn clean install -q -DskipTests 11 | WORKDIR / 12 | 13 | EXPOSE 5683/udp 5684/udp 14 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/cyrus/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_16.04 2 | ARG packages="avahi-daemon cyrus-imapd" 3 | RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 143 993 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/cyrus_18.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon cyrus-imapd" 3 | RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 143 993 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/danted/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_16.04 2 | ARG packages="avahi-daemon" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | COPY dante-server_1.4.1-1_amd64.deb . 5 | RUN apt -y install ./dante-server_1.4.1-1_amd64.deb \ 6 | && rm -f ./dante-server_1.4.1-1_amd64.deb 7 | EXPOSE 1080-1081 8 | 9 | # install configurations and test data 10 | COPY danted /etc/init.d/ 11 | COPY danted-authenticating /etc/init.d/ 12 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/danted_18.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon dante-server" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 1080-1081 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/echo/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_16.04 2 | ARG packages="avahi-daemon xinetd" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 7 7/UDP 13 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/echo_18.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon xinetd" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 7 7/UDP 13 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/freecoap/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon autoconf automake libtool make libgnutls28-dev" 3 | RUN apt-get update && apt-get -y install $packages 4 | 5 | WORKDIR /root/src 6 | ADD FreeCoAP-*.tar.gz . 7 | RUN mv FreeCoAP-* FreeCoAP 8 | WORKDIR /root/src/FreeCoAP 9 | RUN autoreconf --install && ./configure && make && make install 10 | WORKDIR sample/time_server 11 | RUN make 12 | WORKDIR / 13 | 14 | EXPOSE 5685/udp 15 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/ftp-proxy/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_16.04 2 | ARG packages="avahi-daemon ftp-proxy" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 2121 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/ftp-proxy_18.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon ftp-proxy" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 2121 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/iptables/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_16.04 2 | ARG packages="avahi-daemon iptables" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 1357 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/iptables_18.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon iptables" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 1357 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/qt_ubuntu_16.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:16.04 2 | ARG COIN_RUNS_IN_QT_COMPANY 3 | RUN test x"$COIN_RUNS_IN_QT_COMPANY" = xtrue \ 4 | && sed -i 's;\(archive\|security\)\.ubuntu\.com;repo-clones.ci.qt.io/apt-mirror/mirror;' /etc/apt/sources.list \ 5 | || echo "Internal package repository not found. Using public repositories." 6 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/qt_ubuntu_18.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:18.04 2 | ARG COIN_RUNS_IN_QT_COMPANY 3 | RUN test x"$COIN_RUNS_IN_QT_COMPANY" = xtrue \ 4 | && sed -i 's;\(archive\|security\)\.ubuntu\.com;repo-clones.ci.qt.io/apt-mirror/mirror;' /etc/apt/sources.list \ 5 | || echo "Internal package repository not found. Using public repositories." 6 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/squid/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_16.04 2 | ARG packages="avahi-daemon squid" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 3128-3130 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/squid_18.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon squid" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 3128-3130 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/vsftpd/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_16.04 2 | ARG packages="avahi-daemon vsftpd ftp" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 20-21 5 | 6 | # install configurations and test data 7 | COPY rfc3252.txt . 8 | -------------------------------------------------------------------------------- /coin/provisioning/common/shared/testserver/vsftpd_18.04/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM qt_ubuntu_18.04 2 | ARG packages="avahi-daemon vsftpd" 3 | RUN apt-get update && apt-get install -y $packages && dpkg -l $packages 4 | EXPOSE 20-21 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/3dstudio_3rdparty.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\helpers.ps1" 2 | 3 | $zip = Get-DownloadLocation "Qt3DStudio-3rdparty-win64-CI.zip" 4 | 5 | $url = "http://ci-files01-hki.intra.qt.io/input/3rdparty/Qt3DStudio-3rdparty-win64-CI.zip" 6 | 7 | Download $url $url $zip 8 | Verify-Checksum $zip "08D740D2EFB4CBCDE7D012908B89AA48DE5CD4E1" 9 | Extract-7Zip $zip C:\Utils\Qt3DStudio3rdparty 10 | Remove-Item -Path $zip 11 | 12 | Set-EnvironmentVariable "QT3DSTUDIO_3RDPARTY_DIR" "C:/Utils/Qt3DStudio3rdparty" 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/icu/65.1/qtproject/stable/export/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1582252281 2 | conanfile.py: d7d6690f8a7dd0d9fe4e201a78c61c67 3 | icu_base.py: dbd6da563f0739fa7b162d8bc0099974 4 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.5/qtproject/stable/export/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599735572 2 | LICENSE.md: 5aa9930034582b90e2008d2c609d1317 3 | conanfile.py: b752e9ae1c6b8d65022ecc9094a8a8ab 4 | export_source/CMakeLists.txt: eb0fcc86f467a4c6ac9f37c16887a29f 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.5/qtproject/stable/package/1655126cc73fa38b3abf5795b2008935595969ae/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599738045 2 | conaninfo.txt: 4fbbb44cc5815e6399144d4738128d34 3 | include/jconfig.h: 364c5b940297dd331dacb42dc5bc3cb9 4 | include/jerror.h: 9b7898fe417de269b8be88b10df908b0 5 | include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d 6 | include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb 7 | include/turbojpeg.h: e5051d1390ea320d22e81c7e73a163ae 8 | lib/libjpeg.a: 1beb177c28bec696d92c96cb12cf50b0 9 | lib/libturbojpeg.a: 3601472665eebd9ba70a8b4ded622fb7 10 | lib/pkgconfig/libjpeg.pc: 31670f8efeaaf416c10ef75033a21f89 11 | lib/pkgconfig/libturbojpeg.pc: 9ec917634a8badf738794da988e0cdd2 12 | licenses/LICENSE.md: 26d6491346496a57f75f00a78199122e 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.5/qtproject/stable/package/1c8544b57637b92dcdfce760b76b459bde0ce701/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599737655 2 | conaninfo.txt: 1dff9c35ef06cd1f8e1dd7d3fa538a0b 3 | include/jconfig.h: 364c5b940297dd331dacb42dc5bc3cb9 4 | include/jerror.h: 9b7898fe417de269b8be88b10df908b0 5 | include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d 6 | include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb 7 | include/turbojpeg.h: e5051d1390ea320d22e81c7e73a163ae 8 | lib/jpeg-static.lib: 810088c13a0b62845d2a07fb9aedcf7c 9 | lib/pkgconfig/libjpeg.pc: 42c35d08648be46cba25e5c233bb4ceb 10 | lib/pkgconfig/libturbojpeg.pc: f5f04f23108a7e0287c36286668bed72 11 | lib/turbojpeg-static.lib: 57ccb316b5e241e589e4774d1873d2ea 12 | licenses/LICENSE.md: 26d6491346496a57f75f00a78199122e 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.5/qtproject/stable/package/4985763cfece81b148d7c11f16d564e42ee2756c/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599735723 2 | conaninfo.txt: 96940ef25782fe187ad876a9798aefe6 3 | include/jconfig.h: 364c5b940297dd331dacb42dc5bc3cb9 4 | include/jerror.h: 9b7898fe417de269b8be88b10df908b0 5 | include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d 6 | include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb 7 | include/turbojpeg.h: e5051d1390ea320d22e81c7e73a163ae 8 | lib/jpeg-static.lib: bac9b04d6d20cb9e29a47c56e1d58e92 9 | lib/pkgconfig/libjpeg.pc: 8d98a30a9db257c005f7619aa5c0a054 10 | lib/pkgconfig/libturbojpeg.pc: 79a1c3fce48acb5ad45fd69fc5b5a7e0 11 | lib/turbojpeg-static.lib: 8e8c7d62afe07877cc07befcafc9b189 12 | licenses/LICENSE.md: 26d6491346496a57f75f00a78199122e 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.5/qtproject/stable/package/6fe55a250d22d4408ba9c4b99015260e933b58f0/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599736618 2 | conaninfo.txt: 03f3f4e3fcf5d709d43aaec1f55898dc 3 | include/jconfig.h: 364c5b940297dd331dacb42dc5bc3cb9 4 | include/jerror.h: 9b7898fe417de269b8be88b10df908b0 5 | include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d 6 | include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb 7 | include/turbojpeg.h: e5051d1390ea320d22e81c7e73a163ae 8 | lib/jpeg-static.lib: 3134bba34a47e8c27d20ec4a4588f54d 9 | lib/pkgconfig/libjpeg.pc: e4f3f7cf063e703922623a48759eb548 10 | lib/pkgconfig/libturbojpeg.pc: 6412ff7d0f49e4b26ea9c17526fcd995 11 | lib/turbojpeg-static.lib: c01d3cddcc20514a4ed2ab9e0bf6bc79 12 | licenses/LICENSE.md: 26d6491346496a57f75f00a78199122e 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.5/qtproject/stable/package/793aa46df280f94646f5e993f5e3553e18ec8ae9/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599738143 2 | conaninfo.txt: 3991de728b2148a357e0adfe83ddff62 3 | include/jconfig.h: 364c5b940297dd331dacb42dc5bc3cb9 4 | include/jerror.h: 9b7898fe417de269b8be88b10df908b0 5 | include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d 6 | include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb 7 | include/turbojpeg.h: e5051d1390ea320d22e81c7e73a163ae 8 | lib/libjpeg.a: ab32855e9f71865bc026351d8e2e77dc 9 | lib/libturbojpeg.a: a05a8eef4b34c10a68a3e5c7864f55b5 10 | lib/pkgconfig/libjpeg.pc: afe1d748f5b9331fe322f414eeb8d871 11 | lib/pkgconfig/libturbojpeg.pc: 5a19528da1aae07f73729acf72ea8d9b 12 | licenses/LICENSE.md: 26d6491346496a57f75f00a78199122e 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.5/qtproject/stable/package/7fbb66ade701b46f34dff2e121edef66968608b5/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599737489 2 | conaninfo.txt: faf97c2c98fbb660379fb96a52f3dcf3 3 | include/jconfig.h: 364c5b940297dd331dacb42dc5bc3cb9 4 | include/jerror.h: 9b7898fe417de269b8be88b10df908b0 5 | include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d 6 | include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb 7 | include/turbojpeg.h: e5051d1390ea320d22e81c7e73a163ae 8 | lib/jpeg-static.lib: 05604ba0465efd4fe4e8a518e82cdb81 9 | lib/pkgconfig/libjpeg.pc: 6819f3aec5d0a35187d510fb1034c584 10 | lib/pkgconfig/libturbojpeg.pc: 7226bc5b0d915e053a1204aba32867cf 11 | lib/turbojpeg-static.lib: efa16bdd47f24831fc02ac0b69912490 12 | licenses/LICENSE.md: 26d6491346496a57f75f00a78199122e 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.5/qtproject/stable/package/9b721b63e452039565ba8417e25a183d1bbcb4df/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599737081 2 | conaninfo.txt: da8913ab37decb7846f324c2c05b6e56 3 | include/jconfig.h: 364c5b940297dd331dacb42dc5bc3cb9 4 | include/jerror.h: 9b7898fe417de269b8be88b10df908b0 5 | include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d 6 | include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb 7 | include/turbojpeg.h: e5051d1390ea320d22e81c7e73a163ae 8 | lib/jpeg-static.lib: 9d557bb3f4769b7e3820d71be4189cfb 9 | lib/pkgconfig/libjpeg.pc: 1bcb08ffc4f83b2306ff794ad5c2b91c 10 | lib/pkgconfig/libturbojpeg.pc: b9783de5729e5835e41a35cb2f5fa568 11 | lib/turbojpeg-static.lib: 09609dcfdad02bed5bf00e348fff8807 12 | licenses/LICENSE.md: 26d6491346496a57f75f00a78199122e 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.5/qtproject/stable/package/acb703d92685c00a6f85ed3ca8225725f0e186c1/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599736121 2 | conaninfo.txt: d3b27ba63fbdcf067b5f4afd1a1fdef0 3 | include/jconfig.h: 364c5b940297dd331dacb42dc5bc3cb9 4 | include/jerror.h: 9b7898fe417de269b8be88b10df908b0 5 | include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d 6 | include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb 7 | include/turbojpeg.h: e5051d1390ea320d22e81c7e73a163ae 8 | lib/jpeg-static.lib: bcdd30b7636c7ed8f0e6dbfb97729c31 9 | lib/pkgconfig/libjpeg.pc: e124d9000016d4fa108588c91087d060 10 | lib/pkgconfig/libturbojpeg.pc: 6b112424701322f51d06015089920210 11 | lib/turbojpeg-static.lib: 7d9c9ee5fb38b856bb9424a2ae5f9bbd 12 | licenses/LICENSE.md: 26d6491346496a57f75f00a78199122e 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libxml2/2.9.10/qtproject/stable/export/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1582268701 2 | conanfile.py: 0b5f0deb08eb369fa19f3f01d80c92be 3 | export_source/patches/0001-fix-install-mingw.patch: 10e6d5f804a7e2eadb8886369b87cc95 4 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_manifests/libxslt/1.1.34/qtproject/stable/export/conanmanifest.txt: -------------------------------------------------------------------------------- 1 | 1599827656 2 | LICENSE.md: d9f691088a6aaf0589397de712404f23 3 | conanfile.py: 1a377def24ec5c2878da1d9d97a2c39c 4 | export_source/patches/Add-configuration-for-profiler.diff: 5207625dda27ca22cf49f7b136dc6585 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/conan_requirements.txt: -------------------------------------------------------------------------------- 1 | # Generated for conan==1.29.0 2 | appdirs==1.4.4 3 | bottle==0.12.18 4 | certifi==2020.6.20 5 | chardet==3.0.4 6 | colorama==0.4.3 7 | conan==1.29.0 8 | deprecation==2.0.7 9 | distlib==0.3.1 10 | distro==1.5.0 11 | fasteners==0.15 12 | filelock==3.0.12 13 | future==0.18.2 14 | idna==2.10 15 | importlib-metadata==1.7.0 16 | Jinja2==2.11.2 17 | MarkupSafe==1.1.1 18 | monotonic==1.5 19 | node-semver==0.6.1 20 | packaging==20.4 21 | patch-ng==1.17.4 22 | pluginbase==1.0.0 23 | Pygments==2.7.0 24 | PyJWT==1.7.1 25 | pyparsing==2.4.7 26 | python-dateutil==2.8.1 27 | PyYAML==5.3.1 28 | requests==2.24.0 29 | six==1.15.0 30 | tqdm==4.49.0 31 | urllib3==1.25.10 32 | virtualenv==20.0.31 33 | zipp==3.1.0 34 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/disable-clean-manager.ps1: -------------------------------------------------------------------------------- 1 | # This script will disable automatic disk cleanup 2 | 3 | . "$PSScriptRoot\helpers.ps1" 4 | 5 | Run-Executable "reg.exe" "ADD `"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy`" /V 04 /T REG_dWORD /D 0 /F" 6 | 7 | # Maintenance task used by the system to launch a silent auto disk cleanup when running low on free disk space. 8 | DisableSchedulerTask "DiskCleanup\SilentCleanup" 9 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/disable-netadapterlso.ps1: -------------------------------------------------------------------------------- 1 | Disable-NetAdapterLso "Ethernet 2" 2 | Start-Sleep -s 15 # Give windows some time to adjust network settings 3 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/disable-ntp.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\helpers.ps1" 2 | 3 | # Disable the NTP from syncing 4 | Run-Executable "w32tm.exe" "/config /syncfromflags:NO" 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/disable-quickedit.ps1: -------------------------------------------------------------------------------- 1 | # Disabling cmd.exe and powershell QuickEdit && InsertMode 2 | # 3 | # These two can freeze console window on win10 sometimes 4 | # manual recovery is pressing enter on console window 5 | 6 | . "$PSScriptRoot\helpers.ps1" 7 | 8 | Run-Executable "reg.exe" "ADD `"HKEY_CURRENT_USER\Console`" /V QuickEdit /T REG_dWORD /D 0 /F" 9 | Run-Executable "reg.exe" "ADD `"HKEY_CURRENT_USER\Console`" /V InsertMode /T REG_dWORD /D 0 /F" 10 | Run-Executable "reg.exe" "ADD `"HKEY_CURRENT_USER\Console\%SystemRoot%_System32_WindowsPowerShell_v1.0_powershell.exe`" /V QuickEdit /T REG_dWORD /D 0 /F" 11 | Run-Executable "reg.exe" "ADD `"HKEY_CURRENT_USER\Console\%SystemRoot%_System32_WindowsPowerShell_v1.0_powershell.exe`" /V InsertMode /T REG_dWORD /D 0 /F" 12 | Run-Executable "reg.exe" "ADD `"HKEY_CURRENT_USER\Console\%SystemRoot%_SysWOW64_WindowsPowerShell_v1.0_powershell.exe`" /V QuickEdit /T REG_dWORD /D 0 /F" 13 | Run-Executable "reg.exe" "ADD `"HKEY_CURRENT_USER\Console\%SystemRoot%_SysWOW64_WindowsPowerShell_v1.0_powershell.exe`" /V InsertMode /T REG_dWORD /D 0 /F" 14 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/disable-windows-module-installer.ps1: -------------------------------------------------------------------------------- 1 | # Disable Windows Module Installer (Trusted Installer). 2 | # Trusted Installe enables installation, modification, and removal of Windows updates and optional components. 3 | # If this service is disabled, install or uninstall of Windows updates might fail for this computer. 4 | sc.exe config TrustedInstaller start=disabled 5 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/dxsdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\helpers.ps1" 2 | 3 | # This script installs DirectX SDK 4 | 5 | $package = "DXSDK_Jun10.exe" 6 | 7 | $cachedUrl = "\\ci-files01-hki.intra.qt.io\provisioning\windows\$package" 8 | $officialUrl = "https://download.microsoft.com/download/A/E/7/AE743F1F-632B-4809-87A9-AA1BB3458E31/$package" 9 | $sdkChecksumSha1 = "8fe98c00fde0f524760bb9021f438bd7d9304a69" 10 | $package_path = "C:\Windows\Temp\$package" 11 | 12 | Download $officialUrl $cachedUrl $package_path 13 | Verify-Checksum $package_path $sdkChecksumSha1 sha1 14 | Write-Host "Installing DirectX SDK" 15 | Run-Executable $package_path "/u" 16 | 17 | Remove-Item -Path $package_path 18 | 19 | Write-Output "DirectX SDK = 9.29.1962 (Jun 10)" >> ~\versions.txt 20 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/jom.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\helpers.ps1" 2 | 3 | $version = "1_1_2" 4 | $zip = Get-DownloadLocation "jom_$version.zip" 5 | 6 | Download http://download.qt.io/official_releases/jom/jom_$version.zip http://ci-files01-hki.intra.qt.io/input/windows/jom_$version.zip $zip 7 | Verify-Checksum $zip "80EE5678E714DE99DDAF5F7593AB04DB1C7928E4" 8 | Extract-7Zip $zip C:\Utils\Jom 9 | 10 | Set-EnvironmentVariable "CI_JOM_PATH" "C:\Utils\Jom" 11 | 12 | $version = $version.replace('_','.') 13 | Write-Output "Jom = $version" >> ~/versions.txt 14 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/libclang-v100-dyn.ps1: -------------------------------------------------------------------------------- 1 | param( 2 | [Int32]$archVer=32, 3 | [string]$toolchain="vs2019", 4 | [bool]$setDefault=$true 5 | ) 6 | . "$PSScriptRoot\helpers.ps1" 7 | 8 | $libclang_version="10.0" 9 | Write-Output "libClang for QtForPython = $libclang_version" >> ~/versions.txt 10 | 11 | # PySide versions following Qt6 use a C++ parser based on Clang (http://clang.org/). 12 | # The Clang library (C-bindings), version 8.0 or higher is required for building. 13 | 14 | # Starting from Qt 5.11 QDoc requires Clang to parse C++ 15 | 16 | $baseDestination = "C:\Utils\libclang-" + $libclang_version + "-dynlibs-" + $toolchain 17 | $libclang_version = $libclang_version -replace '["."]' 18 | 19 | function install() { 20 | 21 | param( 22 | [string]$sha1=$1, 23 | [string]$destination=$2 24 | ) 25 | 26 | $zip = "c:\users\qt\downloads\libclang-dyn.7z" 27 | 28 | $script:OfficialUrl = "https://download.qt.io/development_releases/prebuilt/libclang/libclang-release_$libclang_version-based-windows-$toolchain`_$archVer.7z" 29 | $script:CachedUrl = "http://ci-files01-hki.intra.qt.io/input/libclang/libclang-release_$libclang_version-based-windows-$toolchain`_$archVer.7z" 30 | 31 | Download $OfficialUrl $CachedUrl $zip 32 | Verify-Checksum $zip $sha1 33 | Extract-7Zip $zip C:\Utils\ 34 | Rename-Item C:\Utils\libclang $destination 35 | Remove-Item -Force -Path $zip 36 | } 37 | 38 | if ( $toolchain -eq "vs2019" ) { 39 | if ( $archVer -eq 64 ) { 40 | $sha1 = "B2C4F24B2388AEBAA6B8FCE3AE4E63D34D1517FE" 41 | } 42 | else { 43 | $sha1 = "b970f51df255a27e0fdb7b665e70ed5281257f40" 44 | } 45 | } 46 | 47 | install $sha1 $baseDestination-$archVer 48 | 49 | Set-EnvironmentVariable "LLVM_DYNAMIC_LIBS_100" ($baseDestination + "-_ARCH_") 50 | 51 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/memorypershell.ps1: -------------------------------------------------------------------------------- 1 | # This is needed e.g. for Android NDK installation for Windows 7 x86 2 | Write-Host "Increase value of MaxMemoryPerShellMB to avoid 'out of memory' exception" 3 | set-item wsman:localhost\Shell\MaxMemoryPerShellMB 2048 4 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/msys.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\helpers.ps1" 2 | 3 | # This script will install msys which is needed for configuring openssl for Android 4 | 5 | $version = "1.0.11" 6 | $url = "\\ci-files01-hki.intra.qt.io\provisioning\windows\msys-$version.7z" 7 | 8 | $zip = Get-DownloadLocation ("msys-$version.7z") 9 | $sha1 = "22cd76f1263db8c72727a9537228c481ff33c285" 10 | $destination = "C:\msys" 11 | 12 | Download $url $url $zip 13 | Verify-Checksum $zip $sha1 14 | C:\Utils\sevenzip\7z.exe x $zip -oC:\ 15 | Set-EnvironmentVariable "MSYS_PATH" "$destination\\1.0\\bin" 16 | Write-Output "Msys = $version" >> ~/versions.txt 17 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/ninja.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\helpers.ps1" 2 | 3 | $zip = Get-DownloadLocation "ninja-1.6.0-win-x86.zip" 4 | 5 | Download https://github.com/ninja-build/ninja/releases/download/v1.6.0/ninja-win.zip \\ci-files01-hki.intra.qt.io\provisioning\ninja\ninja-1.6.0-win-x86.zip $zip 6 | Verify-Checksum $zip "E01093F6533818425F8EFB0843CED7DCAABEA3B2" 7 | 8 | Extract-7Zip $zip C:\Utils\Ninja 9 | Remove-Item -Path $zip 10 | 11 | Add-Path "C:\Utils\Ninja" 12 | 13 | Write-Output "Ninja = 1.6.0" >> ~/versions.txt 14 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/telegraf-coin.conf: -------------------------------------------------------------------------------- 1 | [global_tags] 2 | [agent] 3 | interval = "10s" 4 | round_interval = true 5 | metric_batch_size = 100 6 | metric_buffer_limit = 10000 7 | collection_jitter = "0s" 8 | flush_interval = "10s" 9 | flush_jitter = "5s" 10 | precision = "" 11 | logfile = "C:\\telegraf-coin.log" 12 | hostname = "$COIN_UNIQUE_JOB_ID" 13 | omit_hostname = false 14 | [[outputs.influxdb]] 15 | urls= ["https://qtinfluxdb01.intra.qt.io:8086"] 16 | insecure_skip_verify = true 17 | database = "coin_vms" 18 | skip_database_creation = true 19 | username = "coin_vms_writer" 20 | password = "COIN_VMS_WRITER_PASS" 21 | [[inputs.cpu]] 22 | percpu = true 23 | totalcpu = true 24 | collect_cpu_time = false 25 | report_active = false 26 | [[inputs.disk]] 27 | ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"] 28 | [[inputs.diskio]] 29 | [[inputs.kernel]] 30 | [[inputs.mem]] 31 | #[[inputs.processes]] 32 | [[inputs.swap]] 33 | [[inputs.system]] 34 | #[[inputs.kernel_vmstat]] # linux-only 35 | [[inputs.netstat]] 36 | 37 | 38 | # Monitor Coin process 39 | [[inputs.procstat]] 40 | exe = "coin-" 41 | pid_finder = "native" 42 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/vclibs_debug.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\helpers.ps1" 2 | 3 | function Install-VCLibsDebug 4 | { 5 | Param ( 6 | [string]$Arch 7 | ) 8 | 9 | $installedPackage = Get-AppxPackage Microsoft.VCLibs.140.00.Debug | Where-Object {$_.Architecture -eq $Arch} 10 | if ($installedPackage) { 11 | Write-Host "Debug VCLibs already installed for $Arch." 12 | return 13 | } 14 | 15 | if (Is64BitWinHost) { 16 | $ProgramFiles = "Program Files (x86)" 17 | } else { 18 | $ProgramFiles = "Program Files" 19 | } 20 | Add-AppxPackage "C:\$ProgramFiles\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\Appx\Debug\$Arch\Microsoft.VCLibs.$Arch.Debug.14.00.appx" 21 | 22 | Write-Host "Debug VCLibs successfully installed for $Arch." 23 | } 24 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/version.ps1: -------------------------------------------------------------------------------- 1 | Write-Host '******************** SW VERSIONS ********************' 2 | type ~/versions.txt 3 | Write-Host '*****************************************************' 4 | Write-Host '******************** Get-PSDrive ********************' 5 | Get-PSDrive 6 | Write-Host '*****************************************************' 7 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/win10-enable-devmode.ps1: -------------------------------------------------------------------------------- 1 | # Turning on developer mode. 2 | # 3 | # In order to run auto tests for UWP, we have to enable developer mode on Windows 10 machines. 4 | # https://docs.microsoft.com/en-us/windows/uwp/get-started/enable-your-device-for-development 5 | 6 | . "$PSScriptRoot\helpers.ps1" 7 | 8 | if (Is64BitWinHost) { 9 | $bitness = "/reg:64" 10 | } else { 11 | $bitness = "/reg:32" 12 | } 13 | 14 | Run-Executable "reg.exe" "ADD `"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock`" /V AllowDevelopmentWithoutDevLicense /T REG_DWORD /D 1 /F $bitness" 15 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/winrtrunner.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\helpers.ps1" 2 | 3 | $zip = Get-DownloadLocation "winrtrunner.zip" 4 | $url = "http://download.qt.io/development_releases/prebuilt/winrtrunner/winrtrunner_2018-07-06.zip" 5 | $url_cache = "\\ci-files01-hki.intra.qt.io\provisioning\windows\winrtrunner\winrtrunner_2018-07-06.zip" 6 | 7 | Download $url $url_cache $zip 8 | Verify-Checksum $zip "93548e8c3fb8fded2474996ef5e0163f489ce8cf" 9 | Extract-7Zip $zip C:\Utils\winrtrunner 10 | Remove-Item -Path $zip 11 | 12 | Set-EnvironmentVariable "CI_WINRTRUNNER_PATH" "C:\Utils\winrtrunner" 13 | -------------------------------------------------------------------------------- /coin/provisioning/common/windows/wsearch-off.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\helpers.ps1" 2 | 3 | # Disable the windows search indexing service 4 | Run-Executable "sc.exe" "config WSearch start= disabled" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-CentOS-8.1-x86_64/05-libclang-v100-dyn.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | BASEDIR=$(dirname "$0") 5 | # shellcheck source=../common/unix/libclang-v100-dyn.sh 6 | "$BASEDIR/../common/unix/libclang-v100-dyn.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-RHEL-7.6-x86_64/01-disable-mlocate.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | BASEDIR=$(dirname "$0") 3 | # shellcheck source=../common/linux/disable-mlocate.sh 4 | "$BASEDIR/../common/linux/disable-mlocate.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-RHEL-7.6-x86_64/01-install_telegraf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/unix/telegraf_install.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-RHEL-7.6-x86_64/05-libclang.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | BASEDIR=$(dirname "$0") 5 | # shellcheck source=../common/unix/libclang.sh 6 | "$BASEDIR/../common/unix/libclang.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-RHEL-7.6-x86_64/08-libclang-v100-dyn.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | # shellcheck source=../common/unix/libclang-v100-dyn.sh 7 | "$BASEDIR/../common/unix/libclang-v100-dyn.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-RHEL-7.6-x86_64/09-install-openssl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/install-openssl.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-RHEL-7.6-x86_64/30-fbx.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/linux/fbx_linux.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-RHEL-7.6-x86_64/35-install-breakpad.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/install-breakpad.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-breakpad.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-RHEL-7.6-x86_64/90-squish.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | BASEDIR=$(dirname "$0") 3 | "$BASEDIR/../common/unix/squishInstall.sh" 4 | 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/01-disable-btrfs-balance.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # Stops the balance job if one is running at the moment. This is a very expensive thing to run and causes major slow down. 6 | sudo systemctl stop btrfs-balance.service 7 | 8 | # This will disable btrfs balance job scheduling. 9 | sudo sed -i 's/BTRFS_BALANCE_PERIOD="weekly"/BTRFS_BALANCE_PERIOD="none"/g' /etc/sysconfig/btrfsmaintenance 10 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/01-disable-cron_daily.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # this script will remove executable rights from cron.daily jobs 6 | sudo chmod -x /etc/cron.daily/* 7 | 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/01-disable-fstrim_timer.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # This will disable fstrim. The fstrim.timer is scheduled to activate the fstrim.service 6 | sudo systemctl stop fstrim.timer 7 | sudo systemctl disable fstrim.timer 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/01-install_telegraf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/unix/telegraf_install.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/02-disable-gnome-notifications.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # shellcheck source=../common/linux/disable-notifications.sh 4 | source "${BASH_SOURCE%/*}/../common/linux/disable-notifications.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/02-disable-ntp.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # shellcheck source=../common/linux/disable-ntp_linux.sh 3 | source "${BASH_SOURCE%/*}/../common/linux/disable-ntp_linux.sh" 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/02-enable-modules.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # Activate these modules 6 | 7 | # This is needed by Nodejs and QtWebEngine 8 | sudo SUSEConnect -p sle-module-web-scripting/15/x86_64 9 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/08-libclang.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | # shellcheck source=../common/unix/libclang.sh 7 | "$BASEDIR/../common/unix/libclang.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/09-install-openssl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/install-openssl.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-SLES-15-x86_64/90-squish.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | BASEDIR=$(dirname "$0") 3 | "$BASEDIR/../common/unix/squishInstall.sh" 4 | 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/01-install_telegraf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/unix/telegraf_install.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/02-disable-notifications.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # shellcheck source=../common/linux/disable-notifications.sh 4 | source "${BASH_SOURCE%/*}/../common/linux/disable-notifications.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/02-disable-ntp.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # shellcheck source=../common/linux/disable-ntp_linux.sh 4 | source "${BASH_SOURCE%/*}/../common/linux/disable-ntp_linux.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/02-remove-apport.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # shellcheck source=../common/linux/remove-apport.sh 4 | source "${BASH_SOURCE%/*}/../common/linux/remove-apport.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/02-remove-update_notifier.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # shellcheck source=../common/linux/remove-update_notifier.sh 4 | source "${BASH_SOURCE%/*}/../common/linux/remove-update_notifier.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/03-gcc.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/linux/gcc.sh 6 | source "${BASH_SOURCE%/*}/../common/linux/gcc.sh" 7 | 8 | InstallGCC 9.3.0 50 5038e8752407d14e5a70c8efc80c20a6d4219aaa 212f77d7b7fe1fdf01a1c0b0ebc9d82aeda5e1e0 9 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/04-libclang.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | BASEDIR=$(dirname "$0") 4 | "$BASEDIR/../common/unix/libclang.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/09-install-openssl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/install-openssl.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/30-fbx.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/linux/fbx_linux.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/35-install-breakpad.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/install-breakpad.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-breakpad.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/40-cmake.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BASEDIR=$(dirname "$0") 4 | "$BASEDIR/../common/linux/cmake_linux.sh" 5 | 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/80-docker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BASEDIR=$(dirname "$0") 4 | "$BASEDIR/../common/linux/docker.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/90-squish.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | BASEDIR=$(dirname "$0") 3 | "$BASEDIR/../common/unix/squishInstall.sh" 4 | 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/91-squish-coco.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # shellcheck source=../common/linux/squish-coco.sh 4 | source "${BASH_SOURCE%/*}/../common/linux/squish-coco.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/99-version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BASEDIR=$(dirname "$0") 4 | "$BASEDIR/../common/linux/ubuntu-version.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-Ubuntu-20.04-x86_64/04-libclang-v100-dyn.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | BASEDIR=$(dirname "$0") 4 | "$BASEDIR/../common/unix/libclang-v100-dyn.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-openSUSE-15.1-x86_64/01-install_telegraf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/unix/telegraf_install.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-openSUSE-15.1-x86_64/01-systemsetup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | # shellcheck source=../common/shared/network_test_server_ip.txt 7 | source "$BASEDIR/../common/shared/network_test_server_ip.txt" 8 | # shellcheck source=../common/unix/check_and_set_proxy.sh 9 | source "${BASH_SOURCE%/*}/../common/unix/check_and_set_proxy.sh" 10 | 11 | # https://bugzilla.opensuse.org/show_bug.cgi?id=1032027 12 | sudo btrfs quota disable / 13 | 14 | sed -i '$ a\[Daemon\]\nAutolock=false\nLockOnResume=false' ~/.config/kscreenlockerrc 15 | 16 | sudo sed -i 's|GRUB_TIMEOUT=8|GRUB_TIMEOUT=0|g' /etc/default/grub 17 | sudo grub2-mkconfig -o /boot/grub2/grub.cfg 18 | 19 | echo "Set Network Test Server address to $network_test_server_ip in /etc/hosts" 20 | echo "$network_test_server_ip qt-test-server qt-test-server.qt-test-net" | sudo tee -a /etc/hosts 21 | echo "Set DISPLAY" 22 | echo 'export DISPLAY=":0"' >> ~/.bashrc 23 | echo "Disabling file indexing." 24 | sudo balooctl disable 25 | 26 | sudo systemctl stop packagekit 27 | sudo systemctl disable packagekit 28 | sudo systemctl mask packagekit 29 | while sudo fuser /usr/lib/packagekitd >/dev/null 2>&1 ; do 30 | echo "Waiting for PackageKit to finish..." 31 | sleep 0.5 32 | done 33 | echo "Disabling update notifications" 34 | sudo zypper -nq remove plasma5-pk-updates 35 | 36 | 37 | # shellcheck disable=SC2031 38 | if [ "$http_proxy" != "" ]; then 39 | sudo sed -i 's/PROXY_ENABLED=\"no\"/PROXY_ENABLED=\"yes\"/' /etc/sysconfig/proxy 40 | sudo sed -i "s|HTTP_PROXY=\".*\"|HTTP_PROXY=\"$proxy\"|" /etc/sysconfig/proxy 41 | fi 42 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-openSUSE-15.1-x86_64/02-disable-ntp.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # shellcheck source=../common/linux/disable-ntp_linux.sh 3 | source "${BASH_SOURCE%/*}/../common/linux/disable-ntp_linux.sh" 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-openSUSE-15.1-x86_64/08-libclang.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | # shellcheck source=../common/unix/libclang.sh 7 | "$BASEDIR/../common/unix/libclang.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-openSUSE-15.1-x86_64/08-pythondev.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # provides: python development libraries 3 | # version: provided by default Linux distribution repository 4 | # needed to build pyside 5 | 6 | set -ex 7 | 8 | sudo zypper -nq install python-devel python-xml 9 | 10 | # install python3 11 | sudo zypper -nq install python3-base python3 python3-pip python3-devel python3-virtualenv python3-wheel 12 | 13 | # Install all needed packages in a special wheel cache directory 14 | pip3 wheel --wheel-dir "$HOME/python3-wheels" -r "${BASH_SOURCE%/*}/../common/shared/requirements.txt" 15 | 16 | # shellcheck source=../common/unix/SetEnvVar.sh 17 | source "${BASH_SOURCE%/*}/../common/unix/SetEnvVar.sh" 18 | SetEnvVar "PYTHON3_WHEEL_CACHE" "$HOME/python3-wheels" 19 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-openSUSE-15.1-x86_64/09-cmake.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | "$(dirname "$0")/../common/linux/cmake_linux.sh" 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-openSUSE-15.1-x86_64/09-install-openssl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/install-openssl.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-openSUSE-15.1-x86_64/90-squish.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | BASEDIR=$(dirname "$0") 3 | "$BASEDIR/../common/unix/squishInstall.sh" 4 | 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-linux-openSUSE-15.2-x86_64/08-libclang-v100-dyn.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | # shellcheck source=../common/unix/libclang-v100-dyn.sh 7 | "$BASEDIR/../common/unix/libclang-v100-dyn.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/01-disable-notifications_and_warnings.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/macos/disable-notifications_and_warnings.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/01-increase_limits.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/macos/increase_limits.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/01-install_telegraf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/unix/telegraf_install.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/02-disable-ntp.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # shellcheck source=../common/unix/disable-ntp_macos.sh 4 | source "${BASH_SOURCE%/*}/../common/unix/disable-ntp_macos.sh" 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/03-bashprofile.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -ex 4 | 5 | # Read .bashrc if exist 6 | printf -- "# Get the aliases and functions\nif [ -f ~/.bashrc ]; then\n . ~/.bashrc\nfi\n" >> ~/.bash_profile 7 | 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/06-crashreporter.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -ex 4 | 5 | defaults write com.apple.CrashReporter DialogType server 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/06-disable_spotlight.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | # shellcheck source=../common/macos/disable_spotlight.sh 5 | source "${BASH_SOURCE%/*}/../common/macos/disable_spotlight.sh" 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/06-disable_update_downloads.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | BASEDIR=$(dirname "$0") 4 | "$BASEDIR"/../common/macos/disable_update_downloads.sh 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/07-SSL_keychain.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/SetEnvVar.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/SetEnvVar.sh" 7 | 8 | # Enables the usage of temporary keychains for SSL autotests 9 | SetEnvVar "QT_SSL_USE_TEMPORARY_KEYCHAIN" "1" 10 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/07-openssl-sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/macos/install_openssl.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "macos" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/08-homebrew.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/macos/homebrew.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/08-nodejs.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | brew install --build-from-source node 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/20-java.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | BASEDIR=$(dirname "$0") 5 | "$BASEDIR/../common/macos/java.sh" 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/25-cmake.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/macos/cmake.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/25-pip.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/macos/pip.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/25-python2.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | # shellcheck source=../common/macos/python2.sh 5 | source "${BASH_SOURCE%/*}/../common/macos/python2.sh" 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/25-python3.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | # shellcheck source=../common/macos/python3.sh 5 | source "${BASH_SOURCE%/*}/../common/macos/python3.sh" 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/26-odbc.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Install libiodbc 3 | 4 | set -ex 5 | 6 | BASEDIR=$(dirname "$0") 7 | "$BASEDIR/../common/macos/libiodbc.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/26-p7zip.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Install 7z to be used from command line 3 | 4 | set -ex 5 | 6 | 7 | brew install p7zip 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/26-pkgconfig.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Install pkgconfig 3 | 4 | set -ex 5 | 6 | BASEDIR=$(dirname "$0") 7 | "$BASEDIR/../common/macos/pkgconfig.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/26-virtualenv.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/macos/virtualenv.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/27-libclang.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | # There is only one mac package and common script uses it as a default 7 | "$BASEDIR/../common/unix/libclang.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/27-libusb.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Install libusb 3 | 4 | set -ex 5 | 6 | BASEDIR=$(dirname "$0") 7 | "$BASEDIR/../common/macos/libusb.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/28-libclang-v100-dyn.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/unix/libclang-v100-dyn.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/30-fbx.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/macos/fbx_macos.sh" 7 | 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/35-install-breakpad.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/install-breakpad.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-breakpad.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/36-emsdk.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/emsdk.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/emsdk.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/90-python-modules.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/unix/python_modules.sh" 7 | 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/90-squish.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | BASEDIR=$(dirname "$0") 5 | "$BASEDIR/../common/unix/squishInstall.sh" 6 | 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.13-x86_64/99-mac-version.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | $BASEDIR/../common/macos/macos-version.sh 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/01-disable-notifications_and_warnings.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/macos/disable-notifications_and_warnings.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/01-increase_limits.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/macos/increase_limits.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/01-install_telegraf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$(dirname "$0")"/../common/unix/telegraf_install.sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/03-bashprofile.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -ex 4 | 5 | # Read .bashrc if exist 6 | printf -- "# Get the aliases and functions\nif [ -f ~/.bashrc ]; then\n . ~/.bashrc\nfi\n" >> ~/.bash_profile 7 | 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/06-crashreporter.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -ex 4 | 5 | defaults write com.apple.CrashReporter DialogType server 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/06-disable_spotlight.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | # shellcheck source=../common/macos/disable_spotlight.sh 5 | source "${BASH_SOURCE%/*}/../common/macos/disable_spotlight.sh" 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/06-disable_update_downloads.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | BASEDIR=$(dirname "$0") 4 | "$BASEDIR"/../common/macos/disable_update_downloads.sh 5 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/07-SSL_keychain.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/SetEnvVar.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/SetEnvVar.sh" 7 | 8 | # Enables the usage of temporary keychains for SSL autotests 9 | SetEnvVar "QT_SSL_USE_TEMPORARY_KEYCHAIN" "1" 10 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/20-java.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | BASEDIR=$(dirname "$0") 5 | "$BASEDIR/../common/macos/java.sh" 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/25-cmake.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/macos/cmake.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/25-homebrew.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/macos/homebrew.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/25-pip.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/macos/pip.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/25-python2.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | # shellcheck source=../common/macos/python2.sh 5 | source "${BASH_SOURCE%/*}/../common/macos/python2.sh" 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/25-python3.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | # shellcheck source=../common/macos/python3.sh 5 | source "${BASH_SOURCE%/*}/../common/macos/python3.sh" 6 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/26-odbc.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Install libiodbc 3 | 4 | set -ex 5 | 6 | BASEDIR=$(dirname "$0") 7 | "$BASEDIR/../common/macos/libiodbc.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/26-p7zip.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Install 7z to be used from command line 3 | 4 | set -ex 5 | 6 | brew update 7 | brew install p7zip 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/27-libclang.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | # There is only one mac package and common script uses it as a default 7 | "$BASEDIR/../common/unix/libclang.sh" 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/28-libclang-v100-dyn.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/unix/libclang-v100-dyn.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/30-fbx.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | "$BASEDIR/../common/macos/fbx_macos.sh" 7 | 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/30-nodejs.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | brew install nodejs 6 | 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/35-install-breakpad.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/install-breakpad.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-breakpad.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/35-openssl.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/macos/install_openssl.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "macos" 7 | 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/36-emsdk.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | # shellcheck source=../common/unix/emsdk.sh 6 | source "${BASH_SOURCE%/*}/../common/unix/emsdk.sh" 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/90-squish.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -ex 3 | 4 | BASEDIR=$(dirname "$0") 5 | "$BASEDIR/../common/unix/squishInstall.sh" 6 | 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-macos-10.14-x86_64/99-mac-version.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -ex 4 | 5 | BASEDIR=$(dirname "$0") 6 | $BASEDIR/../common/macos/macos-version.sh 7 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/00-disable-clean-manager.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-clean-manager.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/00-disable-netadapterlso.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-netadapterlso.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/00-install-sevenzip.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-sevenzip.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/01-allow-remote-desktop-access.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\allow-remote-desktop-access.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/01-disable-notifications.ps1: -------------------------------------------------------------------------------- 1 | # Windows 'Notifications & actions' 2 | # Disable 'Get notifications from apps and other senders' 3 | reg.exe ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /V ToastEnabled /T REG_dWORD /D 0 /F 4 | 5 | # Disable 'Show me the Windows welcome experience after udpates and occasionally when I sign in to highlight what's new and suggested' 6 | reg.exe ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-310093Enabled /T REG_dWORD /D 0 /F 7 | 8 | # Disable 'Get tips, tricks and suggestions as you use Windows' 9 | reg.exe ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-338389Enabled /T REG_dWORD /D 0 /F 10 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/01-disable-windows-telemetry.ps1: -------------------------------------------------------------------------------- 1 | # Disable Connected User Experiences and Telemetry service 2 | # The Connected User Experiences and Telemetry service enables features that support in-application and connected user experiences. 3 | # Additionally, this service manages the event driven collection and transmission of diagnostic and usage information 4 | # (used to improve the experience and quality of the Windows Platform) when the diagnostics and usage privacy option settings are enabled under Feedback and Diagnostics. 5 | reg.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Data Collection" /V AllowTelemetry /T REG_dWORD /D 0 /F 6 | stop-service diagtrack 7 | set-service diagtrack -startuptype disabled 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/01-enable-guest-logon.ps1: -------------------------------------------------------------------------------- 1 | # Allow SMB client guest logons to SMB server. 2 | reg.exe ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /V AllowInsecureGuestAuth /T REG_dWORD /D 1 /F 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/01-install_telegraf.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install_telegraf.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/02-disable-autoreboot.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-autoreboot.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/02-python.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\python.ps1" 32 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/05-enable-devmode.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\win10-enable-devmode.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/05-wsearch-off.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\wsearch-off.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/06-mesa_llvmpipe.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mesa_llvmpipe.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/06-ninja.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\ninja.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/08-install-git.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-git.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/08-install-jdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-jdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/08-libclang.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\libclang.ps1" 32 vs2015 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/08-python3.ps1: -------------------------------------------------------------------------------- 1 | # Parameters: 2 | # - Arch 32/64 3 | # - installer sha1 4 | # - install target dir 5 | # - version 6 | # - Optional true/false if set as default with PYTHON3/PIP3_PATH variables, default false 7 | 8 | . "$PSScriptRoot\..\common\windows\python3.ps1" 32 "76c50b747237a0974126dd8b32ea036dd77b2ad1" "C:\Python36" "3.6.1" $true 9 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/09-install-dependencywalker.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-dependencywalker.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/09-install-ruby.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-ruby.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/09-install-strawberry-perl.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-strawberry-perl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/09-openssl.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\openssl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/09-postgresql.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\postgresql.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/09-vulkansdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\vulkansdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/10-icu.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\icu.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/11-conan.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\conan.ps1" 2 | 3 | Run-Conan-Install ` 4 | -ConanfilesDir "$PSScriptRoot\conanfiles" ` 5 | -BuildinfoDir MSVC2015-x86 ` 6 | -Arch x86 ` 7 | -Compiler "Visual Studio" ` 8 | -CompilerVersion 14 ` 9 | -CompilerRuntime MD 10 | 11 | Run-Conan-Install ` 12 | -ConanfilesDir "$PSScriptRoot\conanfiles" ` 13 | -BuildinfoDir MSVC2017-x86 ` 14 | -Arch x86 ` 15 | -Compiler "Visual Studio" ` 16 | -CompilerVersion 15 ` 17 | -CompilerRuntime MD 18 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/22-mqtt_broker.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mqtt_broker.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/23-winrtrunner.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\winrtrunner.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/36-install-gnuwin32.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-gnuwin32.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/60-jom.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\jom.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/70-cmake.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\cmake.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/80-win10sdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\win10sdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/85-disable_quickedit_powershell.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-quickedit.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/90-exceutequeueditems.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\exceutequeueditems.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/90-libusb.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\libusb.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/90-mysql.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mysql.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/90-squish.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\squishInstall.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/90-vclibs_debug.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\vclibs_debug.ps1" 2 | 3 | Install-VCLibsDebug X86 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/99-version.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\version.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86/conanfiles/qtwebkit.txt: -------------------------------------------------------------------------------- 1 | [requires] 2 | icu/65.1@qtproject/stable 3 | libxml2/2.9.10@qtproject/stable 4 | libxslt/1.1.34@qtproject/stable 5 | libjpeg-turbo/2.0.5@qtproject/stable 6 | 7 | [generators] 8 | cmake 9 | txt 10 | 11 | [options] 12 | icu:shared=True 13 | icu:data_packaging=library 14 | 15 | libxml2:shared=True 16 | libxml2:iconv=False 17 | libxml2:icu=True 18 | libxml2:zlib=False 19 | 20 | libxslt:shared=True 21 | 22 | libjpeg-turbo:shared=False 23 | 24 | [imports] 25 | bin, icudt65.dll -> ./bin 26 | bin, icuin65.dll -> ./bin 27 | bin, icuuc65.dll -> ./bin 28 | bin, libxml2.dll -> ./bin 29 | bin, libxslt.dll -> ./bin 30 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/00-disable-netadapterlso.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-netadapterlso.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/00-install-sevenzip.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-sevenzip.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/01-allow-remote-desktop-access.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\allow-remote-desktop-access.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/01-change-resolution.ps1: -------------------------------------------------------------------------------- 1 | $x_value = "1280" 2 | $y_value = "800" 3 | 4 | Function ChangeResolution { 5 | Param ( 6 | [string]$driver 7 | ) 8 | 9 | $path = "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers\Configuration" 10 | 11 | reg.exe ADD "$path\$driver\00\" /V PrimSurfSize.cx /T REG_dWORD /D $x_value /F 12 | reg.exe ADD "$path\$driver\00\" /V PrimSurfSize.cy /T REG_dWORD /D $y_value /F 13 | reg.exe ADD "$path\$driver\00\00" /V DwmClipBox.bottom /T REG_dWORD /D $y_value /F 14 | reg.exe ADD "$path\$driver\00\00" /V DwmClipBox.right /T REG_dWORD /D $x_value /F 15 | reg.exe ADD "$path\$driver\00\00" /V PrimSurfSize.cx /T REG_dWORD /D $x_value /F 16 | reg.exe ADD "$path\$driver\00\00" /V PrimSurfSize.cy /T REG_dWORD /D $y_value /F 17 | reg.exe ADD "$path\$driver\00\00" /V ActiveSize.cy /T REG_dWORD /D $y_value /F 18 | reg.exe ADD "$path\$driver\00\00" /V ActiveSize.cx /T REG_dWORD /D $x_value /F 19 | 20 | } 21 | 22 | Write-Host "Changing the resolution to ${x_value}x${y_value}" 23 | ChangeResolution "MSBDD_NOEDID_1234_1111_00000000_00020000_0^E3701873EC28AFCFF631E725354CDC2D" 24 | ChangeResolution "MSBDD_NOEDID_15AD_0405_00000000_000F0000_0^C13AE38966E73205F75BFACA84EB83A5" 25 | ChangeResolution "MSNILNOEDID_1414_008D_FFFFFFFF_FFFFFFFF_0^030B4FCE00727AC1593E5B6FD18648D6" 26 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/01-disable-notifications.ps1: -------------------------------------------------------------------------------- 1 | # Windows 'Notifications & actions' 2 | # Disable 'Get notifications from apps and other senders' 3 | reg.exe ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /V ToastEnabled /T REG_dWORD /D 0 /F 4 | 5 | # Disable 'Show me the Windows welcome experience after udpates and occasionally when I sign in to highlight what's new and suggested' 6 | reg.exe ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-310093Enabled /T REG_dWORD /D 0 /F 7 | 8 | # Disable 'Get tips, tricks and suggestions as you use Windows' 9 | reg.exe ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-338389Enabled /T REG_dWORD /D 0 /F 10 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/01-disable-windows-telemetry.ps1: -------------------------------------------------------------------------------- 1 | # Disable Connected User Experiences and Telemetry service 2 | # The Connected User Experiences and Telemetry service enables features that support in-application and connected user experiences. 3 | # Additionally, this service manages the event driven collection and transmission of diagnostic and usage information 4 | # (used to improve the experience and quality of the Windows Platform) when the diagnostics and usage privacy option settings are enabled under Feedback and Diagnostics. 5 | reg.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Data Collection" /V AllowTelemetry /T REG_dWORD /D 0 /F 6 | stop-service diagtrack 7 | set-service diagtrack -startuptype disabled 8 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/01-enable-guest-logon.ps1: -------------------------------------------------------------------------------- 1 | # Allow SMB client guest logons to SMB server. 2 | reg.exe ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /V AllowInsecureGuestAuth /T REG_dWORD /D 1 /F 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/01-install_telegraf.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install_telegraf.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/01-set-proxy.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\set-proxy.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/02-disable-autoreboot.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-autoreboot.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/02-disable-sleep.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-sleep.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/02-python-32bit.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\python.ps1" 32 "C:\Python27_32" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/02-python.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\python.ps1" 64 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/03-nodejs.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\nodejs.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/04-msys.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\msys.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/05-enable-devmode.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\win10-enable-devmode.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/05-wsearch-off.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\wsearch-off.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/06-mesa_llvmpipe.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mesa_llvmpipe.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/06-ninja.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\ninja.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/08-install-git.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-git.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/08-install-jdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-jdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/08-libclang-v100-dyn.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\libclang-v100-dyn.ps1" 64 vs2019 2 | . "$PSScriptRoot\..\common\windows\libclang-v100-dyn.ps1" 32 vs2019 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/08-libclang.ps1: -------------------------------------------------------------------------------- 1 | # Do not set the default LLVM_INSTALL_DIR for mingw, leave it with msvc for compat 2 | . "$PSScriptRoot\..\common\windows\libclang.ps1" 64 mingw $False 3 | . "$PSScriptRoot\..\common\windows\libclang.ps1" 64 vs2015 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/08-python3.ps1: -------------------------------------------------------------------------------- 1 | # Parameters: 2 | # - Arch 32/64 3 | # - installer sha1 4 | # - install target dir 5 | # - version 6 | # - Optional true/false if set as default with PYTHON3/PIP3_PATH variables, default false 7 | 8 | . "$PSScriptRoot\..\common\windows\python3.ps1" 64 "a8ac14ee5486547caf84abdf151be22d9d069c0a" "C:\Python38_64" "3.8.1" 9 | . "$PSScriptRoot\..\common\windows\python3.ps1" 32 "14ff2c2e5538b03a012cb4c9d519d970444ebd42" "C:\Python38_32" "3.8.1" 10 | # default ones 11 | . "$PSScriptRoot\..\common\windows\python3.ps1" 64 "bf54252c4065b20f4a111cc39cf5215fb1edccff" "C:\Python36" "3.6.1" $true 12 | . "$PSScriptRoot\..\common\windows\python3.ps1" 32 "76c50b747237a0974126dd8b32ea036dd77b2ad1" "C:\Python36_32" "3.6.1" $true 13 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-dependencywalker.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-dependencywalker.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-mingw530.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-mingw.ps1" 2 | 3 | # This script will install 64-bit MinGW 5.3.0 4 | 5 | $release = "x86_64-5.3.0-release-posix-seh-rt_v4-rev0" 6 | $sha1 = "7EB12DD3EDDCF609722C9552F8592BD9948DA1FC" 7 | 8 | InstallMinGW $release $sha1 9 | 10 | 11 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-mingw630.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-mingw.ps1" 2 | 3 | # This script will install 64-bit MinGW 6.3.0 4 | 5 | $release = "x86_64-6.3.0-release-posix-seh-rt_v5-rev2" 6 | $sha1 = "49E7F8997E3D15C75B1A4DE1C380ABE1FB9B7533" 7 | 8 | InstallMinGW $release $sha1 9 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-mingw730.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-mingw.ps1" 2 | 3 | # This script will install MinGW 7.3.0 4 | 5 | $release = "i686-7.3.0-release-posix-dwarf-rt_v5-rev0" 6 | $sha1 = "96e11c754b379c093e1cb3133f71db5b9f3e0532" 7 | $suffix = "_i686" 8 | 9 | InstallMinGW $release $sha1 $suffix 10 | 11 | 12 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-mingw730_64.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-mingw.ps1" 2 | 3 | # This script will install 64-bit MinGW 7.3.0 4 | 5 | $release = "x86_64-7.3.0-release-posix-seh-rt_v5-rev0" 6 | $sha1 = "0fce15036400568babd10d65b247e9576515da2c" 7 | 8 | InstallMinGW $release $sha1 9 | 10 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-mingw810.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-mingw.ps1" 2 | 3 | # This script will install MinGW 8.1.0 4 | 5 | $release = "i686-8.1.0-release-posix-dwarf-rt_v6-rev0" 6 | $sha1 = "dd4f34f473e84c79b6b446adb3a5fac7919ba9cb" 7 | $suffix = "_i686" 8 | 9 | InstallMinGW $release $sha1 $suffix 10 | 11 | 12 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-mingw810_64.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-mingw.ps1" 2 | 3 | # This script will install 64-bit MinGW 8.1.0 4 | 5 | $release = "x86_64-8.1.0-release-posix-seh-rt_v6-rev0" 6 | 7 | $sha1 = "5aa456654a6ce77249c27888b5d0f856fc011b9c" 8 | 9 | InstallMinGW $release $sha1 10 | 11 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-ruby.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-ruby.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-sed.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-sed.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-install-strawberry-perl.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-strawberry-perl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-openssl.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\openssl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-set-network-test-server.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\set-network-test-server.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/09-vulkansdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\vulkansdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/10-dxsdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\dxsdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/10-icu.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\icu.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/10-install-msys2.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-msys2.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/22-mqtt_broker.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mqtt_broker.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/23-winrtrunner.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\winrtrunner.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/30-fbx.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\fbx_windows.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/35-install-breakpad.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-breakpad.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/36-install-gnuwin32.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-gnuwin32.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/40-android.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\android.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/50-openssl_for_android.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\android-openssl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/60-jom.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\jom.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/70-cmake.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\cmake.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/79-opcua_unifiedautomation.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\opcua_unifiedautomation.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/80-emsdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\emsdk.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/85-disable_quickedit_powershell.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-quickedit.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-3dstudio_3rdparty.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\3dstudio_3rdparty.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-exceutequeueditems.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\exceutequeueditems.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-install-dotnet.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-dotnet.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-install-mcuxpresso.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-mcuxpresso.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-install-notepad++.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-notepad++.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-install-stm32cubeprogrammer.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-stm32cubeprogrammer.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-libusb.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\libusb.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-mysql.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mysql.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-postgresql.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\postgresql.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-python-modules.ps1: -------------------------------------------------------------------------------- 1 | # Needed by packaging scripts 2 | C:\Python36\Scripts\pip3 install bs4 3 | C:\Python36\Scripts\pip3 install sh 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-squish.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\squishInstall.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/90-vclibs_debug.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\vclibs_debug.ps1" 2 | 3 | Install-VCLibsDebug X64 4 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/91-install-azure-tool.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-azure-tool.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/91-squish-coco.ps1: -------------------------------------------------------------------------------- 1 | "$PSScriptRoot\..\common\windows\squish-coco.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/92-install-protobuf.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-protobuf.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/98-disable-windows-module-installer.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-windows-module-installer.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/99-unset-proxy.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\unset-proxy.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/99-version.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\version.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-10-x86_64/conanfiles/qtwebkit.txt: -------------------------------------------------------------------------------- 1 | [requires] 2 | icu/65.1@qtproject/stable 3 | libxml2/2.9.10@qtproject/stable 4 | libxslt/1.1.34@qtproject/stable 5 | libjpeg-turbo/2.0.5@qtproject/stable 6 | 7 | [generators] 8 | cmake 9 | txt 10 | 11 | [options] 12 | icu:shared=True 13 | icu:data_packaging=library 14 | 15 | libxml2:shared=True 16 | libxml2:iconv=False 17 | libxml2:icu=True 18 | libxml2:zlib=False 19 | 20 | libxslt:shared=True 21 | 22 | libjpeg-turbo:shared=False 23 | 24 | [imports] 25 | bin, icudt65.dll -> ./bin 26 | bin, icuin65.dll -> ./bin 27 | bin, icuuc65.dll -> ./bin 28 | bin, libxml2.dll -> ./bin 29 | bin, libxslt.dll -> ./bin 30 | bin, libxml2-2.dll -> ./bin 31 | bin, libxslt-1.dll -> ./bin 32 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/00-disable-clean-manager.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-clean-manager.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/00-disable-windefender.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-windefender.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/00-install-sevenzip.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-sevenzip.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/01-allow-remote-desktop-access.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\allow-remote-desktop-access.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/01-disable-uac.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-uac.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/01-install_telegraf.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install_telegraf.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/01-set-proxy.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\set-proxy.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/02-disable-autoreboot.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-autoreboot.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/02-disable-defragment.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-defragment.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/02-disable-ntp.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-ntp.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/02-disable-sleep.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-sleep.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/02-memorypershell.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\memorypershell.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/02-python.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\python.ps1" 32 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/04-disable-windows-updates.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-windows-updates.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/05-wsearch-off.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\wsearch-off.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/07-vc_redist.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\vc_redist.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/08-install-git.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-git.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/08-install-jdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-jdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/08-libclang.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\libclang.ps1" 32 mingw 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/08-mesa_llvmpipe.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mesa_llvmpipe.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/08-ninja.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\ninja.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/08-python3.ps1: -------------------------------------------------------------------------------- 1 | # Parameters: 2 | # - Arch 32/64 3 | # - installer sha1 4 | # - install target dir 5 | # - version 6 | # - Optional true/false if set as default with PYTHON3/PIP3_PATH variables, default false 7 | 8 | . "$PSScriptRoot\..\common\windows\python3.ps1" 32 "76c50b747237a0974126dd8b32ea036dd77b2ad1" "C:\Python36" "3.6.1" $true 9 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-cmake.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\cmake.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-install-dependencywalker.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-dependencywalker.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-install-mingw730.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-mingw.ps1" 2 | 3 | # This script will install MinGW 7.3.0 4 | 5 | $release = "i686-7.3.0-release-posix-dwarf-rt_v5-rev0" 6 | $sha1 = "96e11c754b379c093e1cb3133f71db5b9f3e0532" 7 | 8 | InstallMinGW $release $sha1 9 | 10 | 11 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-install-mingw810.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-mingw.ps1" 2 | 3 | # This script will install MinGW 8.1.0 4 | 5 | $release = "i686-8.1.0-release-posix-dwarf-rt_v6-rev0" 6 | $sha1 = "dd4f34f473e84c79b6b446adb3a5fac7919ba9cb" 7 | $suffix = "_i686" 8 | 9 | InstallMinGW $release $sha1 $suffix 10 | 11 | 12 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-install-ruby.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-ruby.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-install-strawberry-perl.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-strawberry-perl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-jom.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\jom.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-mysql.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mysql.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-postgresql.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\postgresql.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/09-set-network-test-server.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\set-network-test-server.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/10-dxsdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\dxsdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/10-icu.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\icu.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/11-conan.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\conan.ps1" 2 | 3 | Run-Conan-Install ` 4 | -ConanfilesDir "$PSScriptRoot\conanfiles" ` 5 | -BuildinfoDir Mingw-x86 ` 6 | -Arch x86 ` 7 | -Compiler "gcc" ` 8 | -CompilerVersion 8 ` 9 | -CompilerLibcxx "libstdc++" ` 10 | -CompilerException "dwarf2" ` 11 | -CompilerThreads "posix" 12 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/22-mqtt_broker.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mqtt_broker.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/35-install-breakpad.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-breakpad.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/36-install-gnuwin32.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-gnuwin32.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/90-exceutequeueditems.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\exceutequeueditems.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/90-install-notepad++.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-notepad++.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/90-squish.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\squishInstall.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/99-unset-proxy.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\unset-proxy.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/99-version.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\version.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86/conanfiles/qtwebkit.txt: -------------------------------------------------------------------------------- 1 | [requires] 2 | icu/65.1@qtproject/stable 3 | libxml2/2.9.10@qtproject/stable 4 | libxslt/1.1.34@qtproject/stable 5 | libjpeg-turbo/2.0.5@qtproject/stable 6 | 7 | [generators] 8 | cmake 9 | txt 10 | 11 | [options] 12 | icu:shared=True 13 | icu:data_packaging=library 14 | 15 | libxml2:shared=True 16 | libxml2:iconv=False 17 | libxml2:icu=True 18 | libxml2:zlib=False 19 | 20 | libxslt:shared=True 21 | 22 | libjpeg-turbo:shared=False 23 | 24 | [imports] 25 | bin, icudt65.dll -> ./bin 26 | bin, icuin65.dll -> ./bin 27 | bin, icuuc65.dll -> ./bin 28 | bin, libxml2-2.dll -> ./bin 29 | bin, libxslt-1.dll -> ./bin 30 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/00-disable-windefender.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-windefender.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/00-install-sevenzip.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-sevenzip.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/01-allow-remote-desktop-access.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\allow-remote-desktop-access.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/01-disable-uac.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-uac.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/01-install_telegraf.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install_telegraf.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/02-disable-autoreboot.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-autoreboot.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/02-disable-defragment.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-defragment.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/02-disable-ntp.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-ntp.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/02-disable-sleep.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-sleep.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/02-install-notepad++.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-notepad++.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/02-python.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\python.ps1" 64 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/04-disable-windows-updates.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-windows-updates.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/05-wsearch-off.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\wsearch-off.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/07-vc_redist.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\vc_redist.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/08-install-git.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-git.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/08-install-jdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-jdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/08-mesa_llvmpipe.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mesa_llvmpipe.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/08-ninja.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\ninja.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/09-cmake.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\cmake.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/09-install-dependencywalker.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-dependencywalker.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/09-install-ruby.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-ruby.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/09-install-strawberry-perl.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-strawberry-perl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/09-jom.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\jom.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/09-mysql.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\mysql.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/09-openssl.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\openssl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/09-postgresql.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\postgresql.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/09-set-network-test-server.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\set-network-test-server.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/10-dxsdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\dxsdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/12-icu.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\icu.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/25-python.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\python.ps1" 64 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/25-python3.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\python3.ps1" 64 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/27-squish.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\squishInstall.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/35-install-breakpad.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-breakpad.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/36-install-gnuwin32.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-gnuwin32.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/90-exceutequeueditems.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\exceutequeueditems.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-7-x86_64/99-version.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\version.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/00-disable-netadapterlso.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-netadapterlso.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/00-disable-windefender.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-windefender.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/00-install-sevenzip.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-sevenzip.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/01-allow-remote-desktop-access.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\allow-remote-desktop-access.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/01-disable-uac.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-uac.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/01-install_telegraf.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install_telegraf.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/02-disable-autoreboot.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-autoreboot.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/02-disable-defragment.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-defragment.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/02-disable-ntp.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-ntp.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/02-disable-sleep.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-sleep.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/04-disable-windows-updates.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-windows-updates.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/05-wsearch-off.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\wsearch-off.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/08-install-jdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-jdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/09-msvc-2013-update5.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\msvc-2013-update5.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/09-openssl.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\openssl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/09-set-network-test-server.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\set-network-test-server.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/36-install-gnuwin32.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-gnuwin32.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/60-jom.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\jom.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/90-exceutequeueditems.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\exceutequeueditems.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/90-squish.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\squishInstall.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86/99-version.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\version.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/00-disable-netadapterlso.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-netadapterlso.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/00-disable-windefender.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-windefender.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/00-install-sevenzip.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-sevenzip.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/01-allow-remote-desktop-access.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\allow-remote-desktop-access.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/01-disable-uac.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-uac.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/01-install_telegraf.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install_telegraf.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/02-disable-autoreboot.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-autoreboot.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/02-disable-defragment.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-defragment.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/02-disable-ntp.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-ntp.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/02-disable-sleep.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-sleep.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/04-disable-windows-updates.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\disable-windows-updates.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/05-wsearch-off.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\wsearch-off.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/07-python2.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\python.ps1" 64 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/08-install-jdk.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-jdk.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/08-msvc-2013-update5.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\msvc-2013-update5.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/08-python3.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\python3.ps1" 64 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/09-install-dependencywalker.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-dependencywalker.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/09-openssl.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\openssl.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/09-set-network-test-server.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\set-network-test-server.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/36-install-gnuwin32.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\install-gnuwin32.ps1" 2 | 3 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/60-jom.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\jom.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/90-exceutequeueditems.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\exceutequeueditems.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/90-squish.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\squishInstall.ps1" 2 | -------------------------------------------------------------------------------- /coin/provisioning/qtci-windows-8.1-x86_64/99-version.ps1: -------------------------------------------------------------------------------- 1 | . "$PSScriptRoot\..\common\windows\version.ps1" 2 | -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | ############################################################################# 3 | ## 4 | ## Copyright (C) 2020 The Qt Company Ltd. 5 | ## Contact: http://www.qt.io/licensing/ 6 | ## 7 | ## This file is part of the build tools of the Qt Toolkit. 8 | ## 9 | ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ 10 | ## Commercial License Usage 11 | ## Licensees holding valid commercial Qt licenses may use this file in 12 | ## accordance with the commercial license agreement provided with the 13 | ## Software or, alternatively, in accordance with the terms contained in 14 | ## a written agreement between you and The Qt Company. For licensing terms 15 | ## and conditions see https://www.qt.io/terms-conditions. For further 16 | ## information use the contact form at https://www.qt.io/contact-us. 17 | ## 18 | ## GNU General Public License Usage 19 | ## Alternatively, this file may be used under the terms of the GNU 20 | ## General Public License version 3 as published by the Free Software 21 | ## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT 22 | ## included in the packaging of this file. Please review the following 23 | ## information to ensure the GNU General Public License requirements will 24 | ## be met: https://www.gnu.org/licenses/gpl-3.0.html. 25 | ## 26 | ## $QT_END_LICENSE$ 27 | ## 28 | ############################################################################# 29 | 30 | srcpath=`dirname $0` 31 | srcpath=`(cd "$srcpath"; pwd)` 32 | configure=$srcpath/qtbase/configure 33 | if [ ! -e "$configure" ]; then 34 | echo "$configure not found. Did you forget to run \"init-repository\"?" >&2 35 | exit 1 36 | fi 37 | 38 | mkdir -p qtbase || exit 39 | 40 | echo "+ cd qtbase" 41 | cd qtbase || exit 42 | 43 | echo "+ $configure -top-level $@" 44 | exec "$configure" -top-level "$@" 45 | -------------------------------------------------------------------------------- /configure.json: -------------------------------------------------------------------------------- 1 | { 2 | "commandline": { 3 | "options": { 4 | "skip": "addString" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /gnuwin32/README: -------------------------------------------------------------------------------- 1 | This directory contains the Windows binaries of various tools such as bison 2 | from the GnuWin32 project (http://gnuwin32.sourceforge.net/). We've put them 3 | here for your convenience, as they are needed to build projects such as 4 | QtWebKit. 5 | 6 | Aside from GnuWin32 binaries this directory also contains a distribution of Win 7 | flex-bison project (http://sourceforge.net/projects/winflexbison/), which provides 8 | much newer ports of Flex and Bison than what GnuWin32 provides. 9 | 10 | -------------------------------------------------------------------------------- /gnuwin32/bin/bison.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/bin/bison.exe -------------------------------------------------------------------------------- /gnuwin32/bin/data/c++-skel.m4: -------------------------------------------------------------------------------- 1 | -*- Autoconf -*- 2 | 3 | # C++ skeleton dispatching for Bison. 4 | 5 | # Copyright (C) 2006-2007, 2009-2013 Free Software Foundation, Inc. 6 | 7 | # This program is free software: you can redistribute it and/or modify 8 | # it under the terms of the GNU General Public License as published by 9 | # the Free Software Foundation, either version 3 of the License, or 10 | # (at your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | # GNU General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU General Public License 18 | # along with this program. If not, see . 19 | 20 | b4_glr_if( [m4_define([b4_used_skeleton], [b4_pkgdatadir/[glr.cc]])]) 21 | b4_nondeterministic_if([m4_define([b4_used_skeleton], [b4_pkgdatadir/[glr.cc]])]) 22 | 23 | m4_define_default([b4_used_skeleton], [b4_pkgdatadir/[lalr1.cc]]) 24 | m4_define_default([b4_skeleton], ["b4_basename(b4_used_skeleton)"]) 25 | 26 | m4_include(b4_used_skeleton) 27 | -------------------------------------------------------------------------------- /gnuwin32/bin/data/c-skel.m4: -------------------------------------------------------------------------------- 1 | -*- Autoconf -*- 2 | 3 | # C skeleton dispatching for Bison. 4 | 5 | # Copyright (C) 2006-2007, 2009-2013 Free Software Foundation, Inc. 6 | 7 | # This program is free software: you can redistribute it and/or modify 8 | # it under the terms of the GNU General Public License as published by 9 | # the Free Software Foundation, either version 3 of the License, or 10 | # (at your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | # GNU General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU General Public License 18 | # along with this program. If not, see . 19 | 20 | b4_glr_if( [m4_define([b4_used_skeleton], [b4_pkgdatadir/[glr.c]])]) 21 | b4_nondeterministic_if([m4_define([b4_used_skeleton], [b4_pkgdatadir/[glr.c]])]) 22 | 23 | m4_define_default([b4_used_skeleton], [b4_pkgdatadir/[yacc.c]]) 24 | m4_define_default([b4_skeleton], ["b4_basename(b4_used_skeleton)"]) 25 | 26 | m4_include(b4_used_skeleton) 27 | -------------------------------------------------------------------------------- /gnuwin32/bin/data/java-skel.m4: -------------------------------------------------------------------------------- 1 | -*- Autoconf -*- 2 | 3 | # Java skeleton dispatching for Bison. 4 | 5 | # Copyright (C) 2007, 2009-2013 Free Software Foundation, Inc. 6 | 7 | # This program is free software: you can redistribute it and/or modify 8 | # it under the terms of the GNU General Public License as published by 9 | # the Free Software Foundation, either version 3 of the License, or 10 | # (at your option) any later version. 11 | # 12 | # This program is distributed in the hope that it will be useful, 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | # GNU General Public License for more details. 16 | # 17 | # You should have received a copy of the GNU General Public License 18 | # along with this program. If not, see . 19 | 20 | b4_glr_if( [b4_complain([%%glr-parser not supported for Java])]) 21 | b4_nondeterministic_if([b4_complain([%%nondeterministic-parser not supported for Java])]) 22 | 23 | m4_define_default([b4_used_skeleton], [b4_pkgdatadir/[lalr1.java]]) 24 | m4_define_default([b4_skeleton], ["b4_basename(b4_used_skeleton)"]) 25 | 26 | m4_include(b4_used_skeleton) 27 | -------------------------------------------------------------------------------- /gnuwin32/bin/flex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/bin/flex.exe -------------------------------------------------------------------------------- /gnuwin32/bin/gperf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/bin/gperf.exe -------------------------------------------------------------------------------- /gnuwin32/bin/iconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/bin/iconv.exe -------------------------------------------------------------------------------- /gnuwin32/bin/libcharset1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/bin/libcharset1.dll -------------------------------------------------------------------------------- /gnuwin32/bin/libiconv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/bin/libiconv2.dll -------------------------------------------------------------------------------- /gnuwin32/bin/libintl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/bin/libintl3.dll -------------------------------------------------------------------------------- /gnuwin32/bin/m4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/bin/m4.exe -------------------------------------------------------------------------------- /gnuwin32/bin/regex2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/bin/regex2.dll -------------------------------------------------------------------------------- /gnuwin32/contrib/gperf/3.0.1/depends-GnuWin32.lst: -------------------------------------------------------------------------------- 1 | kernel32.dll 2 | msvcrt.dll 3 | ntdll.dll 4 | -------------------------------------------------------------------------------- /gnuwin32/contrib/gperf/3.0.1/gperf-3.0.1-src/AUTHORS: -------------------------------------------------------------------------------- 1 | Douglas C. Schmidt 2 | Bruno Haible 3 | -------------------------------------------------------------------------------- /gnuwin32/contrib/gperf/3.0.1/gperf-3.0.1-src/README: -------------------------------------------------------------------------------- 1 | This is GNU gperf. It is a program that generates perfect hash 2 | functions for sets of key words. A perfect hash function is: 3 | 4 | A hash function and a data structure that allows 5 | recognition of a key word in a set of words using 6 | exactly 1 probe into the data structure. 7 | 8 | The doc/gperf.html file explains how the program works, the form of 9 | the input, what options are available, and hints on choosing the best 10 | options for particular key words set. 11 | 12 | See the file NEWS for a list of major changes in the current release. 13 | 14 | See the file INSTALL for compilation and installation instructions. 15 | 16 | Output from the GPERF program is used to recognize reserved words in 17 | the GNU C, GNU C++, and GNU Pascal compilers, as well as with the GNU 18 | indent program. 19 | 20 | For general documentation on the coding and usage standards 21 | this distribution follows, see the GNU standards document 22 | ftp://ftp.gnu.org/pub/gnu/standards.*, especially the 'Makefile 23 | Conventions', 'Configuration', and 'User Interfaces' sections. 24 | 25 | Mail suggestions and bug reports to . When 26 | reporting bugs, please include in the subject line the package name 27 | and version (output of 'gperf --version') for which you found a problem. 28 | 29 | -------------------------------------------------------------------------------- /gnuwin32/contrib/gperf/3.0.1/gperf-3.0.1/check_err.log: -------------------------------------------------------------------------------- 1 | ../../gperf-3.0.1-src/tests/test.c: In function `main': 2 | ../../gperf-3.0.1-src/tests/test.c:25: warning: implicit declaration of function `in_word_set' 3 | 1 input keys have identical hash values, examine output carefully... 4 | ../../gperf-3.0.1-src/tests/test2.c: In function `main': 5 | ../../gperf-3.0.1-src/tests/test2.c:52: warning: implicit declaration of function `in_word_set' 6 | make[1]: [check-test] Fout 1 (genegeerd) 7 | make[1]: [check-test] Fout 1 (genegeerd) 8 | make[1]: [check-test] Fout 1 (genegeerd) 9 | make[1]: [check-test] Fout 1 (genegeerd) 10 | make[1]: [check-test] Fout 1 (genegeerd) 11 | make[1]: [check-test] Fout 1 (genegeerd) 12 | 8 input keys have identical hash values, examine output carefully... 13 | make[1]: [check-test] Fout 1 (genegeerd) 14 | make[1]: [check-test] Fout 1 (genegeerd) 15 | make[1]: [check-test] Fout 1 (genegeerd) 16 | make[1]: [check-test] Fout 1 (genegeerd) 17 | make[1]: [check-test] Fout 1 (genegeerd) 18 | make[1]: [check-test] Fout 1 (genegeerd) 19 | make[1]: [check-test] Fout 1 (genegeerd) 20 | make[1]: [check-test] Fout 1 (genegeerd) 21 | make[1]: [check-test] Fout 1 (genegeerd) 22 | -------------------------------------------------------------------------------- /gnuwin32/contrib/libiconv/1.9.2/depends-GnuWin32.lst: -------------------------------------------------------------------------------- 1 | advapi32.dll 2 | gdi32.dll 3 | kernel32.dll 4 | libintl3.dll 5 | msvcrt.dll 6 | ntdll.dll 7 | ole32.dll 8 | rpcrt4.dll 9 | user32.dll 10 | -------------------------------------------------------------------------------- /gnuwin32/contrib/libiconv/1.9.2/libiconv-1.9.2-src/AUTHORS: -------------------------------------------------------------------------------- 1 | Bruno Haible 2 | -------------------------------------------------------------------------------- /gnuwin32/contrib/libiconv/1.9.2/libiconv-1.9.2-src/PORTS: -------------------------------------------------------------------------------- 1 | * Linux with libc6 (glibc-2.1): 2 | OK 3 | 4 | * Linux with libc6 (glibc-2.0.7): 5 | OK 6 | 7 | * Linux with libc5: 8 | OK 9 | 10 | * Solaris 2.7: 11 | OK 12 | 13 | * Solaris 2.6: 14 | OK 15 | 16 | * OSF/1 5.1: 17 | OK 18 | 19 | * OSF/1 4.0d: 20 | OK 21 | 22 | * Irix 6.5: 23 | OK 24 | 25 | * HP-UX 10.20: 26 | OK 27 | 28 | * AIX 4.2: 29 | OK 30 | 31 | * SunOS 4: 32 | OK when configured --enable-static --disable-shared 33 | (gcc cannot create shared libraries without relocations) 34 | 35 | * FreeBSD 3.3: 36 | OK 37 | 38 | * BeOS 5: 39 | OK 40 | 41 | * Woe32 with MSVC 4.0: 42 | OK 43 | 44 | * Woe32 with MSVC 5.0: 45 | OK 46 | 47 | -------------------------------------------------------------------------------- /gnuwin32/contrib/libiconv/1.9.2/libiconv-1.9.2-src/THANKS: -------------------------------------------------------------------------------- 1 | Thanks to for 2 | 3 | Edmund Grimley Evans bug reports 4 | 5 | Taro Muraoka Woe32 DLL support 6 | 7 | Akira Hatakeyama OS/2 support 8 | 9 | Juan Manuel Guerrero 10 | DOS/DJGPP support 11 | 12 | Hironori Sakamoto advice on EUC-JP and JISX0213 13 | 14 | -------------------------------------------------------------------------------- /gnuwin32/contrib/libiconv/1.9.2/libiconv-1.9.2-src/libcharset/AUTHORS: -------------------------------------------------------------------------------- 1 | Bruno Haible 2 | -------------------------------------------------------------------------------- /gnuwin32/contrib/libiconv/1.9.2/libiconv-1.9.2-src/libcharset/NEWS: -------------------------------------------------------------------------------- 1 | New in 1.2: 2 | * The include file is renamed from "libcharset.h" to "localcharset.h". 3 | -------------------------------------------------------------------------------- /gnuwin32/contrib/libiconv/1.9.2/libiconv-1.9.2-src/libcharset/m4/ChangeLog: -------------------------------------------------------------------------------- 1 | 2003-04-05 Bruno Haible 2 | 3 | Support for relocatable installation. 4 | * relocatable.m4: New file, from GNU gettext. 5 | 6 | 2003-04-05 Bruno Haible 7 | 8 | * codeset.m4: Update from GNU gettext-0.10.40. 9 | * glibc21.m4: Update from GNU gettext-0.10.40. 10 | 11 | 2002-11-07 Bruno Haible 12 | 13 | * libtool.m4: Upgrade to libtool-1.4.3. 14 | 15 | 2002-07-14 Bruno Haible 16 | 17 | * libtool.m4 (_LT_AC_LTCONFIG_HACK): Add support for GNU/FreeBSD. 18 | 19 | -------------------------------------------------------------------------------- /gnuwin32/contrib/libiconv/1.9.2/libiconv-1.9.2-src/libcharset/tools/README: -------------------------------------------------------------------------------- 1 | This directory contains tools for maintaining the config.charset file. 2 | 3 | The main script is "all-charsets". Before using it, you must configure 4 | this package. For all installed locales, it prints 5 | - the result of the command "locale charmap", 6 | - the result of "nl_langinfo (CODESET)", 7 | - the result of "locale_charset ()". 8 | 9 | It uses the following auxiliary scripts and programs: 10 | - all-locales 11 | Prints all usable locales in the system, one per line. 12 | - locale_charmap 13 | Executes "locale charmap". 14 | - locale_codeset.c 15 | Prints nl_langinfo (CODESET). 16 | - locale_charset.c 17 | Prints locale_charset(). 18 | 19 | A second main script is "all-charsets-X11". It also prints the X11 20 | encoding name. Before using it, you must tweak the X11 paths needed 21 | for compiling locale_x11encoding (a simple X11 program), and let your 22 | DISPLAY environment variable point to a running X11 screen. 23 | 24 | The other files are test results from various operating systems. 25 | 26 | -------------------------------------------------------------------------------- /gnuwin32/lib/charset.alias: -------------------------------------------------------------------------------- 1 | # This file contains a table of character encoding aliases, 2 | # suitable for operating system 'mingw32'. 3 | # It was automatically generated from config.charset. 4 | # Packages using this file: 5 | -------------------------------------------------------------------------------- /gnuwin32/lib/libcharset.la: -------------------------------------------------------------------------------- 1 | # libcharset.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.5 (1.1220 2003/04/05 19:32:58) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='../bin/libcharset1.dll' 9 | 10 | # Names of this library. 11 | library_names='libcharset.dll.a' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs='' 18 | 19 | # Version information for libcharset. 20 | current=1 21 | age=0 22 | revision=0 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Should we warn about portability when linking against -modules? 28 | shouldnotlink=no 29 | 30 | # Files to dlopen/dlpreopen 31 | dlopen='' 32 | dlpreopen='' 33 | 34 | # Directory that this library needs to be installed in: 35 | libdir='C:/Users/marius/DOWNLO~1/WEBKIT~1/install/lib' 36 | -------------------------------------------------------------------------------- /gnuwin32/lib/libcharset.la.orig: -------------------------------------------------------------------------------- 1 | # libcharset.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.5 (1.1220 2003/04/05 19:32:58) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='../bin/libcharset1.dll' 9 | 10 | # Names of this library. 11 | library_names='libcharset.dll.a' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs='' 18 | 19 | # Version information for libcharset. 20 | current=1 21 | age=0 22 | revision=0 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Should we warn about portability when linking against -modules? 28 | shouldnotlink=no 29 | 30 | # Files to dlopen/dlpreopen 31 | dlopen='' 32 | dlpreopen='' 33 | 34 | # Directory that this library needs to be installed in: 35 | libdir='c:/progra~1/LibIconv/lib' 36 | -------------------------------------------------------------------------------- /gnuwin32/lib/libiconv.la: -------------------------------------------------------------------------------- 1 | # libiconv.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.5 (1.1220 2003/04/05 19:32:58) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='../bin/libiconv2.dll' 9 | 10 | # Names of this library. 11 | library_names='libiconv.dll.a' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs='' 18 | 19 | # Version information for libiconv. 20 | current=4 21 | age=2 22 | revision=0 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Should we warn about portability when linking against -modules? 28 | shouldnotlink=no 29 | 30 | # Files to dlopen/dlpreopen 31 | dlopen='' 32 | dlpreopen='' 33 | 34 | # Directory that this library needs to be installed in: 35 | libdir='C:/Users/marius/DOWNLO~1/WEBKIT~1/install/lib' 36 | -------------------------------------------------------------------------------- /gnuwin32/lib/libiconv.la.orig: -------------------------------------------------------------------------------- 1 | # libiconv.la - a libtool library file 2 | # Generated by ltmain.sh - GNU libtool 1.5 (1.1220 2003/04/05 19:32:58) 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='../bin/libiconv2.dll' 9 | 10 | # Names of this library. 11 | library_names='libiconv.dll.a' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Libraries that this one depends upon. 17 | dependency_libs='' 18 | 19 | # Version information for libiconv. 20 | current=4 21 | age=2 22 | revision=0 23 | 24 | # Is this an already installed library? 25 | installed=yes 26 | 27 | # Should we warn about portability when linking against -modules? 28 | shouldnotlink=no 29 | 30 | # Files to dlopen/dlpreopen 31 | dlopen='' 32 | dlpreopen='' 33 | 34 | # Directory that this library needs to be installed in: 35 | libdir='c:/progra~1/LibIconv/lib' 36 | -------------------------------------------------------------------------------- /gnuwin32/man/cat1/iconv.1.txt: -------------------------------------------------------------------------------- 1 | ICONV(1) Linux Programmer's Manual ICONV(1) 2 | 3 | 4 | 5 | 6 | 7 | NAME 8 | iconv - character set conversion 9 | 10 | SYNOPSIS 11 | iconv [-c] [-s] [-f encoding] [-t encoding] [inputfile ...] 12 | iconv -l 13 | 14 | DESCRIPTION 15 | The iconv program converts text from one encoding to 16 | another encoding. More precisely, it converts from the 17 | encoding given for the -f option to the encoding given 18 | for the -t option. Either of these encodings defaults to 19 | the encoding of the current locale. All the inputfiles 20 | are read and converted in turn; if no inputfile is 21 | given, the standard input is used. The converted text is 22 | printed to standard output. 23 | 24 | When option -c is given, characters that cannot be con- 25 | verted are silently discarded, instead of leading to a 26 | conversion error. 27 | 28 | When option -s is given, error messages about invalid or 29 | unconvertible characters are omitted, but the actual 30 | converted text is unaffected. 31 | 32 | The encodings permitted are system dependent. For the 33 | libiconv implementation, they are listed in the 34 | iconv_open(3) manual page. 35 | 36 | The iconv -l command lists the names of the supported 37 | encodings, in a system dependent format. For the libi- 38 | conv implementation, the names are printed in upper 39 | case, separated by whitespace, and alias names of an 40 | encoding are listed on the same line as the encoding 41 | itself. 42 | 43 | SEE ALSO 44 | iconv_open(3), locale(7) 45 | 46 | 47 | 48 | GNU January 13, 2002 ICONV(1) 49 | -------------------------------------------------------------------------------- /gnuwin32/man/cat1/yacc.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/man/cat1/yacc.1.txt -------------------------------------------------------------------------------- /gnuwin32/man/cat3/iconv_close.3.txt: -------------------------------------------------------------------------------- 1 | ICONV_CLOSE(3) Linux Programmer's Manual ICONV_CLOSE(3) 2 | 3 | 4 | 5 | 6 | 7 | NAME 8 | iconv_close - deallocate descriptor for character set 9 | conversion 10 | 11 | SYNOPSIS 12 | #include 13 | 14 | int iconv_close (iconv_t cd); 15 | 16 | DESCRIPTION 17 | The iconv_close function deallocates a conversion 18 | descriptor cd previously allocated using iconv_open. 19 | 20 | RETURN VALUE 21 | When successful, the iconv_close function returns 0. In 22 | case of error, it sets errno and returns -1. 23 | 24 | CONFORMING TO 25 | UNIX98 26 | 27 | SEE ALSO 28 | iconv_open(3), iconv(3) 29 | 30 | 31 | 32 | GNU November 27, 1999 ICONV_CLOSE(3) 33 | -------------------------------------------------------------------------------- /gnuwin32/manifest/gperf-3.0.1-bin.mft: -------------------------------------------------------------------------------- 1 | bin/gperf.exe 2 | contrib/gperf/3.0.1/depends-GnuWin32.lst 3 | contrib/gperf/3.0.1/gperf-3.0.1-GnuWin32.README 4 | contrib/gperf/3.0.1/gperf-3.0.1-src/AUTHORS 5 | contrib/gperf/3.0.1/gperf-3.0.1-src/ChangeLog 6 | contrib/gperf/3.0.1/gperf-3.0.1-src/COPYING 7 | contrib/gperf/3.0.1/gperf-3.0.1-src/INSTALL 8 | contrib/gperf/3.0.1/gperf-3.0.1-src/NEWS 9 | contrib/gperf/3.0.1/gperf-3.0.1-src/README 10 | contrib/gperf/3.0.1/gperf-3.0.1/check.log 11 | contrib/gperf/3.0.1/gperf-3.0.1/check_err.log 12 | man/cat1/gperf.1.txt 13 | manifest/gperf-3.0.1-bin.mft 14 | manifest/gperf-3.0.1-bin.ver 15 | -------------------------------------------------------------------------------- /gnuwin32/manifest/gperf-3.0.1-bin.ver: -------------------------------------------------------------------------------- 1 | Gperf 3.0.1: Binaries 2 | Gperf: generate a perfect hash function from a key set -------------------------------------------------------------------------------- /gnuwin32/manifest/libiconv-1.9.2-1-bin.mft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/manifest/libiconv-1.9.2-1-bin.mft -------------------------------------------------------------------------------- /gnuwin32/manifest/libiconv-1.9.2-1-bin.ver: -------------------------------------------------------------------------------- 1 | LibIconv 1.9.2: Binaries 2 | LibIconv: convert between character encodings -------------------------------------------------------------------------------- /gnuwin32/manifest/libiconv-1.9.2-1-dep.mft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/manifest/libiconv-1.9.2-1-dep.mft -------------------------------------------------------------------------------- /gnuwin32/manifest/libiconv-1.9.2-1-dep.ver: -------------------------------------------------------------------------------- 1 | LibIconv 1.9.2: Dependencies 2 | LibIconv: convert between character encodings -------------------------------------------------------------------------------- /gnuwin32/patches/win_flex.patch: -------------------------------------------------------------------------------- 1 | Index: flex/src/main.c 2 | =================================================================== 3 | --- flex/src/main.c (revision 24) 4 | +++ flex/src/main.c (working copy) 5 | @@ -112,7 +112,7 @@ 6 | struct yytbl_writer tableswr; 7 | 8 | int prev_stdout = 0; 9 | -char *flex_temp_out_main="~flex_temp_out_main"; 10 | +char *flex_temp_out_main = 0; 11 | 12 | /* Make sure program_name is initialized so we don't crash if writing 13 | * out an error message before getting the program name from argv[0]. 14 | @@ -767,6 +767,8 @@ 15 | tblsiz); 16 | } 17 | 18 | + free (flex_temp_out_main); 19 | + flex_temp_out_main = 0; 20 | exit (exit_status); 21 | } 22 | 23 | @@ -779,8 +781,10 @@ 24 | { 25 | int i, sawcmpflag, rv, optind; 26 | char *arg; 27 | + char flex_temp_out_main_template[] = "~flex_temp_out_main_XXXXXX"; 28 | scanopt_t sopt; 29 | 30 | + flex_temp_out_main = _strdup(_mktemp(flex_temp_out_main_template)); 31 | printstats = syntaxerror = trace = spprdflt = false; 32 | lex_compat = posix_compat = C_plus_plus = backing_up_report = 33 | ddebug = fulltbl = false; 34 | Index: flex/src/filter.c 35 | =================================================================== 36 | --- flex/src/filter.c (revision 24) 37 | +++ flex/src/filter.c (working copy) 38 | @@ -86,7 +86,8 @@ 39 | 40 | /* Get some more or less random data. */ 41 | { 42 | - static unsigned long long g_value = 827363; 43 | + static unsigned long long g_value; 44 | + g_value = _getpid(); 45 | g_value += 100; 46 | random_time_bits = (((unsigned long long)234546 << 32) 47 | | (unsigned long long)g_value); 48 | -------------------------------------------------------------------------------- /gnuwin32/share/locale/ca/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ca/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/da/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/da/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/da/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/da/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/da/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/da/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/de/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/de/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/de/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/de/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/de/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/de/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/el/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/el/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/el/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/el/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/eo/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/eo/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/es/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/es/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/es/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/es/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/es/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/es/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/et/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/et/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/et/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/et/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/et/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/et/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/fi/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/fi/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/fi/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/fi/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/fr/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/fr/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/fr/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/fr/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/fr/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/fr/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ga/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ga/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ga/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ga/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ga/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ga/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/gl/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/gl/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/hr/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/hr/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/hr/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/hr/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/hr/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/hr/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/hu/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/hu/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/id/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/id/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/id/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/id/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/id/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/id/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/it/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/it/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/it/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/it/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/it/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/it/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ja/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ja/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ja/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ja/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ky/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ky/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/lt/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/lt/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ms/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ms/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ms/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ms/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/nb/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/nb/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/nb/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/nb/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/nl/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/nl/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/nl/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/nl/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/nl/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/nl/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/pl/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/pl/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/pl/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/pl/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/pl/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/pl/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/pt_BR/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/pt_BR/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/pt_BR/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/pt_BR/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/pt_BR/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/pt_BR/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ro/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ro/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ro/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ro/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ro/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ro/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ru/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ru/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ru/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ru/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/ru/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/ru/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/sk/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/sk/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/sl/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/sl/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/sl/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/sl/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/sr/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/sr/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/sv/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/sv/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/sv/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/sv/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/sv/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/sv/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/th/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/th/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/tr/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/tr/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/tr/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/tr/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/tr/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/tr/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/uk/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/uk/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/uk/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/uk/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/uk/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/uk/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/vi/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/vi/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/vi/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/vi/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/wa/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/wa/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/zh_CN/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/zh_CN/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/zh_CN/LC_MESSAGES/libiconv.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/zh_CN/LC_MESSAGES/libiconv.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/zh_TW/LC_MESSAGES/bison-runtime.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/zh_TW/LC_MESSAGES/bison-runtime.mo -------------------------------------------------------------------------------- /gnuwin32/share/locale/zh_TW/LC_MESSAGES/bison.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitwiseworks/qt5-os2/0f75d3248afa940f7a82d9cfaefd4266fa44a7bc/gnuwin32/share/locale/zh_TW/LC_MESSAGES/bison.mo -------------------------------------------------------------------------------- /init-repository-os2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # So far, we only support a subset of modules on OS/2. 4 | ./init-repository --module-subset=qtbase,qtsvg,qtdeclarative,qtmultimedia,qttools,qtwebsockets,qtwebchannel,qtwebengine --mirror=git://code.qt.io/qt/ "$@" 5 | --------------------------------------------------------------------------------