From 8f073cea69dde52b66577de4417fbc34db9e7476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Mon, 29 Apr 2019 12:18:48 +0300 Subject: Do DeveloperBuild for Boot2Qt Task-number: QTBUG-63152 Change-Id: I2a0239625bf5cfa4456c64e90e647c70d4533589 Reviewed-by: Heikki Halmet --- coin/platform_configs/default.txt | 4 ++-- coin/platform_configs/qtbase.txt | 2 -- coin/platform_configs/qtdeclarative.txt | 4 ---- coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/04-yocto.sh | 6 ++++++ 4 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 coin/platform_configs/qtdeclarative.txt (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index 3959e24a..cf6ec311 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -21,8 +21,8 @@ qtci-macos-10.13-x86_64-2 TvOS_ANY multi Clang qtci-macos-10.13-x86_64-2 WatchOS_ANY multi Clang DebugAndRelease DisableTests qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC Release -qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC Release +qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC DeveloperBuild +qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC DeveloperBuild qtci-linux-Ubuntu-18.04-x86_64 GCC TestOnly LicenseCheck qtci-linux-RHEL-7.4-x86_64 INTEGRITY_11_04 armv7 GCC Release DisableTests OpenGLES2 NoUseGoldLinker qtci-linux-RHEL-7.4-x86_64 QNX_700 armv7 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker diff --git a/coin/platform_configs/qtbase.txt b/coin/platform_configs/qtbase.txt index aaac89d0..15eb3b59 100644 --- a/coin/platform_configs/qtbase.txt +++ b/coin/platform_configs/qtbase.txt @@ -1,7 +1,5 @@ Template Target OS Target arch Compiler Features --------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC DeveloperBuild DisableTests -qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC DeveloperBuild DisableTests qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 DeveloperBuild Static Release ForceDebugInfo qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC DeveloperBuild NoPch DisableTests diff --git a/coin/platform_configs/qtdeclarative.txt b/coin/platform_configs/qtdeclarative.txt deleted file mode 100644 index e2b69559..00000000 --- a/coin/platform_configs/qtdeclarative.txt +++ /dev/null @@ -1,4 +0,0 @@ -Template Target OS Target arch Compiler Features ---------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC DeveloperBuild -qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC DeveloperBuild diff --git a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/04-yocto.sh b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/04-yocto.sh index 1c856c0c..c9daf834 100755 --- a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/04-yocto.sh +++ b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/04-yocto.sh @@ -90,3 +90,9 @@ fi echo "Yocto ARMv7 toolchain = $versionARM" >> ~/versions.txt echo "Yocto ARM64 toolchain = $versionARM64" >> ~/versions.txt + +# List qt user in qemu toolchain sysroots +sudo sh -c "grep ^qt /etc/passwd >> /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/etc/passwd" +sudo sh -c "grep ^qt /etc/group >> /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/etc/group" +sudo sh -c "grep ^qt /etc/passwd >> /opt/yocto-arm64/sysroots/aarch64-poky-linux/etc/passwd" +sudo sh -c "grep ^qt /etc/group >> /opt/yocto-arm64/sysroots/aarch64-poky-linux/etc/group" -- cgit v1.2.3 From 94d140b7466fe02f4a55c726ee116653cf7ac9cc Mon Sep 17 00:00:00 2001 From: Juha Karjalainen Date: Tue, 12 Mar 2019 15:25:35 +0200 Subject: Log more version information on macOS provisioning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Logs more version information to make easier to reproduce build. Logs macOS build version, homebrew installed packages and apple's installer installed packages. Change-Id: Ia9f2842a3fd2e8e0acf1667c7435a19c7a878aed Reviewed-by: Tony Sarajärvi --- coin/provisioning/common/macos/macos-version.sh | 53 ++++++++++++++++++++++ coin/provisioning/common/macos/version.sh | 43 ++++++++++++++++++ .../qtci-macos-10.12-x86_64/99-mac-version.sh | 6 +++ .../qtci-macos-10.13-x86_64/99-mac-version.sh | 6 +++ 4 files changed, 108 insertions(+) create mode 100755 coin/provisioning/common/macos/macos-version.sh create mode 100755 coin/provisioning/common/macos/version.sh create mode 100755 coin/provisioning/qtci-macos-10.12-x86_64/99-mac-version.sh create mode 100755 coin/provisioning/qtci-macos-10.13-x86_64/99-mac-version.sh (limited to 'coin') diff --git a/coin/provisioning/common/macos/macos-version.sh b/coin/provisioning/common/macos/macos-version.sh new file mode 100755 index 00000000..9f357b8c --- /dev/null +++ b/coin/provisioning/common/macos/macos-version.sh @@ -0,0 +1,53 @@ +#!/usr/bin/env bash + +############################################################################# +## +## Copyright (C) 2016 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +# This script needs to be called last during provisioning so that the software information will show up last in provision log. + +set -ex + +# Print all build machines versions to provision log +echo "*********************************************" >> ~/versions.txt +echo "***** macOS version *****" >> ~/versions.txt +sw_vers >> ~/versions.txt +echo "***** All installed packages *****" >> ~/versions.txt +echo "***** HomeBrew *****" >> ~/versions.txt +brew list --versions >> ~/versions.txt +echo "***** HomeBrew Casks*****" >> ~/versions.txt +brew cask list --versions >> ~/versions.txt +echo "***** Apple's installer *****" >> ~/versions.txt +pkgutil --pkgs >> ~/versions.txt +echo "*********************************************" >> ~/versions.txt + +"$(dirname "$0")/version.sh" diff --git a/coin/provisioning/common/macos/version.sh b/coin/provisioning/common/macos/version.sh new file mode 100755 index 00000000..3e2a7f19 --- /dev/null +++ b/coin/provisioning/common/macos/version.sh @@ -0,0 +1,43 @@ +#!/usr/bin/env bash + +############################################################################# +## +## Copyright (C) 2016 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +# This script will print all installed software to provision log. +# Script needs to be named so that it will be ran at last during provisioning + +# Print all build machines versions to provision log +echo "*********************************************" +echo "***** SW VERSIONS *****" +cat ~/versions.txt +echo "*********************************************" diff --git a/coin/provisioning/qtci-macos-10.12-x86_64/99-mac-version.sh b/coin/provisioning/qtci-macos-10.12-x86_64/99-mac-version.sh new file mode 100755 index 00000000..99d94150 --- /dev/null +++ b/coin/provisioning/qtci-macos-10.12-x86_64/99-mac-version.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +set -ex + +BASEDIR=$(dirname "$0") +$BASEDIR/../common/macos/macos-version.sh diff --git a/coin/provisioning/qtci-macos-10.13-x86_64/99-mac-version.sh b/coin/provisioning/qtci-macos-10.13-x86_64/99-mac-version.sh new file mode 100755 index 00000000..99d94150 --- /dev/null +++ b/coin/provisioning/qtci-macos-10.13-x86_64/99-mac-version.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +set -ex + +BASEDIR=$(dirname "$0") +$BASEDIR/../common/macos/macos-version.sh -- cgit v1.2.3 From 56134fd7f66e9c05ec564620f6abba03af298f9a Mon Sep 17 00:00:00 2001 From: Akseli Salovaara Date: Wed, 6 Feb 2019 13:25:44 +0200 Subject: Remove Packaging feature flag from UWP 2015 x86 integrations UWP 2015 x86 binaries are not published anymore. Speed-up export tool and reduce exported data disk space consumption by removing Packaging feature flag from UWP 2015 x86 configurations. Task-number: QTBUG-73544 Change-Id: Iad2016b6e6aec1787c7bbf31c6ef6f71db905c21 Reviewed-by: Jani Heikkinen --- coin/platform_configs/default.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index cf6ec311..da452401 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -4,7 +4,7 @@ qtci-windows-10-x86_64-10 MSVC2015 qtci-windows-7-x86-3 Mingw73 DeveloperBuild Release OpenGLDynamic qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic qtci-windows-10-x86_64-10 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo DisableTests +qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 DebugAndRelease Release ForceDebugInfo DisableTests qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo DisableTests qtci-windows-10-x86_64-10 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic qtci-linux-Ubuntu-16.04-x86_64-2 GCC DeveloperBuild OutOfSourceBuild QtLibInfix QtNamespace BuildExamples -- cgit v1.2.3 From 7e0fe78315cde30f8431dfd121c6658817d26cae Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Fri, 3 May 2019 12:44:12 +0300 Subject: Add static build for Saferenderer Task-number: COIN-229 Change-Id: I1808dbcf53a4e070167b485404c8cf9747dc04f5 Reviewed-by: Tuomas Heimonen Reviewed-by: Aapo Keskimolo --- coin/platform_configs/qtsaferenderer.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'coin') diff --git a/coin/platform_configs/qtsaferenderer.txt b/coin/platform_configs/qtsaferenderer.txt index ec14f610..5158b45a 100644 --- a/coin/platform_configs/qtsaferenderer.txt +++ b/coin/platform_configs/qtsaferenderer.txt @@ -1,3 +1,5 @@ Template Target OS Target arch Compiler Features ----------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic BuildExamples +qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic BuildExamples Static +qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker Static -- cgit v1.2.3 From 8d8b7d796fb43a7f6c1e2d10a5274c6a348d0e0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Wed, 9 Jan 2019 12:25:31 +0200 Subject: Enable a no-gui build on Ubuntu 18.04 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task-number: QTQAINFRA-2576 Change-Id: Iafdecb0571779077b722bde7521da681f00f6f60 Reviewed-by: Tony Sarajärvi Reviewed-by: Rolf Eike Beer Reviewed-by: Liang Qi --- coin/platform_configs/default.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index da452401..23b82ed4 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -10,6 +10,7 @@ qtci-windows-10-x86_64-10 MSVC2017 qtci-linux-Ubuntu-16.04-x86_64-2 GCC DeveloperBuild OutOfSourceBuild QtLibInfix QtNamespace BuildExamples qtci-linux-Ubuntu-18.04-x86_64 GCC NoWidgets ForceDebugInfo qtci-linux-Ubuntu-18.04-x86_64 GCC DeveloperBuild OutOfSourceBuild QtLibInfix QtNamespace BuildExamples Documentation +qtci-linux-Ubuntu-18.04-x86_64 GCC DeveloperBuild NoGui BuildExamples DisableTests qtci-linux-openSUSE-42.3-x86_64 GCC DeveloperBuild NoPch qtci-linux-openSUSE-42.3-x86_64 ICC_18 DeveloperBuild NoPch DisableTests SystemSQLite qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DeveloperBuild NoPch DisableTests -- cgit v1.2.3 From 3cc1c40ff502ba5067fee21a9e3f7c7dc28f20a9 Mon Sep 17 00:00:00 2001 From: Tuomas Heimonen Date: Fri, 24 May 2019 16:26:50 +0300 Subject: Remove tests from Saferenderer static build Task-number: QSR-458 Change-Id: I076add99b15bfdcde903af6d94913f28c46632ee Reviewed-by: Teemu Holappa --- coin/platform_configs/qtsaferenderer.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coin') diff --git a/coin/platform_configs/qtsaferenderer.txt b/coin/platform_configs/qtsaferenderer.txt index 837b331c..86de1e45 100644 --- a/coin/platform_configs/qtsaferenderer.txt +++ b/coin/platform_configs/qtsaferenderer.txt @@ -1,5 +1,5 @@ Template Target OS Target arch Compiler Features ----------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic BuildExamples -qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic Static -qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker Static +qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic DisableTests Static +qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker DisableTests Static -- cgit v1.2.3 From c5e443374aaa7d7cdfe90a69bbe3dc33604b5d32 Mon Sep 17 00:00:00 2001 From: Jani Heikkinen Date: Wed, 8 May 2019 12:52:12 +0300 Subject: Use link to qt5.txt instead of copy in qt3d-runtime.txt Change-Id: If61fe724af869fb35637321311bfb052d3009956 Reviewed-by: Antti Kokko --- coin/platform_configs/qt3d-runtime.txt | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'coin') diff --git a/coin/platform_configs/qt3d-runtime.txt b/coin/platform_configs/qt3d-runtime.txt index 3de18a74..cbc25d9b 100644 --- a/coin/platform_configs/qt3d-runtime.txt +++ b/coin/platform_configs/qt3d-runtime.txt @@ -1,22 +1 @@ -Template Target OS Target arch Compiler Target Compiler Features ---------------------------- ------------------- ----------- ----------- --------------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 x86 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-7-x86-3 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests -qtci-windows-10-x86_64-10 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker +qt5.txt -- cgit v1.2.3 From da9aac698db1de7db329f8fd3225b037a53862ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simo=20F=C3=A4lt?= Date: Thu, 16 May 2019 10:11:47 +0300 Subject: Provisioning: Install virtualenv to Ubuntu 18.04 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The python3-virtualenv package is missing the actual virtualenv executable. python3-virtualenv will get installed as dependency. Change-Id: If474831e8f46ac5dcd7e1028c97c7322c5e41b9d Reviewed-by: Tony Sarajärvi --- coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/02-apt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/02-apt.sh b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/02-apt.sh index dae1a58e..d6c04d5b 100755 --- a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/02-apt.sh +++ b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/02-apt.sh @@ -108,7 +108,7 @@ installPackages+=(g++-multilib) # python3 development package installPackages+=(python3-dev) installPackages+=(python3-pip) -installPackages+=(python3-virtualenv) +installPackages+=(virtualenv) installPackages+=(python3-wheel) # python2 development package installPackages+=(python-dev) -- cgit v1.2.3 From 25349a29f7fc1d90fe0389e1ae90ee382d754d36 Mon Sep 17 00:00:00 2001 From: Tuomas Heimonen Date: Tue, 21 May 2019 09:59:12 +0300 Subject: Remove examples from Saferenderer static Windows build Task-number: QSR-458 Change-Id: I3f0ba66590683ea221ccd207026602b3b89ee3a9 Reviewed-by: Teemu Holappa --- coin/platform_configs/qtsaferenderer.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/platform_configs/qtsaferenderer.txt b/coin/platform_configs/qtsaferenderer.txt index 5158b45a..837b331c 100644 --- a/coin/platform_configs/qtsaferenderer.txt +++ b/coin/platform_configs/qtsaferenderer.txt @@ -1,5 +1,5 @@ Template Target OS Target arch Compiler Features ----------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic BuildExamples -qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic BuildExamples Static +qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic Static qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker Static -- cgit v1.2.3 From f70bdd89b17cd58db8a49ee3c5968048d278b772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Thu, 16 May 2019 13:59:40 +0300 Subject: Update GCC version to 9.1.0 in Ubuntu 18.04 Task-number: QTQAINFRA-2958 Change-Id: I3ea8c8e467b9a1f56c2b114c40fb94dfdc1448d0 Reviewed-by: Qt CI Bot Reviewed-by: Liang Qi --- coin/provisioning/common/linux/gcc.sh | 5 +++++ coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/03-gcc.sh | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'coin') diff --git a/coin/provisioning/common/linux/gcc.sh b/coin/provisioning/common/linux/gcc.sh index 44ff654b..44c63e2f 100755 --- a/coin/provisioning/common/linux/gcc.sh +++ b/coin/provisioning/common/linux/gcc.sh @@ -37,6 +37,8 @@ # shellcheck source=../unix/DownloadURL.sh source "${BASH_SOURCE%/*}/../unix/DownloadURL.sh" +# shellcheck source=../unix/SetEnvVar.sh +source "${BASH_SOURCE%/*}/../unix/SetEnvVar.sh" set -ex @@ -97,6 +99,9 @@ function InstallGCC() { sudo /usr/bin/update-alternatives --install /usr/bin/c++ c++ "$installPrefix/bin/g++-$suffixVersion" "$priority" fi + echo "/usr/local/lib64" | sudo tee /etc/ld.so.conf.d/gcc-libraries.conf + echo "/usr/local/lib32" | sudo tee -a /etc/ld.so.conf.d/gcc-libraries.conf + sudo ldconfig -v echo "GCC = $version" >> ~/versions.txt } diff --git a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/03-gcc.sh b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/03-gcc.sh index 62940e21..947583da 100755 --- a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/03-gcc.sh +++ b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/03-gcc.sh @@ -5,5 +5,4 @@ set -ex # shellcheck source=../common/linux/gcc.sh source "${BASH_SOURCE%/*}/../common/linux/gcc.sh" -InstallGCC 8.2.0 50 19e40bea7df5dbadb22eec09ada621ecd9235687 19926bdb6c4b58891015929853d41aeff019d400 - +InstallGCC 9.1.0 50 3953fa0d34a467630088d2a43603f74a36a80468 ded538076858926d361af790d59c1f8440dd29b2 -- cgit v1.2.3 From d49c0cd0bbc535156007a9772e4561d6aaf6a105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Fri, 1 Feb 2019 14:51:55 +0200 Subject: Split features list between Coin and qt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Start using configure args as configure string instead of flags. Task-number: QTQAINFRA-2744 Change-Id: I2ce189531df7ba805d18b36615259bf0303e7175 Reviewed-by: Tony Sarajärvi (cherry picked from commit 8cdf60fe6492490561cd6798901b201903ff6ab2) --- coin/platform_configs/default.txt | 56 ++++++++++++++++---------------- coin/platform_configs/qt5.txt | 42 ++++++++++++------------ coin/platform_configs/qtbase.txt | 9 +++-- coin/platform_configs/qtconnectivity.txt | 4 +-- coin/platform_configs/qtsaferenderer.txt | 8 ++--- coin/platform_configs/qtsdk.txt | 8 ++--- coin/platform_configs/qtwebkit.txt | 8 ++--- coin/platform_configs/tqtc-qt-rta.txt | 11 +++---- 8 files changed, 72 insertions(+), 74 deletions(-) (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index 23b82ed4..4190f9ee 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -1,29 +1,29 @@ -Template Target OS Target arch Compiler Target Compiler Features ------------------------------------ ------------------- ----------- ----------- --------------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 MSVC2015 DeveloperBuild Release QtNamespace QtLibInfix BuildExamples OpenGLAngle -qtci-windows-7-x86-3 Mingw73 DeveloperBuild Release OpenGLDynamic -qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic -qtci-windows-10-x86_64-10 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic -qtci-linux-Ubuntu-16.04-x86_64-2 GCC DeveloperBuild OutOfSourceBuild QtLibInfix QtNamespace BuildExamples -qtci-linux-Ubuntu-18.04-x86_64 GCC NoWidgets ForceDebugInfo -qtci-linux-Ubuntu-18.04-x86_64 GCC DeveloperBuild OutOfSourceBuild QtLibInfix QtNamespace BuildExamples Documentation -qtci-linux-Ubuntu-18.04-x86_64 GCC DeveloperBuild NoGui BuildExamples DisableTests -qtci-linux-openSUSE-42.3-x86_64 GCC DeveloperBuild NoPch -qtci-linux-openSUSE-42.3-x86_64 ICC_18 DeveloperBuild NoPch DisableTests SystemSQLite -qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DeveloperBuild NoPch DisableTests -qtci-linux-RHEL-7.4-x86_64 GCC Packaging Release NoUseGoldLinker ForceDebugInfo SeparateDebugInfo -qtci-macos-10.13-x86_64-2 Clang Packaging DebugAndRelease Release -qtci-macos-10.12-x86_64-9 Clang DeveloperBuild NoFramework Release QtNamespace NoPch -qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DebugAndRelease DisableTests Static -qtci-macos-10.13-x86_64-2 TvOS_ANY multi Clang DebugAndRelease DisableTests -qtci-macos-10.13-x86_64-2 WatchOS_ANY multi Clang DebugAndRelease DisableTests -qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC DeveloperBuild -qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC DeveloperBuild +Template Target OS Target arch Compiler Target Compiler Features Configure arguments +----------------------------------- ------------------- ----------- ----------- --------------- ------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +qtci-windows-10-x86_64-10 MSVC2015 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -angle -qtnamespace TestNamespace -qtlibinfix TestInfix -nomake tests -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% +qtci-windows-7-x86-3 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ +qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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% +qtci-windows-10-x86_64-10 MSVC2015 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -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% +qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-x86-msvc2015 +qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-arm-msvc2015 +qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -verbose -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% +qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace +qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl +qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace +qtci-linux-Ubuntu-18.04-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-gui -R . -openssl +qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl +qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -openssl -platform linux-icc-64 +qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten +qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -openssl -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . +qtci-macos-10.13-x86_64-2 Clang Packaging -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include +qtci-macos-10.12-x86_64-9 Clang -opensource -confirm-license -verbose -prefix /Users/qt/work/install -developer-build -release -qtnamespace TestNamespace -nomake tests -nomake examples -no-pch -no-framework -xplatform macx-clang -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -I/usr/local/opt/openssl/include +qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -no-icu -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -static -xplatform macx-ios-clang +qtci-macos-10.13-x86_64-2 TvOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-tvos-clang +qtci-macos-10.13-x86_64-2 WatchOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-watchos-clang +qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I /home/qt/openssl-1.0.2/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r18b -android-ndk-host linux-x86_64 -android-arch armeabi-v7a -xplatform android-clang +qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I /home/qt/openssl-1.0.2/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r18b -android-ndk-host linux-x86_64 -android-arch arm64-v8a -xplatform android-clang +qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -psql_config /dev/null -tslib +qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib qtci-linux-Ubuntu-18.04-x86_64 GCC TestOnly LicenseCheck -qtci-linux-RHEL-7.4-x86_64 INTEGRITY_11_04 armv7 GCC Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv7 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker +qtci-linux-RHEL-7.4-x86_64 INTEGRITY_11_04 armv7 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -xplatform integrity-armv7-imx6 +qtci-linux-RHEL-7.4-x86_64 QNX_700 armv7 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-armle-v7-qcc diff --git a/coin/platform_configs/qt5.txt b/coin/platform_configs/qt5.txt index ce289290..a56a3287 100644 --- a/coin/platform_configs/qt5.txt +++ b/coin/platform_configs/qt5.txt @@ -1,21 +1,21 @@ -Template Target OS Target arch Compiler Target Compiler Features ---------------------------- ------------------- ----------- ----------- --------------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-7-x86-3 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests -qtci-windows-10-x86_64-10 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker +Template Target OS Target arch Compiler Target Compiler Features Configure arguments +--------------------------- ------------------- ----------- ----------- --------------- -------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2015 -xplatform winrt-x64-msvc2015 +qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x86-msvc2017 +qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -opengl dynamic -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ +qtci-windows-10-x86_64-10 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -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++ +qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-arm-msvc2017 +qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x64-msvc2017 +qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /home/qt/openssl-1.0.2/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r18b -android-ndk-host linux-x86_64 -android-arch x86 +qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r18b -android-arch armeabi-v7a +qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r18b -android-arch arm64-v8a +qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r18b -android-arch x86 +qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r18b -android-ndk-host darwin-x86_64 -android-arch armeabi-v7a +qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r18b -android-ndk-host darwin-x86_64 -android-arch arm64-v8a +qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r18b -android-ndk-host darwin-x86_64 -android-arch x86 +qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-qcc +qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-armle-v7-qcc +qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -opengl es2 -nomake tests -nomake examples -xplatform qnx-aarch64le-qcc +qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-x86-64-qcc +qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-aarch64le-qcc +qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-64-qcc diff --git a/coin/platform_configs/qtbase.txt b/coin/platform_configs/qtbase.txt index 15eb3b59..58912679 100644 --- a/coin/platform_configs/qtbase.txt +++ b/coin/platform_configs/qtbase.txt @@ -1,5 +1,4 @@ -Template Target OS Target arch Compiler Features ---------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 DeveloperBuild Static Release ForceDebugInfo -qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC DeveloperBuild NoPch DisableTests - +Template Target OS Target arch Compiler Features Configure arguments +--------------------------------- ------------------- ----------- ----------- -------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 -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 +qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -developer-build -static -nomake tests -nomake examples -no-pch -no-feature-thread -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -xplatform wasm-emscripten diff --git a/coin/platform_configs/qtconnectivity.txt b/coin/platform_configs/qtconnectivity.txt index 4ac73c86..bc03efee 100644 --- a/coin/platform_configs/qtconnectivity.txt +++ b/coin/platform_configs/qtconnectivity.txt @@ -1,3 +1,3 @@ Template Target OS Target arch Compiler Features ---------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 DeveloperBuild Static Release ForceDebugInfo +--------------------------------- ------------------- ----------- ----------- -------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 -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 diff --git a/coin/platform_configs/qtsaferenderer.txt b/coin/platform_configs/qtsaferenderer.txt index 86de1e45..e27b1490 100644 --- a/coin/platform_configs/qtsaferenderer.txt +++ b/coin/platform_configs/qtsaferenderer.txt @@ -1,5 +1,5 @@ -Template Target OS Target arch Compiler Features ------------------------------------ ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic BuildExamples -qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic DisableTests Static +Template Target OS Target arch Compiler Features Configure arguments +----------------------------------- ------------------- ----------- ----------- ------------------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 Mingw73 -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++ +qtci-windows-10-x86_64-10 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -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++ qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker DisableTests Static diff --git a/coin/platform_configs/qtsdk.txt b/coin/platform_configs/qtsdk.txt index 3011926d..ad320b09 100644 --- a/coin/platform_configs/qtsdk.txt +++ b/coin/platform_configs/qtsdk.txt @@ -1,4 +1,4 @@ -Template Target OS Target arch Compiler Features ---------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86-3 MSVC2017 Release ForceDebugInfo OpenGLDynamic -qtci-linux-RHEL-6.6-x86_64 GCC Release ForceDebugInfo +Template Target OS Target arch Compiler Features Configure arguments +--------------------------- ------------------- ----------- ----------- --------------- ---------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86-3 MSVC2017 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests +qtci-linux-RHEL-6.6-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -force-debug-info -nomake examples -nomake tests diff --git a/coin/platform_configs/qtwebkit.txt b/coin/platform_configs/qtwebkit.txt index a357ad5b..3eb40a5b 100644 --- a/coin/platform_configs/qtwebkit.txt +++ b/coin/platform_configs/qtwebkit.txt @@ -1,4 +1,4 @@ -Template Target OS Target arch Compiler Features ---------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 x86 MSVC2017 DebugAndRelease Release ForceDebugInfo OpenGLDynamic DisableTests -qtci-windows-7-x86-3 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests +Template Target OS Target arch Compiler Features Configure arguments +--------------------------- ------------------- ----------- ----------- ------------------------ -------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 x86 MSVC2017 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -force-debug-info -opengl dynamic +qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -opengl dynamic diff --git a/coin/platform_configs/tqtc-qt-rta.txt b/coin/platform_configs/tqtc-qt-rta.txt index 8fbb5a00..82b086f9 100644 --- a/coin/platform_configs/tqtc-qt-rta.txt +++ b/coin/platform_configs/tqtc-qt-rta.txt @@ -1,6 +1,5 @@ -Template Target OS Target arch Compiler Features ---------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-7-x86_64-4 MSVC2013 Release ForceDebugInfo OpenGLDynamic DisableTests -qtci-windows-8.1-x86_64 MSVC2013 Release ForceDebugInfo OpenGLDynamic DisableTests -qtci-windows-10-x86-3 MSVC2017 Release ForceDebugInfo OpenGLDynamic - +Template Target OS Target arch Compiler Features Configure arguments +--------------------------- ------------------- ----------- ----------- ------------- -------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-7-x86_64-4 MSVC2013 DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests +qtci-windows-8.1-x86_64 MSVC2013 DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests +qtci-windows-10-x86-3 MSVC2017 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests -- cgit v1.2.3 From d77fdecc11054c6fb0c34824935fcbfcdf644734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Tue, 4 Jun 2019 11:10:57 +0300 Subject: Fix platform configuration files Typos, duplicate entries and one missing rebase ended up in the initial cherry-pick from 5.13 Change-Id: Ibf0fdb8cbc62f8223a0ede89ad4c013ceb7d145e Reviewed-by: Heikki Halmet --- coin/platform_configs/default.txt | 8 ++++---- coin/platform_configs/qtdeclarative.txt | 4 ++++ coin/platform_configs/qtsaferenderer.txt | 4 ++-- 3 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 coin/platform_configs/qtdeclarative.txt (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index 4190f9ee..602e5916 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -2,19 +2,19 @@ Template Target OS Target arch Compiler ----------------------------------- ------------------- ----------- ----------- --------------- ------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ qtci-windows-10-x86_64-10 MSVC2015 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -angle -qtnamespace TestNamespace -qtlibinfix TestInfix -nomake tests -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% qtci-windows-7-x86-3 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ -qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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% +qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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% qtci-windows-10-x86_64-10 MSVC2015 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -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% qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-x86-msvc2015 qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-arm-msvc2015 -qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -verbose -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% +qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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% qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace -qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl +qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace qtci-linux-Ubuntu-18.04-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-gui -R . -openssl qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -openssl -platform linux-icc-64 qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten -qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -openssl -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . +qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -openssl -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . qtci-macos-10.13-x86_64-2 Clang Packaging -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include qtci-macos-10.12-x86_64-9 Clang -opensource -confirm-license -verbose -prefix /Users/qt/work/install -developer-build -release -qtnamespace TestNamespace -nomake tests -nomake examples -no-pch -no-framework -xplatform macx-clang -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -I/usr/local/opt/openssl/include qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -no-icu -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -static -xplatform macx-ios-clang diff --git a/coin/platform_configs/qtdeclarative.txt b/coin/platform_configs/qtdeclarative.txt new file mode 100644 index 00000000..a36c94a5 --- /dev/null +++ b/coin/platform_configs/qtdeclarative.txt @@ -0,0 +1,4 @@ +Template Target OS Target arch Compiler Features Configure arguments +--------------------------------- ------------------- ----------- ----------- -------------- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC -opensource -confirm-license -R . -developer-build -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -no-xcb -nomake examples -nomake tests -openssl -prefix /home/qt/work/install -psql_config /dev/null -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -tslib -verbose +qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake examples -nomake tests -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib -no-xcb diff --git a/coin/platform_configs/qtsaferenderer.txt b/coin/platform_configs/qtsaferenderer.txt index e27b1490..e05c4992 100644 --- a/coin/platform_configs/qtsaferenderer.txt +++ b/coin/platform_configs/qtsaferenderer.txt @@ -1,5 +1,5 @@ Template Target OS Target arch Compiler Features Configure arguments ----------------------------------- ------------------- ----------- ----------- ------------------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- qtci-windows-10-x86_64-10 Mingw73 -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++ -qtci-windows-10-x86_64-10 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -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++ -qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker DisableTests Static +qtci-windows-10-x86_64-10 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -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++ +qtci-linux-RHEL-7.4-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -developer-build -static -nomake tests -nomake examples -no-use-gold-linker -- cgit v1.2.3 From 608788de2d10c55b0b3d7c11776f368da015a89a Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Thu, 17 Jan 2019 15:24:27 +0200 Subject: Provisioning: Update Android NDK to version r19 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also let's start using 64-bit Android NDK for Windows Task-number: QTQAINFRA-2568 Change-Id: I2d757aa9e43abf5118abad7bf644e17e88a2ca94 Reviewed-by: Qt CI Bot Reviewed-by: Tony Sarajärvi (cherry picked from commit c09135cb56e03dd6a09b79f2c6e15932e9433df2) Reviewed-by: Jani Heikkinen --- coin/provisioning/common/linux/android_linux.sh | 4 ++-- coin/provisioning/common/windows/android.ps1 | 10 +++++----- coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'coin') diff --git a/coin/provisioning/common/linux/android_linux.sh b/coin/provisioning/common/linux/android_linux.sh index c77af943..a15bcf03 100755 --- a/coin/provisioning/common/linux/android_linux.sh +++ b/coin/provisioning/common/linux/android_linux.sh @@ -51,13 +51,13 @@ basePath="http://ci-files01-hki.intra.qt.io/input/android" toolsVersion="r26.1.1" toolsFile="sdk-tools-linux-4333796.zip" -ndkVersion="r18b" +ndkVersion="r19c" ndkFile="android-ndk-$ndkVersion-linux-x86_64.zip" sdkBuildToolsVersion="28.0.3" sdkApiLevel="android-28" toolsSha1="8c7c28554a32318461802c1291d76fccfafde054" -ndkSha1="500679655da3a86aecf67007e8ab230ea9b4dd7b" +ndkSha1="fd94d0be6017c6acbd193eb95e09cf4b6f61b834" toolsTargetFile="/tmp/$toolsFile" toolsSourceFile="$basePath/$toolsFile" diff --git a/coin/provisioning/common/windows/android.ps1 b/coin/provisioning/common/windows/android.ps1 index 1b4dd35d..def09116 100644 --- a/coin/provisioning/common/windows/android.ps1 +++ b/coin/provisioning/common/windows/android.ps1 @@ -40,10 +40,10 @@ # That's why we need to use Andoid-21 API version in Qt 5.9. # NDK -$ndkVersion = "r18b" -$ndkCachedUrl = "\\ci-files01-hki.intra.qt.io\provisioning\android\android-ndk-$ndkVersion-windows-x86.zip" -$ndkOfficialUrl = "https://dl.google.com/android/repository/android-ndk-$ndkVersion-windows-x86.zip" -$ndkChecksum = "4b8b6a4edc0fa967b429c1d6d25adf69acc28803" +$ndkVersion = "r19c" +$ndkCachedUrl = "\\ci-files01-hki.intra.qt.io\provisioning\android\android-ndk-$ndkVersion-windows-x86_64.zip" +$ndkOfficialUrl = "https://dl.google.com/android/repository/android-ndk-$ndkVersion-windows-x86_64.zip" +$ndkChecksum = "c4cd8c0b6e7618ca0a871a5f24102e40c239f6a3" $ndkFolder = "c:\Utils\Android\android-ndk-$ndkVersion" $ndkZip = "c:\Windows\Temp\android_ndk_$ndkVersion.zip" @@ -98,7 +98,7 @@ Out-File -FilePath C:\Utils\Android\licenses\android-sdk-license -Encoding utf8 cd $toolsFolder\bin\ $sdkmanager_args += "platforms;$sdkApiLevel", "platform-tools", "build-tools;$sdkBuildToolsVersion" $command = 'for($i=0;$i -lt 6;$i++) { $response += "y`n"}; $response | .\sdkmanager.bat @sdkmanager_args' -iex $command +Invoke-Expression $command $command = 'for($i=0;$i -lt 6;$i++) { $response += "y`n"}; $response | .\sdkmanager.bat --licenses' iex $command cmd /c "dir C:\Utils\android" diff --git a/coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh b/coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh index c0d75ff6..d0acdd45 100755 --- a/coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh +++ b/coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh @@ -51,7 +51,7 @@ toolsVersion="r26.1.1" # toolsFile dertermines tools version toolsFile="sdk-tools-darwin-4333796.zip" -ndkVersion="r18b" +ndkVersion="r19c" ndkFile="android-ndk-$ndkVersion-darwin-x86_64.zip" sdkBuildToolsVersion="28.0.3" # this is compile sdk version -- cgit v1.2.3 From a2b1dd2d0afe58f27b1585ecab5235ae32932ef8 Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Fri, 5 Apr 2019 13:43:07 +0300 Subject: Provisioning: Use ANDROID_NDK_ROOT instead of ANDROID_NDK_HOME MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this binaries will be hardcoded to look in e.g /opt/android/android-ndk-r19b which means that RTA tests will fail Task-number: QTBUG-74952 Change-Id: Ic2b1297e15d905f2250333b6bc884abe2f1472d4 Reviewed-by: Tony Sarajärvi (cherry picked from commit dbaa42baa77309a1aa407cd45078d885f7428aa2) Reviewed-by: Jani Heikkinen --- coin/provisioning/common/linux/android_linux.sh | 1 + coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh | 1 + 2 files changed, 2 insertions(+) (limited to 'coin') diff --git a/coin/provisioning/common/linux/android_linux.sh b/coin/provisioning/common/linux/android_linux.sh index a15bcf03..5840d4b4 100755 --- a/coin/provisioning/common/linux/android_linux.sh +++ b/coin/provisioning/common/linux/android_linux.sh @@ -95,6 +95,7 @@ ls -l "$sdkTargetFolder" SetEnvVar "ANDROID_SDK_HOME" "$sdkTargetFolder" SetEnvVar "ANDROID_NDK_HOME" "$targetFolder/android-ndk-$ndkVersion" +SetEnvVar "ANDROID_NDK_ROOT" "$targetFolder/android-ndk-$ndkVersion" SetEnvVar "ANDROID_NDK_HOST" "linux-x86_64" SetEnvVar "ANDROID_API_VERSION" "$sdkApiLevel" diff --git a/coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh b/coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh index d0acdd45..544364b0 100755 --- a/coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh +++ b/coin/provisioning/qtci-macos-10.13-x86_64/30-android.sh @@ -76,6 +76,7 @@ ls -l "$sdkTargetFolder" SetEnvVar "ANDROID_SDK_HOME" "$sdkTargetFolder" SetEnvVar "ANDROID_NDK_HOME" "$targetFolder/android-ndk-$ndkVersion" +SetEnvVar "ANDROID_NDK_ROOT" "$targetFolder/android-ndk-$ndkVersion" SetEnvVar "ANDROID_NDK_HOST" "darwin-x86_64" SetEnvVar "ANDROID_API_VERSION" "$sdkApiLevel" -- cgit v1.2.3 From 1cf289d1827655da5a78c1fba1249546c149b499 Mon Sep 17 00:00:00 2001 From: Tuomas Heimonen Date: Fri, 24 May 2019 16:26:50 +0300 Subject: Remove tests from Saferenderer static build Task-number: QSR-458 Reviewed-by: Teemu Holappa (cherry picked from commit 3cc1c40ff502ba5067fee21a9e3f7c7dc28f20a9) Change-Id: I076add99b15bfdcde903af6d94913f28c46632ee Reviewed-by: Jani Heikkinen --- coin/platform_configs/qtsaferenderer.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coin') diff --git a/coin/platform_configs/qtsaferenderer.txt b/coin/platform_configs/qtsaferenderer.txt index 837b331c..86de1e45 100644 --- a/coin/platform_configs/qtsaferenderer.txt +++ b/coin/platform_configs/qtsaferenderer.txt @@ -1,5 +1,5 @@ Template Target OS Target arch Compiler Features ----------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic BuildExamples -qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic Static -qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker Static +qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic DisableTests Static +qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker DisableTests Static -- cgit v1.2.3 From 6c6c6ca1a5e1b2f79d3784d713aaa4d0adeaaeac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Fri, 1 Feb 2019 14:51:55 +0200 Subject: Split features list between Coin and qt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Start using configure args as configure string instead of flags. Task-number: QTQAINFRA-2744 Change-Id: I2ce189531df7ba805d18b36615259bf0303e7175 Reviewed-by: Tony Sarajärvi (cherry picked from commit 8cdf60fe6492490561cd6798901b201903ff6ab2) (cherry picked from commit d49c0cd0bbc535156007a9772e4561d6aaf6a105) Reviewed-by: Jani Heikkinen --- coin/platform_configs/default.txt | 54 ++++++++++++++++---------------- coin/platform_configs/qt5.txt | 42 ++++++++++++------------- coin/platform_configs/qtbase.txt | 9 +++--- coin/platform_configs/qtconnectivity.txt | 4 +-- coin/platform_configs/qtsaferenderer.txt | 8 ++--- coin/platform_configs/qtsdk.txt | 8 ++--- coin/platform_configs/qtwebkit.txt | 8 ++--- coin/platform_configs/tqtc-qt-rta.txt | 11 +++---- 8 files changed, 71 insertions(+), 73 deletions(-) (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index da452401..92d33c3f 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -1,28 +1,28 @@ -Template Target OS Target arch Compiler Target Compiler Features ------------------------------------ ------------------- ----------- ----------- --------------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 MSVC2015 DeveloperBuild Release QtNamespace QtLibInfix BuildExamples OpenGLAngle -qtci-windows-7-x86-3 Mingw73 DeveloperBuild Release OpenGLDynamic -qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic -qtci-windows-10-x86_64-10 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic -qtci-linux-Ubuntu-16.04-x86_64-2 GCC DeveloperBuild OutOfSourceBuild QtLibInfix QtNamespace BuildExamples -qtci-linux-Ubuntu-18.04-x86_64 GCC NoWidgets ForceDebugInfo -qtci-linux-Ubuntu-18.04-x86_64 GCC DeveloperBuild OutOfSourceBuild QtLibInfix QtNamespace BuildExamples Documentation -qtci-linux-openSUSE-42.3-x86_64 GCC DeveloperBuild NoPch -qtci-linux-openSUSE-42.3-x86_64 ICC_18 DeveloperBuild NoPch DisableTests SystemSQLite -qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DeveloperBuild NoPch DisableTests -qtci-linux-RHEL-7.4-x86_64 GCC Packaging Release NoUseGoldLinker ForceDebugInfo SeparateDebugInfo -qtci-macos-10.13-x86_64-2 Clang Packaging DebugAndRelease Release -qtci-macos-10.12-x86_64-9 Clang DeveloperBuild NoFramework Release QtNamespace NoPch -qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DebugAndRelease DisableTests Static -qtci-macos-10.13-x86_64-2 TvOS_ANY multi Clang DebugAndRelease DisableTests -qtci-macos-10.13-x86_64-2 WatchOS_ANY multi Clang DebugAndRelease DisableTests -qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC DeveloperBuild -qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC DeveloperBuild +Template Target OS Target arch Compiler Target Compiler Features Configure arguments +----------------------------------- ------------------- ----------- ----------- --------------- ------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +qtci-windows-10-x86_64-10 MSVC2015 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -angle -qtnamespace TestNamespace -qtlibinfix TestInfix -nomake tests -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% +qtci-windows-7-x86-3 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ +qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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% +qtci-windows-10-x86_64-10 MSVC2015 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -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% +qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-x86-msvc2015 +qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-arm-msvc2015 +qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -verbose -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% +qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace +qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl +qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace +qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl +qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -openssl -platform linux-icc-64 +qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten +qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -openssl -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . +qtci-macos-10.13-x86_64-2 Clang Packaging -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include +qtci-macos-10.12-x86_64-9 Clang -opensource -confirm-license -verbose -prefix /Users/qt/work/install -developer-build -release -qtnamespace TestNamespace -nomake tests -nomake examples -no-pch -no-framework -xplatform macx-clang -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -I/usr/local/opt/openssl/include +qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -no-icu -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -static -xplatform macx-ios-clang +qtci-macos-10.13-x86_64-2 TvOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-tvos-clang +qtci-macos-10.13-x86_64-2 WatchOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-watchos-clang +qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I /home/qt/openssl-1.0.2/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch armeabi-v7a -xplatform android-clang +qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I /home/qt/openssl-1.0.2/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch arm64-v8a -xplatform android-clang +qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -psql_config /dev/null -tslib +qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib qtci-linux-Ubuntu-18.04-x86_64 GCC TestOnly LicenseCheck -qtci-linux-RHEL-7.4-x86_64 INTEGRITY_11_04 armv7 GCC Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv7 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker +qtci-linux-RHEL-7.4-x86_64 INTEGRITY_11_04 armv7 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -xplatform integrity-armv7-imx6 +qtci-linux-RHEL-7.4-x86_64 QNX_700 armv7 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-armle-v7-qcc diff --git a/coin/platform_configs/qt5.txt b/coin/platform_configs/qt5.txt index ce289290..0605cc7f 100644 --- a/coin/platform_configs/qt5.txt +++ b/coin/platform_configs/qt5.txt @@ -1,21 +1,21 @@ -Template Target OS Target arch Compiler Target Compiler Features ---------------------------- ------------------- ----------- ----------- --------------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-7-x86-3 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests -qtci-windows-10-x86_64-10 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker +Template Target OS Target arch Compiler Target Compiler Features Configure arguments +--------------------------- ------------------- ----------- ----------- --------------- -------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2015 -xplatform winrt-x64-msvc2015 +qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x86-msvc2017 +qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -opengl dynamic -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ +qtci-windows-10-x86_64-10 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -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++ +qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-arm-msvc2017 +qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x64-msvc2017 +qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /home/qt/openssl-1.0.2/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch x86 +qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch armeabi-v7a +qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch arm64-v8a +qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch x86 +qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch armeabi-v7a +qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch arm64-v8a +qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch x86 +qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-qcc +qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-armle-v7-qcc +qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -opengl es2 -nomake tests -nomake examples -xplatform qnx-aarch64le-qcc +qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-x86-64-qcc +qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-aarch64le-qcc +qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-64-qcc diff --git a/coin/platform_configs/qtbase.txt b/coin/platform_configs/qtbase.txt index 15eb3b59..58912679 100644 --- a/coin/platform_configs/qtbase.txt +++ b/coin/platform_configs/qtbase.txt @@ -1,5 +1,4 @@ -Template Target OS Target arch Compiler Features ---------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 DeveloperBuild Static Release ForceDebugInfo -qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC DeveloperBuild NoPch DisableTests - +Template Target OS Target arch Compiler Features Configure arguments +--------------------------------- ------------------- ----------- ----------- -------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 -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 +qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -developer-build -static -nomake tests -nomake examples -no-pch -no-feature-thread -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -xplatform wasm-emscripten diff --git a/coin/platform_configs/qtconnectivity.txt b/coin/platform_configs/qtconnectivity.txt index 4ac73c86..bc03efee 100644 --- a/coin/platform_configs/qtconnectivity.txt +++ b/coin/platform_configs/qtconnectivity.txt @@ -1,3 +1,3 @@ Template Target OS Target arch Compiler Features ---------------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 DeveloperBuild Static Release ForceDebugInfo +--------------------------------- ------------------- ----------- ----------- -------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 -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 diff --git a/coin/platform_configs/qtsaferenderer.txt b/coin/platform_configs/qtsaferenderer.txt index 86de1e45..e27b1490 100644 --- a/coin/platform_configs/qtsaferenderer.txt +++ b/coin/platform_configs/qtsaferenderer.txt @@ -1,5 +1,5 @@ -Template Target OS Target arch Compiler Features ------------------------------------ ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic BuildExamples -qtci-windows-10-x86_64-10 Mingw73 DeveloperBuild Release OpenGLDynamic DisableTests Static +Template Target OS Target arch Compiler Features Configure arguments +----------------------------------- ------------------- ----------- ----------- ------------------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 Mingw73 -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++ +qtci-windows-10-x86_64-10 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -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++ qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker DisableTests Static diff --git a/coin/platform_configs/qtsdk.txt b/coin/platform_configs/qtsdk.txt index 3011926d..ad320b09 100644 --- a/coin/platform_configs/qtsdk.txt +++ b/coin/platform_configs/qtsdk.txt @@ -1,4 +1,4 @@ -Template Target OS Target arch Compiler Features ---------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86-3 MSVC2017 Release ForceDebugInfo OpenGLDynamic -qtci-linux-RHEL-6.6-x86_64 GCC Release ForceDebugInfo +Template Target OS Target arch Compiler Features Configure arguments +--------------------------- ------------------- ----------- ----------- --------------- ---------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86-3 MSVC2017 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests +qtci-linux-RHEL-6.6-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -force-debug-info -nomake examples -nomake tests diff --git a/coin/platform_configs/qtwebkit.txt b/coin/platform_configs/qtwebkit.txt index a357ad5b..3eb40a5b 100644 --- a/coin/platform_configs/qtwebkit.txt +++ b/coin/platform_configs/qtwebkit.txt @@ -1,4 +1,4 @@ -Template Target OS Target arch Compiler Features ---------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 x86 MSVC2017 DebugAndRelease Release ForceDebugInfo OpenGLDynamic DisableTests -qtci-windows-7-x86-3 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests +Template Target OS Target arch Compiler Features Configure arguments +--------------------------- ------------------- ----------- ----------- ------------------------ -------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 x86 MSVC2017 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -force-debug-info -opengl dynamic +qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -opengl dynamic diff --git a/coin/platform_configs/tqtc-qt-rta.txt b/coin/platform_configs/tqtc-qt-rta.txt index 8fbb5a00..82b086f9 100644 --- a/coin/platform_configs/tqtc-qt-rta.txt +++ b/coin/platform_configs/tqtc-qt-rta.txt @@ -1,6 +1,5 @@ -Template Target OS Target arch Compiler Features ---------------------------- ------------------- ----------- ----------- ------------------------------------------------------------------------------------- -qtci-windows-7-x86_64-4 MSVC2013 Release ForceDebugInfo OpenGLDynamic DisableTests -qtci-windows-8.1-x86_64 MSVC2013 Release ForceDebugInfo OpenGLDynamic DisableTests -qtci-windows-10-x86-3 MSVC2017 Release ForceDebugInfo OpenGLDynamic - +Template Target OS Target arch Compiler Features Configure arguments +--------------------------- ------------------- ----------- ----------- ------------- -------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-7-x86_64-4 MSVC2013 DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests +qtci-windows-8.1-x86_64 MSVC2013 DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests +qtci-windows-10-x86-3 MSVC2017 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests -- cgit v1.2.3 From 5fd662b550d2fc8f32101ef3a4981e71c01b2f0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Tue, 4 Jun 2019 11:10:57 +0300 Subject: Fix platform configuration files Typos, duplicate entries and one missing rebase ended up in the initial cherry-pick from 5.13 Change-Id: Ibf0fdb8cbc62f8223a0ede89ad4c013ceb7d145e Reviewed-by: Heikki Halmet (cherry picked from commit d77fdecc11054c6fb0c34824935fcbfcdf644734) Reviewed-by: Jani Heikkinen --- coin/platform_configs/default.txt | 8 ++++---- coin/platform_configs/qtdeclarative.txt | 4 ++++ coin/platform_configs/qtsaferenderer.txt | 4 ++-- 3 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 coin/platform_configs/qtdeclarative.txt (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index 92d33c3f..523fdeda 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -2,18 +2,18 @@ Template Target OS Target arch Compiler ----------------------------------- ------------------- ----------- ----------- --------------- ------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ qtci-windows-10-x86_64-10 MSVC2015 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -angle -qtnamespace TestNamespace -qtlibinfix TestInfix -nomake tests -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% qtci-windows-7-x86-3 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ -qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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% +qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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% qtci-windows-10-x86_64-10 MSVC2015 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -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% qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-x86-msvc2015 qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-arm-msvc2015 -qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -verbose -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% +qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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% qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace -qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl +qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -openssl -platform linux-icc-64 qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten -qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -openssl -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . +qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -openssl -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . qtci-macos-10.13-x86_64-2 Clang Packaging -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include qtci-macos-10.12-x86_64-9 Clang -opensource -confirm-license -verbose -prefix /Users/qt/work/install -developer-build -release -qtnamespace TestNamespace -nomake tests -nomake examples -no-pch -no-framework -xplatform macx-clang -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -I/usr/local/opt/openssl/include qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -no-icu -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -static -xplatform macx-ios-clang diff --git a/coin/platform_configs/qtdeclarative.txt b/coin/platform_configs/qtdeclarative.txt new file mode 100644 index 00000000..a36c94a5 --- /dev/null +++ b/coin/platform_configs/qtdeclarative.txt @@ -0,0 +1,4 @@ +Template Target OS Target arch Compiler Features Configure arguments +--------------------------------- ------------------- ----------- ----------- -------------- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC -opensource -confirm-license -R . -developer-build -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -no-xcb -nomake examples -nomake tests -openssl -prefix /home/qt/work/install -psql_config /dev/null -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -tslib -verbose +qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake examples -nomake tests -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib -no-xcb diff --git a/coin/platform_configs/qtsaferenderer.txt b/coin/platform_configs/qtsaferenderer.txt index e27b1490..e05c4992 100644 --- a/coin/platform_configs/qtsaferenderer.txt +++ b/coin/platform_configs/qtsaferenderer.txt @@ -1,5 +1,5 @@ Template Target OS Target arch Compiler Features Configure arguments ----------------------------------- ------------------- ----------- ----------- ------------------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- qtci-windows-10-x86_64-10 Mingw73 -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++ -qtci-windows-10-x86_64-10 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -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++ -qtci-linux-RHEL-7.4-x86_64 GCC Release NoUseGoldLinker DisableTests Static +qtci-windows-10-x86_64-10 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -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++ +qtci-linux-RHEL-7.4-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -developer-build -static -nomake tests -nomake examples -no-use-gold-linker -- cgit v1.2.3 From 31f5c48a80e140562588bd673ef35fb4efe3d643 Mon Sep 17 00:00:00 2001 From: Juha Karjalainen Date: Thu, 1 Nov 2018 12:23:34 +0200 Subject: Provisioning: Change openssl version to 1.1.1b Use newest LTS version of openssl as support for 1.0.2 series will end at end of 2019. For windows 7 x86 openssl 1.0.2 will be used until all need fixed are made to submodule tests Task-number: QTQAINFRA-2327 Change-Id: I930d239cd139b6202ebdfb5cdc8068ff2ad0b8a3 Reviewed-by: Jani Heikkinen (cherry picked from commit 3e838f2a34d0c1538535bd184aa12681497c8a38) --- coin/platform_configs/default.txt | 18 ++-- coin/platform_configs/qt5.txt | 2 +- .../common/linux/openssl_for_android_linux.sh | 38 +++++---- coin/provisioning/common/macos/install_openssl.sh | 81 ------------------ coin/provisioning/common/unix/install-openssl.sh | 91 +++++++++++++++++++++ .../common/windows/android-openssl.ps1 | 33 +++++--- coin/provisioning/common/windows/openssl.ps1 | 6 +- .../09-install-openssl.sh | 6 ++ .../09-install-openssl.sh | 6 ++ .../10-openssl_for_android_linux.sh | 43 ---------- .../50-openssl_for_android_linux.sh | 43 ++++++++++ .../09-install-openssl.sh | 6 ++ .../50-openssl_for_android_linux.sh | 39 +++++++++ .../09-install-openssl.sh | 6 ++ .../50-openssl_for_android_linux.sh | 39 +++++++++ .../09-install-openssl.sh | 6 ++ .../10-openssl_for_android_linux.sh | 39 --------- .../50-openssl_for_android_linux.sh | 39 +++++++++ .../09-install-openssl.sh | 6 ++ .../qtci-macos-10.12-x86_64/35-openssl.sh | 2 +- .../qtci-macos-10.13-x86_64/35-openssl.sh | 2 +- .../10-openssl_for_android.ps1 | 1 - .../50-openssl_for_android.ps1 | 1 + .../provisioning/qtci-windows-7-x86/09-openssl.ps1 | 95 +++++++++++++++++++++- 24 files changed, 439 insertions(+), 209 deletions(-) delete mode 100755 coin/provisioning/common/macos/install_openssl.sh create mode 100755 coin/provisioning/common/unix/install-openssl.sh create mode 100755 coin/provisioning/qtci-linux-RHEL-6.6-x86_64/09-install-openssl.sh create mode 100755 coin/provisioning/qtci-linux-RHEL-7.4-x86_64/09-install-openssl.sh delete mode 100755 coin/provisioning/qtci-linux-RHEL-7.4-x86_64/10-openssl_for_android_linux.sh create mode 100755 coin/provisioning/qtci-linux-RHEL-7.4-x86_64/50-openssl_for_android_linux.sh create mode 100755 coin/provisioning/qtci-linux-Ubuntu-16.04-x86/09-install-openssl.sh create mode 100755 coin/provisioning/qtci-linux-Ubuntu-16.04-x86/50-openssl_for_android_linux.sh create mode 100755 coin/provisioning/qtci-linux-Ubuntu-16.04-x86_64/09-install-openssl.sh create mode 100755 coin/provisioning/qtci-linux-Ubuntu-16.04-x86_64/50-openssl_for_android_linux.sh create mode 100755 coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/09-install-openssl.sh delete mode 100755 coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/10-openssl_for_android_linux.sh create mode 100755 coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/50-openssl_for_android_linux.sh create mode 100755 coin/provisioning/qtci-linux-openSUSE-42.3-x86_64/09-install-openssl.sh delete mode 100644 coin/provisioning/qtci-windows-10-x86_64/10-openssl_for_android.ps1 create mode 100644 coin/provisioning/qtci-windows-10-x86_64/50-openssl_for_android.ps1 (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index 523fdeda..9d9c9625 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -7,20 +7,20 @@ qtci-windows-10-x86_64-10 MSVC2015 qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-x86-msvc2015 qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-arm-msvc2015 qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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% -qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace -qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl -qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -openssl -qtlibinfix TestInfix -qtnamespace TestNamespace -qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl -qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -openssl -platform linux-icc-64 -qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten -qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -openssl -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . +qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}} +qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl -I {{.Env.OPENSSL_HOME}} +qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}} +qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl -I {{.Env.OPENSSL_HOME}} +qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -openssl -platform linux-icc-64 -I {{.Env.OPENSSL_HOME}} +qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten -I {{.Env.OPENSSL_HOME}} +qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -openssl -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . -I {{.Env.OPENSSL_HOME}} qtci-macos-10.13-x86_64-2 Clang Packaging -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include qtci-macos-10.12-x86_64-9 Clang -opensource -confirm-license -verbose -prefix /Users/qt/work/install -developer-build -release -qtnamespace TestNamespace -nomake tests -nomake examples -no-pch -no-framework -xplatform macx-clang -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -I/usr/local/opt/openssl/include qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -no-icu -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -static -xplatform macx-ios-clang qtci-macos-10.13-x86_64-2 TvOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-tvos-clang qtci-macos-10.13-x86_64-2 WatchOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-watchos-clang -qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I /home/qt/openssl-1.0.2/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch armeabi-v7a -xplatform android-clang -qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I /home/qt/openssl-1.0.2/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch arm64-v8a -xplatform android-clang +qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch armeabi-v7a -xplatform android-clang +qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch arm64-v8a -xplatform android-clang qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -psql_config /dev/null -tslib qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib qtci-linux-Ubuntu-18.04-x86_64 GCC TestOnly LicenseCheck diff --git a/coin/platform_configs/qt5.txt b/coin/platform_configs/qt5.txt index 0605cc7f..a2b374d0 100644 --- a/coin/platform_configs/qt5.txt +++ b/coin/platform_configs/qt5.txt @@ -6,7 +6,7 @@ qtci-windows-7-x86-3 Mingw73 qtci-windows-10-x86_64-10 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -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++ qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-arm-msvc2017 qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x64-msvc2017 -qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /home/qt/openssl-1.0.2/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch x86 +qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch x86 qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch armeabi-v7a qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch arm64-v8a qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch x86 diff --git a/coin/provisioning/common/linux/openssl_for_android_linux.sh b/coin/provisioning/common/linux/openssl_for_android_linux.sh index 09d0b6d5..d833975f 100755 --- a/coin/provisioning/common/linux/openssl_for_android_linux.sh +++ b/coin/provisioning/common/linux/openssl_for_android_linux.sh @@ -35,32 +35,38 @@ # This script install OpenSSL from sources. # Requires GCC and Perl to be in PATH. - +set -ex # shellcheck source=../unix/DownloadURL.sh source "${BASH_SOURCE%/*}/../unix/DownloadURL.sh" # shellcheck source=../unix/SetEnvVar.sh source "${BASH_SOURCE%/*}/../unix/SetEnvVar.sh" -version="1.0.2p" +exports_file="/tmp/export.sh" +# source previously made environmental variables. +if uname -a |grep -q "Ubuntu"; then + # shellcheck disable=SC1090 + grep -e "^export" "$HOME/.profile" > $exports_file && source $exports_file + rm -rf "$exports_file" +else + # shellcheck disable=SC1090 + grep -e "^export" "$HOME/.bashrc" > $exports_file && source $exports_file + rm -rf "$exports_file" +fi + +version="1.1.1b" officialUrl="https://www.openssl.org/source/openssl-$version.tar.gz" cachedUrl="http://ci-files01-hki.intra.qt.io/input/openssl/openssl-$version.tar.gz" targetFile="/tmp/openssl-$version.tar.gz" -installFolder="/home/qt/" -sha="f34b5322e92415755c7d58bf5d0d5cf37666382c" -# Until every VM doing Linux Android builds have provisioned the env variable -# OPENSSL_ANDROID_HOME, we can't change the hard coded path that's currently in Coin. -# QTQAINFRA-1436 -opensslHome="${installFolder}openssl-1.0.2" - +sha="e9710abf5e95c48ebf47991b10cbb48c09dae102" +opensslHome="${HOME}/openssl/android/openssl-${version}" DownloadURL "$cachedUrl" "$officialUrl" "$sha" "$targetFile" +mkdir -p "${HOME}/openssl/android/" +tar -xzf "$targetFile" -C "${HOME}/openssl/android/" -tar -xzf "$targetFile" -C "$installFolder" -# This rename should be removed once hard coded path from Coin is fixed. (QTQAINFRA-1436) -mv "${opensslHome}p" "${opensslHome}" -pushd "$opensslHome" - -echo "Running configure" -perl Configure shared android +TOOLCHAIN=${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin +cd "$opensslHome" +PATH=$TOOLCHAIN:$PATH CC=clang ./Configure android-arm +PATH=$TOOLCHAIN:$PATH CC=clang make build_generated SetEnvVar "OPENSSL_ANDROID_HOME" "$opensslHome" diff --git a/coin/provisioning/common/macos/install_openssl.sh b/coin/provisioning/common/macos/install_openssl.sh deleted file mode 100755 index 3b1978e2..00000000 --- a/coin/provisioning/common/macos/install_openssl.sh +++ /dev/null @@ -1,81 +0,0 @@ -#!/usr/bin/env bash - -############################################################################# -## -## Copyright (C) 2018 The Qt Company Ltd. -## Contact: http://www.qt.io/licensing/ -## -## This file is part of the provisioning scripts of the Qt Toolkit. -## -## $QT_BEGIN_LICENSE:LGPL21$ -## Commercial License Usage -## Licensees holding valid commercial Qt licenses may use this file in -## accordance with the commercial license agreement provided with the -## Software or, alternatively, in accordance with the terms contained in -## a written agreement between you and The Qt Company. For licensing terms -## and conditions see http://www.qt.io/terms-conditions. For further -## information use the contact form at http://www.qt.io/contact-us. -## -## GNU Lesser General Public License Usage -## Alternatively, this file may be used under the terms of the GNU Lesser -## General Public License version 2.1 or version 3 as published by the Free -## Software Foundation and appearing in the file LICENSE.LGPLv21 and -## LICENSE.LGPLv3 included in the packaging of this file. Please review the -## following information to ensure the GNU Lesser General Public License -## requirements will be met: https://www.gnu.org/licenses/lgpl.html and -## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -## -## As a special exception, The Qt Company gives you certain additional -## rights. These rights are described in The Qt Company LGPL Exception -## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -## -## $QT_END_LICENSE$ -## -############################################################################# - -# This script install OpenSSL - -set -ex - -# shellcheck source=../common/unix/InstallFromCompressedFileFromURL.sh -source "${BASH_SOURCE%/*}/../unix/InstallFromCompressedFileFromURL.sh" -# shellcheck source=../common/unix/SetEnvVar.sh -source "${BASH_SOURCE%/*}/../unix/SetEnvVar.sh" - -opensslVersion="1.0.2p" -opensslFile="openssl-$opensslVersion.tar.gz" -opensslDlUrl="http://ci-files01-hki.intra.qt.io/input/openssl/$opensslFile" -opensslAltDlUrl="https://www.openssl.org/source/$opensslFile" -opensslSha1="f34b5322e92415755c7d58bf5d0d5cf37666382c" - -# Below target location has been hard coded into Coin. -# QTQAINFRA-1195 -openssl_install_dir=/usr/local/openssl-$opensslVersion -opensslTargetLocation="/usr/local/opt/openssl" - -InstallFromCompressedFileFromURL "$opensslDlUrl" "$opensslAltDlUrl" "$opensslSha1" "/tmp/openssl-$opensslVersion" "openssl-$opensslVersion" -cd "/tmp/openssl-$opensslVersion" -pwd -sudo ./config --prefix=$openssl_install_dir -echo "Running 'make' for OpenSSL" -sudo make --silent > /tmp/openssl_make.log 2>&1 -echo "Running 'make install' for OpenSSL" -sudo make --silent install > /tmp/openssl_make_install.log 2>&1 - -path=$(echo "$opensslTargetLocation" | sed -E 's/(.*)\/.*$/\1/') -sudo mkdir -p "$path" -sudo ln -s $openssl_install_dir $opensslTargetLocation - -SetEnvVar "PATH" "\"$opensslTargetLocation/bin:\$PATH\"" -SetEnvVar "MANPATH" "\"$opensslTargetLocation/share/man:\$MANPATH\"" - -SetEnvVar "OPENSSL_DIR" "\"$openssl_install_dir\"" -SetEnvVar "OPENSSL_INCLUDE" "\"$openssl_install_dir/include\"" -SetEnvVar "OPENSSL_LIB" "\"$openssl_install_dir/lib\"" - -security find-certificate -a -p /Library/Keychains/System.keychain | sudo tee -a $opensslTargetLocation/ssl/cert.pem > /dev/null -security find-certificate -a -p /System/Library/Keychains/SystemRootCertificates.keychain | sudo tee -a $opensslTargetLocation/ssl/cert.pem > /dev/null - -sudo rm -rf /tmp/openssl-$opensslVersion - -echo "OpenSSL = $opensslVersion" >> ~/versions.txt diff --git a/coin/provisioning/common/unix/install-openssl.sh b/coin/provisioning/common/unix/install-openssl.sh new file mode 100755 index 00000000..afc1509e --- /dev/null +++ b/coin/provisioning/common/unix/install-openssl.sh @@ -0,0 +1,91 @@ +#!/usr/bin/env bash + +############################################################################# +## +## Copyright (C) 2019 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +# This script install OpenSSL from sources. +# Requires GCC and Perl to be in PATH. +set -ex +os="$1" +# shellcheck source=../unix/DownloadURL.sh +source "${BASH_SOURCE%/*}/../unix/DownloadURL.sh" +# shellcheck source=../unix/SetEnvVar.sh +source "${BASH_SOURCE%/*}/../unix/SetEnvVar.sh" + +version="1.1.1b" +officialUrl="https://www.openssl.org/source/openssl-$version.tar.gz" +cachedUrl="http://ci-files01-hki.intra.qt.io/input/openssl/openssl-$version.tar.gz" +targetFile="/tmp/openssl-$version.tar.gz" +sha="e9710abf5e95c48ebf47991b10cbb48c09dae102" +opensslHome="${HOME}/openssl-${version}" +opensslSource="${opensslHome}-src" +DownloadURL "$cachedUrl" "$officialUrl" "$sha" "$targetFile" +tar -xzf "$targetFile" -C "$HOME" +mv "$opensslHome" "$opensslSource" +cd "$opensslSource" +pwd + +if [[ "$os" == "linux" ]]; then + ./Configure --prefix="$opensslHome" shared no-ssl3-method enable-ec_nistp_64_gcc_128 linux-x86_64 "-Wa,--noexecstack" + make && make install_sw install_ssldirs + SetEnvVar "OPENSSL_HOME" "$opensslHome" +elif [ "$os" == "macos" ]; then + # Below target location has been hard coded into Coin. + # QTQAINFRA-1195 + openssl_install_dir=/usr/local/openssl-$version + opensslTargetLocation="/usr/local/opt/openssl" + sudo ./Configure --prefix=$openssl_install_dir shared no-ssl3-method enable-ec_nistp_64_gcc_128 darwin64-x86_64-cc "-Wa,--noexecstack" + echo "Running 'make' for OpenSSL" + # shellcheck disable=SC2024 + sudo make --silent > /tmp/openssl_make.log 2>&1 + echo "Running 'make install' for OpenSSL" + # shellcheck disable=SC2024 + sudo make --silent install > /tmp/openssl_make_install.log 2>&1 + + path=$(echo "$opensslTargetLocation" | sed -E 's/(.*)\/.*$/\1/') + sudo mkdir -p "$path" + sudo ln -s $openssl_install_dir $opensslTargetLocation + + SetEnvVar "PATH" "\"$opensslTargetLocation/bin:\$PATH\"" + SetEnvVar "MANPATH" "\"$opensslTargetLocation/share/man:\$MANPATH\"" + + SetEnvVar "OPENSSL_DIR" "\"$openssl_install_dir\"" + SetEnvVar "OPENSSL_INCLUDE" "\"$openssl_install_dir/include\"" + SetEnvVar "OPENSSL_LIB" "\"$openssl_install_dir/lib\"" + + security find-certificate -a -p /Library/Keychains/System.keychain | sudo tee -a $opensslTargetLocation/ssl/cert.pem > /dev/null + security find-certificate -a -p /System/Library/Keychains/SystemRootCertificates.keychain | sudo tee -a $opensslTargetLocation/ssl/cert.pem > /dev/null +fi + + +echo "OpenSSL = $version" >> ~/versions.txt diff --git a/coin/provisioning/common/windows/android-openssl.ps1 b/coin/provisioning/common/windows/android-openssl.ps1 index cf144c90..981fa51d 100644 --- a/coin/provisioning/common/windows/android-openssl.ps1 +++ b/coin/provisioning/common/windows/android-openssl.ps1 @@ -35,33 +35,40 @@ . "$PSScriptRoot\helpers.ps1" +if (Is64BitWinHost) { + $msys_bash = "C:\Utils\msys64\usr\bin\bash" +} else { + $msys_bash = "C:\Utils\msys32\usr\bin\bash" +} + # OpenSSL need to be configured from sources for Android build in windows 7 # Msys need to be installed to target machine # More info and building instructions can be found from http://doc.qt.io/qt-5/opensslsupport.html -$version = "1.0.2p" +$version = "1.1.1b" $zip = Get-DownloadLocation ("openssl-$version.tar.gz") -$sha1 = "f34b5322e92415755c7d58bf5d0d5cf37666382c" +$sha1 = "e9710abf5e95c48ebf47991b10cbb48c09dae102" $destination = "C:\Utils\openssl-android-master" +# msys unix style paths +$ndkPath = "/c/Utils/Android/android-ndk-r19c" +$openssl_path = "/c/Utils/openssl-android-master" +$cc_path = "$ndkPath/toolchains/llvm/prebuilt/windows-x86_64/bin" Download https://www.openssl.org/source/openssl-$version.tar.gz \\ci-files01-hki.intra.qt.io\provisioning\openssl\openssl-$version.tar.gz $zip Verify-Checksum $zip $sha1 -Extract-7Zip $zip C:\Utils -Extract-7Zip C:\Utils\openssl-$version.tar C:\Utils -Rename-Item C:\Utils\openssl-$version $destination +Extract-7Zip $zip C:\Utils\tmp +Extract-7Zip C:\Utils\tmp\openssl-$version.tar C:\Utils\tmp +Move-Item C:\Utils\tmp\openssl-${version} $destination Remove-Item -Path $zip -Remove-Item C:\Utils\openssl-$version.tar - -# Make sure configure for openssl has a "make" and "perl" available -$env:PATH = $env:PATH + ";C:\msys\1.0\bin;C:\strawberry\perl\bin" Write-Host "Configuring OpenSSL $version for Android..." Push-Location $destination -Run-Executable "C:\msys\1.0\bin\bash.exe" "-c `"c:/strawberry/perl/bin/perl Configure shared android`"" +# $ must be escaped in powershell... +Start-Process -NoNewWindow -Wait -ErrorAction Stop -FilePath "$msys_bash" -ArgumentList ("-lc", "`"pushd $openssl_path; ANDROID_NDK_HOME=$ndkPath PATH=${cc_path}:`$PATH CC=clang $openssl_path/Configure shared android-arm`"") +Start-Process -NoNewWindow -Wait -ErrorAction Stop -FilePath "$msys_bash" -ArgumentList ("-lc", "`"pushd $openssl_path; ANDROID_NDK_HOME=$ndkPath PATH=${cc_path}:`$PATH CC=clang make -f $openssl_path/Makefile build_generated`"") Pop-Location -# Following command is needed when using version 1.1.0. With version 1.1.0 msys is not needed. -# C:\mingw530\bin\mingw32-make.exe include\openssl\opensslconf.h - +Set-EnvironmentVariable "OPENSSL_ANDROID_HOME" "$destination" +Remove-item C:\Utils\tmp -Recurse -Confirm:$false Write-Output "Android OpenSSL = $version" >> ~/versions.txt diff --git a/coin/provisioning/common/windows/openssl.ps1 b/coin/provisioning/common/windows/openssl.ps1 index 4cc6a3b3..2f21db37 100644 --- a/coin/provisioning/common/windows/openssl.ps1 +++ b/coin/provisioning/common/windows/openssl.ps1 @@ -36,7 +36,7 @@ # This script installs OpenSSL $version. # Both x86 and x64 versions needed when x86 integrations are done on x64 machine -$version = "1_0_2p" +$version = "1_1_1b" $packagex64 = "C:\Windows\Temp\Win64OpenSSL-$version.exe" $packagex86 = "C:\Windows\Temp\Win32OpenSSL-$version.exe" @@ -47,7 +47,7 @@ if (Is64BitWinHost) { $installFolder = "C:\openssl" $externalUrl = "https://slproweb.com/download/Win64OpenSSL-$version.exe" $internalUrl = "\\ci-files01-hki.intra.qt.io\provisioning\openssl\Win64OpenSSL-$version.exe" - $sha1 = "ec8b4111afb86ffc81837a30667aa076afe9d1e6" + $sha1 = "5b50819dd84aa9219e0cad9cdddf78285bdd1bbb" Write-Host "Fetching from URL ..." Download $externalUrl $internalUrl $packagex64 @@ -74,7 +74,7 @@ if (Is64BitWinHost) { $externalUrl = "https://slproweb.com/download/Win32OpenSSL-$version.exe" $internalUrl = "\\ci-files01-hki.intra.qt.io\provisioning\openssl\Win32OpenSSL-$version.exe" -$sha1 = "753d6b2cb8b6c808f6212bd21b6e6e7822a4e236" +$sha1 = "1ae5ad4fe5dae01dd056274979cce26945c9e86c" Write-Host "Fetching from URL ..." Download $externalUrl $internalUrl $packagex86 diff --git a/coin/provisioning/qtci-linux-RHEL-6.6-x86_64/09-install-openssl.sh b/coin/provisioning/qtci-linux-RHEL-6.6-x86_64/09-install-openssl.sh new file mode 100755 index 00000000..4f1d3768 --- /dev/null +++ b/coin/provisioning/qtci-linux-RHEL-6.6-x86_64/09-install-openssl.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -ex + +# shellcheck source=../common/unix/install-openssl.sh +source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" diff --git a/coin/provisioning/qtci-linux-RHEL-7.4-x86_64/09-install-openssl.sh b/coin/provisioning/qtci-linux-RHEL-7.4-x86_64/09-install-openssl.sh new file mode 100755 index 00000000..4f1d3768 --- /dev/null +++ b/coin/provisioning/qtci-linux-RHEL-7.4-x86_64/09-install-openssl.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -ex + +# shellcheck source=../common/unix/install-openssl.sh +source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" diff --git a/coin/provisioning/qtci-linux-RHEL-7.4-x86_64/10-openssl_for_android_linux.sh b/coin/provisioning/qtci-linux-RHEL-7.4-x86_64/10-openssl_for_android_linux.sh deleted file mode 100755 index ef2b3ba8..00000000 --- a/coin/provisioning/qtci-linux-RHEL-7.4-x86_64/10-openssl_for_android_linux.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env bash - -############################################################################# -## -## Copyright (C) 2017 The Qt Company Ltd. -## Contact: http://www.qt.io/licensing/ -## -## This file is part of the provisioning scripts of the Qt Toolkit. -## -## $QT_BEGIN_LICENSE:LGPL21$ -## Commercial License Usage -## Licensees holding valid commercial Qt licenses may use this file in -## accordance with the commercial license agreement provided with the -## Software or, alternatively, in accordance with the terms contained in -## a written agreement between you and The Qt Company. For licensing terms -## and conditions see http://www.qt.io/terms-conditions. For further -## information use the contact form at http://www.qt.io/contact-us. -## -## GNU Lesser General Public License Usage -## Alternatively, this file may be used under the terms of the GNU Lesser -## General Public License version 2.1 or version 3 as published by the Free -## Software Foundation and appearing in the file LICENSE.LGPLv21 and -## LICENSE.LGPLv3 included in the packaging of this file. Please review the -## following information to ensure the GNU Lesser General Public License -## requirements will be met: https://www.gnu.org/licenses/lgpl.html and -## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -## -## As a special exception, The Qt Company gives you certain additional -## rights. These rights are described in The Qt Company LGPL Exception -## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -## -## $QT_END_LICENSE$ -## -############################################################################# -set +e - -# shellcheck disable=SC1091 -source /opt/rh/devtoolset-4/enable - -set -ex - -# shellcheck source=../common/linux/openssl_for_android_linux.sh -source "${BASH_SOURCE%/*}/../common/linux/openssl_for_android_linux.sh" diff --git a/coin/provisioning/qtci-linux-RHEL-7.4-x86_64/50-openssl_for_android_linux.sh b/coin/provisioning/qtci-linux-RHEL-7.4-x86_64/50-openssl_for_android_linux.sh new file mode 100755 index 00000000..ef2b3ba8 --- /dev/null +++ b/coin/provisioning/qtci-linux-RHEL-7.4-x86_64/50-openssl_for_android_linux.sh @@ -0,0 +1,43 @@ +#!/usr/bin/env bash + +############################################################################# +## +## Copyright (C) 2017 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# +set +e + +# shellcheck disable=SC1091 +source /opt/rh/devtoolset-4/enable + +set -ex + +# shellcheck source=../common/linux/openssl_for_android_linux.sh +source "${BASH_SOURCE%/*}/../common/linux/openssl_for_android_linux.sh" diff --git a/coin/provisioning/qtci-linux-Ubuntu-16.04-x86/09-install-openssl.sh b/coin/provisioning/qtci-linux-Ubuntu-16.04-x86/09-install-openssl.sh new file mode 100755 index 00000000..4f1d3768 --- /dev/null +++ b/coin/provisioning/qtci-linux-Ubuntu-16.04-x86/09-install-openssl.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -ex + +# shellcheck source=../common/unix/install-openssl.sh +source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" diff --git a/coin/provisioning/qtci-linux-Ubuntu-16.04-x86/50-openssl_for_android_linux.sh b/coin/provisioning/qtci-linux-Ubuntu-16.04-x86/50-openssl_for_android_linux.sh new file mode 100755 index 00000000..81ea3b17 --- /dev/null +++ b/coin/provisioning/qtci-linux-Ubuntu-16.04-x86/50-openssl_for_android_linux.sh @@ -0,0 +1,39 @@ +#!/bin/bash + +############################################################################# +## +## Copyright (C) 2017 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +set -ex + +# shellcheck source=../common/linux/openssl_for_android_linux.sh +source "${BASH_SOURCE%/*}/../common/linux/openssl_for_android_linux.sh" diff --git a/coin/provisioning/qtci-linux-Ubuntu-16.04-x86_64/09-install-openssl.sh b/coin/provisioning/qtci-linux-Ubuntu-16.04-x86_64/09-install-openssl.sh new file mode 100755 index 00000000..4f1d3768 --- /dev/null +++ b/coin/provisioning/qtci-linux-Ubuntu-16.04-x86_64/09-install-openssl.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -ex + +# shellcheck source=../common/unix/install-openssl.sh +source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" diff --git a/coin/provisioning/qtci-linux-Ubuntu-16.04-x86_64/50-openssl_for_android_linux.sh b/coin/provisioning/qtci-linux-Ubuntu-16.04-x86_64/50-openssl_for_android_linux.sh new file mode 100755 index 00000000..81ea3b17 --- /dev/null +++ b/coin/provisioning/qtci-linux-Ubuntu-16.04-x86_64/50-openssl_for_android_linux.sh @@ -0,0 +1,39 @@ +#!/bin/bash + +############################################################################# +## +## Copyright (C) 2017 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +set -ex + +# shellcheck source=../common/linux/openssl_for_android_linux.sh +source "${BASH_SOURCE%/*}/../common/linux/openssl_for_android_linux.sh" diff --git a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/09-install-openssl.sh b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/09-install-openssl.sh new file mode 100755 index 00000000..4f1d3768 --- /dev/null +++ b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/09-install-openssl.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -ex + +# shellcheck source=../common/unix/install-openssl.sh +source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" diff --git a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/10-openssl_for_android_linux.sh b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/10-openssl_for_android_linux.sh deleted file mode 100755 index 81ea3b17..00000000 --- a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/10-openssl_for_android_linux.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -############################################################################# -## -## Copyright (C) 2017 The Qt Company Ltd. -## Contact: http://www.qt.io/licensing/ -## -## This file is part of the provisioning scripts of the Qt Toolkit. -## -## $QT_BEGIN_LICENSE:LGPL21$ -## Commercial License Usage -## Licensees holding valid commercial Qt licenses may use this file in -## accordance with the commercial license agreement provided with the -## Software or, alternatively, in accordance with the terms contained in -## a written agreement between you and The Qt Company. For licensing terms -## and conditions see http://www.qt.io/terms-conditions. For further -## information use the contact form at http://www.qt.io/contact-us. -## -## GNU Lesser General Public License Usage -## Alternatively, this file may be used under the terms of the GNU Lesser -## General Public License version 2.1 or version 3 as published by the Free -## Software Foundation and appearing in the file LICENSE.LGPLv21 and -## LICENSE.LGPLv3 included in the packaging of this file. Please review the -## following information to ensure the GNU Lesser General Public License -## requirements will be met: https://www.gnu.org/licenses/lgpl.html and -## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -## -## As a special exception, The Qt Company gives you certain additional -## rights. These rights are described in The Qt Company LGPL Exception -## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -## -## $QT_END_LICENSE$ -## -############################################################################# - -set -ex - -# shellcheck source=../common/linux/openssl_for_android_linux.sh -source "${BASH_SOURCE%/*}/../common/linux/openssl_for_android_linux.sh" diff --git a/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/50-openssl_for_android_linux.sh b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/50-openssl_for_android_linux.sh new file mode 100755 index 00000000..81ea3b17 --- /dev/null +++ b/coin/provisioning/qtci-linux-Ubuntu-18.04-x86_64/50-openssl_for_android_linux.sh @@ -0,0 +1,39 @@ +#!/bin/bash + +############################################################################# +## +## Copyright (C) 2017 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +set -ex + +# shellcheck source=../common/linux/openssl_for_android_linux.sh +source "${BASH_SOURCE%/*}/../common/linux/openssl_for_android_linux.sh" diff --git a/coin/provisioning/qtci-linux-openSUSE-42.3-x86_64/09-install-openssl.sh b/coin/provisioning/qtci-linux-openSUSE-42.3-x86_64/09-install-openssl.sh new file mode 100755 index 00000000..4f1d3768 --- /dev/null +++ b/coin/provisioning/qtci-linux-openSUSE-42.3-x86_64/09-install-openssl.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -ex + +# shellcheck source=../common/unix/install-openssl.sh +source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "linux" diff --git a/coin/provisioning/qtci-macos-10.12-x86_64/35-openssl.sh b/coin/provisioning/qtci-macos-10.12-x86_64/35-openssl.sh index 963f48d6..44fa76f1 100755 --- a/coin/provisioning/qtci-macos-10.12-x86_64/35-openssl.sh +++ b/coin/provisioning/qtci-macos-10.12-x86_64/35-openssl.sh @@ -3,4 +3,4 @@ set -ex # shellcheck source=../common/macos/install_openssl.sh -source "${BASH_SOURCE%/*}/../common/macos/install_openssl.sh" +source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "macos" diff --git a/coin/provisioning/qtci-macos-10.13-x86_64/35-openssl.sh b/coin/provisioning/qtci-macos-10.13-x86_64/35-openssl.sh index 963f48d6..44fa76f1 100755 --- a/coin/provisioning/qtci-macos-10.13-x86_64/35-openssl.sh +++ b/coin/provisioning/qtci-macos-10.13-x86_64/35-openssl.sh @@ -3,4 +3,4 @@ set -ex # shellcheck source=../common/macos/install_openssl.sh -source "${BASH_SOURCE%/*}/../common/macos/install_openssl.sh" +source "${BASH_SOURCE%/*}/../common/unix/install-openssl.sh" "macos" diff --git a/coin/provisioning/qtci-windows-10-x86_64/10-openssl_for_android.ps1 b/coin/provisioning/qtci-windows-10-x86_64/10-openssl_for_android.ps1 deleted file mode 100644 index 25c6f28a..00000000 --- a/coin/provisioning/qtci-windows-10-x86_64/10-openssl_for_android.ps1 +++ /dev/null @@ -1 +0,0 @@ -. "$PSScriptRoot\..\common\windows\android-openssl.ps1" diff --git a/coin/provisioning/qtci-windows-10-x86_64/50-openssl_for_android.ps1 b/coin/provisioning/qtci-windows-10-x86_64/50-openssl_for_android.ps1 new file mode 100644 index 00000000..25c6f28a --- /dev/null +++ b/coin/provisioning/qtci-windows-10-x86_64/50-openssl_for_android.ps1 @@ -0,0 +1 @@ +. "$PSScriptRoot\..\common\windows\android-openssl.ps1" diff --git a/coin/provisioning/qtci-windows-7-x86/09-openssl.ps1 b/coin/provisioning/qtci-windows-7-x86/09-openssl.ps1 index d57ad1cd..ae867cdc 100644 --- a/coin/provisioning/qtci-windows-7-x86/09-openssl.ps1 +++ b/coin/provisioning/qtci-windows-7-x86/09-openssl.ps1 @@ -1 +1,94 @@ -. "$PSScriptRoot\..\common\windows\openssl.ps1" +############################################################################# +## +## Copyright (C) 2019 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +. "$PSScriptRoot\..\common\windows\helpers.ps1" + +# This script installs OpenSSL $version. +# Both x86 and x64 versions needed when x86 integrations are done on x64 machine + +$version = "1_0_2p" +$packagex64 = "C:\Windows\Temp\Win64OpenSSL-$version.exe" +$packagex86 = "C:\Windows\Temp\Win32OpenSSL-$version.exe" + +if (Is64BitWinHost) { + + # Install x64 bit version + $architecture = "x64" + $installFolder = "C:\openssl" + $externalUrl = "https://slproweb.com/download/Win64OpenSSL-$version.exe" + $internalUrl = "\\ci-files01-hki.intra.qt.io\provisioning\openssl\Win64OpenSSL-$version.exe" + $sha1 = "ec8b4111afb86ffc81837a30667aa076afe9d1e6" + + Write-Host "Fetching from URL ..." + Download $externalUrl $internalUrl $packagex64 + Verify-Checksum $packagex64 $sha1 + Write-Host "Installing $packagex64 ..." + Run-Executable "$packagex64" "/SP- /SILENT /LOG /SUPPRESSMSGBOXES /NORESTART /DIR=$installFolder" + + Write-Host "Remove downloaded $packagex64 ..." + Remove-Item -Path $packagex64 + + Set-EnvironmentVariable "OPENSSL_CONF_x64" "$installFolder\bin\openssl.cfg" + Set-EnvironmentVariable "OPENSSL_INCLUDE_x64" "$installFolder\include" + Set-EnvironmentVariable "OPENSSL_LIB_x64" "$installFolder\lib" +} + +# Install x86 bit version +$architecture = "x86" + +if (Is64BitWinHost) { + $installFolder = "C:\openssl$architecture" +} else { + $installFolder = "C:\openssl" +} + +$externalUrl = "https://slproweb.com/download/Win32OpenSSL-$version.exe" +$internalUrl = "\\ci-files01-hki.intra.qt.io\provisioning\openssl\Win32OpenSSL-$version.exe" +$sha1 = "753d6b2cb8b6c808f6212bd21b6e6e7822a4e236" + +Write-Host "Fetching from URL ..." +Download $externalUrl $internalUrl $packagex86 +Verify-Checksum $packagex86 $sha1 +Write-Host "Installing $packagex86 ..." +Run-Executable "$packagex86" "/SP- /SILENT /LOG /SUPPRESSMSGBOXES /NORESTART /DIR=$installFolder" + +Write-Host "Remove downloaded $packagex86 ..." +Remove-Item -Path $packagex86 + +Set-EnvironmentVariable "OPENSSL_CONF_x86" "$installFolder\bin\openssl.cfg" +Set-EnvironmentVariable "OPENSSL_INCLUDE_x86" "$installFolder\include" +Set-EnvironmentVariable "OPENSSL_LIB_x86" "$installFolder\lib" + +# Store version information to ~/versions.txt, which is used to print version information to provision log. +Write-Output "OpenSSL = $version" >> ~/versions.txt + -- cgit v1.2.3 From b9e92adf5950d35ade47101641cf8f318bb77aef Mon Sep 17 00:00:00 2001 From: Juha Karjalainen Date: Wed, 13 Feb 2019 13:06:27 +0200 Subject: Provisioning: install msys2 Windows need msys2 perl for configuring openssl 1.1.1 for android. Task-number: QTQAINFRA-2327 Change-Id: I217542b6e9b3fd0f656b8186e2cde4283257dcf8 Reviewed-by: Heikki Halmet (cherry picked from commit 6465c421225574dc1c5d9f23293c37e784fd1b02) Reviewed-by: Jani Heikkinen --- coin/provisioning/common/windows/install-msys2.ps1 | 70 ++++++++++++++++++++++ .../qtci-windows-10-x86_64/10-install-msys2.ps1 | 1 + 2 files changed, 71 insertions(+) create mode 100644 coin/provisioning/common/windows/install-msys2.ps1 create mode 100644 coin/provisioning/qtci-windows-10-x86_64/10-install-msys2.ps1 (limited to 'coin') diff --git a/coin/provisioning/common/windows/install-msys2.ps1 b/coin/provisioning/common/windows/install-msys2.ps1 new file mode 100644 index 00000000..0c4a9680 --- /dev/null +++ b/coin/provisioning/common/windows/install-msys2.ps1 @@ -0,0 +1,70 @@ +############################################################################ +## +## Copyright (C) 2019 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +. "$PSScriptRoot\helpers.ps1" + +# This script installs 7-Zip + +$version = "20181211" +$prog = "msys2" +if (Is64BitWinHost) { + $arch = "x86_64" + $sha1 = "d689ff74fd060934bd7aaf458a11db67833463c2" + $folder = "msys64" +} else { + $arch = "i686" + $sha1 = "928f9d1537d1a77dc7f2adab74fb438e7d11a98e" + $folder = "msys32" +} +$package = $prog + "-base-" + $arch + "-" + $version + ".tar.xz" + + +$url_cache = "\\ci-files01-hki.intra.qt.io\provisioning\windows\$package" +$url_official = "http://repo.msys2.org/distrib/$arch/$package" +$PackagePath = "C:\Windows\Temp\$package" +$TargetLocation = "C:\Utils" + + +Download $url_official $url_cache $PackagePath +Verify-Checksum $PackagePath $sha1 +Extract-tar_gz $PackagePath $TargetLocation +$msys = "$TargetLocation\$folder\msys2_shell.cmd" + +# install perl +Run-Executable "$msys" "`"-l`" `"-c`" `"rm -rf /etc/pacman.d/gnupg;pacman-key --init;pacman-key --populate msys2;pacman -S --noconfirm perl make`"" +Run-Executable "$msys" "`"-l`" `"-c`" `"cpan -i Text::Template Test::More`"" + +Write-Host "Cleaning $PackagePath.." +Remove-Item -Recurse -Force -Path "$PackagePath" + +Write-Output "7-Zip = $version" >> ~\versions.txt diff --git a/coin/provisioning/qtci-windows-10-x86_64/10-install-msys2.ps1 b/coin/provisioning/qtci-windows-10-x86_64/10-install-msys2.ps1 new file mode 100644 index 00000000..be9a3634 --- /dev/null +++ b/coin/provisioning/qtci-windows-10-x86_64/10-install-msys2.ps1 @@ -0,0 +1 @@ +. "$PSScriptRoot\..\common\windows\install-msys2.ps1" -- cgit v1.2.3 From c8deeb3d052bafd4ba50e44de56958b62b98fd82 Mon Sep 17 00:00:00 2001 From: Juha Karjalainen Date: Thu, 11 Apr 2019 12:24:45 +0300 Subject: Provision sed for windows 10 Sed is needed by webassembly build. Cannot use sed from msys as having msys bin folder in path breaks webassembly build. Task-number: QTQAINFRA-2835 Change-Id: I6ad06f0a952a0d8bc5d21e62f8c2cef70f40c618 Reviewed-by: Heikki Halmet (cherry picked from commit 230a73409a2fe58e7de0674107a2d870be0bf03d) Reviewed-by: Jani Heikkinen --- coin/provisioning/common/windows/helpers.ps1 | 12 +++++ coin/provisioning/common/windows/install-sed.ps1 | 60 ++++++++++++++++++++++ .../qtci-windows-10-x86_64/09-install-sed.ps1 | 1 + 3 files changed, 73 insertions(+) create mode 100644 coin/provisioning/common/windows/install-sed.ps1 create mode 100644 coin/provisioning/qtci-windows-10-x86_64/09-install-sed.ps1 (limited to 'coin') diff --git a/coin/provisioning/common/windows/helpers.ps1 b/coin/provisioning/common/windows/helpers.ps1 index f5318bcb..6e8e0365 100644 --- a/coin/provisioning/common/windows/helpers.ps1 +++ b/coin/provisioning/common/windows/helpers.ps1 @@ -136,6 +136,18 @@ function Add-Path $Env:PATH = [System.Environment]::GetEnvironmentVariable('Path', 'Machine') } +function Prepend-Path +{ + Param ( + [string]$Path + ) + Write-Host "Adding $Path to Path" + + $oldPath = [System.Environment]::GetEnvironmentVariable('Path', 'Machine') + [Environment]::SetEnvironmentVariable("Path", "$Path;" + $oldPath, [EnvironmentVariableTarget]::Machine) + $Env:PATH = [System.Environment]::GetEnvironmentVariable('Path', 'Machine') +} + function Set-EnvironmentVariable { Param ( diff --git a/coin/provisioning/common/windows/install-sed.ps1 b/coin/provisioning/common/windows/install-sed.ps1 new file mode 100644 index 00000000..2e1cbcd4 --- /dev/null +++ b/coin/provisioning/common/windows/install-sed.ps1 @@ -0,0 +1,60 @@ +############################################################################ +## +## Copyright (C) 2019 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + +. "$PSScriptRoot\helpers.ps1" + +# This script installs sed and it's dependencies + +$prog = "sed" +$version = "4.2.1" +$sha1 = "dfd3d1dae27a24784d7ab40eb074196509fa48fe" +$dep_sha1 = "f7edbd7152d8720c95d46dd128b87b8ba48a5d6f" +$pkg = "$prog-$version-bin.zip" +$dep_pkg = "$prog-$version-dep.zip" +$cached_url = "http://ci-files01-hki.intra.qt.io/input/windows/gnuwin32/$pkg" +$dep_cached_url = "http://ci-files01-hki.intra.qt.io/input/windows/gnuwin32/$dep_pkg" +$install_location = "c:\Utils\$prog" + +$tmp_location = "c:\users\qt\downloads" +Download $cached_url $cached_url "$tmp_location\$pkg" +Verify-Checksum "$tmp_location\$pkg" $sha1 sha1 +Download $dep_cached_url $dep_cached_url "$tmp_location\$dep_pkg" +Verify-Checksum "$tmp_location\$dep_pkg" $dep_sha1 sha1 + +Extract-7Zip "$tmp_location\$pkg" $install_location +Extract-7Zip "$tmp_location\$dep_pkg" $install_location +Remove "$tmp_location\$pkg" +Remove "$tmp_location\$dep_pkg" + +Prepend-Path "$install_location\bin" +Write-Output "sed = $version" >> ~/versions.txt diff --git a/coin/provisioning/qtci-windows-10-x86_64/09-install-sed.ps1 b/coin/provisioning/qtci-windows-10-x86_64/09-install-sed.ps1 new file mode 100644 index 00000000..b3c8fded --- /dev/null +++ b/coin/provisioning/qtci-windows-10-x86_64/09-install-sed.ps1 @@ -0,0 +1 @@ +. "$PSScriptRoot\..\common\windows\install-sed.ps1" -- cgit v1.2.3 From acff1703e4ea565cc8b8f978338ebca751a709af Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Wed, 22 May 2019 13:13:16 +0300 Subject: Install prebuilded OpenSSL 1.1.1b for Windows 7 Change-Id: Ie1ec2d6aaeea8432a654741ed7969cc66c3da7f5 Reviewed-by: Jani Heikkinen (cherry picked from commit 247b429c3c435a62df3d6f94c96c7cd1b7c22299) --- .../provisioning/qtci-windows-7-x86/09-openssl.ps1 | 67 ++++++---------------- 1 file changed, 18 insertions(+), 49 deletions(-) (limited to 'coin') diff --git a/coin/provisioning/qtci-windows-7-x86/09-openssl.ps1 b/coin/provisioning/qtci-windows-7-x86/09-openssl.ps1 index ae867cdc..f90938c4 100644 --- a/coin/provisioning/qtci-windows-7-x86/09-openssl.ps1 +++ b/coin/provisioning/qtci-windows-7-x86/09-openssl.ps1 @@ -33,62 +33,31 @@ . "$PSScriptRoot\..\common\windows\helpers.ps1" -# This script installs OpenSSL $version. -# Both x86 and x64 versions needed when x86 integrations are done on x64 machine +# This script will install OpenSSL prebuild version. Currently this pre-build version is only needed for Windows 7. +# Version was build using Windows 7 x86 and MSVC2010 -$version = "1_0_2p" -$packagex64 = "C:\Windows\Temp\Win64OpenSSL-$version.exe" -$packagex86 = "C:\Windows\Temp\Win32OpenSSL-$version.exe" +# Used build commands below: +# call "C:\Program Files\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86 +# perl Configure no-asm VC-WIN32 --prefix=C:\openssl\ --openssldir=C:\openssl\ +# nmake +# nmake install -if (Is64BitWinHost) { - # Install x64 bit version - $architecture = "x64" - $installFolder = "C:\openssl" - $externalUrl = "https://slproweb.com/download/Win64OpenSSL-$version.exe" - $internalUrl = "\\ci-files01-hki.intra.qt.io\provisioning\openssl\Win64OpenSSL-$version.exe" - $sha1 = "ec8b4111afb86ffc81837a30667aa076afe9d1e6" +$version = "1.1.1b" +$zip = Get-DownloadLocation ("openssl-$version.7z") +$sha1 = "7afba53ab984cecb54a1915c135cbb2a20c6b576" +$url = "http://ci-files01-hki.intra.qt.io/input/openssl/openssl_${version}_prebuild_x86.7z" - Write-Host "Fetching from URL ..." - Download $externalUrl $internalUrl $packagex64 - Verify-Checksum $packagex64 $sha1 - Write-Host "Installing $packagex64 ..." - Run-Executable "$packagex64" "/SP- /SILENT /LOG /SUPPRESSMSGBOXES /NORESTART /DIR=$installFolder" +Download $url $url $zip +Verify-Checksum $zip $sha1 +$installFolder = "C:\openssl" - Write-Host "Remove downloaded $packagex64 ..." - Remove-Item -Path $packagex64 +Extract-7Zip $zip "C:\" +Remove-Item -Path $zip - Set-EnvironmentVariable "OPENSSL_CONF_x64" "$installFolder\bin\openssl.cfg" - Set-EnvironmentVariable "OPENSSL_INCLUDE_x64" "$installFolder\include" - Set-EnvironmentVariable "OPENSSL_LIB_x64" "$installFolder\lib" -} - -# Install x86 bit version -$architecture = "x86" - -if (Is64BitWinHost) { - $installFolder = "C:\openssl$architecture" -} else { - $installFolder = "C:\openssl" -} - -$externalUrl = "https://slproweb.com/download/Win32OpenSSL-$version.exe" -$internalUrl = "\\ci-files01-hki.intra.qt.io\provisioning\openssl\Win32OpenSSL-$version.exe" -$sha1 = "753d6b2cb8b6c808f6212bd21b6e6e7822a4e236" - -Write-Host "Fetching from URL ..." -Download $externalUrl $internalUrl $packagex86 -Verify-Checksum $packagex86 $sha1 -Write-Host "Installing $packagex86 ..." -Run-Executable "$packagex86" "/SP- /SILENT /LOG /SUPPRESSMSGBOXES /NORESTART /DIR=$installFolder" - -Write-Host "Remove downloaded $packagex86 ..." -Remove-Item -Path $packagex86 - -Set-EnvironmentVariable "OPENSSL_CONF_x86" "$installFolder\bin\openssl.cfg" +Set-EnvironmentVariable "OPENSSL_CONF_x86" "$installFolder\openssl.cnf" Set-EnvironmentVariable "OPENSSL_INCLUDE_x86" "$installFolder\include" Set-EnvironmentVariable "OPENSSL_LIB_x86" "$installFolder\lib" +Prepend-Path "$installFolder\bin" -# Store version information to ~/versions.txt, which is used to print version information to provision log. Write-Output "OpenSSL = $version" >> ~/versions.txt - -- cgit v1.2.3 From 1db94fc9ef1f6b61bca081ce9ffb8216e8232c32 Mon Sep 17 00:00:00 2001 From: Antti Kokko Date: Thu, 6 Jun 2019 11:28:12 +0300 Subject: Add platform configuration file for ogl-runtime repository Use configuration from qt5.txt. Change-Id: Ic788b70545169ee1fce5a97f016882cacd4a7908 Reviewed-by: Jukka Jokiniva Reviewed-by: Iikka Eklund Reviewed-by: Jani Heikkinen --- coin/platform_configs/ogl-runtime.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 coin/platform_configs/ogl-runtime.txt (limited to 'coin') diff --git a/coin/platform_configs/ogl-runtime.txt b/coin/platform_configs/ogl-runtime.txt new file mode 100644 index 00000000..cbc25d9b --- /dev/null +++ b/coin/platform_configs/ogl-runtime.txt @@ -0,0 +1 @@ +qt5.txt -- cgit v1.2.3 From 01c38dfad8ebf91397328f773cc37d21ff5606e6 Mon Sep 17 00:00:00 2001 From: Jani Heikkinen Date: Wed, 8 May 2019 12:52:12 +0300 Subject: Use link to qt5.txt instead of copy in qt3d-runtime.txt Change-Id: If61fe724af869fb35637321311bfb052d3009956 Reviewed-by: Antti Kokko (cherry picked from commit c5e443374aaa7d7cdfe90a69bbe3dc33604b5d32) Reviewed-by: Jani Heikkinen --- coin/platform_configs/qt3d-runtime.txt | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'coin') diff --git a/coin/platform_configs/qt3d-runtime.txt b/coin/platform_configs/qt3d-runtime.txt index 3de18a74..cbc25d9b 100644 --- a/coin/platform_configs/qt3d-runtime.txt +++ b/coin/platform_configs/qt3d-runtime.txt @@ -1,22 +1 @@ -Template Target OS Target arch Compiler Target Compiler Features ---------------------------- ------------------- ----------- ----------- --------------- ------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 x86 MSVC2015 Packaging DebugAndRelease Release ForceDebugInfo OpenGLDynamic -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-7-x86-3 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests -qtci-windows-10-x86_64-10 Mingw73 Packaging DebugAndRelease Release OpenGLDynamic DisableTests -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DebugAndRelease Release ForceDebugInfo DisableTests -qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging Release DisableTests OpenGLES2 -qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging Release DisableTests OpenGLES2 -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker -qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging Release DisableTests OpenGLES2 NoUseGoldLinker +qt5.txt -- cgit v1.2.3 From de415914772b5ced911ec9f04738dab2ec355fc9 Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Tue, 11 Jun 2019 15:40:29 +0300 Subject: Fix openssl 1.1 library configurations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Idcb919e5f388b509e4215cf5515c8716490d5872 Reviewed-by: Jani Heikkinen Reviewed-by: Simo Fält --- coin/platform_configs/default.txt | 14 +++++++------- coin/provisioning/common/unix/install-openssl.sh | 6 ++++++ 2 files changed, 13 insertions(+), 7 deletions(-) (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index 9d9c9625..79ba11d1 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -7,13 +7,13 @@ qtci-windows-10-x86_64-10 MSVC2015 qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-x86-msvc2015 qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-arm-msvc2015 qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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% -qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}} -qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl -I {{.Env.OPENSSL_HOME}} -qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}} -qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl -I {{.Env.OPENSSL_HOME}} -qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -openssl -platform linux-icc-64 -I {{.Env.OPENSSL_HOME}} -qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten -I {{.Env.OPENSSL_HOME}} -qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -openssl -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . -I {{.Env.OPENSSL_HOME}} +qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib +qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib +qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib +qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib +qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -platform linux-icc-64 -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib +qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten +qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-macos-10.13-x86_64-2 Clang Packaging -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include qtci-macos-10.12-x86_64-9 Clang -opensource -confirm-license -verbose -prefix /Users/qt/work/install -developer-build -release -qtnamespace TestNamespace -nomake tests -nomake examples -no-pch -no-framework -xplatform macx-clang -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -I/usr/local/opt/openssl/include qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -no-icu -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -static -xplatform macx-ios-clang diff --git a/coin/provisioning/common/unix/install-openssl.sh b/coin/provisioning/common/unix/install-openssl.sh index afc1509e..01a20935 100755 --- a/coin/provisioning/common/unix/install-openssl.sh +++ b/coin/provisioning/common/unix/install-openssl.sh @@ -59,6 +59,12 @@ if [[ "$os" == "linux" ]]; then ./Configure --prefix="$opensslHome" shared no-ssl3-method enable-ec_nistp_64_gcc_128 linux-x86_64 "-Wa,--noexecstack" make && make install_sw install_ssldirs SetEnvVar "OPENSSL_HOME" "$opensslHome" + if uname -a |grep -q "Ubuntu"; then + echo "export LD_LIBRARY_PATH=$opensslHome/lib:$LD_LIBRARY_PATH" >> ~/.bash_profile + else + echo "export LD_LIBRARY_PATH=$opensslHome/lib:$LD_LIBRARY_PATH" >> ~/.bashrc + fi + elif [ "$os" == "macos" ]; then # Below target location has been hard coded into Coin. # QTQAINFRA-1195 -- cgit v1.2.3 From d87d4e0219653d2af40b184c8bbe3079f8c21384 Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Wed, 5 Jun 2019 13:19:46 +0300 Subject: Disable MySQL from packaging builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We can't link against 3rd party GPL libraries Task-number: QTBUG-76081 Change-Id: Ia78c58b14349078259488eafb592c2f70dbf7241 Reviewed-by: Tony Sarajärvi (cherry picked from commit a05bd71ede9e2c67a66fd2d28fab8e9e9386e51c) Change-Id: I97d1d06b266490080325126e2dd715436a91b01a Reviewed-by: Simo Fält --- coin/platform_configs/default.txt | 22 +++++++++++----------- coin/platform_configs/qt5.txt | 38 +++++++++++++++++++------------------- 2 files changed, 30 insertions(+), 30 deletions(-) (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index 79ba11d1..5417e7ee 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -2,27 +2,27 @@ Template Target OS Target arch Compiler ----------------------------------- ------------------- ----------- ----------- --------------- ------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ qtci-windows-10-x86_64-10 MSVC2015 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -angle -qtnamespace TestNamespace -qtlibinfix TestInfix -nomake tests -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% qtci-windows-7-x86-3 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ -qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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% -qtci-windows-10-x86_64-10 MSVC2015 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -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% -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-x86-msvc2015 -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -platform win32-msvc2015 -xplatform winrt-arm-msvc2015 -qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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% +qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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% +qtci-windows-10-x86_64-10 MSVC2015 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -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% +qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-x86-msvc2015 +qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-arm-msvc2015 +qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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% qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -platform linux-icc-64 -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten -qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-macos-10.13-x86_64-2 Clang Packaging -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -plugin-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include +qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-sql-mysql -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten +qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -no-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib +qtci-macos-10.13-x86_64-2 Clang Packaging -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -no-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include qtci-macos-10.12-x86_64-9 Clang -opensource -confirm-license -verbose -prefix /Users/qt/work/install -developer-build -release -qtnamespace TestNamespace -nomake tests -nomake examples -no-pch -no-framework -xplatform macx-clang -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -I/usr/local/opt/openssl/include qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -no-icu -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -static -xplatform macx-ios-clang qtci-macos-10.13-x86_64-2 TvOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-tvos-clang qtci-macos-10.13-x86_64-2 WatchOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-watchos-clang -qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch armeabi-v7a -xplatform android-clang -qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch arm64-v8a -xplatform android-clang +qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch armeabi-v7a -xplatform android-clang +qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch arm64-v8a -xplatform android-clang qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -psql_config /dev/null -tslib qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib qtci-linux-Ubuntu-18.04-x86_64 GCC TestOnly LicenseCheck qtci-linux-RHEL-7.4-x86_64 INTEGRITY_11_04 armv7 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -xplatform integrity-armv7-imx6 -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv7 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-armle-v7-qcc +qtci-linux-RHEL-7.4-x86_64 QNX_700 armv7 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -no-sql-mysql -qpa qnx -xplatform qnx-armle-v7-qcc diff --git a/coin/platform_configs/qt5.txt b/coin/platform_configs/qt5.txt index a2b374d0..09402127 100644 --- a/coin/platform_configs/qt5.txt +++ b/coin/platform_configs/qt5.txt @@ -1,21 +1,21 @@ Template Target OS Target arch Compiler Target Compiler Features Configure arguments ---------------------------- ------------------- ----------- ----------- --------------- -------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2015 -xplatform winrt-x64-msvc2015 -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x86-msvc2017 -qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -opengl dynamic -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ -qtci-windows-10-x86_64-10 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -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++ -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-arm-msvc2017 -qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x64-msvc2017 -qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch x86 -qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch armeabi-v7a -qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch arm64-v8a -qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch x86 -qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch armeabi-v7a -qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch arm64-v8a -qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch x86 +--------------------------- ------------------- ----------- ----------- --------------- -------------------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-x64-msvc2015 +qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2017 -xplatform winrt-x86-msvc2017 +qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-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++ +qtci-windows-10-x86_64-10 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-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++ +qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2017 -xplatform winrt-arm-msvc2017 +qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2017 -xplatform winrt-x64-msvc2017 +qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch x86 +qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch armeabi-v7a +qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch arm64-v8a +qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch x86 +qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch armeabi-v7a +qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch arm64-v8a +qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch x86 qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-qcc -qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-armle-v7-qcc -qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -opengl es2 -nomake tests -nomake examples -xplatform qnx-aarch64le-qcc -qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-x86-64-qcc -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-aarch64le-qcc -qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-64-qcc +qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -opengl es2 -xplatform qnx-armle-v7-qcc +qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -opengl es2 -nomake tests -nomake examples -no-sql-mysql -xplatform qnx-aarch64le-qcc +qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -opengl es2 -xplatform qnx-x86-64-qcc +qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-aarch64le-qcc +qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-64-qcc -- cgit v1.2.3 From 6e350aff34545e7b41b07617c9152f81db735702 Mon Sep 17 00:00:00 2001 From: Antti Kokko Date: Wed, 12 Jun 2019 15:15:32 +0300 Subject: ogl-runtime: instead of linking to qt5.txt use the actual configuration Change-Id: I1b1d467f2c67026fc8039b7346ea8ca02250ba1c Reviewed-by: Jani Heikkinen --- coin/platform_configs/ogl-runtime.txt | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/platform_configs/ogl-runtime.txt b/coin/platform_configs/ogl-runtime.txt index cbc25d9b..a2b374d0 100644 --- a/coin/platform_configs/ogl-runtime.txt +++ b/coin/platform_configs/ogl-runtime.txt @@ -1 +1,21 @@ -qt5.txt +Template Target OS Target arch Compiler Target Compiler Features Configure arguments +--------------------------- ------------------- ----------- ----------- --------------- -------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2015 -xplatform winrt-x64-msvc2015 +qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x86-msvc2017 +qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -opengl dynamic -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ +qtci-windows-10-x86_64-10 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -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++ +qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-arm-msvc2017 +qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x64-msvc2017 +qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch x86 +qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch armeabi-v7a +qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch arm64-v8a +qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch x86 +qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch armeabi-v7a +qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch arm64-v8a +qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch x86 +qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-qcc +qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-armle-v7-qcc +qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -opengl es2 -nomake tests -nomake examples -xplatform qnx-aarch64le-qcc +qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-x86-64-qcc +qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-aarch64le-qcc +qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-64-qcc -- cgit v1.2.3 From 0c339c29d6f2c1df4cd1178acf3acde598ebcc97 Mon Sep 17 00:00:00 2001 From: Oliver Wolff Date: Tue, 18 Jun 2019 09:41:55 +0200 Subject: platform_configs: Add missing "Configure arguments" to qtconnectivity.txt Without the tag configure arguments will not be parsed by Coin so that wrong configurations will be used. Change-Id: I02f84cde07e9e4cf878add89ba9ba43dacf9d567 Reviewed-by: Liang Qi --- coin/platform_configs/qtconnectivity.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/platform_configs/qtconnectivity.txt b/coin/platform_configs/qtconnectivity.txt index bc03efee..2d378f84 100644 --- a/coin/platform_configs/qtconnectivity.txt +++ b/coin/platform_configs/qtconnectivity.txt @@ -1,3 +1,3 @@ -Template Target OS Target arch Compiler Features +Template Target OS Target arch Compiler Features Configure arguments --------------------------------- ------------------- ----------- ----------- -------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 -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 -- cgit v1.2.3 From 670aa09abaa781f41d8991f74cba8016ecbe47cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Thu, 16 May 2019 13:45:06 +0300 Subject: Provisioning: Fix cleanup when building GCC from sources We need sudo rights to delete the temporary folder where sources for GCC are extracted. Change-Id: Ic0642e44eabfc3449f7ce5903a63bd38924f7dca Reviewed-by: Heikki Halmet --- coin/provisioning/common/linux/gcc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/provisioning/common/linux/gcc.sh b/coin/provisioning/common/linux/gcc.sh index 44c63e2f..c26c9bf1 100755 --- a/coin/provisioning/common/linux/gcc.sh +++ b/coin/provisioning/common/linux/gcc.sh @@ -83,7 +83,7 @@ function InstallGCC() { sudo make install rm -rf "$targetFile" - rm -rf "$tmpFolder/gcc-$version" + sudo rm -rf "$tmpFolder/gcc-$version" fi # openSUSE has update-alternatives under /usr/sbin and it has grouped the commands by means of master and slave links -- cgit v1.2.3 From d494d76c26df48c9cf3b45fc15ebad963fe34c52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Wed, 9 Jan 2019 13:15:10 +0200 Subject: Add a no-opengl build on Ubuntu 18.04 Task-number: QTQAINFRA-2577 Change-Id: I815adf0f85f688d9d584b95122d1944cb4b660c1 Reviewed-by: Heikki Halmet --- coin/platform_configs/default.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index 2032cf9a..e9b5a561 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -11,6 +11,7 @@ qtci-linux-Ubuntu-16.04-x86_64-2 GCC qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-Ubuntu-18.04-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-gui -R . -openssl +qtci-linux-Ubuntu-18.04-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-opengl -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -platform linux-icc-64 -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-sql-mysql -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten -- cgit v1.2.3 From 91ab567a64d56ac38ee3cbd88eeecd991cf8f340 Mon Sep 17 00:00:00 2001 From: Heikki Halmet Date: Mon, 1 Apr 2019 12:34:43 +0300 Subject: Provisioning: Upgrade PyYAML because of possible security vulnerability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Known high severity security vulnerability in pyyaml v< 4.2b1 Task-number: QTQAINFRA-2888 Change-Id: I6522fc66ca7c4323cc6248ec2cb31c62201f8e84 Reviewed-by: Dominik Holland Reviewed-by: Tony Sarajärvi --- coin/provisioning/common/shared/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/provisioning/common/shared/requirements.txt b/coin/provisioning/common/shared/requirements.txt index 12380d85..60239142 100644 --- a/coin/provisioning/common/shared/requirements.txt +++ b/coin/provisioning/common/shared/requirements.txt @@ -13,7 +13,7 @@ Jinja2==2.10 MarkupSafe==1.0 path.py==11.0.1 pathtools==0.1.2 -PyYAML==3.13 +PyYAML==5.1 six==1.11.0 typing==3.6.4 watchdog==0.8.3 -- cgit v1.2.3 From 8c4ac28b0d274a198374d5e124825e7d9f540f0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Wed, 26 Jun 2019 10:15:10 +0300 Subject: Add correct openSSL arguments to no-gui builds Change-Id: Ida58ff76bf154dbaf4ffb4cb18005874e10a9c46 Reviewed-by: Heikki Halmet --- coin/platform_configs/default.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt index e9b5a561..690f3b17 100644 --- a/coin/platform_configs/default.txt +++ b/coin/platform_configs/default.txt @@ -10,7 +10,7 @@ qtci-windows-10-x86_64-10 MSVC2017 qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-linux-Ubuntu-18.04-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-gui -R . -openssl +qtci-linux-Ubuntu-18.04-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-gui -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-Ubuntu-18.04-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-opengl -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -platform linux-icc-64 -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -- cgit v1.2.3 From 439a1eb2207417a6d2d0f14766e3e627035a9a7f Mon Sep 17 00:00:00 2001 From: Toni Saario Date: Mon, 6 May 2019 15:10:32 +0300 Subject: Change configuration files into yaml format Change-Id: I252908e9eae3a254f32a286608734b5728cd60b8 Reviewed-by: Liang Qi Reviewed-by: Aapo Keskimolo --- coin/platform_configs/default.yaml | 158 ++++++++++++++++++++++++++++++ coin/platform_configs/ogl-runtime.txt | 21 ---- coin/platform_configs/ogl-runtime.yaml | 1 + coin/platform_configs/qt3d-runtime.txt | 1 - coin/platform_configs/qt3d-runtime.yaml | 1 + coin/platform_configs/qt5.txt | 21 ---- coin/platform_configs/qt5.yaml | 134 +++++++++++++++++++++++++ coin/platform_configs/qtbase.txt | 4 - coin/platform_configs/qtbase.yaml | 12 +++ coin/platform_configs/qtconnectivity.txt | 3 - coin/platform_configs/qtconnectivity.yaml | 6 ++ coin/platform_configs/qtdeclarative.txt | 4 - coin/platform_configs/qtdeclarative.yaml | 12 +++ coin/platform_configs/qtsaferenderer.txt | 5 - coin/platform_configs/qtsaferenderer.yaml | 13 +++ coin/platform_configs/qtsdk.txt | 4 - coin/platform_configs/qtsdk.yaml | 8 ++ coin/platform_configs/qtwebkit.txt | 4 - coin/platform_configs/qtwebkit.yaml | 11 +++ coin/platform_configs/tqtc-qt-rta.txt | 5 - coin/platform_configs/tqtc-qt-rta.yaml | 14 +++ 21 files changed, 370 insertions(+), 72 deletions(-) create mode 100644 coin/platform_configs/default.yaml delete mode 100644 coin/platform_configs/ogl-runtime.txt create mode 100644 coin/platform_configs/ogl-runtime.yaml delete mode 100644 coin/platform_configs/qt3d-runtime.txt create mode 100644 coin/platform_configs/qt3d-runtime.yaml delete mode 100644 coin/platform_configs/qt5.txt create mode 100644 coin/platform_configs/qt5.yaml delete mode 100644 coin/platform_configs/qtbase.txt create mode 100644 coin/platform_configs/qtbase.yaml delete mode 100644 coin/platform_configs/qtconnectivity.txt create mode 100644 coin/platform_configs/qtconnectivity.yaml delete mode 100644 coin/platform_configs/qtdeclarative.txt create mode 100644 coin/platform_configs/qtdeclarative.yaml delete mode 100644 coin/platform_configs/qtsaferenderer.txt create mode 100644 coin/platform_configs/qtsaferenderer.yaml delete mode 100644 coin/platform_configs/qtsdk.txt create mode 100644 coin/platform_configs/qtsdk.yaml delete mode 100644 coin/platform_configs/qtwebkit.txt create mode 100644 coin/platform_configs/qtwebkit.yaml delete mode 100644 coin/platform_configs/tqtc-qt-rta.txt create mode 100644 coin/platform_configs/tqtc-qt-rta.yaml (limited to 'coin') diff --git a/coin/platform_configs/default.yaml b/coin/platform_configs/default.yaml new file mode 100644 index 00000000..cf9ec074 --- /dev/null +++ b/coin/platform_configs/default.yaml @@ -0,0 +1,158 @@ +- + Template: 'qtci-windows-10-x86_64-10' + Compiler: 'MSVC2015' + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -angle -qtnamespace TestNamespace -qtlibinfix TestInfix -nomake tests -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%' +- + Template: 'qtci-windows-7-x86-3' + Compiler: 'Mingw73' + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++' +- + Template: 'qtci-windows-10-x86_64-10' + Target arch: 'x86' + Compiler: 'MSVC2017' + Features: ['Packaging'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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%' +- + Template: 'qtci-windows-10-x86_64-10' + Compiler: 'MSVC2015' + Features: ['Packaging'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -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%' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'WinRT_10' + Target arch: 'x86' + Compiler: 'MSVC2015' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-x86-msvc2015' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'WinRT_10' + Target arch: 'armv7' + Compiler: 'MSVC2015' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-arm-msvc2015' +- + Template: 'qtci-windows-10-x86_64-10' + Compiler: 'MSVC2017' + Features: ['Packaging'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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%' +- + Template: 'qtci-linux-Ubuntu-16.04-x86_64-2' + Compiler: 'GCC' + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib' +- + Template: 'qtci-linux-Ubuntu-18.04-x86_64' + Compiler: 'GCC' + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib' +- + Template: 'qtci-linux-Ubuntu-18.04-x86_64' + Compiler: 'GCC' + Features: ['OutOfSourceBuild', 'Documentation'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib' +- + Template: 'qtci-linux-Ubuntu-18.04-x86_64' + Compiler: 'GCC' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-gui -R . -openssl' +- + Template: 'qtci-linux-Ubuntu-18.04-x86_64' + Compiler: 'GCC' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-opengl -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib' + +- + Template: 'qtci-linux-openSUSE-42.3-x86_64' + Compiler: 'GCC' + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib' +- + Template: 'qtci-linux-openSUSE-42.3-x86_64' + Compiler: 'ICC_18' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -platform linux-icc-64 -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib' +- + Template: 'qtci-linux-openSUSE-42.3-x86_64' + Target os: 'WebAssembly' + Compiler: 'GCC' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-sql-mysql -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten' +- + Template: 'qtci-linux-RHEL-7.4-x86_64' + Compiler: 'GCC' + Features: ['Packaging'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -no-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib' +- + Template: 'qtci-macos-10.13-x86_64-2' + Compiler: 'Clang' + Features: ['Packaging'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -no-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include' +- + Template: 'qtci-macos-10.12-x86_64-9' + Compiler: 'Clang' + Configure arguments: '-opensource -confirm-license -verbose -prefix /Users/qt/work/install -developer-build -release -qtnamespace TestNamespace -nomake tests -nomake examples -no-pch -no-framework -xplatform macx-clang -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -I/usr/local/opt/openssl/include' +- + Template: 'qtci-macos-10.13-x86_64-2' + Target os: 'IOS_ANY' + Target arch: 'multi' + Compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -no-icu -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -static -xplatform macx-ios-clang' +- + Template: 'qtci-macos-10.13-x86_64-2' + Target os: 'TvOS_ANY' + Target arch: 'multi' + Compiler: 'Clang' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-tvos-clang' +- + Template: 'qtci-macos-10.13-x86_64-2' + Target os: 'WatchOS_ANY' + Target arch: 'multi' + Compiler: 'Clang' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-watchos-clang' +- + Template: 'qtci-linux-RHEL-7.4-x86_64' + Target os: 'Android_ANY' + Target arch: 'armv7' + Compiler: 'Clang' + Target compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch armeabi-v7a -xplatform android-clang' +- + Template: 'qtci-linux-RHEL-7.4-x86_64' + Target os: 'Android_ANY' + Target arch: 'arm64' + Compiler: 'Clang' + Target compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch arm64-v8a -xplatform android-clang' +- + Template: 'qtci-linux-Ubuntu-18.04-x86_64' + Target os: 'QEMU' + Target arch: 'armv7' + Compiler: 'GCC' + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -psql_config /dev/null -tslib' +- + Template: 'qtci-linux-Ubuntu-18.04-x86_64' + Target os: 'QEMU' + Target arch: 'arm64' + Compiler: 'GCC' + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib' +- + Template: 'qtci-linux-Ubuntu-18.04-x86_64' + Compiler: 'GCC' + Features: ['TestOnly', 'LicenseCheck'] +- + Template: 'qtci-linux-RHEL-7.4-x86_64' + Target os: 'INTEGRITY_11_04' + Target arch: 'armv7' + Compiler: 'GCC' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -xplatform integrity-armv7-imx6' +- + Template: 'qtci-linux-RHEL-7.4-x86_64' + Target os: 'QNX_700' + Target arch: 'armv7' + Compiler: 'GCC' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -no-sql-mysql -qpa qnx -xplatform qnx-armle-v7-qcc' diff --git a/coin/platform_configs/ogl-runtime.txt b/coin/platform_configs/ogl-runtime.txt deleted file mode 100644 index a2b374d0..00000000 --- a/coin/platform_configs/ogl-runtime.txt +++ /dev/null @@ -1,21 +0,0 @@ -Template Target OS Target arch Compiler Target Compiler Features Configure arguments ---------------------------- ------------------- ----------- ----------- --------------- -------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2015 -xplatform winrt-x64-msvc2015 -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x86-msvc2017 -qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -opengl dynamic -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ -qtci-windows-10-x86_64-10 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -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++ -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-arm-msvc2017 -qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -platform win32-msvc2017 -xplatform winrt-x64-msvc2017 -qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch x86 -qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch armeabi-v7a -qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch arm64-v8a -qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch x86 -qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch armeabi-v7a -qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch arm64-v8a -qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch x86 -qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-qcc -qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-armle-v7-qcc -qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -opengl es2 -nomake tests -nomake examples -xplatform qnx-aarch64le-qcc -qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -opengl es2 -xplatform qnx-x86-64-qcc -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-aarch64le-qcc -qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-64-qcc diff --git a/coin/platform_configs/ogl-runtime.yaml b/coin/platform_configs/ogl-runtime.yaml new file mode 100644 index 00000000..c1ec5493 --- /dev/null +++ b/coin/platform_configs/ogl-runtime.yaml @@ -0,0 +1 @@ +qt5.yaml diff --git a/coin/platform_configs/qt3d-runtime.txt b/coin/platform_configs/qt3d-runtime.txt deleted file mode 100644 index cbc25d9b..00000000 --- a/coin/platform_configs/qt3d-runtime.txt +++ /dev/null @@ -1 +0,0 @@ -qt5.txt diff --git a/coin/platform_configs/qt3d-runtime.yaml b/coin/platform_configs/qt3d-runtime.yaml new file mode 100644 index 00000000..c1ec5493 --- /dev/null +++ b/coin/platform_configs/qt3d-runtime.yaml @@ -0,0 +1 @@ +qt5.yaml diff --git a/coin/platform_configs/qt5.txt b/coin/platform_configs/qt5.txt deleted file mode 100644 index 09402127..00000000 --- a/coin/platform_configs/qt5.txt +++ /dev/null @@ -1,21 +0,0 @@ -Template Target OS Target arch Compiler Target Compiler Features Configure arguments ---------------------------- ------------------- ----------- ----------- --------------- -------------------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-x64-msvc2015 -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2017 -xplatform winrt-x86-msvc2017 -qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-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++ -qtci-windows-10-x86_64-10 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-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++ -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2017 -xplatform winrt-arm-msvc2017 -qtci-windows-10-x86_64-10 WinRT_10 MSVC2017 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2017 -xplatform winrt-x64-msvc2017 -qtci-linux-RHEL-7.4-x86_64 Android_ANY x86 GCC Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch x86 -qtci-windows-10-x86_64-10 Android_ANY armv7 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch armeabi-v7a -qtci-windows-10-x86_64-10 Android_ANY arm64 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch arm64-v8a -qtci-windows-10-x86_64-10 Android_ANY x86 Mingw73 Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch x86 -qtci-macos-10.13-x86_64-2 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch armeabi-v7a -qtci-macos-10.13-x86_64-2 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch arm64-v8a -qtci-macos-10.13-x86_64-2 Android_ANY x86 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch x86 -qtci-macos-10.13-x86_64-2 QNX_700 x86 GCC DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-qcc -qtci-windows-10-x86_64-10 QNX_700 armv7 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -opengl es2 -xplatform qnx-armle-v7-qcc -qtci-windows-10-x86_64-10 QNX_700 armv8 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -opengl es2 -nomake tests -nomake examples -no-sql-mysql -xplatform qnx-aarch64le-qcc -qtci-windows-10-x86_64-10 QNX_700 x86_64 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -opengl es2 -xplatform qnx-x86-64-qcc -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv8 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-aarch64le-qcc -qtci-linux-RHEL-7.4-x86_64 QNX_700 x86_64 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-64-qcc diff --git a/coin/platform_configs/qt5.yaml b/coin/platform_configs/qt5.yaml new file mode 100644 index 00000000..cabc1933 --- /dev/null +++ b/coin/platform_configs/qt5.yaml @@ -0,0 +1,134 @@ +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'WinRT_10' + Compiler: 'MSVC2015' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-x64-msvc2015' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'WinRT_10' + Target arch: 'x86' + Compiler: 'MSVC2017' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2017 -xplatform winrt-x86-msvc2017' +- + Template: 'qtci-windows-7-x86-3' + Compiler: 'Mingw73' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-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++' +- + Template: 'qtci-windows-10-x86_64-10' + Compiler: 'Mingw73' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-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++' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'WinRT_10' + Target arch: 'armv7' + Compiler: 'MSVC2017' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2017 -xplatform winrt-arm-msvc2017' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'WinRT_10' + Compiler: 'MSVC2017' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-release -nomake tests -nomake examples -force-debug-info -no-sql-mysql -platform win32-msvc2017 -xplatform winrt-x64-msvc2017' +- + Template: 'qtci-linux-RHEL-7.4-x86_64' + Target os: 'Android_ANY' + Target arch: 'x86' + Compiler: 'GCC' + Target compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-use-gold-linker -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch x86' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'Android_ANY' + Target arch: 'armv7' + Compiler: 'Mingw73' + Target compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch armeabi-v7a' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'Android_ANY' + Target arch: 'arm64' + Compiler: 'Mingw73' + Target compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch arm64-v8a' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'Android_ANY' + Target arch: 'x86' + Compiler: 'Mingw73' + Target compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -opengl es2 -sysconfdir /etc/xdg -openssl -I c:\utils\openssl-android-master\include -xplatform android-clang -android-sdk C:\Utils\Android -android-ndk c:\Utils\Android\android-ndk-r19c -android-arch x86' +- + Template: 'qtci-macos-10.13-x86_64-2' + Target os: 'Android_ANY' + Target arch: 'armv7' + Compiler: 'Clang' + Target compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch armeabi-v7a' +- + Template: 'qtci-macos-10.13-x86_64-2' + Target os: 'Android_ANY' + Target arch: 'arm64' + Compiler: 'Clang' + Target compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch arm64-v8a' +- + Template: 'qtci-macos-10.13-x86_64-2' + Target os: 'Android_ANY' + Target arch: 'x86' + Compiler: 'Clang' + Target compiler: 'Clang' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -opengl es2 -sysconfdir /etc/xdg -openssl -I /usr/local/opt/openssl/include -xplatform android-clang -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host darwin-x86_64 -android-arch x86' +- + Template: 'qtci-macos-10.13-x86_64-2' + Target os: 'QNX_700' + Target arch: 'x86' + Compiler: 'GCC' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /Users/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-qcc' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'QNX_700' + Target arch: 'armv7' + Compiler: 'Mingw73' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -opengl es2 -xplatform qnx-armle-v7-qcc' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'QNX_700' + Target arch: 'armv8' + Compiler: 'Mingw73' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -opengl es2 -nomake tests -nomake examples -no-sql-mysql -xplatform qnx-aarch64le-qcc' +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'QNX_700' + Target arch: 'x86_64' + Compiler: 'Mingw73' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -nomake tests -nomake examples -no-sql-mysql -opengl es2 -xplatform qnx-x86-64-qcc' +- + Template: 'qtci-linux-RHEL-7.4-x86_64' + Target os: 'QNX_700' + Target arch: 'armv8' + Compiler: 'GCC' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-aarch64le-qcc' +- + Template: 'qtci-linux-RHEL-7.4-x86_64' + Target os: 'QNX_700' + Target arch: 'x86_64' + Compiler: 'GCC' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-use-gold-linker -opengl es2 -qpa qnx -xplatform qnx-x86-64-qcc' diff --git a/coin/platform_configs/qtbase.txt b/coin/platform_configs/qtbase.txt deleted file mode 100644 index 58912679..00000000 --- a/coin/platform_configs/qtbase.txt +++ /dev/null @@ -1,4 +0,0 @@ -Template Target OS Target arch Compiler Features Configure arguments ---------------------------------- ------------------- ----------- ----------- -------------- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 -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 -qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -developer-build -static -nomake tests -nomake examples -no-pch -no-feature-thread -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -xplatform wasm-emscripten diff --git a/coin/platform_configs/qtbase.yaml b/coin/platform_configs/qtbase.yaml new file mode 100644 index 00000000..dbe93909 --- /dev/null +++ b/coin/platform_configs/qtbase.yaml @@ -0,0 +1,12 @@ +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'WinRT_10' + Target arch: 'x86_64' + Compiler: 'MSVC2015' + 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' +- + Template: 'qtci-linux-openSUSE-42.3-x86_64' + Target os: 'WebAssembly' + Compiler: 'GCC' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -developer-build -static -nomake tests -nomake examples -no-pch -no-feature-thread -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -xplatform wasm-emscripten' diff --git a/coin/platform_configs/qtconnectivity.txt b/coin/platform_configs/qtconnectivity.txt deleted file mode 100644 index 2d378f84..00000000 --- a/coin/platform_configs/qtconnectivity.txt +++ /dev/null @@ -1,3 +0,0 @@ -Template Target OS Target arch Compiler Features Configure arguments ---------------------------------- ------------------- ----------- ----------- -------------- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 WinRT_10 x86_64 MSVC2015 -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 diff --git a/coin/platform_configs/qtconnectivity.yaml b/coin/platform_configs/qtconnectivity.yaml new file mode 100644 index 00000000..e46597cd --- /dev/null +++ b/coin/platform_configs/qtconnectivity.yaml @@ -0,0 +1,6 @@ +- + Template: 'qtci-windows-10-x86_64-10' + Target os: 'WinRT_10' + Target arch: 'x86_64' + Compiler: 'MSVC2015' + 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' diff --git a/coin/platform_configs/qtdeclarative.txt b/coin/platform_configs/qtdeclarative.txt deleted file mode 100644 index a36c94a5..00000000 --- a/coin/platform_configs/qtdeclarative.txt +++ /dev/null @@ -1,4 +0,0 @@ -Template Target OS Target arch Compiler Features Configure arguments ---------------------------------- ------------------- ----------- ----------- -------------- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC -opensource -confirm-license -R . -developer-build -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -no-xcb -nomake examples -nomake tests -openssl -prefix /home/qt/work/install -psql_config /dev/null -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -tslib -verbose -qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake examples -nomake tests -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib -no-xcb diff --git a/coin/platform_configs/qtdeclarative.yaml b/coin/platform_configs/qtdeclarative.yaml new file mode 100644 index 00000000..7c4f6722 --- /dev/null +++ b/coin/platform_configs/qtdeclarative.yaml @@ -0,0 +1,12 @@ +- + Template: 'qtci-linux-Ubuntu-18.04-x86_64' + Target os: 'QEMU' + Target arch: 'armv7' + Compiler: 'GCC' + Configure arguments: '-opensource -confirm-license -R . -developer-build -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -no-xcb -nomake examples -nomake tests -openssl -prefix /home/qt/work/install -psql_config /dev/null -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -tslib -verbose' +- + Template: 'qtci-linux-Ubuntu-18.04-x86_64' + Target os: 'QEMU' + Target arch: 'arm64' + Compiler: 'GCC' + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake examples -nomake tests -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib -no-xcb' diff --git a/coin/platform_configs/qtsaferenderer.txt b/coin/platform_configs/qtsaferenderer.txt deleted file mode 100644 index e05c4992..00000000 --- a/coin/platform_configs/qtsaferenderer.txt +++ /dev/null @@ -1,5 +0,0 @@ -Template Target OS Target arch Compiler Features Configure arguments ------------------------------------ ------------------- ----------- ----------- ------------------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 Mingw73 -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++ -qtci-windows-10-x86_64-10 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -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++ -qtci-linux-RHEL-7.4-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -developer-build -static -nomake tests -nomake examples -no-use-gold-linker diff --git a/coin/platform_configs/qtsaferenderer.yaml b/coin/platform_configs/qtsaferenderer.yaml new file mode 100644 index 00000000..c2bc05e0 --- /dev/null +++ b/coin/platform_configs/qtsaferenderer.yaml @@ -0,0 +1,13 @@ +- + Template: 'qtci-windows-10-x86_64-10' + Compiler: 'Mingw73' + 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++' +- + Template: 'qtci-windows-10-x86_64-10' + Compiler: 'Mingw73' + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -developer-build -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++' +- + Template: 'qtci-linux-RHEL-7.4-x86_64' + Compiler: 'GCC' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -developer-build -static -nomake tests -nomake examples -no-use-gold-linker' diff --git a/coin/platform_configs/qtsdk.txt b/coin/platform_configs/qtsdk.txt deleted file mode 100644 index ad320b09..00000000 --- a/coin/platform_configs/qtsdk.txt +++ /dev/null @@ -1,4 +0,0 @@ -Template Target OS Target arch Compiler Features Configure arguments ---------------------------- ------------------- ----------- ----------- --------------- ---------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-windows-10-x86-3 MSVC2017 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests -qtci-linux-RHEL-6.6-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -force-debug-info -nomake examples -nomake tests diff --git a/coin/platform_configs/qtsdk.yaml b/coin/platform_configs/qtsdk.yaml new file mode 100644 index 00000000..2c001058 --- /dev/null +++ b/coin/platform_configs/qtsdk.yaml @@ -0,0 +1,8 @@ +- + Template: 'qtci-windows-10-x86-3' + Compiler: 'MSVC2017' + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests' +- + Template: 'qtci-linux-RHEL-6.6-x86_64' + Compiler: 'GCC' + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -release -force-debug-info -nomake examples -nomake tests' diff --git a/coin/platform_configs/qtwebkit.txt b/coin/platform_configs/qtwebkit.txt deleted file mode 100644 index 3eb40a5b..00000000 --- a/coin/platform_configs/qtwebkit.txt +++ /dev/null @@ -1,4 +0,0 @@ -Template Target OS Target arch Compiler Features Configure arguments ---------------------------- ------------------- ----------- ----------- ------------------------ -------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-windows-10-x86_64-10 x86 MSVC2017 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -force-debug-info -opengl dynamic -qtci-windows-7-x86-3 Mingw73 Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -opengl dynamic diff --git a/coin/platform_configs/qtwebkit.yaml b/coin/platform_configs/qtwebkit.yaml new file mode 100644 index 00000000..01378ddc --- /dev/null +++ b/coin/platform_configs/qtwebkit.yaml @@ -0,0 +1,11 @@ +- + Template: 'qtci-windows-10-x86_64-10' + Target arch: 'x86' + Compiler: 'MSVC2017' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -force-debug-info -opengl dynamic' +- + Template: 'qtci-windows-7-x86-3' + Compiler: 'Mingw73' + Features: ['Packaging', 'DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -opengl dynamic' diff --git a/coin/platform_configs/tqtc-qt-rta.txt b/coin/platform_configs/tqtc-qt-rta.txt deleted file mode 100644 index 82b086f9..00000000 --- a/coin/platform_configs/tqtc-qt-rta.txt +++ /dev/null @@ -1,5 +0,0 @@ -Template Target OS Target arch Compiler Features Configure arguments ---------------------------- ------------------- ----------- ----------- ------------- -------------------------------------------------------------------------------------------------------------------------------------------------------- -qtci-windows-7-x86_64-4 MSVC2013 DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests -qtci-windows-8.1-x86_64 MSVC2013 DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests -qtci-windows-10-x86-3 MSVC2017 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests diff --git a/coin/platform_configs/tqtc-qt-rta.yaml b/coin/platform_configs/tqtc-qt-rta.yaml new file mode 100644 index 00000000..76664d06 --- /dev/null +++ b/coin/platform_configs/tqtc-qt-rta.yaml @@ -0,0 +1,14 @@ +- + Template: 'qtci-windows-7-x86_64-4' + Compiler: 'MSVC2013' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests' +- + Template: 'qtci-windows-8.1-x86_64' + Compiler: 'MSVC2013' + Features: ['DisableTests'] + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests' +- + Template: 'qtci-windows-10-x86-3' + Compiler: 'MSVC2017' + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -force-debug-info -opengl dynamic -nomake examples -nomake tests' -- cgit v1.2.3 From 107fb060168d3a0e31d5afc32a2c627c6a7486bf Mon Sep 17 00:00:00 2001 From: Toni Saario Date: Tue, 2 Jul 2019 09:21:04 +0300 Subject: Fix extra file and missing library in platform configurations Missing libraries in no-gui platform. Default.txt was supposed to be removed by 439a1eb2207417a6d2d0f14766e3e627035a9a7f Change-Id: I91c7802634f69f9e5475921b3610185b386b1b1f Reviewed-by: Aapo Keskimolo --- coin/platform_configs/default.txt | 30 ------------------------------ coin/platform_configs/default.yaml | 2 +- 2 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 coin/platform_configs/default.txt (limited to 'coin') diff --git a/coin/platform_configs/default.txt b/coin/platform_configs/default.txt deleted file mode 100644 index 690f3b17..00000000 --- a/coin/platform_configs/default.txt +++ /dev/null @@ -1,30 +0,0 @@ -Template Target OS Target arch Compiler Target Compiler Features Configure arguments ------------------------------------ ------------------- ----------- ----------- --------------- ------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -qtci-windows-10-x86_64-10 MSVC2015 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -angle -qtnamespace TestNamespace -qtlibinfix TestInfix -nomake tests -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% -qtci-windows-7-x86-3 Mingw73 -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -developer-build -release -nomake tests -opengl dynamic -nomake examples -openssl -I %OPENSSL_INCLUDE_x86% -L %OPENSSL_LIB_x86% -plugin-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++ -qtci-windows-10-x86_64-10 x86 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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% -qtci-windows-10-x86_64-10 MSVC2015 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -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% -qtci-windows-10-x86_64-10 WinRT_10 x86 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-x86-msvc2015 -qtci-windows-10-x86_64-10 WinRT_10 armv7 MSVC2015 Packaging DisableTests -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-arm-msvc2015 -qtci-windows-10-x86_64-10 MSVC2017 Packaging -opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -opengl dynamic -nomake examples -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% -qtci-linux-Ubuntu-16.04-x86_64-2 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-linux-Ubuntu-18.04-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -force-debug-info -nomake tests -no-widgets -nomake examples -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-linux-Ubuntu-18.04-x86_64 GCC OutOfSourceBuild Documentation -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -R . -qtlibinfix TestInfix -qtnamespace TestNamespace -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-linux-Ubuntu-18.04-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-gui -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-linux-Ubuntu-18.04-x86_64 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-opengl -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-linux-openSUSE-42.3-x86_64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-linux-openSUSE-42.3-x86_64 ICC_18 DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-pch -system-sqlite -R . -platform linux-icc-64 -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-linux-openSUSE-42.3-x86_64 WebAssembly GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -release -static -nomake tests -nomake examples -no-sql-mysql -no-pch -no-dbus -no-headersclean -no-ssl -no-warnings-are-errors -no-feature-thread -xplatform wasm-emscripten -qtci-linux-RHEL-7.4-x86_64 GCC Packaging -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-libudev -no-use-gold-linker -force-debug-info -separate-debug-info -no-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -qt-libjpeg -qt-libpng -qt-xcb -sysconfdir /etc/xdg -qt-pcre -qt-harfbuzz -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib -qtci-macos-10.13-x86_64-2 Clang Packaging -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -release -nomake tests -nomake examples -no-sql-mysql -plugin-sql-psql -plugin-sql-sqlite -xplatform macx-clang -separate-debug-info -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -sysconfdir /Library/Preferences/Qt -I/usr/local/opt/openssl/include -qtci-macos-10.12-x86_64-9 Clang -opensource -confirm-license -verbose -prefix /Users/qt/work/install -developer-build -release -qtnamespace TestNamespace -nomake tests -nomake examples -no-pch -no-framework -xplatform macx-clang -sdk macosx -device-option QMAKE_APPLE_DEVICE_ARCHS=x86_64 -I/usr/local/opt/openssl/include -qtci-macos-10.13-x86_64-2 IOS_ANY multi Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -no-icu -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -static -xplatform macx-ios-clang -qtci-macos-10.13-x86_64-2 TvOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-tvos-clang -qtci-macos-10.13-x86_64-2 WatchOS_ANY multi Clang DisableTests -opensource -confirm-license -verbose -prefix /Users/qt/work/install -debug-and-release -nomake tests -nomake examples -no-sql-mysql -no-sql-psql -plugin-sql-sqlite -xplatform macx-watchos-clang -qtci-linux-RHEL-7.4-x86_64 Android_ANY armv7 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch armeabi-v7a -xplatform android-clang -qtci-linux-RHEL-7.4-x86_64 Android_ANY arm64 Clang Clang Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-sql-mysql -no-dbus -no-qpa-platform-guard -no-use-gold-linker -sysconfdir /etc/xdg -opengl es2 -openssl -I {{.Env.OPENSSL_ANDROID_HOME}}/include -android-sdk /opt/android/sdk -android-ndk /opt/android/android-ndk-r19c -android-ndk-host linux-x86_64 -android-arch arm64-v8a -xplatform android-clang -qtci-linux-Ubuntu-18.04-x86_64 QEMU armv7 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-imx7-g++ -device-option CROSS_COMPILE=/opt/yocto-armv7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -device-option DISTRO_OPTS="hard-float boot2qt" -sysroot /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi -extprefix /home/qt/work/install -mysql_config /opt/yocto-armv7/sysroots/armv7ahf-neon-poky-linux-gnueabi/usr/bin/mysql_config -psql_config /dev/null -tslib -qtci-linux-Ubuntu-18.04-x86_64 QEMU arm64 GCC -opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -nomake examples -no-xcb -R . -openssl -device linux-generic-g++ -device-option CROSS_COMPILE=/opt/yocto-arm64/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- -device-option DISTRO_OPTS=boot2qt -sysroot /opt/yocto-arm64/sysroots/aarch64-poky-linux -extprefix /home/qt/work/install -mysql_config /opt/yocto-arm64/sysroots/aarch64-poky-linux/usr/bin/mysql_config -psql_config /dev/null -tslib -qtci-linux-Ubuntu-18.04-x86_64 GCC TestOnly LicenseCheck -qtci-linux-RHEL-7.4-x86_64 INTEGRITY_11_04 armv7 GCC DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -xplatform integrity-armv7-imx6 -qtci-linux-RHEL-7.4-x86_64 QNX_700 armv7 GCC Packaging DisableTests -opensource -confirm-license -verbose -prefix /home/qt/work/install -release -nomake tests -nomake examples -no-use-gold-linker -opengl es2 -no-sql-mysql -qpa qnx -xplatform qnx-armle-v7-qcc diff --git a/coin/platform_configs/default.yaml b/coin/platform_configs/default.yaml index cf9ec074..6de43501 100644 --- a/coin/platform_configs/default.yaml +++ b/coin/platform_configs/default.yaml @@ -53,7 +53,7 @@ Template: 'qtci-linux-Ubuntu-18.04-x86_64' Compiler: 'GCC' Features: ['DisableTests'] - Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-gui -R . -openssl' + Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -developer-build -nomake tests -no-gui -R . -openssl -I {{.Env.OPENSSL_HOME}}/include -L {{.Env.OPENSSL_HOME}}/lib' - Template: 'qtci-linux-Ubuntu-18.04-x86_64' Compiler: 'GCC' -- cgit v1.2.3 From cb8d38fd9cbfc3c83efffba3fc2587378e9f7476 Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Tue, 16 Jul 2019 03:24:42 +0300 Subject: Provisioning: don't re-run Conan 5 times if there is no error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ia348ebbc4fc3a2503cc426c011e68b7a410c4a08 Reviewed-by: Mårten Nordheim Reviewed-by: Simon Hausmann --- coin/provisioning/common/windows/03-conan.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/provisioning/common/windows/03-conan.ps1 b/coin/provisioning/common/windows/03-conan.ps1 index 74c21e20..0e9b9bc2 100644 --- a/coin/provisioning/common/windows/03-conan.ps1 +++ b/coin/provisioning/common/windows/03-conan.ps1 @@ -42,7 +42,7 @@ function Run-Conan-Install Push-Location $outpwd Run-Executable "$scriptsPath\conan.exe" "install -f $conanfile --no-imports --verify $manifestsDir", ` '-s', ('compiler="' + $Compiler + '"'), ` - "-s os=Windows -s arch=$Arch -s compiler.version=$CompilerVersion $extraArgs" ` + "-s os=Windows -s arch=$Arch -s compiler.version=$CompilerVersion $extraArgs" break; } catch { if ($i -eq 5) { -- cgit v1.2.3 From 645bd71404dde95c0eb1679b798b4349fe8ceca4 Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Tue, 16 Jul 2019 02:30:05 +0300 Subject: Provisioning: Run-Executable should print stdout and stderr to log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task-number: QTQAINFRA-3085 Change-Id: I5343753f75157a2a894bb3ac50d416ab044d86fb Reviewed-by: Mårten Nordheim --- coin/provisioning/common/windows/helpers.ps1 | 36 ++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) (limited to 'coin') diff --git a/coin/provisioning/common/windows/helpers.ps1 b/coin/provisioning/common/windows/helpers.ps1 index 6e8e0365..ba35f6b5 100644 --- a/coin/provisioning/common/windows/helpers.ps1 +++ b/coin/provisioning/common/windows/helpers.ps1 @@ -22,14 +22,46 @@ function Run-Executable [string]$Executable=$(throw("You must specify a program to run.")), [string[]]$Arguments ) + + $stdoutFile = [System.IO.Path]::GetTempFileName() + $stderrFile = [System.IO.Path]::GetTempFileName() + if ([string]::IsNullOrEmpty($Arguments)) { Write-Host "Running `"$Executable`"" - $p = Start-Process -FilePath "$Executable" -Wait -PassThru + $p = Start-Process -FilePath "$Executable" -Wait -PassThru ` + -RedirectStandardOutput $stdoutFile -RedirectStandardError $stderrFile } else { Write-Host "Running `"$Executable`" with arguments `"$Arguments`"" - $p = Start-Process -FilePath "$Executable" -ArgumentList $Arguments -PassThru + $p = Start-Process -FilePath "$Executable" -ArgumentList $Arguments -PassThru ` + -RedirectStandardOutput $stdoutFile -RedirectStandardError $stderrFile Wait-Process -InputObject $p } + + $stdoutContent = [System.IO.File]::ReadAllText($stdoutFile) + $stderrContent = [System.IO.File]::ReadAllText($stderrFile) + Remove-Item -Path $stdoutFile, $stderrFile -Force -ErrorAction Ignore + + $hasOutput = $false + if ([string]::IsNullOrEmpty($stdoutContent) -eq $false -or [string]::IsNullOrEmpty($stderrContent) -eq $false) { + $hasOutput = $true + Write-Host + Write-Host "======================================================================" + } + if ([string]::IsNullOrEmpty($stdoutContent) -eq $false) { + Write-Host "stdout of `"$Executable`":" + Write-Host "======================================================================" + Write-Host $stdoutContent + Write-Host "======================================================================" + } + if ([string]::IsNullOrEmpty($stderrContent) -eq $false) { + Write-Host "stderr of `"$Executable`":" + Write-Host "======================================================================" + Write-Host $stderrContent + Write-Host "======================================================================" + } + if ($hasOutput) { + Write-Host + } if ($p.ExitCode -ne 0) { throw "Process $($Executable) exited with exit code $($p.ExitCode)" } -- cgit v1.2.3 From 22c427b3699c1b191373af93adadb66e0f39b755 Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Tue, 23 Jul 2019 00:53:36 +0300 Subject: Use msiexec to install Strawberry Perl from msi package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently provisioning fails with following error: "This command cannot be run due to the error: %1 is not a valid Win32 application." Change-Id: I59290d394f231c37af10f27d07dbb9f5d2d2470a Reviewed-by: Mårten Nordheim --- coin/provisioning/common/windows/install-strawberry-perl.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/provisioning/common/windows/install-strawberry-perl.ps1 b/coin/provisioning/common/windows/install-strawberry-perl.ps1 index c80f16a4..7e288603 100644 --- a/coin/provisioning/common/windows/install-strawberry-perl.ps1 +++ b/coin/provisioning/common/windows/install-strawberry-perl.ps1 @@ -50,7 +50,7 @@ $strawberryPackage = "C:\Windows\Temp\" + $installer_name Download $url_official $url_cache $strawberryPackage Verify-Checksum $strawberryPackage $sha1 -Run-Executable "$strawberryPackage" "/QB INSTALLDIR=C:\strawberry REBOOT=REALLYSUPPRESS" +Run-Executable "msiexec" "/quiet /i $strawberryPackage INSTALLDIR=C:\strawberry REBOOT=REALLYSUPPRESS" Write-Host "Cleaning $strawberryPackage.." Remove-Item -Recurse -Force -Path "$strawberryPackage" -- cgit v1.2.3 From f12c22646336893c6db5e8117498395baa0c3230 Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Wed, 24 Jul 2019 14:04:08 +0300 Subject: Provisioning: install-msys2.ps1 must run its commands synchronously MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [*] Using bash instead of msys2_shell.cmd allows Start-Process to actually wait for the end of command execution. [*] cpan requires "yes" to be typed by user when it's run first time, otherwise it hangs indefinitely waiting for input. [*] Stop gpg-agent and dirmngr started in the background to prevent CI session from hanging. Change-Id: I4d4c1f36d215cb7578d1e7059217e34375de96c6 Reviewed-by: Mårten Nordheim --- coin/provisioning/common/windows/install-msys2.ps1 | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'coin') diff --git a/coin/provisioning/common/windows/install-msys2.ps1 b/coin/provisioning/common/windows/install-msys2.ps1 index 0c4a9680..e88c8f07 100644 --- a/coin/provisioning/common/windows/install-msys2.ps1 +++ b/coin/provisioning/common/windows/install-msys2.ps1 @@ -33,8 +33,6 @@ . "$PSScriptRoot\helpers.ps1" -# This script installs 7-Zip - $version = "20181211" $prog = "msys2" if (Is64BitWinHost) { @@ -58,13 +56,17 @@ $TargetLocation = "C:\Utils" Download $url_official $url_cache $PackagePath Verify-Checksum $PackagePath $sha1 Extract-tar_gz $PackagePath $TargetLocation -$msys = "$TargetLocation\$folder\msys2_shell.cmd" +$bash = "$TargetLocation\$folder\usr\bin\bash" # install perl -Run-Executable "$msys" "`"-l`" `"-c`" `"rm -rf /etc/pacman.d/gnupg;pacman-key --init;pacman-key --populate msys2;pacman -S --noconfirm perl make`"" -Run-Executable "$msys" "`"-l`" `"-c`" `"cpan -i Text::Template Test::More`"" +Run-Executable "$bash" "`"-l`" `"-c`" `"rm -rf /etc/pacman.d/gnupg;pacman-key --init;pacman-key --populate msys2;pacman -S --noconfirm perl make`"" +Run-Executable "$bash" "`"-l`" `"-c`" `"yes | cpan -i Text::Template Test::More`"" Write-Host "Cleaning $PackagePath.." Remove-Item -Recurse -Force -Path "$PackagePath" -Write-Output "7-Zip = $version" >> ~\versions.txt +# pacman-key launches gpg-agent and dirmngr in the background, see https://github.com/Alexpux/MSYS2-pacman/issues/56 +Stop-Process -Name "gpg-agent" -ErrorAction Ignore +Stop-Process -Name "dirmngr" -ErrorAction Ignore + +Write-Output "MSYS2 = $version" >> ~\versions.txt -- cgit v1.2.3 From 535dbcfe962199fb39aa02cd0f7a62a1e82bd8ea Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Tue, 16 Jul 2019 16:29:10 +0300 Subject: Conan: Suppress output of New-Item MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I3d62fffa08d38a383187726e08743512236bb859 Reviewed-by: Mårten Nordheim --- coin/provisioning/common/windows/03-conan.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/provisioning/common/windows/03-conan.ps1 b/coin/provisioning/common/windows/03-conan.ps1 index 0e9b9bc2..15a1aaca 100644 --- a/coin/provisioning/common/windows/03-conan.ps1 +++ b/coin/provisioning/common/windows/03-conan.ps1 @@ -35,7 +35,7 @@ function Run-Conan-Install ForEach-Object { $conanfile = $_.FullName $outpwd = "C:\Utils\conanbuildinfos\$($BuildinfoDir)\$($_.BaseName)" - New-Item $outpwd -Type directory -Force + New-Item $outpwd -Type directory -Force | Out-Null for ($i = 1; $i -le 5; $i++) { try { -- cgit v1.2.3 From 2666f3b21609e0e22ffd1bbeead3ff91b8b0ca93 Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Tue, 16 Jul 2019 18:38:32 +0300 Subject: Provisioning: rename 03-conan.ps1 to conan.ps1 to follow naming convention MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: If24541709d4675498bc4af296e05ce3c62d5045a Reviewed-by: Mårten Nordheim --- coin/provisioning/common/windows/03-conan.ps1 | 60 ---------------------- coin/provisioning/common/windows/conan.ps1 | 60 ++++++++++++++++++++++ coin/provisioning/qtci-windows-10-x86/03-conan.ps1 | 2 +- .../qtci-windows-10-x86_64/03-conan.ps1 | 2 +- coin/provisioning/qtci-windows-7-x86/03-conan.ps1 | 2 +- 5 files changed, 63 insertions(+), 63 deletions(-) delete mode 100644 coin/provisioning/common/windows/03-conan.ps1 create mode 100644 coin/provisioning/common/windows/conan.ps1 (limited to 'coin') diff --git a/coin/provisioning/common/windows/03-conan.ps1 b/coin/provisioning/common/windows/03-conan.ps1 deleted file mode 100644 index 15a1aaca..00000000 --- a/coin/provisioning/common/windows/03-conan.ps1 +++ /dev/null @@ -1,60 +0,0 @@ -. "$PSScriptRoot\helpers.ps1" - -$scriptsPath = "C:\Python27\Scripts" - -Run-Executable "$scriptsPath\pip.exe" "install --upgrade conan==0.24.0" - -# Use Qt Project repository by default -Run-Executable "$scriptsPath\conan.exe" "remote add qtproject https://api.bintray.com/conan/qtproject/conan --insert" - -Set-EnvironmentVariable "CI_CONAN_BUILDINFO_DIR" "C:\Utils\conanbuildinfos" - -function Run-Conan-Install -{ - Param ( - [string]$ConanfilesDir, - [string]$BuildinfoDir, - [string]$Arch, - [string]$Compiler, - [string]$CompilerVersion, - [string]$CompilerRuntime, - [string]$CompilerLibcxx - ) - - if ($CompilerRuntime) { - $extraArgs = "-s compiler.runtime=$($CompilerRuntime)" - } - - if ($CompilerLibcxx) { - $extraArgs = "-s compiler.libcxx=$($CompilerLibcxx)" - } - - $manifestsDir = "$PSScriptRoot\conan_manifests" - - Get-ChildItem -Path "$ConanfilesDir\*.txt" | - ForEach-Object { - $conanfile = $_.FullName - $outpwd = "C:\Utils\conanbuildinfos\$($BuildinfoDir)\$($_.BaseName)" - New-Item $outpwd -Type directory -Force | Out-Null - - for ($i = 1; $i -le 5; $i++) { - try { - Push-Location $outpwd - Run-Executable "$scriptsPath\conan.exe" "install -f $conanfile --no-imports --verify $manifestsDir", ` - '-s', ('compiler="' + $Compiler + '"'), ` - "-s os=Windows -s arch=$Arch -s compiler.version=$CompilerVersion $extraArgs" - break; - } catch { - if ($i -eq 5) { - throw "Could not install conan content" - } - } finally { - Pop-Location - } - } - - Copy-Item -Path $conanfile -Destination "$outpwd\conanfile.txt" - } -} - -Write-Output "Conan = 0.24.0" >> ~\versions.txt diff --git a/coin/provisioning/common/windows/conan.ps1 b/coin/provisioning/common/windows/conan.ps1 new file mode 100644 index 00000000..15a1aaca --- /dev/null +++ b/coin/provisioning/common/windows/conan.ps1 @@ -0,0 +1,60 @@ +. "$PSScriptRoot\helpers.ps1" + +$scriptsPath = "C:\Python27\Scripts" + +Run-Executable "$scriptsPath\pip.exe" "install --upgrade conan==0.24.0" + +# Use Qt Project repository by default +Run-Executable "$scriptsPath\conan.exe" "remote add qtproject https://api.bintray.com/conan/qtproject/conan --insert" + +Set-EnvironmentVariable "CI_CONAN_BUILDINFO_DIR" "C:\Utils\conanbuildinfos" + +function Run-Conan-Install +{ + Param ( + [string]$ConanfilesDir, + [string]$BuildinfoDir, + [string]$Arch, + [string]$Compiler, + [string]$CompilerVersion, + [string]$CompilerRuntime, + [string]$CompilerLibcxx + ) + + if ($CompilerRuntime) { + $extraArgs = "-s compiler.runtime=$($CompilerRuntime)" + } + + if ($CompilerLibcxx) { + $extraArgs = "-s compiler.libcxx=$($CompilerLibcxx)" + } + + $manifestsDir = "$PSScriptRoot\conan_manifests" + + Get-ChildItem -Path "$ConanfilesDir\*.txt" | + ForEach-Object { + $conanfile = $_.FullName + $outpwd = "C:\Utils\conanbuildinfos\$($BuildinfoDir)\$($_.BaseName)" + New-Item $outpwd -Type directory -Force | Out-Null + + for ($i = 1; $i -le 5; $i++) { + try { + Push-Location $outpwd + Run-Executable "$scriptsPath\conan.exe" "install -f $conanfile --no-imports --verify $manifestsDir", ` + '-s', ('compiler="' + $Compiler + '"'), ` + "-s os=Windows -s arch=$Arch -s compiler.version=$CompilerVersion $extraArgs" + break; + } catch { + if ($i -eq 5) { + throw "Could not install conan content" + } + } finally { + Pop-Location + } + } + + Copy-Item -Path $conanfile -Destination "$outpwd\conanfile.txt" + } +} + +Write-Output "Conan = 0.24.0" >> ~\versions.txt diff --git a/coin/provisioning/qtci-windows-10-x86/03-conan.ps1 b/coin/provisioning/qtci-windows-10-x86/03-conan.ps1 index 75c6a232..d33ceea8 100644 --- a/coin/provisioning/qtci-windows-10-x86/03-conan.ps1 +++ b/coin/provisioning/qtci-windows-10-x86/03-conan.ps1 @@ -1,4 +1,4 @@ -. "$PSScriptRoot\..\common\windows\03-conan.ps1" +. "$PSScriptRoot\..\common\windows\conan.ps1" Run-Conan-Install ` -ConanfilesDir "$PSScriptRoot\conanfiles" ` diff --git a/coin/provisioning/qtci-windows-10-x86_64/03-conan.ps1 b/coin/provisioning/qtci-windows-10-x86_64/03-conan.ps1 index c2068666..40131a81 100644 --- a/coin/provisioning/qtci-windows-10-x86_64/03-conan.ps1 +++ b/coin/provisioning/qtci-windows-10-x86_64/03-conan.ps1 @@ -1,4 +1,4 @@ -. "$PSScriptRoot\..\common\windows\03-conan.ps1" +. "$PSScriptRoot\..\common\windows\conan.ps1" Run-Conan-Install ` -ConanfilesDir "$PSScriptRoot\conanfiles" ` diff --git a/coin/provisioning/qtci-windows-7-x86/03-conan.ps1 b/coin/provisioning/qtci-windows-7-x86/03-conan.ps1 index 807e5480..4aa9658d 100644 --- a/coin/provisioning/qtci-windows-7-x86/03-conan.ps1 +++ b/coin/provisioning/qtci-windows-7-x86/03-conan.ps1 @@ -1,4 +1,4 @@ -. "$PSScriptRoot\..\common\windows\03-conan.ps1" +. "$PSScriptRoot\..\common\windows\conan.ps1" Run-Conan-Install ` -ConanfilesDir "$PSScriptRoot\conanfiles" ` -- cgit v1.2.3 From 4bf0ba2ba18e0caf2e4e99ab68a1f506a9eb3705 Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Tue, 16 Jul 2019 02:50:02 +0300 Subject: Provisioning: Add CompilerException and CompilerThreads settings for Conan MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I3a52101056bce4d3d4ac9124dbfd566adf47cf80 Reviewed-by: Mårten Nordheim --- coin/provisioning/common/windows/conan.ps1 | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'coin') diff --git a/coin/provisioning/common/windows/conan.ps1 b/coin/provisioning/common/windows/conan.ps1 index 15a1aaca..d440804e 100644 --- a/coin/provisioning/common/windows/conan.ps1 +++ b/coin/provisioning/common/windows/conan.ps1 @@ -18,15 +18,25 @@ function Run-Conan-Install [string]$Compiler, [string]$CompilerVersion, [string]$CompilerRuntime, - [string]$CompilerLibcxx + [string]$CompilerLibcxx, + [string]$CompilerException, + [string]$CompilerThreads ) if ($CompilerRuntime) { - $extraArgs = "-s compiler.runtime=$($CompilerRuntime)" + $extraArgs += " -s compiler.runtime=$CompilerRuntime" } if ($CompilerLibcxx) { - $extraArgs = "-s compiler.libcxx=$($CompilerLibcxx)" + $extraArgs += " -s compiler.libcxx=$CompilerLibcxx" + } + + if ($CompilerException) { + $extraArgs += " -s compiler.exception=$CompilerException" + } + + if ($CompilerThreads) { + $extraArgs += " -s compiler.threads=$CompilerThreads" } $manifestsDir = "$PSScriptRoot\conan_manifests" -- cgit v1.2.3 From 716640a4770c8e11ab5f6e6ebb8db64868c2679b Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Fri, 26 Jul 2019 18:57:59 +0300 Subject: Provisioning: update Conan and Conan packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [*] Update Conan to 1.17.0, adjust to change in command line arguments [*] Update Conan packages to up-to-date versions, add libjpeg-turbo and packages for 64-bit MinGW [*] Rename 03-conan.ps1 to 11-conan.ps1 so that it is installed after Python 3 and MinGW [*] Add license header to conan.ps1 Change-Id: Ibc451ddc54a7227eb6d3a007a20351e77a46875f Reviewed-by: Mårten Nordheim --- coin/provisioning/common/windows/conan.ps1 | 50 +++- .../57.1/annulen/stable/export/conanmanifest.txt | 2 - .../conanmanifest.txt | 257 ----------------- .../59.1/vitallium/stable/export/conanmanifest.txt | 2 - .../conanmanifest.txt | 187 ------------ .../conanmanifest.txt | 187 ------------ .../conanmanifest.txt | 187 ------------ .../conanmanifest.txt | 187 ------------ .../64.2/qtproject/stable/export/conanmanifest.txt | 4 + .../conanmanifest.txt | 251 ++++++++++++++++ .../conanmanifest.txt | 251 ++++++++++++++++ .../conanmanifest.txt | 251 ++++++++++++++++ .../conanmanifest.txt | 251 ++++++++++++++++ .../conanmanifest.txt | 251 ++++++++++++++++ .../conanmanifest.txt | 251 ++++++++++++++++ .../qtproject/stable/export/conanmanifest.txt | 4 + .../conanmanifest.txt | 12 + .../conanmanifest.txt | 12 + .../conanmanifest.txt | 12 + .../conanmanifest.txt | 12 + .../conanmanifest.txt | 12 + .../conanmanifest.txt | 12 + .../2.9.4/annulen/stable/export/conanmanifest.txt | 2 - .../conanmanifest.txt | 320 --------------------- .../vitallium/stable/export/conanmanifest.txt | 2 - .../conanmanifest.txt | 55 ---- .../conanmanifest.txt | 55 ---- .../conanmanifest.txt | 55 ---- .../conanmanifest.txt | 55 ---- .../qtproject/stable/export/conanmanifest.txt | 4 + .../conanmanifest.txt | 57 ++++ .../conanmanifest.txt | 274 ++++++++++++++++++ .../conanmanifest.txt | 57 ++++ .../conanmanifest.txt | 274 ++++++++++++++++++ .../conanmanifest.txt | 57 ++++ .../conanmanifest.txt | 57 ++++ .../1.1.29/annulen/stable/export/conanmanifest.txt | 2 - .../conanmanifest.txt | 136 --------- .../vitallium/stable/export/conanmanifest.txt | 2 - .../conanmanifest.txt | 38 --- .../conanmanifest.txt | 38 --- .../conanmanifest.txt | 38 --- .../conanmanifest.txt | 38 --- .../qtproject/stable/export/conanmanifest.txt | 3 + .../conanmanifest.txt | 39 +++ .../conanmanifest.txt | 39 +++ .../conanmanifest.txt | 39 +++ .../conanmanifest.txt | 131 +++++++++ .../conanmanifest.txt | 131 +++++++++ .../conanmanifest.txt | 39 +++ .../qtproject/stable/export/conanmanifest.txt | 7 + .../conanmanifest.txt | 9 + .../1.2.8/annulen/stable/export/conanmanifest.txt | 4 - .../conanmanifest.txt | 56 ---- coin/provisioning/qtci-windows-10-x86/03-conan.ps1 | 17 -- coin/provisioning/qtci-windows-10-x86/11-conan.ps1 | 17 ++ .../qtci-windows-10-x86/conanfiles/qtwebkit.txt | 21 +- .../qtci-windows-10-x86_64/03-conan.ps1 | 33 --- .../qtci-windows-10-x86_64/11-conan.ps1 | 53 ++++ .../qtci-windows-10-x86_64/conanfiles/qtwebkit.txt | 23 +- coin/provisioning/qtci-windows-7-x86/03-conan.ps1 | 9 - coin/provisioning/qtci-windows-7-x86/11-conan.ps1 | 11 + .../qtci-windows-7-x86/conanfiles/qtwebkit.txt | 24 +- 63 files changed, 2975 insertions(+), 1991 deletions(-) delete mode 100644 coin/provisioning/common/windows/conan_manifests/icu/57.1/annulen/stable/export/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/icu/57.1/annulen/stable/package/df887949b128f2725c575258bd175fe4d30ba476/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/export/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/970e773c5651dc2560f86200a4ea56c23f568ff9/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/c85f9b402dd4d46acdf074e1c63b768a41181d7a/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/c97b9e1abccf18d0aefcbcdef01d2c4689917df6/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/ca0c09cfa678fd91b04c82824988c42e9ac40ddf/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/export/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/04159420740fe51b1a5d12efd6a3342553fee413/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/0fa8894ab40ba8bc84e36b1278e6fb93534ef433/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/11dc74683b2b5768b63ea1e7443e7aaa2d3151c4/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/8f5896a40336524af740600c29144c7c6a773119/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/a75971da93722f430ab0d3354b4c35c8e1cb8be6/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/a779998d6f2f83fe0e000f516f7f7c4a1739e0a3/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/export/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/2b3cb3bb931646fe98ad49632435cdd3ed213435/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/4985763cfece81b148d7c11f16d564e42ee2756c/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/6fe55a250d22d4408ba9c4b99015260e933b58f0/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/8f06876bcdec0570dded47fecf362dd95832bd6e/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/9b721b63e452039565ba8417e25a183d1bbcb4df/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/acb703d92685c00a6f85ed3ca8225725f0e186c1/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/annulen/stable/export/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/annulen/stable/package/357fb491ae867cbbfe369d54132f4f21c3f13f7d/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/export/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/3c9b592a3dd15507b8a6d90a8fcc34d2b4de2260/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/61c4f21bb72fcb92afb46571ac7caaa967c09c5d/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/8ec39b27fb5828ba512b3f2dafe88cc0962c29b9/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/e08083f0910e4ba3ae89c4298d94b672829af1fe/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/export/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/0576a44cadaf801a35075ee2885891b12616dbb9/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/228fe6274aa7b6b50620b9e88bd3505648dacfd9/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/4370064884cce35fe631d04efb5ff5c356ea732a/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/61072772572f3007a94ff98e7a5b24691e94f83f/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/a2f0cba83ce6faca8664d5e4c043b89cb0b7bfe2/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/c837186703e4fb24344e99222c6f8da4a8574e49/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/annulen/stable/export/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/annulen/stable/package/30620cba1eaf28add40f441a20f7d1be9a5c636c/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/export/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/export/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/ae932df57acef9c094443d5579df1a9b72790e1a/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/b06e2211adc32e230f2d9e729d1dcad2648782e8/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/zlib/1.2.11/qtproject/stable/export/conanmanifest.txt create mode 100644 coin/provisioning/common/windows/conan_manifests/zlib/1.2.11/qtproject/stable/package/5a14faea650589a68f33a6a5b0207a4a852a5f1d/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/zlib/1.2.8/annulen/stable/export/conanmanifest.txt delete mode 100644 coin/provisioning/common/windows/conan_manifests/zlib/1.2.8/annulen/stable/package/a990f14748d35a55b067140a0973ea7204f67350/conanmanifest.txt delete mode 100644 coin/provisioning/qtci-windows-10-x86/03-conan.ps1 create mode 100644 coin/provisioning/qtci-windows-10-x86/11-conan.ps1 delete mode 100644 coin/provisioning/qtci-windows-10-x86_64/03-conan.ps1 create mode 100644 coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1 delete mode 100644 coin/provisioning/qtci-windows-7-x86/03-conan.ps1 create mode 100644 coin/provisioning/qtci-windows-7-x86/11-conan.ps1 (limited to 'coin') diff --git a/coin/provisioning/common/windows/conan.ps1 b/coin/provisioning/common/windows/conan.ps1 index d440804e..d77d28e2 100644 --- a/coin/provisioning/common/windows/conan.ps1 +++ b/coin/provisioning/common/windows/conan.ps1 @@ -1,11 +1,46 @@ +############################################################################# +## +## Copyright (C) 2019 The Qt Company Ltd. +## Copyright (C) 2019 Konstantin Tokarev +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the provisioning scripts of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL21$ +## Commercial License Usage +## Licensees holding valid commercial Qt licenses may use this file in +## accordance with the commercial license agreement provided with the +## Software or, alternatively, in accordance with the terms contained in +## a written agreement between you and The Qt Company. For licensing terms +## and conditions see http://www.qt.io/terms-conditions. For further +## information use the contact form at http://www.qt.io/contact-us. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 or version 3 as published by the Free +## Software Foundation and appearing in the file LICENSE.LGPLv21 and +## LICENSE.LGPLv3 included in the packaging of this file. Please review the +## following information to ensure the GNU Lesser General Public License +## requirements will be met: https://www.gnu.org/licenses/lgpl.html and +## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## As a special exception, The Qt Company gives you certain additional +## rights. These rights are described in The Qt Company LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## $QT_END_LICENSE$ +## +############################################################################# + . "$PSScriptRoot\helpers.ps1" -$scriptsPath = "C:\Python27\Scripts" +$scriptsPath = "C:\Python36\Scripts" -Run-Executable "$scriptsPath\pip.exe" "install --upgrade conan==0.24.0" +Run-Executable "$scriptsPath\pip3.exe" "install --upgrade conan==1.17.0" +Write-Output "Conan = 1.17.0" >> ~\versions.txt # Use Qt Project repository by default -Run-Executable "$scriptsPath\conan.exe" "remote add qtproject https://api.bintray.com/conan/qtproject/conan --insert" +Run-Executable "$scriptsPath\conan.exe" "remote add qtproject https://api.bintray.com/conan/qtproject/conan --insert --force" Set-EnvironmentVariable "CI_CONAN_BUILDINFO_DIR" "C:\Utils\conanbuildinfos" @@ -40,19 +75,20 @@ function Run-Conan-Install } $manifestsDir = "$PSScriptRoot\conan_manifests" + $buildinfoRoot = "C:\Utils\conanbuildinfos" Get-ChildItem -Path "$ConanfilesDir\*.txt" | ForEach-Object { $conanfile = $_.FullName - $outpwd = "C:\Utils\conanbuildinfos\$($BuildinfoDir)\$($_.BaseName)" + $outpwd = "$buildinfoRoot\$BuildinfoDir\$($_.BaseName)" New-Item $outpwd -Type directory -Force | Out-Null for ($i = 1; $i -le 5; $i++) { try { Push-Location $outpwd - Run-Executable "$scriptsPath\conan.exe" "install -f $conanfile --no-imports --verify $manifestsDir", ` + Run-Executable "$scriptsPath\conan.exe" "install --no-imports --verify $manifestsDir", ` '-s', ('compiler="' + $Compiler + '"'), ` - "-s os=Windows -s arch=$Arch -s compiler.version=$CompilerVersion $extraArgs" + "-s os=Windows -s arch=$Arch -s compiler.version=$CompilerVersion $extraArgs $conanfile" break; } catch { if ($i -eq 5) { @@ -66,5 +102,3 @@ function Run-Conan-Install Copy-Item -Path $conanfile -Destination "$outpwd\conanfile.txt" } } - -Write-Output "Conan = 0.24.0" >> ~\versions.txt diff --git a/coin/provisioning/common/windows/conan_manifests/icu/57.1/annulen/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/57.1/annulen/stable/export/conanmanifest.txt deleted file mode 100644 index c61454b9..00000000 --- a/coin/provisioning/common/windows/conan_manifests/icu/57.1/annulen/stable/export/conanmanifest.txt +++ /dev/null @@ -1,2 +0,0 @@ -1478728220 -conanfile.py: 966eefe972ce7b809cf46722ed4acc8f \ No newline at end of file diff --git a/coin/provisioning/common/windows/conan_manifests/icu/57.1/annulen/stable/package/df887949b128f2725c575258bd175fe4d30ba476/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/57.1/annulen/stable/package/df887949b128f2725c575258bd175fe4d30ba476/conanmanifest.txt deleted file mode 100644 index ada3d009..00000000 --- a/coin/provisioning/common/windows/conan_manifests/icu/57.1/annulen/stable/package/df887949b128f2725c575258bd175fe4d30ba476/conanmanifest.txt +++ /dev/null @@ -1,257 +0,0 @@ -1478728553 -bin/derb.exe: 3ec3b316ff23272a1b3fd2b158bf8f0c -bin/genbrk.exe: d20b4453d8f27575aa99a922b1b73979 -bin/genccode.exe: fd6c6b4a19785fe79e64a5a7c42126f5 -bin/gencfu.exe: b5eb4c1573c0a57177d9b07c3f550fe5 -bin/gencmn.exe: 67af9d71860826f5b2fc77f88f05dd57 -bin/gencnval.exe: e249044782f01701e32e31479404b424 -bin/gendict.exe: 8602eabdc50fa6155b625726864dba16 -bin/gennorm2.exe: 325e3fdd8e7136e76c11f9b906051cd4 -bin/genrb.exe: 239a4ff2f0b48080aacb71fc76be8d2f -bin/gensprep.exe: a1c66a70887166b100cc41a5e46345ce -bin/icu-config: 96b18a047b3d3f489e2960b45896f816 -bin/icuinfo.exe: edd6e3cae4a64effa44d0f0c6d9c49e3 -bin/icupkg.exe: 3d8237194aab07ae0b94df5a612d9809 -bin/makeconv.exe: 99a4faca3677d2387af16a646a58ef8a -bin/pkgdata.exe: cc98c16f44eee8bbbe395b440ea4ffdf -bin/uconv.exe: d61219c6e2b6204bc6b763b19863ed36 -conaninfo.txt: fd101264bb948df865b27622957a2f15 -include/layout/LEFontInstance.h: 832355f57af5c308176c31b4b509ee66 -include/layout/LEGlyphFilter.h: d9f85ffb6092f4d0a0f7d6d2b47af762 -include/layout/LEGlyphStorage.h: f1223e9ee45c7b70bb5716523b110c53 -include/layout/LEInsertionList.h: dee4db6d6404cdb502188ef0f7271cf7 -include/layout/LELanguages.h: a067c055ed8b2463797e2219d5c4f584 -include/layout/LEScripts.h: 54a3a278a6e40180944ae915b816f4eb -include/layout/LESwaps.h: 75f4e8675dbe6af58e563834aedd7bc8 -include/layout/LETableReference.h: 5a398e838e744826c08b2c3246bb6c85 -include/layout/LETypes.h: e6b0751d998bf62a0f5c547ea385e01b -include/layout/LayoutEngine.h: 316ad98ce1ec2fbcff405706827efbc4 -include/layout/ParagraphLayout.h: 50ea2c0f4d5f43f8c889c9634628407a -include/layout/RunArrays.h: 3f617f033219e611639c272cb3aff784 -include/layout/loengine.h: f8b15a37f9c330dfa87c69c5501e80cd -include/layout/playout.h: e86c74c388011a1af118c1d4a53dde54 -include/layout/plruns.h: 84d32229ac7a487f0f9d34426fa3ea8a -include/unicode/alphaindex.h: e74fcba85b76577d32b90bc0056ee5d9 -include/unicode/appendable.h: 5c2d97a96252e2c959d4c226a554575b -include/unicode/basictz.h: 444077f7dd19bd6dbe24034360356e8a -include/unicode/brkiter.h: 0a5796a84c272600a360dc5918899492 -include/unicode/bytestream.h: f828cc9f542c232d2aadb09b9099c559 -include/unicode/bytestrie.h: 765c037e45325e1970e839349df7c28c -include/unicode/bytestriebuilder.h: 634c9203ef678ee0d8fd9baffa8e3e46 -include/unicode/calendar.h: e360220586bcd0c3ea93b610bf4fe202 -include/unicode/caniter.h: f6de1e31cdc53563f35b093f8f8a07d8 -include/unicode/chariter.h: d6030b3dffd5355f9377318f76dd69de -include/unicode/choicfmt.h: e86083f42af655ca0806ce1ed3dc55a0 -include/unicode/coleitr.h: 9a393483da6d9daae0bf18dd997abcfa -include/unicode/coll.h: 06d3855e97984cd27579ec69b1985cc1 -include/unicode/compactdecimalformat.h: d1cca4ce6027a3d42a29b55e9ce0b82c -include/unicode/curramt.h: efd2919661fe8dbc23f6b0f5bd33e685 -include/unicode/currpinf.h: b3cf75cd234ec080a7fee08e20906be6 -include/unicode/currunit.h: f8b67c06aa5547b9911378f39e70bc5d -include/unicode/datefmt.h: 034fcd313ba7753923be9b30833ff13e -include/unicode/dbbi.h: 3435ff244bdf7d248fa81c8162f6da9c -include/unicode/dcfmtsym.h: e4935f31b8f97b149fa686a9996f6758 -include/unicode/decimfmt.h: e4fcfcfcb4bb45e7935cec1ec41ba359 -include/unicode/docmain.h: 81c20148681a5d7598d33fe1e49f3c5b -include/unicode/dtfmtsym.h: 4a7ee444945513d0939376634f42d0ec -include/unicode/dtintrv.h: 9d0929775a3d4599f90020ffb304d66c -include/unicode/dtitvfmt.h: d42ce527e4a5eb3138782d92acd97b88 -include/unicode/dtitvinf.h: c7cedf40b871f6d3c77cc013d06983f7 -include/unicode/dtptngen.h: b7e58f01d5e588371e22e55a2d255208 -include/unicode/dtrule.h: 9b687ce82b426bfd8b67f2a743f9114c -include/unicode/enumset.h: 9b15421cfac73c8845562dc2eba0f2e9 -include/unicode/errorcode.h: 28c37140645dfa2f430cf531131a2cbb -include/unicode/fieldpos.h: ae206bb308885c2dae6bd15792512e6f -include/unicode/filteredbrk.h: 3d230ab55f28d50fbc5c7d391cd897d9 -include/unicode/fmtable.h: fe37b4f3f1862172fcf708a8913b5d90 -include/unicode/format.h: 637778c5df6458f3f90d6f87e7d6a694 -include/unicode/fpositer.h: 276908f795beea88cd9d3f6f43ff82b2 -include/unicode/gender.h: 05bdc8c839f568e55c1d5d57c034dd36 -include/unicode/gregocal.h: 165eb6c7ffe6d914240c4bc0a2d7e5e0 -include/unicode/icudataver.h: 6b463f7d991d4cf4b0278bda90d4419f -include/unicode/icuplug.h: 2688326bbc6184edbfb04a9e398a363a -include/unicode/idna.h: b7885800ec0092f7b0411810ef0a0150 -include/unicode/listformatter.h: 8e460de80d6cb5701b3fcc2a3e704c14 -include/unicode/localpointer.h: ef6f8ec1d09bcfd660632f2df08c8d30 -include/unicode/locdspnm.h: df688f9f85fa7927b037811db0a5a934 -include/unicode/locid.h: 7d2c34577acdb5d7372ab35b02068581 -include/unicode/measfmt.h: fdd0cbd2a7f3af228f25560a3f63c4ad -include/unicode/measunit.h: 54bcc9c8bd45f4d61baad1ecfda8874d -include/unicode/measure.h: 3a03dc0bc233874de9b869a64a057835 -include/unicode/messagepattern.h: e3ae4457660d55835e42d88c3338a661 -include/unicode/msgfmt.h: de76868b18a099b367a685c31c0a14d8 -include/unicode/normalizer2.h: 0b96e4e3fe2db9df3ea140dbbe8ea140 -include/unicode/normlzr.h: 850f123dce4120db36601bcd4a77e925 -include/unicode/numfmt.h: c45e7b584738ae545937b3431a7e97b7 -include/unicode/numsys.h: 3b40734e737a0328f7c63124f07727e4 -include/unicode/parseerr.h: aa97d4d0cb5ef66baf1652c46223a81f -include/unicode/parsepos.h: 408632c4f4a0ec42811b50295be88ec9 -include/unicode/platform.h: fceecfa20a56af2a62a310d3d9fd1b14 -include/unicode/plurfmt.h: 06a5b724a0cdc04673d2467002605b50 -include/unicode/plurrule.h: 19d8e5c3f59ac4a833883da7fc52279c -include/unicode/ptypes.h: 93226b56866b0001f58f0319e430da08 -include/unicode/putil.h: 12979acdf705cac063a0f7862a20907b -include/unicode/rbbi.h: f0fe0af5306ea31bcb128a57dad17785 -include/unicode/rbnf.h: fa3ee91ae518f46628171c5eda544702 -include/unicode/rbtz.h: 76eb867d186e64e6bd425561d9371d7d -include/unicode/regex.h: 3ef7c102b12d3167fa019d203f524ec4 -include/unicode/region.h: 149a3b19b81a6e9093cb40f63a688fe7 -include/unicode/reldatefmt.h: 0f38d6b83c8a59898e4b546bd00bb459 -include/unicode/rep.h: 5fa4336c1302e276e81d2716a9789511 -include/unicode/resbund.h: 8c9bf16c940d2fa6d27e92b4b9023b1c -include/unicode/schriter.h: fcb1bcf67285e897acf621e937b13010 -include/unicode/scientificnumberformatter.h: 0f0c586dcb3cb2d59c10f9a42490e81f -include/unicode/search.h: ddfee95357399f1840854929715a99f3 -include/unicode/selfmt.h: cf18d9ce0e01636d74c14aac25dea995 -include/unicode/simpleformatter.h: aa8128e6a7368689e974552143be3c55 -include/unicode/simpletz.h: 0c847bdd492d23c7d78993e03d8364b8 -include/unicode/smpdtfmt.h: 19192d367d28f9812c71588222331218 -include/unicode/sortkey.h: 323299d4a40734274de910e74e6b7714 -include/unicode/std_string.h: e019f8e200de712588502817a22e5049 -include/unicode/strenum.h: cece8736aaa78de5edb80b2d8bcf2339 -include/unicode/stringpiece.h: 707434771237dbc6467f49aebc26f7f7 -include/unicode/stringtriebuilder.h: 251396f1c130290458da7553cca598f6 -include/unicode/stsearch.h: 70a69561b21c1a8e14f7d1a4e0760392 -include/unicode/symtable.h: dd632a7e27832b5992d4a54205c599c4 -include/unicode/tblcoll.h: 95b69fba4fd024406b9e4d991f1ad7c7 -include/unicode/timezone.h: 3e88d71098f36369b9892baff81c603c -include/unicode/tmunit.h: b946f43e7c8bec8aa50ddd6120671446 -include/unicode/tmutamt.h: e67a0e5e8b642aee17578411d554bcc2 -include/unicode/tmutfmt.h: 9d7e425317331c3ed890cefb0f654004 -include/unicode/translit.h: 9eb1419219ba781ff4653b4983a4e33c -include/unicode/tzfmt.h: 31ad89c49cc59da450befd0a9c2cee84 -include/unicode/tznames.h: 72003f95cbf6b2bb6acc12d3b4b3f41a -include/unicode/tzrule.h: 6416905b7247c15c939cc0e2d32a6510 -include/unicode/tztrans.h: 223b5af929e494c1894c6a24e8685f44 -include/unicode/ubidi.h: 66179ab0b99a5d356dba19e14eb5ecd3 -include/unicode/ubrk.h: 117eb54e39da5ce3dba2c9679707b0b7 -include/unicode/ucal.h: 70b7c32899132549a87577d2e96d8b75 -include/unicode/ucasemap.h: 1f64f081f3d1ee03e17d9cebb4b39c34 -include/unicode/ucat.h: 7420c409443c281d0396a824f7ce954c -include/unicode/uchar.h: 6049da45cae06c38009809cd701e8fc8 -include/unicode/ucharstrie.h: cdd315664d45ceeb931f740427eba956 -include/unicode/ucharstriebuilder.h: 08b57db9db7ec6c83a727b4e7e93a84c -include/unicode/uchriter.h: 26aecb73ed6c3b66d45920b6edc82e94 -include/unicode/uclean.h: 220a7ed9637f6d08844892406ee12fd7 -include/unicode/ucnv.h: 90e6635683216cf04e9e51c7793cce02 -include/unicode/ucnv_cb.h: 29d1534d54197074136641f9e73bca3a -include/unicode/ucnv_err.h: 0b8f3b01f733daf5fa2bab7d0c77a83f -include/unicode/ucnvsel.h: af61d762e6c51d92c6191a6234eba4c0 -include/unicode/ucol.h: 5794231873c0168366cac78abd7b9ba8 -include/unicode/ucoleitr.h: 2960fa61e49001636797afbc1cbd3e61 -include/unicode/uconfig.h: 2bc6d6073763aa34555775d5868dec4e -include/unicode/ucsdet.h: 77f79ed197997607ad82834cddcecee3 -include/unicode/ucurr.h: 4e010cfe5251e583c06597df3dbbd7c8 -include/unicode/udat.h: 03876d47a6da7ae776311f580635c003 -include/unicode/udata.h: ca1f4a55a240ea9586f2cca1ea4764c8 -include/unicode/udateintervalformat.h: 6f55cc14a063de8c79b74a7316d93e6f -include/unicode/udatpg.h: fd44f3f982452c68cdf6b1f3b159f068 -include/unicode/udisplaycontext.h: cdd37d6941337b96a75801e0716ca045 -include/unicode/uenum.h: 0f39322455d626debaf0bbe476a77c54 -include/unicode/ufieldpositer.h: 68ae4017d10f71b84083c24b2e09b536 -include/unicode/uformattable.h: 257f1dd17c788b7f5eab9ee3627f654c -include/unicode/ugender.h: be7155c7b25e2a7b7ea4d22ffc939557 -include/unicode/uidna.h: 851038bc78b135bf99c65dd0648e78f7 -include/unicode/uiter.h: 8e6b6197795cb2d42f8c80922d28ccf2 -include/unicode/uldnames.h: 8545429414195c42ee9a05694540bd8d -include/unicode/ulistformatter.h: 56cc2f8025387fcb18422300373a6e47 -include/unicode/uloc.h: b048d6c8e26ed8a65d0403d90ea4081c -include/unicode/ulocdata.h: 0803ed6ac97fbf4a10c3ca436f903fb2 -include/unicode/umachine.h: 8946d5b383646c9de9fc8c84eb0456fd -include/unicode/umisc.h: 3f34c9d536fdd5d4fddca2cf952bcfaa -include/unicode/umsg.h: 8880b14654d63c6e78a50d8f569b2766 -include/unicode/unifilt.h: 3b0368ea2da9a503aa47803e395b513e -include/unicode/unifunct.h: 3d37601bd3ae27b4e51431713d9f7533 -include/unicode/unimatch.h: e1a18096e0c7c7220c5c9149cd2d184c -include/unicode/unirepl.h: 7f1973a960a652ff74fa63e21969bab9 -include/unicode/uniset.h: fa3cfc8b4883a69120bf35e65f5d75ec -include/unicode/unistr.h: 975e37994ae2d3197a86284f1bdacdf3 -include/unicode/unorm.h: a04a23023daa99571ef2b7edca9dc6d2 -include/unicode/unorm2.h: 5ab66d75a9251a8df00f2075128ab010 -include/unicode/unum.h: 6e24b3d63e65f4d0a3076d33708a96d7 -include/unicode/unumsys.h: d239b6c2f97f51c221fcd66865adbaf9 -include/unicode/uobject.h: 07ebe875a9d304f71f525d2a71b20ddc -include/unicode/upluralrules.h: d9a66886a7585743cc8abe54af8e5955 -include/unicode/uregex.h: 6eb3c76e7d6fa2fed34b77f7fcc5cc85 -include/unicode/uregion.h: 0819c20dc8e0b5aebc5ec527828f565e -include/unicode/ureldatefmt.h: 057a6220b33c1c81e0cebc9a5da40929 -include/unicode/urename.h: 73c3a4cd707c1549f27341c859b099bb -include/unicode/urep.h: dc3eaf59ed5c198facce9f4a97a79ecf -include/unicode/ures.h: 6b374e2d473dfab51bcf7306c46f9eb6 -include/unicode/uscript.h: baaefbb5a6c5e251da2bb1800626d9e4 -include/unicode/usearch.h: 3e51b12fdf6a1adfc4696946ac0a4b6c -include/unicode/uset.h: 62d5813111f8391b4f616da08802aa24 -include/unicode/usetiter.h: 6baeb6276d80be18739355f9549b38e7 -include/unicode/ushape.h: f87732f736df2bbb90d46a10779876e7 -include/unicode/uspoof.h: a6510014653e0576fcf39c9dfd74f955 -include/unicode/usprep.h: 4ea1ec6a6d4fcbf2c1a239f23873da98 -include/unicode/ustdio.h: 0fd603db4b22ee783b7298e61be990b8 -include/unicode/ustream.h: 7d0c8f8409f683d2b1044537db4be8bf -include/unicode/ustring.h: 49c56a6248a7c92ee93a11331d2a6364 -include/unicode/ustringtrie.h: 08470063002ce9a8df978481b0d5588d -include/unicode/utext.h: c83e4d6390b463b28168cf90a734966e -include/unicode/utf.h: 0d1807bea996ca42bad86a938ba69453 -include/unicode/utf16.h: b376232af20fa9f77c983c6cc91800cf -include/unicode/utf32.h: ed15f0927cec48cab1922d08e1fdcce1 -include/unicode/utf8.h: 0d3fb609e35e2c67dce1a4889973bebd -include/unicode/utf_old.h: fce92682d7539e0fde301c54ef9e8760 -include/unicode/utmscale.h: 267dcde091ed1b81f03b1fff49c05e69 -include/unicode/utrace.h: 25f64a4cd8fc8a13bdfadd59bb287d49 -include/unicode/utrans.h: cc28e262a704403f38c26becae727165 -include/unicode/utypes.h: 21e5e8cc7dc66bdb83f70971bed1a5e4 -include/unicode/uvernum.h: d878c9e384487c8668c122712134c0f1 -include/unicode/uversion.h: 140b36fa9bffd2cb2b1c7f02691923e6 -include/unicode/vtzone.h: 90e065183436be0a94918465f66be863 -lib/icu/57.1/Makefile.inc: 51df1179cc12274af810405a09627a85 -lib/icu/57.1/pkgdata.inc: ea5b004208a38d31072631debf2820c5 -lib/icu/Makefile.inc: 51df1179cc12274af810405a09627a85 -lib/icu/current/Makefile.inc: 51df1179cc12274af810405a09627a85 -lib/icu/current/pkgdata.inc: ea5b004208a38d31072631debf2820c5 -lib/icu/pkgdata.inc: ea5b004208a38d31072631debf2820c5 -lib/icudt.dll: 008d9b3a7b34c3cfcf90b3314a998db9 -lib/icudt57.dll: 008d9b3a7b34c3cfcf90b3314a998db9 -lib/icuin.dll: 2dad9816f0d70e640435604dea7a02ca -lib/icuin57.dll: 2dad9816f0d70e640435604dea7a02ca -lib/icuio.dll: 5d8d3f8556adf2c4c1508dc7fd30c9d5 -lib/icuio57.dll: 5d8d3f8556adf2c4c1508dc7fd30c9d5 -lib/icule.dll: 7711d0ed1ab71d54a13d6146a44100a0 -lib/icule57.dll: 7711d0ed1ab71d54a13d6146a44100a0 -lib/iculx.dll: 8f9829ecc0917da35df6ac1b95867ea8 -lib/iculx57.dll: 8f9829ecc0917da35df6ac1b95867ea8 -lib/icutest.dll: c58029e6799efbd6dd809665bc243661 -lib/icutest57.dll: c58029e6799efbd6dd809665bc243661 -lib/icutu.dll: 6f76dea90ce1d6e7651471dbb9c15e09 -lib/icutu57.dll: 6f76dea90ce1d6e7651471dbb9c15e09 -lib/icuuc.dll: 6d770a12bdeee63da045a1030abdbaa1 -lib/icuuc57.dll: 6d770a12bdeee63da045a1030abdbaa1 -lib/libicudt.dll.a: 2a9bd71e462b4b914efc91907d7928f1 -lib/libicuin.dll.a: 5cfe05e08eca003163f3e5765e5b4c58 -lib/libicuio.dll.a: 2bdacffc519030a8d4188f83fdc81fd1 -lib/libicule.dll.a: b1fb12fb94759dd8a38d5abfa6f4ad21 -lib/libiculx.dll.a: c15e32fd0a5f9239be1370e557e1050b -lib/libicutest.dll.a: 14cd311813f51ce75b0d0989372ed3d9 -lib/libicutu.dll.a: d3357b6836a2d24f1f9786efc195e3f1 -lib/libicuuc.dll.a: 09afc25669dd4526dfe794a8cf9428a3 -lib/pkgconfig/icu-i18n.pc: 92c5e21b66b1c1103f95f3f24aba8407 -lib/pkgconfig/icu-io.pc: 7202507898b19d39e47af89913d2e48b -lib/pkgconfig/icu-le.pc: aecca7de6d94cd8fcea30f61818c3436 -lib/pkgconfig/icu-lx.pc: e3b92f49261a56c6fa42999929e0b614 -lib/pkgconfig/icu-uc.pc: 3c15a1901d200540ea9737e69473f721 -share/icu/57.1/LICENSE: 787d3b37867445c1cdd6f6167bd0e347 -share/icu/57.1/config/mh-mingw: fba135252f1f3bf3c41d9601239b91d6 -share/icu/57.1/install-sh: 5afe8eb5573965dfb58378e4e46f3813 -share/icu/57.1/mkinstalldirs: 7484dc240ad83e9908bed6d968fda871 -share/man/man1/derb.1: dd6ef195449ac6d5b737f593da48c645 -share/man/man1/genbrk.1: d582931cc6be22153312b877dfa10bda -share/man/man1/gencfu.1: 122f19c9001531b553d26d0df3daf5ff -share/man/man1/gencnval.1: 8e91c767edcfa124b530839d6773b186 -share/man/man1/gendict.1: c5bf41dd6f865bc6efec54e308ed3e2b -share/man/man1/genrb.1: 0334a4504849157d50d1dfc088857b90 -share/man/man1/icu-config.1: 669e5783bf5465d9828a8bee9af55257 -share/man/man1/makeconv.1: 454b0e32760b4ceb61c8b3d2ee16e989 -share/man/man1/pkgdata.1: 715020d492a3550929754c1a0df2e39c -share/man/man1/uconv.1: 80d9754f424b0468e719cc6616ba669d -share/man/man8/genccode.8: 47e0d56719f899919197ed154699910b -share/man/man8/gencmn.8: 666145011f4bdf0bd47178a93c94b710 -share/man/man8/gensprep.8: 1362b0c31dfa738c82a50fe8b7bec4d1 -share/man/man8/icupkg.8: dc12cc909e8e17758fda0ce8d241eefa \ No newline at end of file diff --git a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/export/conanmanifest.txt deleted file mode 100644 index b7d5c80b..00000000 --- a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/export/conanmanifest.txt +++ /dev/null @@ -1,2 +0,0 @@ -1499107210 -conanfile.py: 3efebe46ba6af17316bd4e2a6fffef0c diff --git a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/970e773c5651dc2560f86200a4ea56c23f568ff9/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/970e773c5651dc2560f86200a4ea56c23f568ff9/conanmanifest.txt deleted file mode 100644 index 888563eb..00000000 --- a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/970e773c5651dc2560f86200a4ea56c23f568ff9/conanmanifest.txt +++ /dev/null @@ -1,187 +0,0 @@ -1499107660 -bin/icudt59.dll: 2a60bfe06670d8605ae7fc97c4ec2db7 -bin/icuin59.dll: d0a46fdd146a1bd68dde8bcb6b019470 -bin/icuio59.dll: 1fb60d06bcb4a5811e503a679b28dd67 -bin/icutest59.dll: 71bd203b8b2b930ca35240937c0f5429 -bin/icutu59.dll: fb0e6e2ee5c12c4809007747fcc23ad4 -bin/icuuc59.dll: 405d599ca8b2fbf78e6efeda65fdfffb -conaninfo.txt: b0fbb0ff195375b137bed8cc0921caad -include/unicode/alphaindex.h: c4e73b7d46eacc8fa67691e4dd0b5ecc -include/unicode/appendable.h: deea01996ebb26600e2dde91ed196395 -include/unicode/basictz.h: 01cabd21915d2cee7d2ef7787240e8f2 -include/unicode/brkiter.h: 03b569a42e7dae96c0c86ad2c8d3bd00 -include/unicode/bytestream.h: 61e720935437b6830d58b216918552d2 -include/unicode/bytestrie.h: b61efc3e639298f2a6c19fec6d0622f5 -include/unicode/bytestriebuilder.h: 62d2640165c997f0abe27994f59318e3 -include/unicode/calendar.h: 759cbc7bd35d6efc0a4976dd753eb485 -include/unicode/caniter.h: 330f1b6de404cfb24479f009926890f2 -include/unicode/casemap.h: 61bbc0c334ada3bea9920815ce033de4 -include/unicode/char16ptr.h: 06b3963db87be73f87dac310136fc58c -include/unicode/chariter.h: 362ade4f54a9fa6f1c845078440e2b03 -include/unicode/choicfmt.h: b12a447a93d96d3a6080c978dfdecdb4 -include/unicode/coleitr.h: f03e36876d1a9829eae20fab28f32d6a -include/unicode/coll.h: 7d6cddc98e3227bd2277afa6d7793a50 -include/unicode/compactdecimalformat.h: b3bdc4cc4ea3b3af9a930614ef68db37 -include/unicode/curramt.h: 323107674df349a27d624663757447e4 -include/unicode/currpinf.h: 18f3f5825fd0511a670d7eff90201719 -include/unicode/currunit.h: 4b1c4900fd9cee8de157f549cf8d47f0 -include/unicode/datefmt.h: c07976e59ac1c1c08c98bf9d4e4c3587 -include/unicode/dbbi.h: db0a5e6e9dd092466fbbe21e949e4820 -include/unicode/dcfmtsym.h: eafe4061e7fad4ebe1a3a11ea219c12b -include/unicode/decimfmt.h: fec30b356bf6a646a172977caf2678ee -include/unicode/docmain.h: 49875d4c4b781f05d1c51668c74b94bb -include/unicode/dtfmtsym.h: 4fec8e6662b9914a8d99b2a75ce75a5a -include/unicode/dtintrv.h: 05a46fbf5f15b7bb2ba59f44814ac095 -include/unicode/dtitvfmt.h: 5c42410d99e25e140d8e84af39139512 -include/unicode/dtitvinf.h: e7eddd3476b1aadb8bb17350985081d6 -include/unicode/dtptngen.h: 4edbf8188c936b808141a17e24f6c17e -include/unicode/dtrule.h: c0ad9c5a662d96a067b3687c6b788fd6 -include/unicode/edits.h: 0d3660bc8cb14c5e78bb0fba7438e184 -include/unicode/enumset.h: 488a530c2f5d1727105b317bfb38ffab -include/unicode/errorcode.h: 200ad3b02dcd2eda1545afa64f26211d -include/unicode/fieldpos.h: 7b200989ccaf13e87506ff8a9a8352c1 -include/unicode/fmtable.h: ef9c81283b88d29b6b77d2c68896d166 -include/unicode/format.h: 21bfd1ffede54a82d257a30f623ae117 -include/unicode/fpositer.h: 0b8be269e646080334eb0db252708fa1 -include/unicode/gender.h: f76ef0004a630139b9636327e22f52cf -include/unicode/gregocal.h: dadf449275698c6eb227c86c90c84f5b -include/unicode/icudataver.h: 64966d178a3ba96a36698afd0c9033ac -include/unicode/icuplug.h: 1a4b0dfe535992811342f87165dfc128 -include/unicode/idna.h: 935119343007e6e8267e34d3217e73ef -include/unicode/listformatter.h: 454de478acb396e0646bc756226986b0 -include/unicode/localpointer.h: 032493d057b13fcc5d7d264ec1349ecd -include/unicode/locdspnm.h: 75098c2fc6615d040e8b5204e27918f8 -include/unicode/locid.h: 34733130bd4387fa544d6761034a0955 -include/unicode/measfmt.h: c289038b60c170659cec114a06b75ec4 -include/unicode/measunit.h: 9f937c7b82e74afdf577427e5abef253 -include/unicode/measure.h: 907a564bb50d5a3b3de69b61a095ac49 -include/unicode/messagepattern.h: ddb001f5da316149ced07415fddfbbe1 -include/unicode/msgfmt.h: 92fdcc17d1cc5be345a65b9c5028b814 -include/unicode/normalizer2.h: 1f8ec62f9f338f429627c61fb797d12a -include/unicode/normlzr.h: 1acf5026f3c915a30405c961c5045f51 -include/unicode/numfmt.h: 2e869d45a97e3366930352561becf1f7 -include/unicode/numsys.h: 966281097c9a71c7ce80de4738bbaf4b -include/unicode/parseerr.h: 82430679207228ecccebf2ac9a0dc226 -include/unicode/parsepos.h: d465f317154c05dae43efe1975c2254b -include/unicode/platform.h: 8ccf4dfd92fdd1d8076ed97a83f4ff0e -include/unicode/plurfmt.h: 7f33dc3d5b6c677e920b388e66688d6e -include/unicode/plurrule.h: efb1059c8f408ab3df8a355625aa91ac -include/unicode/ptypes.h: c124ecdb51748de2a5900c42f64fa33e -include/unicode/putil.h: f594f056f0e8fa7e7d2ee9e3772f1465 -include/unicode/rbbi.h: 10e5ea07511aad18458a2bb59c302fce -include/unicode/rbnf.h: 46a62b91bbf605d0fc90de27c0c28ade -include/unicode/rbtz.h: 6adc59fe9f2ec0203fad1bb291ceb2be -include/unicode/regex.h: 2e5c4264f79b43bc754a558f5d9ef81d -include/unicode/region.h: 9975298932902d63b823382424ecb04f -include/unicode/reldatefmt.h: fe0bf48d5fae4130b3e1d97da05b8147 -include/unicode/rep.h: ad2f3d61aabf5507f9670e17adc4f3e0 -include/unicode/resbund.h: 2e5313c39e2d8e644fefb5fda9830032 -include/unicode/schriter.h: 10ebc14456ec8a08190a1d8484d865c8 -include/unicode/scientificnumberformatter.h: 19c921c0a75274bdd13ae9e70354b9b9 -include/unicode/search.h: 3a213657ab777b638423df43e775ead6 -include/unicode/selfmt.h: f31478edaee06e562fc70fe4bffb39f7 -include/unicode/simpleformatter.h: 32f8edf8033ddcd3d89560aca235d2b1 -include/unicode/simpletz.h: b38692fd7ed1ecd8474412602bb43a7a -include/unicode/smpdtfmt.h: 0cddd4d1f197beddae2bf6d6e569b414 -include/unicode/sortkey.h: 76daf42075f7fdeeb06215922144bd87 -include/unicode/std_string.h: 57499f3b70cb13b85da38ecaed834924 -include/unicode/strenum.h: e23cde5594426e607d37d59252ed7542 -include/unicode/stringpiece.h: 2c7657b53e2cd414c5dc2aac429e8be9 -include/unicode/stringtriebuilder.h: 596067734fd5ecbf08ef1a5b29f7c521 -include/unicode/stsearch.h: c75b420ffcf6cb64c1c70fbdce1ec303 -include/unicode/symtable.h: aaa0d4278cc7c873390133c81319afe4 -include/unicode/tblcoll.h: 593c21ed8376bcfab87993dfdb24f579 -include/unicode/timezone.h: e0b13f33042ae96d152da2dfac53895a -include/unicode/tmunit.h: 47bad5bb37ad95cf4aa966962f672247 -include/unicode/tmutamt.h: 7e216295ad757e1e7050a27b4cbb04c4 -include/unicode/tmutfmt.h: 3e66e10feff34abe4f606c544bf56a98 -include/unicode/translit.h: cd5eb1480620fe72661af2c5420030c7 -include/unicode/tzfmt.h: cc77e978689ef62e83fbf50297da7068 -include/unicode/tznames.h: fc0fd902a3ab39c3ecd5376affa3e091 -include/unicode/tzrule.h: adc2e3690a81499fa482f09a7c891e3a -include/unicode/tztrans.h: ddc16397303c7c3a6cdb51d6cae76c9c -include/unicode/ubidi.h: 3c3447aff91ca3aba39294f283fc0a83 -include/unicode/ubrk.h: c4d61d02474b921b6deabf19730f2d93 -include/unicode/ucal.h: 85fbc0a93c781ff4f283abf56213548f -include/unicode/ucasemap.h: bbc08907ca608e090dd2551dae7f5063 -include/unicode/ucat.h: 9887bf7cefa89c96630bcd3757663ec0 -include/unicode/uchar.h: d0caa0cad8f0760769e7269c8e27b2f0 -include/unicode/ucharstrie.h: a831881a1c5f601a27a96107a9c93b40 -include/unicode/ucharstriebuilder.h: aab813b785d803391adad3e89eae430b -include/unicode/uchriter.h: 26dfb5f728be01852cb52402fc018235 -include/unicode/uclean.h: 7b7b73a66324b026c775cf2f467108f3 -include/unicode/ucnv.h: 8925fbf6e9921bf45b485c31ee4124ed -include/unicode/ucnv_cb.h: 2132a185faeb5cd603344098e4f685f5 -include/unicode/ucnv_err.h: 641fb44cae3f286f307ce2e445b3589f -include/unicode/ucnvsel.h: 5f129128041b8ec652fa13bc007c7168 -include/unicode/ucol.h: c1ae405a33aca9786cf4125a7ea30854 -include/unicode/ucoleitr.h: c5f7f5720c58a63df5277f4c275813f7 -include/unicode/uconfig.h: 9cd76a9d2008c77116c1e3d34cd5c20f -include/unicode/ucsdet.h: 84999c29e225c4d11a89e2c691892c6a -include/unicode/ucurr.h: 22ebc57d60d31ca6e5be08b5dcfabb36 -include/unicode/udat.h: 4fceb68710dfed43778da6b5dabf5b81 -include/unicode/udata.h: 8ffc7d27c431eaa31709bed2450b1987 -include/unicode/udateintervalformat.h: ec7b522f7376efc94280461a798e122e -include/unicode/udatpg.h: c13609bba2d9cdd91475c80f2934e8b9 -include/unicode/udisplaycontext.h: d85a18d600e97fcdbb4177583633e20b -include/unicode/uenum.h: 9f0843888060124393c5b6d3ac1d0494 -include/unicode/ufieldpositer.h: 9a2caec923d0bbc2c167e17a42e2ff74 -include/unicode/uformattable.h: 5a52db48b81c8e2d770353f347c64d1a -include/unicode/ugender.h: 23ec9fe7670c419c57462625cc2afaee -include/unicode/uidna.h: ffd28dd05da8ad3813d2d41b1f01c517 -include/unicode/uiter.h: 50847b964f6fb474e0290150338c9f27 -include/unicode/uldnames.h: 6fba02d8cd519586d066c4f4e5eb1640 -include/unicode/ulistformatter.h: 2d9feb1e057219dd43898dc23da7e476 -include/unicode/uloc.h: 03e3d991937d286c75e3206c5494646e -include/unicode/ulocdata.h: f282e04c22e0616817a04f80f536f688 -include/unicode/umachine.h: 1d6f3281c1b8a8eb9ba4dbd670d6af7c -include/unicode/umisc.h: c0dc3caac921970252ee4bbc1bddc43a -include/unicode/umsg.h: ed50cc36346ea063fd3681385064ead3 -include/unicode/unifilt.h: 6e228f15b2fa8f564abb51500674d72b -include/unicode/unifunct.h: a9f9e469e946e88a9c64919c468e5d62 -include/unicode/unimatch.h: 6c2cbf80f1f605b165bebc5ae8e12aaa -include/unicode/unirepl.h: a021ccf09bb715625b9677bdc7700584 -include/unicode/uniset.h: 501821f127cc093433327c44909a7575 -include/unicode/unistr.h: 7dfa9c3626c3dcf71390eb50b57a3716 -include/unicode/unorm.h: 39bbe48ae8534029dab7f097188c8b31 -include/unicode/unorm2.h: eb8b5bb935701284a4480a2facb7f0b8 -include/unicode/unum.h: ac906837bfd6caac1259c6f7913b94a2 -include/unicode/unumsys.h: dfc4fd29fa10dea8de5981a79badf4ec -include/unicode/uobject.h: 7cd3e374dd78321b69313bc3f416ed4c -include/unicode/upluralrules.h: f2b80b6b9a9ea8edae1aba78830f4789 -include/unicode/uregex.h: bf69ecde49c5418db27194cdad8ee0ff -include/unicode/uregion.h: 6d72ea56f92d9da81cc8b3e8d47a3f04 -include/unicode/ureldatefmt.h: 480530556bbe46fbd5996fa86a878b98 -include/unicode/urename.h: 0685d5314e8537121559a98ef7a143c4 -include/unicode/urep.h: 04cce4d1e9a074179ec8e7ba6f5f02ee -include/unicode/ures.h: d9d89fedbe10df5011c03a8238572e07 -include/unicode/uscript.h: acd32dac19000101a28b81eeaec612e8 -include/unicode/usearch.h: afd9eb69236e27449e7249264bfeae56 -include/unicode/uset.h: 69481ff3106e5b8cc6f36cfa3c23225a -include/unicode/usetiter.h: 3b9ae44eb5a47ce6e20ed00fc45c0cb6 -include/unicode/ushape.h: 1f89bcc0f93cb5df8059e8a2717009a7 -include/unicode/uspoof.h: 140a8c6518698a56c917d18ef6dbd2b7 -include/unicode/usprep.h: d4a57d01cb61f594c84c3fffac8a87d5 -include/unicode/ustdio.h: 7d32dbc31f136ce97096cd25429dceef -include/unicode/ustream.h: 211a3e48dbe1921522d956bef0747361 -include/unicode/ustring.h: 12b77389aad7d0b76c86d405566840a9 -include/unicode/ustringtrie.h: 08f062a843c6bf78d8d95b1ba566d6ec -include/unicode/utext.h: a8cf1115720b99ca855918f92343ce8b -include/unicode/utf.h: b7827e05a4bc90b9ca27ab14491ca1bd -include/unicode/utf16.h: 4447226555e524f4c0f596c197ae65d5 -include/unicode/utf32.h: 076c1d2025d949556d976b9e6aa01410 -include/unicode/utf8.h: 3afe43776eb2e8d3448551c9a6996a12 -include/unicode/utf_old.h: 0c46b30f4140adf50fe9ed350815a0d8 -include/unicode/utmscale.h: 8ea13d3120de87b49a240014ecfdce7f -include/unicode/utrace.h: 0216d0e5e1e1e10e014f3a8882fa0760 -include/unicode/utrans.h: 25231668b49b0de8ca1db79ff0f348d8 -include/unicode/utypes.h: a3c935253e46b4c313b0ee58cadcd04d -include/unicode/uvernum.h: 8044bea1ca820f40b1e82b2ae5cbfbfa -include/unicode/uversion.h: b3e0658e920f56306839af39fa5f35b7 -include/unicode/vtzone.h: 138782b1f4177e15964c21e7e8cb21d3 -lib/icudt.lib: abf4c53a45afe7fe2232b7461db1f39c -lib/icuin.lib: 469731f3bb6c6c483a42168a9afff5fc -lib/icuio.lib: 62eebc954d46dbf22cf7e838f8bf0292 -lib/icutest.lib: 2dfda9f30ee5cd92c8e9752f19f1311f -lib/icutu.lib: 2ddf814a788e2fb77a9d06f38142a3ce -lib/icuuc.lib: 140e4ca5bbf6f88f504a2fd4bfafdd1d diff --git a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/c85f9b402dd4d46acdf074e1c63b768a41181d7a/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/c85f9b402dd4d46acdf074e1c63b768a41181d7a/conanmanifest.txt deleted file mode 100644 index 948bc2f1..00000000 --- a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/c85f9b402dd4d46acdf074e1c63b768a41181d7a/conanmanifest.txt +++ /dev/null @@ -1,187 +0,0 @@ -1499329586 -bin/icudt59.dll: c23a39dad5b1810d53b142a79dd8040e -bin/icuin59.dll: c6904963eefd97137dd301db55c28f52 -bin/icuio59.dll: bd28d124d21c1aff1b77de11ef952447 -bin/icutest59.dll: e59aadd25c91d6b21fbdca3f18c0f3c3 -bin/icutu59.dll: 2256b957799e3816cfaedc6871f0be90 -bin/icuuc59.dll: 9a9c7f35b1fa2f93e557710e89eede8a -conaninfo.txt: 830576b304c6027b1312b1ed5165bd4b -include/unicode/alphaindex.h: c4e73b7d46eacc8fa67691e4dd0b5ecc -include/unicode/appendable.h: deea01996ebb26600e2dde91ed196395 -include/unicode/basictz.h: 01cabd21915d2cee7d2ef7787240e8f2 -include/unicode/brkiter.h: 03b569a42e7dae96c0c86ad2c8d3bd00 -include/unicode/bytestream.h: 61e720935437b6830d58b216918552d2 -include/unicode/bytestrie.h: b61efc3e639298f2a6c19fec6d0622f5 -include/unicode/bytestriebuilder.h: 62d2640165c997f0abe27994f59318e3 -include/unicode/calendar.h: 759cbc7bd35d6efc0a4976dd753eb485 -include/unicode/caniter.h: 330f1b6de404cfb24479f009926890f2 -include/unicode/casemap.h: 61bbc0c334ada3bea9920815ce033de4 -include/unicode/char16ptr.h: 06b3963db87be73f87dac310136fc58c -include/unicode/chariter.h: 362ade4f54a9fa6f1c845078440e2b03 -include/unicode/choicfmt.h: b12a447a93d96d3a6080c978dfdecdb4 -include/unicode/coleitr.h: f03e36876d1a9829eae20fab28f32d6a -include/unicode/coll.h: 7d6cddc98e3227bd2277afa6d7793a50 -include/unicode/compactdecimalformat.h: b3bdc4cc4ea3b3af9a930614ef68db37 -include/unicode/curramt.h: 323107674df349a27d624663757447e4 -include/unicode/currpinf.h: 18f3f5825fd0511a670d7eff90201719 -include/unicode/currunit.h: 4b1c4900fd9cee8de157f549cf8d47f0 -include/unicode/datefmt.h: c07976e59ac1c1c08c98bf9d4e4c3587 -include/unicode/dbbi.h: db0a5e6e9dd092466fbbe21e949e4820 -include/unicode/dcfmtsym.h: eafe4061e7fad4ebe1a3a11ea219c12b -include/unicode/decimfmt.h: fec30b356bf6a646a172977caf2678ee -include/unicode/docmain.h: 49875d4c4b781f05d1c51668c74b94bb -include/unicode/dtfmtsym.h: 4fec8e6662b9914a8d99b2a75ce75a5a -include/unicode/dtintrv.h: 05a46fbf5f15b7bb2ba59f44814ac095 -include/unicode/dtitvfmt.h: 5c42410d99e25e140d8e84af39139512 -include/unicode/dtitvinf.h: e7eddd3476b1aadb8bb17350985081d6 -include/unicode/dtptngen.h: 4edbf8188c936b808141a17e24f6c17e -include/unicode/dtrule.h: c0ad9c5a662d96a067b3687c6b788fd6 -include/unicode/edits.h: 0d3660bc8cb14c5e78bb0fba7438e184 -include/unicode/enumset.h: 488a530c2f5d1727105b317bfb38ffab -include/unicode/errorcode.h: 200ad3b02dcd2eda1545afa64f26211d -include/unicode/fieldpos.h: 7b200989ccaf13e87506ff8a9a8352c1 -include/unicode/fmtable.h: ef9c81283b88d29b6b77d2c68896d166 -include/unicode/format.h: 21bfd1ffede54a82d257a30f623ae117 -include/unicode/fpositer.h: 0b8be269e646080334eb0db252708fa1 -include/unicode/gender.h: f76ef0004a630139b9636327e22f52cf -include/unicode/gregocal.h: dadf449275698c6eb227c86c90c84f5b -include/unicode/icudataver.h: 64966d178a3ba96a36698afd0c9033ac -include/unicode/icuplug.h: 1a4b0dfe535992811342f87165dfc128 -include/unicode/idna.h: 935119343007e6e8267e34d3217e73ef -include/unicode/listformatter.h: 454de478acb396e0646bc756226986b0 -include/unicode/localpointer.h: 032493d057b13fcc5d7d264ec1349ecd -include/unicode/locdspnm.h: 75098c2fc6615d040e8b5204e27918f8 -include/unicode/locid.h: 34733130bd4387fa544d6761034a0955 -include/unicode/measfmt.h: c289038b60c170659cec114a06b75ec4 -include/unicode/measunit.h: 9f937c7b82e74afdf577427e5abef253 -include/unicode/measure.h: 907a564bb50d5a3b3de69b61a095ac49 -include/unicode/messagepattern.h: ddb001f5da316149ced07415fddfbbe1 -include/unicode/msgfmt.h: 92fdcc17d1cc5be345a65b9c5028b814 -include/unicode/normalizer2.h: 1f8ec62f9f338f429627c61fb797d12a -include/unicode/normlzr.h: 1acf5026f3c915a30405c961c5045f51 -include/unicode/numfmt.h: 2e869d45a97e3366930352561becf1f7 -include/unicode/numsys.h: 966281097c9a71c7ce80de4738bbaf4b -include/unicode/parseerr.h: 82430679207228ecccebf2ac9a0dc226 -include/unicode/parsepos.h: d465f317154c05dae43efe1975c2254b -include/unicode/platform.h: 8ccf4dfd92fdd1d8076ed97a83f4ff0e -include/unicode/plurfmt.h: 7f33dc3d5b6c677e920b388e66688d6e -include/unicode/plurrule.h: efb1059c8f408ab3df8a355625aa91ac -include/unicode/ptypes.h: c124ecdb51748de2a5900c42f64fa33e -include/unicode/putil.h: f594f056f0e8fa7e7d2ee9e3772f1465 -include/unicode/rbbi.h: 10e5ea07511aad18458a2bb59c302fce -include/unicode/rbnf.h: 46a62b91bbf605d0fc90de27c0c28ade -include/unicode/rbtz.h: 6adc59fe9f2ec0203fad1bb291ceb2be -include/unicode/regex.h: 2e5c4264f79b43bc754a558f5d9ef81d -include/unicode/region.h: 9975298932902d63b823382424ecb04f -include/unicode/reldatefmt.h: fe0bf48d5fae4130b3e1d97da05b8147 -include/unicode/rep.h: ad2f3d61aabf5507f9670e17adc4f3e0 -include/unicode/resbund.h: 2e5313c39e2d8e644fefb5fda9830032 -include/unicode/schriter.h: 10ebc14456ec8a08190a1d8484d865c8 -include/unicode/scientificnumberformatter.h: 19c921c0a75274bdd13ae9e70354b9b9 -include/unicode/search.h: 3a213657ab777b638423df43e775ead6 -include/unicode/selfmt.h: f31478edaee06e562fc70fe4bffb39f7 -include/unicode/simpleformatter.h: 32f8edf8033ddcd3d89560aca235d2b1 -include/unicode/simpletz.h: b38692fd7ed1ecd8474412602bb43a7a -include/unicode/smpdtfmt.h: 0cddd4d1f197beddae2bf6d6e569b414 -include/unicode/sortkey.h: 76daf42075f7fdeeb06215922144bd87 -include/unicode/std_string.h: 57499f3b70cb13b85da38ecaed834924 -include/unicode/strenum.h: e23cde5594426e607d37d59252ed7542 -include/unicode/stringpiece.h: 2c7657b53e2cd414c5dc2aac429e8be9 -include/unicode/stringtriebuilder.h: 596067734fd5ecbf08ef1a5b29f7c521 -include/unicode/stsearch.h: c75b420ffcf6cb64c1c70fbdce1ec303 -include/unicode/symtable.h: aaa0d4278cc7c873390133c81319afe4 -include/unicode/tblcoll.h: 593c21ed8376bcfab87993dfdb24f579 -include/unicode/timezone.h: e0b13f33042ae96d152da2dfac53895a -include/unicode/tmunit.h: 47bad5bb37ad95cf4aa966962f672247 -include/unicode/tmutamt.h: 7e216295ad757e1e7050a27b4cbb04c4 -include/unicode/tmutfmt.h: 3e66e10feff34abe4f606c544bf56a98 -include/unicode/translit.h: cd5eb1480620fe72661af2c5420030c7 -include/unicode/tzfmt.h: cc77e978689ef62e83fbf50297da7068 -include/unicode/tznames.h: fc0fd902a3ab39c3ecd5376affa3e091 -include/unicode/tzrule.h: adc2e3690a81499fa482f09a7c891e3a -include/unicode/tztrans.h: ddc16397303c7c3a6cdb51d6cae76c9c -include/unicode/ubidi.h: 3c3447aff91ca3aba39294f283fc0a83 -include/unicode/ubrk.h: c4d61d02474b921b6deabf19730f2d93 -include/unicode/ucal.h: 85fbc0a93c781ff4f283abf56213548f -include/unicode/ucasemap.h: bbc08907ca608e090dd2551dae7f5063 -include/unicode/ucat.h: 9887bf7cefa89c96630bcd3757663ec0 -include/unicode/uchar.h: d0caa0cad8f0760769e7269c8e27b2f0 -include/unicode/ucharstrie.h: a831881a1c5f601a27a96107a9c93b40 -include/unicode/ucharstriebuilder.h: aab813b785d803391adad3e89eae430b -include/unicode/uchriter.h: 26dfb5f728be01852cb52402fc018235 -include/unicode/uclean.h: 7b7b73a66324b026c775cf2f467108f3 -include/unicode/ucnv.h: 8925fbf6e9921bf45b485c31ee4124ed -include/unicode/ucnv_cb.h: 2132a185faeb5cd603344098e4f685f5 -include/unicode/ucnv_err.h: 641fb44cae3f286f307ce2e445b3589f -include/unicode/ucnvsel.h: 5f129128041b8ec652fa13bc007c7168 -include/unicode/ucol.h: c1ae405a33aca9786cf4125a7ea30854 -include/unicode/ucoleitr.h: c5f7f5720c58a63df5277f4c275813f7 -include/unicode/uconfig.h: 9cd76a9d2008c77116c1e3d34cd5c20f -include/unicode/ucsdet.h: 84999c29e225c4d11a89e2c691892c6a -include/unicode/ucurr.h: 22ebc57d60d31ca6e5be08b5dcfabb36 -include/unicode/udat.h: 4fceb68710dfed43778da6b5dabf5b81 -include/unicode/udata.h: 8ffc7d27c431eaa31709bed2450b1987 -include/unicode/udateintervalformat.h: ec7b522f7376efc94280461a798e122e -include/unicode/udatpg.h: c13609bba2d9cdd91475c80f2934e8b9 -include/unicode/udisplaycontext.h: d85a18d600e97fcdbb4177583633e20b -include/unicode/uenum.h: 9f0843888060124393c5b6d3ac1d0494 -include/unicode/ufieldpositer.h: 9a2caec923d0bbc2c167e17a42e2ff74 -include/unicode/uformattable.h: 5a52db48b81c8e2d770353f347c64d1a -include/unicode/ugender.h: 23ec9fe7670c419c57462625cc2afaee -include/unicode/uidna.h: ffd28dd05da8ad3813d2d41b1f01c517 -include/unicode/uiter.h: 50847b964f6fb474e0290150338c9f27 -include/unicode/uldnames.h: 6fba02d8cd519586d066c4f4e5eb1640 -include/unicode/ulistformatter.h: 2d9feb1e057219dd43898dc23da7e476 -include/unicode/uloc.h: 03e3d991937d286c75e3206c5494646e -include/unicode/ulocdata.h: f282e04c22e0616817a04f80f536f688 -include/unicode/umachine.h: 1d6f3281c1b8a8eb9ba4dbd670d6af7c -include/unicode/umisc.h: c0dc3caac921970252ee4bbc1bddc43a -include/unicode/umsg.h: ed50cc36346ea063fd3681385064ead3 -include/unicode/unifilt.h: 6e228f15b2fa8f564abb51500674d72b -include/unicode/unifunct.h: a9f9e469e946e88a9c64919c468e5d62 -include/unicode/unimatch.h: 6c2cbf80f1f605b165bebc5ae8e12aaa -include/unicode/unirepl.h: a021ccf09bb715625b9677bdc7700584 -include/unicode/uniset.h: 501821f127cc093433327c44909a7575 -include/unicode/unistr.h: 7dfa9c3626c3dcf71390eb50b57a3716 -include/unicode/unorm.h: 39bbe48ae8534029dab7f097188c8b31 -include/unicode/unorm2.h: eb8b5bb935701284a4480a2facb7f0b8 -include/unicode/unum.h: ac906837bfd6caac1259c6f7913b94a2 -include/unicode/unumsys.h: dfc4fd29fa10dea8de5981a79badf4ec -include/unicode/uobject.h: 7cd3e374dd78321b69313bc3f416ed4c -include/unicode/upluralrules.h: f2b80b6b9a9ea8edae1aba78830f4789 -include/unicode/uregex.h: bf69ecde49c5418db27194cdad8ee0ff -include/unicode/uregion.h: 6d72ea56f92d9da81cc8b3e8d47a3f04 -include/unicode/ureldatefmt.h: 480530556bbe46fbd5996fa86a878b98 -include/unicode/urename.h: 0685d5314e8537121559a98ef7a143c4 -include/unicode/urep.h: 04cce4d1e9a074179ec8e7ba6f5f02ee -include/unicode/ures.h: d9d89fedbe10df5011c03a8238572e07 -include/unicode/uscript.h: acd32dac19000101a28b81eeaec612e8 -include/unicode/usearch.h: afd9eb69236e27449e7249264bfeae56 -include/unicode/uset.h: 69481ff3106e5b8cc6f36cfa3c23225a -include/unicode/usetiter.h: 3b9ae44eb5a47ce6e20ed00fc45c0cb6 -include/unicode/ushape.h: 1f89bcc0f93cb5df8059e8a2717009a7 -include/unicode/uspoof.h: 140a8c6518698a56c917d18ef6dbd2b7 -include/unicode/usprep.h: d4a57d01cb61f594c84c3fffac8a87d5 -include/unicode/ustdio.h: 7d32dbc31f136ce97096cd25429dceef -include/unicode/ustream.h: 211a3e48dbe1921522d956bef0747361 -include/unicode/ustring.h: 12b77389aad7d0b76c86d405566840a9 -include/unicode/ustringtrie.h: 08f062a843c6bf78d8d95b1ba566d6ec -include/unicode/utext.h: a8cf1115720b99ca855918f92343ce8b -include/unicode/utf.h: b7827e05a4bc90b9ca27ab14491ca1bd -include/unicode/utf16.h: 4447226555e524f4c0f596c197ae65d5 -include/unicode/utf32.h: 076c1d2025d949556d976b9e6aa01410 -include/unicode/utf8.h: 3afe43776eb2e8d3448551c9a6996a12 -include/unicode/utf_old.h: 0c46b30f4140adf50fe9ed350815a0d8 -include/unicode/utmscale.h: 8ea13d3120de87b49a240014ecfdce7f -include/unicode/utrace.h: 0216d0e5e1e1e10e014f3a8882fa0760 -include/unicode/utrans.h: 25231668b49b0de8ca1db79ff0f348d8 -include/unicode/utypes.h: a3c935253e46b4c313b0ee58cadcd04d -include/unicode/uvernum.h: 8044bea1ca820f40b1e82b2ae5cbfbfa -include/unicode/uversion.h: b3e0658e920f56306839af39fa5f35b7 -include/unicode/vtzone.h: 138782b1f4177e15964c21e7e8cb21d3 -lib/icudt.lib: 8521dc55a20637af8e7cae4453fdae92 -lib/icuin.lib: 0af113d81bab592d2b7c628476b0a715 -lib/icuio.lib: 6812ca214d913a3e0ea303ddf899ff71 -lib/icutest.lib: 1bd7477e81bf551abdd0e80412b85805 -lib/icutu.lib: a69d87281efd6ade323f7c449ded3bb4 -lib/icuuc.lib: 74d264685f3ac6b7df1333fcf486aa45 diff --git a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/c97b9e1abccf18d0aefcbcdef01d2c4689917df6/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/c97b9e1abccf18d0aefcbcdef01d2c4689917df6/conanmanifest.txt deleted file mode 100644 index e9b0ee71..00000000 --- a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/c97b9e1abccf18d0aefcbcdef01d2c4689917df6/conanmanifest.txt +++ /dev/null @@ -1,187 +0,0 @@ -1499105682 -bin/icudt59.dll: 6f7abc01bb1d3d9b4a077c27ec228984 -bin/icuin59.dll: 5db6329ab0e0201d72025de56fa9d6a4 -bin/icuio59.dll: 6d3032695a7c12d3cce58a887f2bc644 -bin/icutest59.dll: 425538ed08d6785902b1238e877bc623 -bin/icutu59.dll: 83e15197d0b59cf5500c0c93aa186748 -bin/icuuc59.dll: 1eb31fe82fca12998a9a37c4852e7272 -conaninfo.txt: ad06024880f91bf13cbd6b54c13cf611 -include/unicode/alphaindex.h: c4e73b7d46eacc8fa67691e4dd0b5ecc -include/unicode/appendable.h: deea01996ebb26600e2dde91ed196395 -include/unicode/basictz.h: 01cabd21915d2cee7d2ef7787240e8f2 -include/unicode/brkiter.h: 03b569a42e7dae96c0c86ad2c8d3bd00 -include/unicode/bytestream.h: 61e720935437b6830d58b216918552d2 -include/unicode/bytestrie.h: b61efc3e639298f2a6c19fec6d0622f5 -include/unicode/bytestriebuilder.h: 62d2640165c997f0abe27994f59318e3 -include/unicode/calendar.h: 759cbc7bd35d6efc0a4976dd753eb485 -include/unicode/caniter.h: 330f1b6de404cfb24479f009926890f2 -include/unicode/casemap.h: 61bbc0c334ada3bea9920815ce033de4 -include/unicode/char16ptr.h: 06b3963db87be73f87dac310136fc58c -include/unicode/chariter.h: 362ade4f54a9fa6f1c845078440e2b03 -include/unicode/choicfmt.h: b12a447a93d96d3a6080c978dfdecdb4 -include/unicode/coleitr.h: f03e36876d1a9829eae20fab28f32d6a -include/unicode/coll.h: 7d6cddc98e3227bd2277afa6d7793a50 -include/unicode/compactdecimalformat.h: b3bdc4cc4ea3b3af9a930614ef68db37 -include/unicode/curramt.h: 323107674df349a27d624663757447e4 -include/unicode/currpinf.h: 18f3f5825fd0511a670d7eff90201719 -include/unicode/currunit.h: 4b1c4900fd9cee8de157f549cf8d47f0 -include/unicode/datefmt.h: c07976e59ac1c1c08c98bf9d4e4c3587 -include/unicode/dbbi.h: db0a5e6e9dd092466fbbe21e949e4820 -include/unicode/dcfmtsym.h: eafe4061e7fad4ebe1a3a11ea219c12b -include/unicode/decimfmt.h: fec30b356bf6a646a172977caf2678ee -include/unicode/docmain.h: 49875d4c4b781f05d1c51668c74b94bb -include/unicode/dtfmtsym.h: 4fec8e6662b9914a8d99b2a75ce75a5a -include/unicode/dtintrv.h: 05a46fbf5f15b7bb2ba59f44814ac095 -include/unicode/dtitvfmt.h: 5c42410d99e25e140d8e84af39139512 -include/unicode/dtitvinf.h: e7eddd3476b1aadb8bb17350985081d6 -include/unicode/dtptngen.h: 4edbf8188c936b808141a17e24f6c17e -include/unicode/dtrule.h: c0ad9c5a662d96a067b3687c6b788fd6 -include/unicode/edits.h: 0d3660bc8cb14c5e78bb0fba7438e184 -include/unicode/enumset.h: 488a530c2f5d1727105b317bfb38ffab -include/unicode/errorcode.h: 200ad3b02dcd2eda1545afa64f26211d -include/unicode/fieldpos.h: 7b200989ccaf13e87506ff8a9a8352c1 -include/unicode/fmtable.h: ef9c81283b88d29b6b77d2c68896d166 -include/unicode/format.h: 21bfd1ffede54a82d257a30f623ae117 -include/unicode/fpositer.h: 0b8be269e646080334eb0db252708fa1 -include/unicode/gender.h: f76ef0004a630139b9636327e22f52cf -include/unicode/gregocal.h: dadf449275698c6eb227c86c90c84f5b -include/unicode/icudataver.h: 64966d178a3ba96a36698afd0c9033ac -include/unicode/icuplug.h: 1a4b0dfe535992811342f87165dfc128 -include/unicode/idna.h: 935119343007e6e8267e34d3217e73ef -include/unicode/listformatter.h: 454de478acb396e0646bc756226986b0 -include/unicode/localpointer.h: 032493d057b13fcc5d7d264ec1349ecd -include/unicode/locdspnm.h: 75098c2fc6615d040e8b5204e27918f8 -include/unicode/locid.h: 34733130bd4387fa544d6761034a0955 -include/unicode/measfmt.h: c289038b60c170659cec114a06b75ec4 -include/unicode/measunit.h: 9f937c7b82e74afdf577427e5abef253 -include/unicode/measure.h: 907a564bb50d5a3b3de69b61a095ac49 -include/unicode/messagepattern.h: ddb001f5da316149ced07415fddfbbe1 -include/unicode/msgfmt.h: 92fdcc17d1cc5be345a65b9c5028b814 -include/unicode/normalizer2.h: 1f8ec62f9f338f429627c61fb797d12a -include/unicode/normlzr.h: 1acf5026f3c915a30405c961c5045f51 -include/unicode/numfmt.h: 2e869d45a97e3366930352561becf1f7 -include/unicode/numsys.h: 966281097c9a71c7ce80de4738bbaf4b -include/unicode/parseerr.h: 82430679207228ecccebf2ac9a0dc226 -include/unicode/parsepos.h: d465f317154c05dae43efe1975c2254b -include/unicode/platform.h: 8ccf4dfd92fdd1d8076ed97a83f4ff0e -include/unicode/plurfmt.h: 7f33dc3d5b6c677e920b388e66688d6e -include/unicode/plurrule.h: efb1059c8f408ab3df8a355625aa91ac -include/unicode/ptypes.h: c124ecdb51748de2a5900c42f64fa33e -include/unicode/putil.h: f594f056f0e8fa7e7d2ee9e3772f1465 -include/unicode/rbbi.h: 10e5ea07511aad18458a2bb59c302fce -include/unicode/rbnf.h: 46a62b91bbf605d0fc90de27c0c28ade -include/unicode/rbtz.h: 6adc59fe9f2ec0203fad1bb291ceb2be -include/unicode/regex.h: 2e5c4264f79b43bc754a558f5d9ef81d -include/unicode/region.h: 9975298932902d63b823382424ecb04f -include/unicode/reldatefmt.h: fe0bf48d5fae4130b3e1d97da05b8147 -include/unicode/rep.h: ad2f3d61aabf5507f9670e17adc4f3e0 -include/unicode/resbund.h: 2e5313c39e2d8e644fefb5fda9830032 -include/unicode/schriter.h: 10ebc14456ec8a08190a1d8484d865c8 -include/unicode/scientificnumberformatter.h: 19c921c0a75274bdd13ae9e70354b9b9 -include/unicode/search.h: 3a213657ab777b638423df43e775ead6 -include/unicode/selfmt.h: f31478edaee06e562fc70fe4bffb39f7 -include/unicode/simpleformatter.h: 32f8edf8033ddcd3d89560aca235d2b1 -include/unicode/simpletz.h: b38692fd7ed1ecd8474412602bb43a7a -include/unicode/smpdtfmt.h: 0cddd4d1f197beddae2bf6d6e569b414 -include/unicode/sortkey.h: 76daf42075f7fdeeb06215922144bd87 -include/unicode/std_string.h: 57499f3b70cb13b85da38ecaed834924 -include/unicode/strenum.h: e23cde5594426e607d37d59252ed7542 -include/unicode/stringpiece.h: 2c7657b53e2cd414c5dc2aac429e8be9 -include/unicode/stringtriebuilder.h: 596067734fd5ecbf08ef1a5b29f7c521 -include/unicode/stsearch.h: c75b420ffcf6cb64c1c70fbdce1ec303 -include/unicode/symtable.h: aaa0d4278cc7c873390133c81319afe4 -include/unicode/tblcoll.h: 593c21ed8376bcfab87993dfdb24f579 -include/unicode/timezone.h: e0b13f33042ae96d152da2dfac53895a -include/unicode/tmunit.h: 47bad5bb37ad95cf4aa966962f672247 -include/unicode/tmutamt.h: 7e216295ad757e1e7050a27b4cbb04c4 -include/unicode/tmutfmt.h: 3e66e10feff34abe4f606c544bf56a98 -include/unicode/translit.h: cd5eb1480620fe72661af2c5420030c7 -include/unicode/tzfmt.h: cc77e978689ef62e83fbf50297da7068 -include/unicode/tznames.h: fc0fd902a3ab39c3ecd5376affa3e091 -include/unicode/tzrule.h: adc2e3690a81499fa482f09a7c891e3a -include/unicode/tztrans.h: ddc16397303c7c3a6cdb51d6cae76c9c -include/unicode/ubidi.h: 3c3447aff91ca3aba39294f283fc0a83 -include/unicode/ubrk.h: c4d61d02474b921b6deabf19730f2d93 -include/unicode/ucal.h: 85fbc0a93c781ff4f283abf56213548f -include/unicode/ucasemap.h: bbc08907ca608e090dd2551dae7f5063 -include/unicode/ucat.h: 9887bf7cefa89c96630bcd3757663ec0 -include/unicode/uchar.h: d0caa0cad8f0760769e7269c8e27b2f0 -include/unicode/ucharstrie.h: a831881a1c5f601a27a96107a9c93b40 -include/unicode/ucharstriebuilder.h: aab813b785d803391adad3e89eae430b -include/unicode/uchriter.h: 26dfb5f728be01852cb52402fc018235 -include/unicode/uclean.h: 7b7b73a66324b026c775cf2f467108f3 -include/unicode/ucnv.h: 8925fbf6e9921bf45b485c31ee4124ed -include/unicode/ucnv_cb.h: 2132a185faeb5cd603344098e4f685f5 -include/unicode/ucnv_err.h: 641fb44cae3f286f307ce2e445b3589f -include/unicode/ucnvsel.h: 5f129128041b8ec652fa13bc007c7168 -include/unicode/ucol.h: c1ae405a33aca9786cf4125a7ea30854 -include/unicode/ucoleitr.h: c5f7f5720c58a63df5277f4c275813f7 -include/unicode/uconfig.h: 9cd76a9d2008c77116c1e3d34cd5c20f -include/unicode/ucsdet.h: 84999c29e225c4d11a89e2c691892c6a -include/unicode/ucurr.h: 22ebc57d60d31ca6e5be08b5dcfabb36 -include/unicode/udat.h: 4fceb68710dfed43778da6b5dabf5b81 -include/unicode/udata.h: 8ffc7d27c431eaa31709bed2450b1987 -include/unicode/udateintervalformat.h: ec7b522f7376efc94280461a798e122e -include/unicode/udatpg.h: c13609bba2d9cdd91475c80f2934e8b9 -include/unicode/udisplaycontext.h: d85a18d600e97fcdbb4177583633e20b -include/unicode/uenum.h: 9f0843888060124393c5b6d3ac1d0494 -include/unicode/ufieldpositer.h: 9a2caec923d0bbc2c167e17a42e2ff74 -include/unicode/uformattable.h: 5a52db48b81c8e2d770353f347c64d1a -include/unicode/ugender.h: 23ec9fe7670c419c57462625cc2afaee -include/unicode/uidna.h: ffd28dd05da8ad3813d2d41b1f01c517 -include/unicode/uiter.h: 50847b964f6fb474e0290150338c9f27 -include/unicode/uldnames.h: 6fba02d8cd519586d066c4f4e5eb1640 -include/unicode/ulistformatter.h: 2d9feb1e057219dd43898dc23da7e476 -include/unicode/uloc.h: 03e3d991937d286c75e3206c5494646e -include/unicode/ulocdata.h: f282e04c22e0616817a04f80f536f688 -include/unicode/umachine.h: 1d6f3281c1b8a8eb9ba4dbd670d6af7c -include/unicode/umisc.h: c0dc3caac921970252ee4bbc1bddc43a -include/unicode/umsg.h: ed50cc36346ea063fd3681385064ead3 -include/unicode/unifilt.h: 6e228f15b2fa8f564abb51500674d72b -include/unicode/unifunct.h: a9f9e469e946e88a9c64919c468e5d62 -include/unicode/unimatch.h: 6c2cbf80f1f605b165bebc5ae8e12aaa -include/unicode/unirepl.h: a021ccf09bb715625b9677bdc7700584 -include/unicode/uniset.h: 501821f127cc093433327c44909a7575 -include/unicode/unistr.h: 7dfa9c3626c3dcf71390eb50b57a3716 -include/unicode/unorm.h: 39bbe48ae8534029dab7f097188c8b31 -include/unicode/unorm2.h: eb8b5bb935701284a4480a2facb7f0b8 -include/unicode/unum.h: ac906837bfd6caac1259c6f7913b94a2 -include/unicode/unumsys.h: dfc4fd29fa10dea8de5981a79badf4ec -include/unicode/uobject.h: 7cd3e374dd78321b69313bc3f416ed4c -include/unicode/upluralrules.h: f2b80b6b9a9ea8edae1aba78830f4789 -include/unicode/uregex.h: bf69ecde49c5418db27194cdad8ee0ff -include/unicode/uregion.h: 6d72ea56f92d9da81cc8b3e8d47a3f04 -include/unicode/ureldatefmt.h: 480530556bbe46fbd5996fa86a878b98 -include/unicode/urename.h: 0685d5314e8537121559a98ef7a143c4 -include/unicode/urep.h: 04cce4d1e9a074179ec8e7ba6f5f02ee -include/unicode/ures.h: d9d89fedbe10df5011c03a8238572e07 -include/unicode/uscript.h: acd32dac19000101a28b81eeaec612e8 -include/unicode/usearch.h: afd9eb69236e27449e7249264bfeae56 -include/unicode/uset.h: 69481ff3106e5b8cc6f36cfa3c23225a -include/unicode/usetiter.h: 3b9ae44eb5a47ce6e20ed00fc45c0cb6 -include/unicode/ushape.h: 1f89bcc0f93cb5df8059e8a2717009a7 -include/unicode/uspoof.h: 140a8c6518698a56c917d18ef6dbd2b7 -include/unicode/usprep.h: d4a57d01cb61f594c84c3fffac8a87d5 -include/unicode/ustdio.h: 7d32dbc31f136ce97096cd25429dceef -include/unicode/ustream.h: 211a3e48dbe1921522d956bef0747361 -include/unicode/ustring.h: 12b77389aad7d0b76c86d405566840a9 -include/unicode/ustringtrie.h: 08f062a843c6bf78d8d95b1ba566d6ec -include/unicode/utext.h: a8cf1115720b99ca855918f92343ce8b -include/unicode/utf.h: b7827e05a4bc90b9ca27ab14491ca1bd -include/unicode/utf16.h: 4447226555e524f4c0f596c197ae65d5 -include/unicode/utf32.h: 076c1d2025d949556d976b9e6aa01410 -include/unicode/utf8.h: 3afe43776eb2e8d3448551c9a6996a12 -include/unicode/utf_old.h: 0c46b30f4140adf50fe9ed350815a0d8 -include/unicode/utmscale.h: 8ea13d3120de87b49a240014ecfdce7f -include/unicode/utrace.h: 0216d0e5e1e1e10e014f3a8882fa0760 -include/unicode/utrans.h: 25231668b49b0de8ca1db79ff0f348d8 -include/unicode/utypes.h: a3c935253e46b4c313b0ee58cadcd04d -include/unicode/uvernum.h: 8044bea1ca820f40b1e82b2ae5cbfbfa -include/unicode/uversion.h: b3e0658e920f56306839af39fa5f35b7 -include/unicode/vtzone.h: 138782b1f4177e15964c21e7e8cb21d3 -lib/icudt.lib: 0ad4d2a27d484d1ee141a17582758564 -lib/icuin.lib: 31a061da58f007137f4216294f7147ef -lib/icuio.lib: 657f8b121afa93db8433e85c98b3a2bc -lib/icutest.lib: 6d943d87ddd5a627f0c6bad0f5e13724 -lib/icutu.lib: 853af1f403ea9521004a933e91f5b508 -lib/icuuc.lib: 1e7a3fc48a7db11b6cfc16d455a4952b diff --git a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/ca0c09cfa678fd91b04c82824988c42e9ac40ddf/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/ca0c09cfa678fd91b04c82824988c42e9ac40ddf/conanmanifest.txt deleted file mode 100644 index 905c0750..00000000 --- a/coin/provisioning/common/windows/conan_manifests/icu/59.1/vitallium/stable/package/ca0c09cfa678fd91b04c82824988c42e9ac40ddf/conanmanifest.txt +++ /dev/null @@ -1,187 +0,0 @@ -1499330414 -bin/icudt59.dll: f4f67e917d72982f4d38b95a4eebf789 -bin/icuin59.dll: 3aaa0a3bb318eb7da1732e2164c98624 -bin/icuio59.dll: eb2e025f5ebbc37da56a435727ddb27e -bin/icutest59.dll: 86aa2a9fd01d121b419e9bfc821c541d -bin/icutu59.dll: 740a6cf36312a3601813ffedb95548dc -bin/icuuc59.dll: 77ffdc48d26d21580cea392387896d9f -conaninfo.txt: 72e5f245a2656624132fba01b63171fd -include/unicode/alphaindex.h: c4e73b7d46eacc8fa67691e4dd0b5ecc -include/unicode/appendable.h: deea01996ebb26600e2dde91ed196395 -include/unicode/basictz.h: 01cabd21915d2cee7d2ef7787240e8f2 -include/unicode/brkiter.h: 03b569a42e7dae96c0c86ad2c8d3bd00 -include/unicode/bytestream.h: 61e720935437b6830d58b216918552d2 -include/unicode/bytestrie.h: b61efc3e639298f2a6c19fec6d0622f5 -include/unicode/bytestriebuilder.h: 62d2640165c997f0abe27994f59318e3 -include/unicode/calendar.h: 759cbc7bd35d6efc0a4976dd753eb485 -include/unicode/caniter.h: 330f1b6de404cfb24479f009926890f2 -include/unicode/casemap.h: 61bbc0c334ada3bea9920815ce033de4 -include/unicode/char16ptr.h: 06b3963db87be73f87dac310136fc58c -include/unicode/chariter.h: 362ade4f54a9fa6f1c845078440e2b03 -include/unicode/choicfmt.h: b12a447a93d96d3a6080c978dfdecdb4 -include/unicode/coleitr.h: f03e36876d1a9829eae20fab28f32d6a -include/unicode/coll.h: 7d6cddc98e3227bd2277afa6d7793a50 -include/unicode/compactdecimalformat.h: b3bdc4cc4ea3b3af9a930614ef68db37 -include/unicode/curramt.h: 323107674df349a27d624663757447e4 -include/unicode/currpinf.h: 18f3f5825fd0511a670d7eff90201719 -include/unicode/currunit.h: 4b1c4900fd9cee8de157f549cf8d47f0 -include/unicode/datefmt.h: c07976e59ac1c1c08c98bf9d4e4c3587 -include/unicode/dbbi.h: db0a5e6e9dd092466fbbe21e949e4820 -include/unicode/dcfmtsym.h: eafe4061e7fad4ebe1a3a11ea219c12b -include/unicode/decimfmt.h: fec30b356bf6a646a172977caf2678ee -include/unicode/docmain.h: 49875d4c4b781f05d1c51668c74b94bb -include/unicode/dtfmtsym.h: 4fec8e6662b9914a8d99b2a75ce75a5a -include/unicode/dtintrv.h: 05a46fbf5f15b7bb2ba59f44814ac095 -include/unicode/dtitvfmt.h: 5c42410d99e25e140d8e84af39139512 -include/unicode/dtitvinf.h: e7eddd3476b1aadb8bb17350985081d6 -include/unicode/dtptngen.h: 4edbf8188c936b808141a17e24f6c17e -include/unicode/dtrule.h: c0ad9c5a662d96a067b3687c6b788fd6 -include/unicode/edits.h: 0d3660bc8cb14c5e78bb0fba7438e184 -include/unicode/enumset.h: 488a530c2f5d1727105b317bfb38ffab -include/unicode/errorcode.h: 200ad3b02dcd2eda1545afa64f26211d -include/unicode/fieldpos.h: 7b200989ccaf13e87506ff8a9a8352c1 -include/unicode/fmtable.h: ef9c81283b88d29b6b77d2c68896d166 -include/unicode/format.h: 21bfd1ffede54a82d257a30f623ae117 -include/unicode/fpositer.h: 0b8be269e646080334eb0db252708fa1 -include/unicode/gender.h: f76ef0004a630139b9636327e22f52cf -include/unicode/gregocal.h: dadf449275698c6eb227c86c90c84f5b -include/unicode/icudataver.h: 64966d178a3ba96a36698afd0c9033ac -include/unicode/icuplug.h: 1a4b0dfe535992811342f87165dfc128 -include/unicode/idna.h: 935119343007e6e8267e34d3217e73ef -include/unicode/listformatter.h: 454de478acb396e0646bc756226986b0 -include/unicode/localpointer.h: 032493d057b13fcc5d7d264ec1349ecd -include/unicode/locdspnm.h: 75098c2fc6615d040e8b5204e27918f8 -include/unicode/locid.h: 34733130bd4387fa544d6761034a0955 -include/unicode/measfmt.h: c289038b60c170659cec114a06b75ec4 -include/unicode/measunit.h: 9f937c7b82e74afdf577427e5abef253 -include/unicode/measure.h: 907a564bb50d5a3b3de69b61a095ac49 -include/unicode/messagepattern.h: ddb001f5da316149ced07415fddfbbe1 -include/unicode/msgfmt.h: 92fdcc17d1cc5be345a65b9c5028b814 -include/unicode/normalizer2.h: 1f8ec62f9f338f429627c61fb797d12a -include/unicode/normlzr.h: 1acf5026f3c915a30405c961c5045f51 -include/unicode/numfmt.h: 2e869d45a97e3366930352561becf1f7 -include/unicode/numsys.h: 966281097c9a71c7ce80de4738bbaf4b -include/unicode/parseerr.h: 82430679207228ecccebf2ac9a0dc226 -include/unicode/parsepos.h: d465f317154c05dae43efe1975c2254b -include/unicode/platform.h: 8ccf4dfd92fdd1d8076ed97a83f4ff0e -include/unicode/plurfmt.h: 7f33dc3d5b6c677e920b388e66688d6e -include/unicode/plurrule.h: efb1059c8f408ab3df8a355625aa91ac -include/unicode/ptypes.h: c124ecdb51748de2a5900c42f64fa33e -include/unicode/putil.h: f594f056f0e8fa7e7d2ee9e3772f1465 -include/unicode/rbbi.h: 10e5ea07511aad18458a2bb59c302fce -include/unicode/rbnf.h: 46a62b91bbf605d0fc90de27c0c28ade -include/unicode/rbtz.h: 6adc59fe9f2ec0203fad1bb291ceb2be -include/unicode/regex.h: 2e5c4264f79b43bc754a558f5d9ef81d -include/unicode/region.h: 9975298932902d63b823382424ecb04f -include/unicode/reldatefmt.h: fe0bf48d5fae4130b3e1d97da05b8147 -include/unicode/rep.h: ad2f3d61aabf5507f9670e17adc4f3e0 -include/unicode/resbund.h: 2e5313c39e2d8e644fefb5fda9830032 -include/unicode/schriter.h: 10ebc14456ec8a08190a1d8484d865c8 -include/unicode/scientificnumberformatter.h: 19c921c0a75274bdd13ae9e70354b9b9 -include/unicode/search.h: 3a213657ab777b638423df43e775ead6 -include/unicode/selfmt.h: f31478edaee06e562fc70fe4bffb39f7 -include/unicode/simpleformatter.h: 32f8edf8033ddcd3d89560aca235d2b1 -include/unicode/simpletz.h: b38692fd7ed1ecd8474412602bb43a7a -include/unicode/smpdtfmt.h: 0cddd4d1f197beddae2bf6d6e569b414 -include/unicode/sortkey.h: 76daf42075f7fdeeb06215922144bd87 -include/unicode/std_string.h: 57499f3b70cb13b85da38ecaed834924 -include/unicode/strenum.h: e23cde5594426e607d37d59252ed7542 -include/unicode/stringpiece.h: 2c7657b53e2cd414c5dc2aac429e8be9 -include/unicode/stringtriebuilder.h: 596067734fd5ecbf08ef1a5b29f7c521 -include/unicode/stsearch.h: c75b420ffcf6cb64c1c70fbdce1ec303 -include/unicode/symtable.h: aaa0d4278cc7c873390133c81319afe4 -include/unicode/tblcoll.h: 593c21ed8376bcfab87993dfdb24f579 -include/unicode/timezone.h: e0b13f33042ae96d152da2dfac53895a -include/unicode/tmunit.h: 47bad5bb37ad95cf4aa966962f672247 -include/unicode/tmutamt.h: 7e216295ad757e1e7050a27b4cbb04c4 -include/unicode/tmutfmt.h: 3e66e10feff34abe4f606c544bf56a98 -include/unicode/translit.h: cd5eb1480620fe72661af2c5420030c7 -include/unicode/tzfmt.h: cc77e978689ef62e83fbf50297da7068 -include/unicode/tznames.h: fc0fd902a3ab39c3ecd5376affa3e091 -include/unicode/tzrule.h: adc2e3690a81499fa482f09a7c891e3a -include/unicode/tztrans.h: ddc16397303c7c3a6cdb51d6cae76c9c -include/unicode/ubidi.h: 3c3447aff91ca3aba39294f283fc0a83 -include/unicode/ubrk.h: c4d61d02474b921b6deabf19730f2d93 -include/unicode/ucal.h: 85fbc0a93c781ff4f283abf56213548f -include/unicode/ucasemap.h: bbc08907ca608e090dd2551dae7f5063 -include/unicode/ucat.h: 9887bf7cefa89c96630bcd3757663ec0 -include/unicode/uchar.h: d0caa0cad8f0760769e7269c8e27b2f0 -include/unicode/ucharstrie.h: a831881a1c5f601a27a96107a9c93b40 -include/unicode/ucharstriebuilder.h: aab813b785d803391adad3e89eae430b -include/unicode/uchriter.h: 26dfb5f728be01852cb52402fc018235 -include/unicode/uclean.h: 7b7b73a66324b026c775cf2f467108f3 -include/unicode/ucnv.h: 8925fbf6e9921bf45b485c31ee4124ed -include/unicode/ucnv_cb.h: 2132a185faeb5cd603344098e4f685f5 -include/unicode/ucnv_err.h: 641fb44cae3f286f307ce2e445b3589f -include/unicode/ucnvsel.h: 5f129128041b8ec652fa13bc007c7168 -include/unicode/ucol.h: c1ae405a33aca9786cf4125a7ea30854 -include/unicode/ucoleitr.h: c5f7f5720c58a63df5277f4c275813f7 -include/unicode/uconfig.h: 9cd76a9d2008c77116c1e3d34cd5c20f -include/unicode/ucsdet.h: 84999c29e225c4d11a89e2c691892c6a -include/unicode/ucurr.h: 22ebc57d60d31ca6e5be08b5dcfabb36 -include/unicode/udat.h: 4fceb68710dfed43778da6b5dabf5b81 -include/unicode/udata.h: 8ffc7d27c431eaa31709bed2450b1987 -include/unicode/udateintervalformat.h: ec7b522f7376efc94280461a798e122e -include/unicode/udatpg.h: c13609bba2d9cdd91475c80f2934e8b9 -include/unicode/udisplaycontext.h: d85a18d600e97fcdbb4177583633e20b -include/unicode/uenum.h: 9f0843888060124393c5b6d3ac1d0494 -include/unicode/ufieldpositer.h: 9a2caec923d0bbc2c167e17a42e2ff74 -include/unicode/uformattable.h: 5a52db48b81c8e2d770353f347c64d1a -include/unicode/ugender.h: 23ec9fe7670c419c57462625cc2afaee -include/unicode/uidna.h: ffd28dd05da8ad3813d2d41b1f01c517 -include/unicode/uiter.h: 50847b964f6fb474e0290150338c9f27 -include/unicode/uldnames.h: 6fba02d8cd519586d066c4f4e5eb1640 -include/unicode/ulistformatter.h: 2d9feb1e057219dd43898dc23da7e476 -include/unicode/uloc.h: 03e3d991937d286c75e3206c5494646e -include/unicode/ulocdata.h: f282e04c22e0616817a04f80f536f688 -include/unicode/umachine.h: 1d6f3281c1b8a8eb9ba4dbd670d6af7c -include/unicode/umisc.h: c0dc3caac921970252ee4bbc1bddc43a -include/unicode/umsg.h: ed50cc36346ea063fd3681385064ead3 -include/unicode/unifilt.h: 6e228f15b2fa8f564abb51500674d72b -include/unicode/unifunct.h: a9f9e469e946e88a9c64919c468e5d62 -include/unicode/unimatch.h: 6c2cbf80f1f605b165bebc5ae8e12aaa -include/unicode/unirepl.h: a021ccf09bb715625b9677bdc7700584 -include/unicode/uniset.h: 501821f127cc093433327c44909a7575 -include/unicode/unistr.h: 7dfa9c3626c3dcf71390eb50b57a3716 -include/unicode/unorm.h: 39bbe48ae8534029dab7f097188c8b31 -include/unicode/unorm2.h: eb8b5bb935701284a4480a2facb7f0b8 -include/unicode/unum.h: ac906837bfd6caac1259c6f7913b94a2 -include/unicode/unumsys.h: dfc4fd29fa10dea8de5981a79badf4ec -include/unicode/uobject.h: 7cd3e374dd78321b69313bc3f416ed4c -include/unicode/upluralrules.h: f2b80b6b9a9ea8edae1aba78830f4789 -include/unicode/uregex.h: bf69ecde49c5418db27194cdad8ee0ff -include/unicode/uregion.h: 6d72ea56f92d9da81cc8b3e8d47a3f04 -include/unicode/ureldatefmt.h: 480530556bbe46fbd5996fa86a878b98 -include/unicode/urename.h: 0685d5314e8537121559a98ef7a143c4 -include/unicode/urep.h: 04cce4d1e9a074179ec8e7ba6f5f02ee -include/unicode/ures.h: d9d89fedbe10df5011c03a8238572e07 -include/unicode/uscript.h: acd32dac19000101a28b81eeaec612e8 -include/unicode/usearch.h: afd9eb69236e27449e7249264bfeae56 -include/unicode/uset.h: 69481ff3106e5b8cc6f36cfa3c23225a -include/unicode/usetiter.h: 3b9ae44eb5a47ce6e20ed00fc45c0cb6 -include/unicode/ushape.h: 1f89bcc0f93cb5df8059e8a2717009a7 -include/unicode/uspoof.h: 140a8c6518698a56c917d18ef6dbd2b7 -include/unicode/usprep.h: d4a57d01cb61f594c84c3fffac8a87d5 -include/unicode/ustdio.h: 7d32dbc31f136ce97096cd25429dceef -include/unicode/ustream.h: 211a3e48dbe1921522d956bef0747361 -include/unicode/ustring.h: 12b77389aad7d0b76c86d405566840a9 -include/unicode/ustringtrie.h: 08f062a843c6bf78d8d95b1ba566d6ec -include/unicode/utext.h: a8cf1115720b99ca855918f92343ce8b -include/unicode/utf.h: b7827e05a4bc90b9ca27ab14491ca1bd -include/unicode/utf16.h: 4447226555e524f4c0f596c197ae65d5 -include/unicode/utf32.h: 076c1d2025d949556d976b9e6aa01410 -include/unicode/utf8.h: 3afe43776eb2e8d3448551c9a6996a12 -include/unicode/utf_old.h: 0c46b30f4140adf50fe9ed350815a0d8 -include/unicode/utmscale.h: 8ea13d3120de87b49a240014ecfdce7f -include/unicode/utrace.h: 0216d0e5e1e1e10e014f3a8882fa0760 -include/unicode/utrans.h: 25231668b49b0de8ca1db79ff0f348d8 -include/unicode/utypes.h: a3c935253e46b4c313b0ee58cadcd04d -include/unicode/uvernum.h: 8044bea1ca820f40b1e82b2ae5cbfbfa -include/unicode/uversion.h: b3e0658e920f56306839af39fa5f35b7 -include/unicode/vtzone.h: 138782b1f4177e15964c21e7e8cb21d3 -lib/icudt.lib: a4bc5fec27a13bc471b747e67ec58bc4 -lib/icuin.lib: 452cfb482c2b072f99489029a9bb789c -lib/icuio.lib: c9b9c1c8ef2f622825775a1fd10186c0 -lib/icutest.lib: 7408004f6b9d8318b10a631ed933353b -lib/icutu.lib: 820e5a0e98bcc257822f254f73c7c682 -lib/icuuc.lib: 62326159fad7b218f3f8455c32da970c diff --git a/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/export/conanmanifest.txt new file mode 100644 index 00000000..0179c3cc --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/export/conanmanifest.txt @@ -0,0 +1,4 @@ +1563296922 +LICENSE.md: e5e131742c86307b7fb2fc2255e6277d +conanfile.py: 18b376bcd3b1fb69a62d916ee609ce75 +icu_base.py: 03540bb5bf8ac0694a52ee04566cef8a diff --git a/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/04159420740fe51b1a5d12efd6a3342553fee413/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/04159420740fe51b1a5d12efd6a3342553fee413/conanmanifest.txt new file mode 100644 index 00000000..53ef2d23 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/04159420740fe51b1a5d12efd6a3342553fee413/conanmanifest.txt @@ -0,0 +1,251 @@ +1563302303 +bin/derb.exe: 5dab26f815c8a555677c48514a6208eb +bin/escapesrc.exe: 196361eaefbf657aaad12f6ebc7d9fd0 +bin/genbrk.exe: 481473c589c454cb0c67d477112326b6 +bin/genccode.exe: 36e12767557b6b62b7368b82af71dc7d +bin/gencfu.exe: 4ed7055fc629466383663481024ce56b +bin/gencmn.exe: 793b30b115e0d1697a005bbd7be8e2bf +bin/gencnval.exe: 549ae3eff6f7f6c733a7a022e74ccf16 +bin/gendict.exe: 38799ad1ecf2bac24995d2030b248b1a +bin/gennorm2.exe: 2b0ee309f4dd5f6394a799ae57615d99 +bin/genrb.exe: 0ad48828a13286a2ef10140a5b4a89df +bin/gensprep.exe: 8a8c1abb007b882616f0c038b473a4fa +bin/icu-config: 0bb77dfc59d545ffb13abbe29faa1050 +bin/icuinfo.exe: 06e182a0726c4fbdc0e2bad482cbcddb +bin/icupkg.exe: a1f1c12ec71f39a273cdba803329feec +bin/makeconv.exe: 12d9fa58c5016487606c60f2604dbfa5 +bin/pkgdata.exe: 47afb5e78953c34bd9bd3a47a8b58b1c +bin/uconv.exe: 1b3131e11a447981322d479ac418e152 +conaninfo.txt: 94f4cb59828b265621231d47fa4013f1 +include/unicode/alphaindex.h: edc0ff1708822c14fbac4f58a89859c9 +include/unicode/appendable.h: 713ee4a1c3e3ca090b202ceb81d6ad9f +include/unicode/basictz.h: 456683947de10ae84e2c069c9fc55e9f +include/unicode/brkiter.h: c69c05b804270ad6c64f80c03a5b8ee0 +include/unicode/bytestream.h: 8b946f79fb11d18859acdceab1bb5d46 +include/unicode/bytestrie.h: 781e30fb8103ba58fdfe4b6704e54347 +include/unicode/bytestriebuilder.h: e6649e470ceff3af7ec894aa6031cb21 +include/unicode/calendar.h: e640b0fd471a5313b85a866871b9df2a +include/unicode/caniter.h: 74858b2a33cb2805dea0b0bc480dda7d +include/unicode/casemap.h: b40e8878db23b64a72763bf75e4e3e2a +include/unicode/char16ptr.h: 3bed1c6f219d725f6daf274704427035 +include/unicode/chariter.h: 463cdd4748695660223db14c27da3e84 +include/unicode/choicfmt.h: 38f338fb58eebce7fc999c906aad142e +include/unicode/coleitr.h: 35cafcefbe5155408aa6166781d4290d +include/unicode/coll.h: a60e4d0e20f25015d370bfb3b24e267e +include/unicode/compactdecimalformat.h: dd1f639d5c836e200b48ad69ef326fc0 +include/unicode/curramt.h: 8f57c8f5a77ffd6d1f4a9c53b100ee3e +include/unicode/currpinf.h: e279f04f8bb9c6a686ede0f4bbc7caf4 +include/unicode/currunit.h: 0ea702494028296a411ac0bda6895275 +include/unicode/datefmt.h: 91aee102e3fa68c64113645be5b944c4 +include/unicode/dbbi.h: 15a312f4cf6c6bc243fd6d32368956a1 +include/unicode/dcfmtsym.h: 3eec16337aeaa8877e966616ac53783a +include/unicode/decimfmt.h: 18479b4ccc0b4efa7732b1da2d0fd2ab +include/unicode/docmain.h: 0df0e8161180b869031a88050e0a01c9 +include/unicode/dtfmtsym.h: c06710d48a792838da0f5e3814b3908a +include/unicode/dtintrv.h: 65e3985e944f54230322acc986c59a30 +include/unicode/dtitvfmt.h: 72a63051451b33ba43f67e572883e855 +include/unicode/dtitvinf.h: b6e798c244d5d4ed73916a8db5b4a855 +include/unicode/dtptngen.h: 5c7a7e4d10c3db7123815ff42dc904f6 +include/unicode/dtrule.h: a2a865734c97d4d5ee2a095ebbd629cf +include/unicode/edits.h: 7fd52de9a5c418c48234d1425f22fabc +include/unicode/enumset.h: 3bb75fc43c88682895ae98c02e69810d +include/unicode/errorcode.h: 6f00859e026be521cff595db38b871db +include/unicode/fieldpos.h: d42ab3ff641fdc7016cbc3e7526594a1 +include/unicode/filteredbrk.h: 4ab1ef82654177aea8000c72f6652e40 +include/unicode/fmtable.h: c0c5ea7bd3e3a5fded75c2fea543c668 +include/unicode/format.h: 71642e006d9e359a5a8b0800d390ec52 +include/unicode/formattedvalue.h: a502788adec3ba1025321c2cefd0e4c7 +include/unicode/fpositer.h: 2fdf3d1fa8b84e6ba3c561803de5f595 +include/unicode/gender.h: 21d668158f52ab989a8a4711de79f099 +include/unicode/gregocal.h: 4e746c8c84966372f9e66255e3d05246 +include/unicode/icudataver.h: d1c480a9eb95aaa058a6b9311074bc33 +include/unicode/icuplug.h: 60ad27a2a36284bbc1766f9920769175 +include/unicode/idna.h: e2bb1287f5f61b37dd11493008d29ef6 +include/unicode/listformatter.h: 2942dcd998fbadca9043912a2dbe9e7e +include/unicode/localebuilder.h: 5690e3f03681a2fbfe7baea5226378cd +include/unicode/localpointer.h: a89505f84a4bb4e231a17676f1b1d51a +include/unicode/locdspnm.h: 5d12af057d2675b88cf95dc63f015f21 +include/unicode/locid.h: 9df99f05fc348684e116098f6e0a6710 +include/unicode/measfmt.h: 909302945254ede1a345342a8c4b402d +include/unicode/measunit.h: 9e0fe1ba857f051874760f7aad55c68b +include/unicode/measure.h: 060550ced6b6ceae742c8d47772e190f +include/unicode/messagepattern.h: b671e9e96bad09137a7bf186e8d795fc +include/unicode/msgfmt.h: f1723a391f733367dde795d42d1734f3 +include/unicode/normalizer2.h: 909305633321f6cbb76cc88dc8c00c90 +include/unicode/normlzr.h: c974010d56584fcf75f0f2e10e05fe9c +include/unicode/nounit.h: 86e94a9d9377bcd124dfd80600a66d19 +include/unicode/numberformatter.h: 5f13d5de2fb98bb5f6ce33e5b48698c3 +include/unicode/numberrangeformatter.h: 460fa1a21356b00a275e27a9a540140e +include/unicode/numfmt.h: 26724db0305eab9f3b810f3a6accc729 +include/unicode/numsys.h: f68bc678c30deeb7c50a104d852e40d8 +include/unicode/parseerr.h: ce38831411af01eeaf0bbbb6e1cb0153 +include/unicode/parsepos.h: d5300bfbc1b2cd0081aecb71320e11ec +include/unicode/platform.h: d6aed91f3114fe877714fc554ad167ae +include/unicode/plurfmt.h: fa64bd7797a74e8e8769a12047c5bf3c +include/unicode/plurrule.h: 8d3eb6b9c5e6eec6da436601e42ec65e +include/unicode/ptypes.h: d74097874c82f77331d8e06a5c59d37f +include/unicode/putil.h: ee1c69d5060b8d5754bf8879bb7f10d1 +include/unicode/rbbi.h: a0202b93d684e8e595c0012e4cefca83 +include/unicode/rbnf.h: c951102dad30e81d893bc81df09820f5 +include/unicode/rbtz.h: f772120604410ff1f1492b1991d36163 +include/unicode/regex.h: e911b68edf768bc0c96b770fced3a7f5 +include/unicode/region.h: b0c3e0b2ad6650fbab876495b114b639 +include/unicode/reldatefmt.h: 99195dad14eef9b8992409fc066b97d7 +include/unicode/rep.h: d29a88e12fd288a0606a41464630a015 +include/unicode/resbund.h: 87a08c1ea0b825d2f99951e9be9f1127 +include/unicode/schriter.h: 9c196272282acc6ccf6cd34544095b63 +include/unicode/scientificnumberformatter.h: b0f20bc8a5b53b07a07d4576d3d6d928 +include/unicode/search.h: bee76013db18275ff842e90c6805ae72 +include/unicode/selfmt.h: 2457e48d1cf8ff880f1bdaf80a9e2fc7 +include/unicode/simpleformatter.h: 3dfb5ab658aecf124d329b645082b879 +include/unicode/simpletz.h: 07c17256943be808b2b2a597d3d27c33 +include/unicode/smpdtfmt.h: e5ba02765fd03756ba63ca138a47daf1 +include/unicode/sortkey.h: 25af96ad696ab793d62d67debb04c8ba +include/unicode/std_string.h: 2300a9ee3296c630373a6e8b685dff88 +include/unicode/strenum.h: 2d2998dd8033ac7272c39406cc3f8b51 +include/unicode/stringoptions.h: d4929224e8d9df2f272f0305780cbacb +include/unicode/stringpiece.h: 4265692d09da7d3cd585bc6776a8a0c7 +include/unicode/stringtriebuilder.h: fc74bea13a3003c79ebeccc442703037 +include/unicode/stsearch.h: 33d820eada4a37ceb3f0bd9ff07ed63d +include/unicode/symtable.h: 763520aa161c95884efa6f6a5f29eb77 +include/unicode/tblcoll.h: 9aad9b68d582e13be85f437f815a3eb1 +include/unicode/timezone.h: 4e6b12c8e428fae21f99552d29544690 +include/unicode/tmunit.h: 9a1f159c304e2bd283d7cf61a0807c05 +include/unicode/tmutamt.h: 0890de21bc330b69b00f94c437e0f140 +include/unicode/tmutfmt.h: c344b95b816e04ed0bc895c6da6ef460 +include/unicode/translit.h: 3464c7b8023b7c131b0b533e1b372c3a +include/unicode/tzfmt.h: 2cb06301f2376b6802834105060311bf +include/unicode/tznames.h: b5935a11cb884e2e47ad732ee684037d +include/unicode/tzrule.h: bcba9c924da93d42e4f18f507c11e8cf +include/unicode/tztrans.h: 6e72d3497b3e68dc9aad510e2b45f781 +include/unicode/ubidi.h: d90a13a2933198f134efefc0ff7563e6 +include/unicode/ubiditransform.h: fab65809ece8816f1a002eb843b80e29 +include/unicode/ubrk.h: e85002afa629b85ba239135ab11f47f0 +include/unicode/ucal.h: c39d869ac0bca5859e78287092e40721 +include/unicode/ucasemap.h: 2f240e1dc6db1771e843f1a03fd0c8f4 +include/unicode/ucat.h: f412352b86adccba85d7f3e4b4515064 +include/unicode/uchar.h: 25e6419710b325b53286cb7dcaf4af57 +include/unicode/ucharstrie.h: 644af4172d542594c40face6cbe01b5e +include/unicode/ucharstriebuilder.h: 52600c017361ee29f21a6fef13667948 +include/unicode/uchriter.h: 85c221ab993783ec8f7823713c30758c +include/unicode/uclean.h: ef4b9289f510edd0bb6b779d0a299f44 +include/unicode/ucnv.h: db701a7a83540ef4dcfc4e780f1da016 +include/unicode/ucnv_cb.h: 69c1c5b156028cd623ed7e5b5b4ab730 +include/unicode/ucnv_err.h: 6ef0751460140d23ae678ef85c298906 +include/unicode/ucnvsel.h: 6e4c5e31c2a89439ef4945cd4a402ef3 +include/unicode/ucol.h: 0b6d71140d2f8e0cf618e5a54cf251af +include/unicode/ucoleitr.h: b4576706530850666c1cfd2424276b26 +include/unicode/uconfig.h: 680b99d4b154e14ac1ebcb9c60f5ab3c +include/unicode/ucpmap.h: a22571c78880dd947efc0ab547061a35 +include/unicode/ucptrie.h: 9b16abc66b11f53941ec5d90af1df0b0 +include/unicode/ucsdet.h: c7d5b3d36da0c71b0a85a72642439a90 +include/unicode/ucurr.h: 0ec2b114be8c462d4542c6e1d0bf2b8a +include/unicode/udat.h: 373cf290162e44eba9f2cf6dad278858 +include/unicode/udata.h: e747b190fadb0749c129aeff7e6eef54 +include/unicode/udateintervalformat.h: 178f650518ecceeb2eca7b763dd68799 +include/unicode/udatpg.h: 078d2d548f3123fceae0d4056359a62e +include/unicode/udisplaycontext.h: 57a269787da52ad6720ff5b1e87b5cdd +include/unicode/uenum.h: 41cce54d4862d5068f4f087b935c0657 +include/unicode/ufieldpositer.h: 21f8ba8e285bfea4daa3da8a01911b7e +include/unicode/uformattable.h: cad38a97f9f929ebc28d5e72dc5ec14f +include/unicode/uformattedvalue.h: 47ae4b93dddfe15d28400da09201090e +include/unicode/ugender.h: d64c9ad1d5cf04136534e3aca38d2638 +include/unicode/uidna.h: 88ee381ec6ec01cb677f3e5222e9cf22 +include/unicode/uiter.h: 3fea96177f4f814091918f54d1e68ccd +include/unicode/uldnames.h: d18634bc73c16b9ae02b6a60fd94d8be +include/unicode/ulistformatter.h: 64859bc80c70c1e183f3537e1c354142 +include/unicode/uloc.h: b344a11407a95b108ef52a4d88c74d6a +include/unicode/ulocdata.h: 116fad6a2c0db0d08e3f5ae02d93a035 +include/unicode/umachine.h: b25221a74cab16d993f35108e6da340a +include/unicode/umisc.h: eca71d8c8bf86529ae5bbc5f34598bea +include/unicode/umsg.h: 298645d31f8d8e209cbb5eb3751e3ceb +include/unicode/umutablecptrie.h: 4fe0aaad80938fbe881a3fb447be1f24 +include/unicode/unifilt.h: 71e8ecdb31d706e8e0efc4bbdc9f86b5 +include/unicode/unifunct.h: 97d80d81556b54ac674d09643df98cfc +include/unicode/unimatch.h: 00eb31b1d65f3e0f03e7d880b1bb79fb +include/unicode/unirepl.h: c5eeec0e14a9666262d332c22124803f +include/unicode/uniset.h: 69b5447c36eec06421bc9038df3bd80e +include/unicode/unistr.h: e35ee05307a3338579df46718b049b32 +include/unicode/unorm.h: 3a1e6dcd474ef8b2c3377b34141bf6d3 +include/unicode/unorm2.h: e8fff4023ad114b325f346d2cdbbe043 +include/unicode/unum.h: ec868132b7242d85645d30dd549b25fc +include/unicode/unumberformatter.h: 0dc25c33373d63ca0beb10a9ef265237 +include/unicode/unumsys.h: 7e5dd76a0e07f790c30c944bfb810e71 +include/unicode/uobject.h: c9a1e3afb798e0fbcad34b01b0bc5c3e +include/unicode/upluralrules.h: 15feae7c7df35b97d5e715f28f616e63 +include/unicode/uregex.h: 10fe8b8c9f98758bf192bc765fa45e3c +include/unicode/uregion.h: a3f28f15972bf18600012815a8c76535 +include/unicode/ureldatefmt.h: d528589ebdc3f8cb6c27ce4867752c55 +include/unicode/urename.h: 7cd5ed487b56e2aeb354867a0b2cda5f +include/unicode/urep.h: 6ada98ac1aa68081f10d17b1abadef6e +include/unicode/ures.h: 8c69586a969eb2898d5d3e8c08beda9c +include/unicode/uscript.h: 5bf2d96240b17507a05ebe4d36b1a38e +include/unicode/usearch.h: fc5b3e0d1096ff69c3a2397ef5b3a036 +include/unicode/uset.h: a285e1b480a3abaaee753ba74d245efd +include/unicode/usetiter.h: 36896c874036542390b5a75a04f330c5 +include/unicode/ushape.h: 86fdf709d4312bb17cf95b16f58e1dc4 +include/unicode/uspoof.h: 6c2d471942085f091c8bc748a02f113e +include/unicode/usprep.h: e88585ae8bdb3a35aa88417993bde732 +include/unicode/ustdio.h: 3104e526d3de60538f42c0fd5430adcb +include/unicode/ustream.h: 6a3f303b73d795a0ff9a1b8d2758d88d +include/unicode/ustring.h: 92f522f8ef62e443c11baa56c32e42e4 +include/unicode/ustringtrie.h: 54a28aa9c4e117cd3ebfd0a670324f6c +include/unicode/utext.h: b0e85d74193953fcaa29de51853cc95a +include/unicode/utf.h: 4434eeb75c89a49228884aa247714e1c +include/unicode/utf16.h: d95d304275f6c688b0c4ae5620d57e4c +include/unicode/utf32.h: a1fdf74f4bd8808f9fb17df371f886d9 +include/unicode/utf8.h: 7d5d7b60c96cccc184cdc5cd53447e7c +include/unicode/utf_old.h: c89c03a53abcf83e039ad4217246acd9 +include/unicode/utmscale.h: 7c59d91f835bc9f4b805dd64e73851d7 +include/unicode/utrace.h: 35cbc5ec2fd02b703a449e896f48ebfe +include/unicode/utrans.h: 7a20730bb6d33441a5b9c886cc7cd0eb +include/unicode/utypes.h: be7b3c9d785b5d70b2f05e6dd527f026 +include/unicode/uvernum.h: 59a34f58b169d039a90da4e8824af662 +include/unicode/uversion.h: af19802ec4e905051d79ab4579a30bcd +include/unicode/vtzone.h: a9053ef95930bd854729360fe00fed7a +lib/icu/64.2/Makefile.inc: 877c8d22d35ab71a25e3545b714b393e +lib/icu/64.2/pkgdata.inc: 49b14eabd895cebb63a73c80d9099337 +lib/icu/Makefile.inc: 877c8d22d35ab71a25e3545b714b393e +lib/icu/current/Makefile.inc: 877c8d22d35ab71a25e3545b714b393e +lib/icu/current/pkgdata.inc: 49b14eabd895cebb63a73c80d9099337 +lib/icu/pkgdata.inc: 49b14eabd895cebb63a73c80d9099337 +lib/icudt.dll: 51718083e11c934244a2180453b6192d +lib/icudt64.dll: d4b6d9f7726209fb2e7c50ad59ef948e +lib/icuin.dll: 37ef9947c0ed682d9ca1200599ef8326 +lib/icuin64.dll: 37ef9947c0ed682d9ca1200599ef8326 +lib/icuio.dll: 6f163cb40ada9784eef3ff17d7c81541 +lib/icuio64.dll: 6f163cb40ada9784eef3ff17d7c81541 +lib/icutest.dll: 22f051d821580c97afb4e98955502003 +lib/icutest64.dll: 22f051d821580c97afb4e98955502003 +lib/icutu.dll: a1d54e06d72aa4ff539c850dc8b5ef07 +lib/icutu64.dll: a1d54e06d72aa4ff539c850dc8b5ef07 +lib/icuuc.dll: 95f54a0d2f02015eb1a2d996d52f7379 +lib/icuuc64.dll: 95f54a0d2f02015eb1a2d996d52f7379 +lib/libicudt.dll.a: 1bee3188c02b6416f380d1317ddb6173 +lib/libicuin.dll.a: 45887066a9eec4f2a3babb6a2b149cca +lib/libicuio.dll.a: f28fc05d5c77873f77c98de4120c2257 +lib/libicutest.dll.a: e124c5752ed2fa61d3305d62c6bbb77f +lib/libicutu.dll.a: 613e72ca20a6a70dea011a863fdb67cf +lib/libicuuc.dll.a: c48739947c0ec41087df6f167b9f193d +lib/pkgconfig/icu-i18n.pc: 1f2b1e05e6f343591662ee6a5c2120ff +lib/pkgconfig/icu-io.pc: 90ce9fbc240c0d18469d4c949c1ff38c +lib/pkgconfig/icu-uc.pc: 59f15ab191724fc7a7bb257f96d1746e +licenses/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/config/mh-mingw64: 21a2b87cfc116d4f2a08e9c6c160f2d4 +share/icu/64.2/install-sh: 5afe8eb5573965dfb58378e4e46f3813 +share/icu/64.2/mkinstalldirs: 31c4856b24c8dbc6319819ccd43b4fda +share/man/man1/derb.1: 140b84149f762ce47b2fe263aed44fb5 +share/man/man1/genbrk.1: f3b0b5c88f6562d93a27e776bf13987c +share/man/man1/gencfu.1: fc9b581c0fe513328c22b44ce035e0c1 +share/man/man1/gencnval.1: 696401204fbe4d17e8dac25eea70ce07 +share/man/man1/gendict.1: f3607026142ed53bf2d0bae71884ce02 +share/man/man1/genrb.1: 3860427c56aa1c847586737737325550 +share/man/man1/icu-config.1: 24f882d0de63c5fee2b10a2911b206f8 +share/man/man1/makeconv.1: ee9bdbd7ee11f0e705e6de72b86f29ac +share/man/man1/pkgdata.1: 2cb82b3e1c820002968867c3b2b5b811 +share/man/man1/uconv.1: 516c265d14b9f3ad72dceb2c2d23f2bb +share/man/man8/genccode.8: 0c9f23a8cec80bfdb6127197f1c3ed17 +share/man/man8/gencmn.8: 251c98aa763ab74829e074c5e6f21c98 +share/man/man8/gensprep.8: a3129a511adbb04310a2d900c15784e1 +share/man/man8/icupkg.8: 145940ae5e9a8aea3a93213f13ddd70c diff --git a/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/0fa8894ab40ba8bc84e36b1278e6fb93534ef433/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/0fa8894ab40ba8bc84e36b1278e6fb93534ef433/conanmanifest.txt new file mode 100644 index 00000000..3246cfc4 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/0fa8894ab40ba8bc84e36b1278e6fb93534ef433/conanmanifest.txt @@ -0,0 +1,251 @@ +1563301699 +bin/derb.exe: 375bc0810269406e4097d43a9ef65de5 +bin/escapesrc.exe: 5569002ce7984123f9eefa19840a6ee7 +bin/genbrk.exe: 10c1ce5f94d9fac6b4d38429855483a5 +bin/genccode.exe: 79e308a8f027703438157b75cdcaee5f +bin/gencfu.exe: b3f38f0d3f048e988eae84ac462291e2 +bin/gencmn.exe: a1660bd03f65026d9557f7b8354d6a14 +bin/gencnval.exe: e04e852bd61714cfa38e795429d637e9 +bin/gendict.exe: 0fee346a8d0d07f1566501859da6d475 +bin/gennorm2.exe: 9e618d91189587ef232a399e4939ed59 +bin/genrb.exe: ee43e9ada1993a944aee14b5af361ec8 +bin/gensprep.exe: 24f03316091277e31f3d1e21d907c143 +bin/icu-config: 665a391274c974f9b3416bf3c796f9e8 +bin/icuinfo.exe: ba1e67402b55c3d5f3a494f326c7782f +bin/icupkg.exe: 2a326b48e8b86d69d02f79db5380f629 +bin/makeconv.exe: 9be102256933aab5d9396495bbe8aa43 +bin/pkgdata.exe: a9b1aac252e93d5aa4cdbdd85ba4e46e +bin/uconv.exe: 5dd0ea19fc070e08af7405cacadbbb01 +conaninfo.txt: 575afb295783470adb371557b8917a1a +include/unicode/alphaindex.h: edc0ff1708822c14fbac4f58a89859c9 +include/unicode/appendable.h: 713ee4a1c3e3ca090b202ceb81d6ad9f +include/unicode/basictz.h: 456683947de10ae84e2c069c9fc55e9f +include/unicode/brkiter.h: c69c05b804270ad6c64f80c03a5b8ee0 +include/unicode/bytestream.h: 8b946f79fb11d18859acdceab1bb5d46 +include/unicode/bytestrie.h: 781e30fb8103ba58fdfe4b6704e54347 +include/unicode/bytestriebuilder.h: e6649e470ceff3af7ec894aa6031cb21 +include/unicode/calendar.h: e640b0fd471a5313b85a866871b9df2a +include/unicode/caniter.h: 74858b2a33cb2805dea0b0bc480dda7d +include/unicode/casemap.h: b40e8878db23b64a72763bf75e4e3e2a +include/unicode/char16ptr.h: 3bed1c6f219d725f6daf274704427035 +include/unicode/chariter.h: 463cdd4748695660223db14c27da3e84 +include/unicode/choicfmt.h: 38f338fb58eebce7fc999c906aad142e +include/unicode/coleitr.h: 35cafcefbe5155408aa6166781d4290d +include/unicode/coll.h: a60e4d0e20f25015d370bfb3b24e267e +include/unicode/compactdecimalformat.h: dd1f639d5c836e200b48ad69ef326fc0 +include/unicode/curramt.h: 8f57c8f5a77ffd6d1f4a9c53b100ee3e +include/unicode/currpinf.h: e279f04f8bb9c6a686ede0f4bbc7caf4 +include/unicode/currunit.h: 0ea702494028296a411ac0bda6895275 +include/unicode/datefmt.h: 91aee102e3fa68c64113645be5b944c4 +include/unicode/dbbi.h: 15a312f4cf6c6bc243fd6d32368956a1 +include/unicode/dcfmtsym.h: 3eec16337aeaa8877e966616ac53783a +include/unicode/decimfmt.h: 18479b4ccc0b4efa7732b1da2d0fd2ab +include/unicode/docmain.h: 0df0e8161180b869031a88050e0a01c9 +include/unicode/dtfmtsym.h: c06710d48a792838da0f5e3814b3908a +include/unicode/dtintrv.h: 65e3985e944f54230322acc986c59a30 +include/unicode/dtitvfmt.h: 72a63051451b33ba43f67e572883e855 +include/unicode/dtitvinf.h: b6e798c244d5d4ed73916a8db5b4a855 +include/unicode/dtptngen.h: 5c7a7e4d10c3db7123815ff42dc904f6 +include/unicode/dtrule.h: a2a865734c97d4d5ee2a095ebbd629cf +include/unicode/edits.h: 7fd52de9a5c418c48234d1425f22fabc +include/unicode/enumset.h: 3bb75fc43c88682895ae98c02e69810d +include/unicode/errorcode.h: 6f00859e026be521cff595db38b871db +include/unicode/fieldpos.h: d42ab3ff641fdc7016cbc3e7526594a1 +include/unicode/filteredbrk.h: 4ab1ef82654177aea8000c72f6652e40 +include/unicode/fmtable.h: c0c5ea7bd3e3a5fded75c2fea543c668 +include/unicode/format.h: 71642e006d9e359a5a8b0800d390ec52 +include/unicode/formattedvalue.h: a502788adec3ba1025321c2cefd0e4c7 +include/unicode/fpositer.h: 2fdf3d1fa8b84e6ba3c561803de5f595 +include/unicode/gender.h: 21d668158f52ab989a8a4711de79f099 +include/unicode/gregocal.h: 4e746c8c84966372f9e66255e3d05246 +include/unicode/icudataver.h: d1c480a9eb95aaa058a6b9311074bc33 +include/unicode/icuplug.h: 60ad27a2a36284bbc1766f9920769175 +include/unicode/idna.h: e2bb1287f5f61b37dd11493008d29ef6 +include/unicode/listformatter.h: 2942dcd998fbadca9043912a2dbe9e7e +include/unicode/localebuilder.h: 5690e3f03681a2fbfe7baea5226378cd +include/unicode/localpointer.h: a89505f84a4bb4e231a17676f1b1d51a +include/unicode/locdspnm.h: 5d12af057d2675b88cf95dc63f015f21 +include/unicode/locid.h: 9df99f05fc348684e116098f6e0a6710 +include/unicode/measfmt.h: 909302945254ede1a345342a8c4b402d +include/unicode/measunit.h: 9e0fe1ba857f051874760f7aad55c68b +include/unicode/measure.h: 060550ced6b6ceae742c8d47772e190f +include/unicode/messagepattern.h: b671e9e96bad09137a7bf186e8d795fc +include/unicode/msgfmt.h: f1723a391f733367dde795d42d1734f3 +include/unicode/normalizer2.h: 909305633321f6cbb76cc88dc8c00c90 +include/unicode/normlzr.h: c974010d56584fcf75f0f2e10e05fe9c +include/unicode/nounit.h: 86e94a9d9377bcd124dfd80600a66d19 +include/unicode/numberformatter.h: 5f13d5de2fb98bb5f6ce33e5b48698c3 +include/unicode/numberrangeformatter.h: 460fa1a21356b00a275e27a9a540140e +include/unicode/numfmt.h: 26724db0305eab9f3b810f3a6accc729 +include/unicode/numsys.h: f68bc678c30deeb7c50a104d852e40d8 +include/unicode/parseerr.h: ce38831411af01eeaf0bbbb6e1cb0153 +include/unicode/parsepos.h: d5300bfbc1b2cd0081aecb71320e11ec +include/unicode/platform.h: d6aed91f3114fe877714fc554ad167ae +include/unicode/plurfmt.h: fa64bd7797a74e8e8769a12047c5bf3c +include/unicode/plurrule.h: 8d3eb6b9c5e6eec6da436601e42ec65e +include/unicode/ptypes.h: d74097874c82f77331d8e06a5c59d37f +include/unicode/putil.h: ee1c69d5060b8d5754bf8879bb7f10d1 +include/unicode/rbbi.h: a0202b93d684e8e595c0012e4cefca83 +include/unicode/rbnf.h: c951102dad30e81d893bc81df09820f5 +include/unicode/rbtz.h: f772120604410ff1f1492b1991d36163 +include/unicode/regex.h: e911b68edf768bc0c96b770fced3a7f5 +include/unicode/region.h: b0c3e0b2ad6650fbab876495b114b639 +include/unicode/reldatefmt.h: 99195dad14eef9b8992409fc066b97d7 +include/unicode/rep.h: d29a88e12fd288a0606a41464630a015 +include/unicode/resbund.h: 87a08c1ea0b825d2f99951e9be9f1127 +include/unicode/schriter.h: 9c196272282acc6ccf6cd34544095b63 +include/unicode/scientificnumberformatter.h: b0f20bc8a5b53b07a07d4576d3d6d928 +include/unicode/search.h: bee76013db18275ff842e90c6805ae72 +include/unicode/selfmt.h: 2457e48d1cf8ff880f1bdaf80a9e2fc7 +include/unicode/simpleformatter.h: 3dfb5ab658aecf124d329b645082b879 +include/unicode/simpletz.h: 07c17256943be808b2b2a597d3d27c33 +include/unicode/smpdtfmt.h: e5ba02765fd03756ba63ca138a47daf1 +include/unicode/sortkey.h: 25af96ad696ab793d62d67debb04c8ba +include/unicode/std_string.h: 2300a9ee3296c630373a6e8b685dff88 +include/unicode/strenum.h: 2d2998dd8033ac7272c39406cc3f8b51 +include/unicode/stringoptions.h: d4929224e8d9df2f272f0305780cbacb +include/unicode/stringpiece.h: 4265692d09da7d3cd585bc6776a8a0c7 +include/unicode/stringtriebuilder.h: fc74bea13a3003c79ebeccc442703037 +include/unicode/stsearch.h: 33d820eada4a37ceb3f0bd9ff07ed63d +include/unicode/symtable.h: 763520aa161c95884efa6f6a5f29eb77 +include/unicode/tblcoll.h: 9aad9b68d582e13be85f437f815a3eb1 +include/unicode/timezone.h: 4e6b12c8e428fae21f99552d29544690 +include/unicode/tmunit.h: 9a1f159c304e2bd283d7cf61a0807c05 +include/unicode/tmutamt.h: 0890de21bc330b69b00f94c437e0f140 +include/unicode/tmutfmt.h: c344b95b816e04ed0bc895c6da6ef460 +include/unicode/translit.h: 3464c7b8023b7c131b0b533e1b372c3a +include/unicode/tzfmt.h: 2cb06301f2376b6802834105060311bf +include/unicode/tznames.h: b5935a11cb884e2e47ad732ee684037d +include/unicode/tzrule.h: bcba9c924da93d42e4f18f507c11e8cf +include/unicode/tztrans.h: 6e72d3497b3e68dc9aad510e2b45f781 +include/unicode/ubidi.h: d90a13a2933198f134efefc0ff7563e6 +include/unicode/ubiditransform.h: fab65809ece8816f1a002eb843b80e29 +include/unicode/ubrk.h: e85002afa629b85ba239135ab11f47f0 +include/unicode/ucal.h: c39d869ac0bca5859e78287092e40721 +include/unicode/ucasemap.h: 2f240e1dc6db1771e843f1a03fd0c8f4 +include/unicode/ucat.h: f412352b86adccba85d7f3e4b4515064 +include/unicode/uchar.h: 25e6419710b325b53286cb7dcaf4af57 +include/unicode/ucharstrie.h: 644af4172d542594c40face6cbe01b5e +include/unicode/ucharstriebuilder.h: 52600c017361ee29f21a6fef13667948 +include/unicode/uchriter.h: 85c221ab993783ec8f7823713c30758c +include/unicode/uclean.h: ef4b9289f510edd0bb6b779d0a299f44 +include/unicode/ucnv.h: db701a7a83540ef4dcfc4e780f1da016 +include/unicode/ucnv_cb.h: 69c1c5b156028cd623ed7e5b5b4ab730 +include/unicode/ucnv_err.h: 6ef0751460140d23ae678ef85c298906 +include/unicode/ucnvsel.h: 6e4c5e31c2a89439ef4945cd4a402ef3 +include/unicode/ucol.h: 0b6d71140d2f8e0cf618e5a54cf251af +include/unicode/ucoleitr.h: b4576706530850666c1cfd2424276b26 +include/unicode/uconfig.h: 680b99d4b154e14ac1ebcb9c60f5ab3c +include/unicode/ucpmap.h: a22571c78880dd947efc0ab547061a35 +include/unicode/ucptrie.h: 9b16abc66b11f53941ec5d90af1df0b0 +include/unicode/ucsdet.h: c7d5b3d36da0c71b0a85a72642439a90 +include/unicode/ucurr.h: 0ec2b114be8c462d4542c6e1d0bf2b8a +include/unicode/udat.h: 373cf290162e44eba9f2cf6dad278858 +include/unicode/udata.h: e747b190fadb0749c129aeff7e6eef54 +include/unicode/udateintervalformat.h: 178f650518ecceeb2eca7b763dd68799 +include/unicode/udatpg.h: 078d2d548f3123fceae0d4056359a62e +include/unicode/udisplaycontext.h: 57a269787da52ad6720ff5b1e87b5cdd +include/unicode/uenum.h: 41cce54d4862d5068f4f087b935c0657 +include/unicode/ufieldpositer.h: 21f8ba8e285bfea4daa3da8a01911b7e +include/unicode/uformattable.h: cad38a97f9f929ebc28d5e72dc5ec14f +include/unicode/uformattedvalue.h: 47ae4b93dddfe15d28400da09201090e +include/unicode/ugender.h: d64c9ad1d5cf04136534e3aca38d2638 +include/unicode/uidna.h: 88ee381ec6ec01cb677f3e5222e9cf22 +include/unicode/uiter.h: 3fea96177f4f814091918f54d1e68ccd +include/unicode/uldnames.h: d18634bc73c16b9ae02b6a60fd94d8be +include/unicode/ulistformatter.h: 64859bc80c70c1e183f3537e1c354142 +include/unicode/uloc.h: b344a11407a95b108ef52a4d88c74d6a +include/unicode/ulocdata.h: 116fad6a2c0db0d08e3f5ae02d93a035 +include/unicode/umachine.h: b25221a74cab16d993f35108e6da340a +include/unicode/umisc.h: eca71d8c8bf86529ae5bbc5f34598bea +include/unicode/umsg.h: 298645d31f8d8e209cbb5eb3751e3ceb +include/unicode/umutablecptrie.h: 4fe0aaad80938fbe881a3fb447be1f24 +include/unicode/unifilt.h: 71e8ecdb31d706e8e0efc4bbdc9f86b5 +include/unicode/unifunct.h: 97d80d81556b54ac674d09643df98cfc +include/unicode/unimatch.h: 00eb31b1d65f3e0f03e7d880b1bb79fb +include/unicode/unirepl.h: c5eeec0e14a9666262d332c22124803f +include/unicode/uniset.h: 69b5447c36eec06421bc9038df3bd80e +include/unicode/unistr.h: e35ee05307a3338579df46718b049b32 +include/unicode/unorm.h: 3a1e6dcd474ef8b2c3377b34141bf6d3 +include/unicode/unorm2.h: e8fff4023ad114b325f346d2cdbbe043 +include/unicode/unum.h: ec868132b7242d85645d30dd549b25fc +include/unicode/unumberformatter.h: 0dc25c33373d63ca0beb10a9ef265237 +include/unicode/unumsys.h: 7e5dd76a0e07f790c30c944bfb810e71 +include/unicode/uobject.h: c9a1e3afb798e0fbcad34b01b0bc5c3e +include/unicode/upluralrules.h: 15feae7c7df35b97d5e715f28f616e63 +include/unicode/uregex.h: 10fe8b8c9f98758bf192bc765fa45e3c +include/unicode/uregion.h: a3f28f15972bf18600012815a8c76535 +include/unicode/ureldatefmt.h: d528589ebdc3f8cb6c27ce4867752c55 +include/unicode/urename.h: 7cd5ed487b56e2aeb354867a0b2cda5f +include/unicode/urep.h: 6ada98ac1aa68081f10d17b1abadef6e +include/unicode/ures.h: 8c69586a969eb2898d5d3e8c08beda9c +include/unicode/uscript.h: 5bf2d96240b17507a05ebe4d36b1a38e +include/unicode/usearch.h: fc5b3e0d1096ff69c3a2397ef5b3a036 +include/unicode/uset.h: a285e1b480a3abaaee753ba74d245efd +include/unicode/usetiter.h: 36896c874036542390b5a75a04f330c5 +include/unicode/ushape.h: 86fdf709d4312bb17cf95b16f58e1dc4 +include/unicode/uspoof.h: 6c2d471942085f091c8bc748a02f113e +include/unicode/usprep.h: e88585ae8bdb3a35aa88417993bde732 +include/unicode/ustdio.h: 3104e526d3de60538f42c0fd5430adcb +include/unicode/ustream.h: 6a3f303b73d795a0ff9a1b8d2758d88d +include/unicode/ustring.h: 92f522f8ef62e443c11baa56c32e42e4 +include/unicode/ustringtrie.h: 54a28aa9c4e117cd3ebfd0a670324f6c +include/unicode/utext.h: b0e85d74193953fcaa29de51853cc95a +include/unicode/utf.h: 4434eeb75c89a49228884aa247714e1c +include/unicode/utf16.h: d95d304275f6c688b0c4ae5620d57e4c +include/unicode/utf32.h: a1fdf74f4bd8808f9fb17df371f886d9 +include/unicode/utf8.h: 7d5d7b60c96cccc184cdc5cd53447e7c +include/unicode/utf_old.h: c89c03a53abcf83e039ad4217246acd9 +include/unicode/utmscale.h: 7c59d91f835bc9f4b805dd64e73851d7 +include/unicode/utrace.h: 35cbc5ec2fd02b703a449e896f48ebfe +include/unicode/utrans.h: 7a20730bb6d33441a5b9c886cc7cd0eb +include/unicode/utypes.h: be7b3c9d785b5d70b2f05e6dd527f026 +include/unicode/uvernum.h: 59a34f58b169d039a90da4e8824af662 +include/unicode/uversion.h: af19802ec4e905051d79ab4579a30bcd +include/unicode/vtzone.h: a9053ef95930bd854729360fe00fed7a +lib/icu/64.2/Makefile.inc: d000546022e2d0cfb58241c11f054e80 +lib/icu/64.2/pkgdata.inc: 9e9ad5b73839668e9675f4b31caa2ebe +lib/icu/Makefile.inc: d000546022e2d0cfb58241c11f054e80 +lib/icu/current/Makefile.inc: d000546022e2d0cfb58241c11f054e80 +lib/icu/current/pkgdata.inc: 9e9ad5b73839668e9675f4b31caa2ebe +lib/icu/pkgdata.inc: 9e9ad5b73839668e9675f4b31caa2ebe +lib/icudt.dll: ac6efe7eaec4fa7b749550173b04392f +lib/icudt64.dll: 4d80d23284671bd24e8ac1aaf6fc0a7b +lib/icuin.dll: 0a482904d287f7c26d664be6ae1f1671 +lib/icuin64.dll: 0a482904d287f7c26d664be6ae1f1671 +lib/icuio.dll: ed81589b9b71286be32cd8bee437eb41 +lib/icuio64.dll: ed81589b9b71286be32cd8bee437eb41 +lib/icutest.dll: 3c6d6063ae6f1d621a79b7897b48d656 +lib/icutest64.dll: 3c6d6063ae6f1d621a79b7897b48d656 +lib/icutu.dll: 520c5a42e1c175b532fbcd9b90313b6c +lib/icutu64.dll: 520c5a42e1c175b532fbcd9b90313b6c +lib/icuuc.dll: 8200c94ba062e2c9e30da33aca8a4309 +lib/icuuc64.dll: 8200c94ba062e2c9e30da33aca8a4309 +lib/libicudt.dll.a: df32fc5d9b5b4b8b73ef99bd6406fc8e +lib/libicuin.dll.a: b46652d08d3f871395a17d1464c49971 +lib/libicuio.dll.a: 30bbc1bd1301eb888d4ec6097537662a +lib/libicutest.dll.a: 787604ab7a3c1de020d86a9a1fa66be3 +lib/libicutu.dll.a: a5373379a2587d545ab1dd45f0c0667b +lib/libicuuc.dll.a: 2a0ffc1076f58b463cc4bec245c2b1be +lib/pkgconfig/icu-i18n.pc: f573b14475965f49567ed83d5031538e +lib/pkgconfig/icu-io.pc: 2a4e41cb67a88fc54f60694bef22b72a +lib/pkgconfig/icu-uc.pc: 22a5ded4d9fe218e037b1f4c13a70579 +licenses/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/config/mh-mingw: ab13bce100d6595882f2b3a8cc69b564 +share/icu/64.2/install-sh: 5afe8eb5573965dfb58378e4e46f3813 +share/icu/64.2/mkinstalldirs: 31c4856b24c8dbc6319819ccd43b4fda +share/man/man1/derb.1: 140b84149f762ce47b2fe263aed44fb5 +share/man/man1/genbrk.1: f3b0b5c88f6562d93a27e776bf13987c +share/man/man1/gencfu.1: fc9b581c0fe513328c22b44ce035e0c1 +share/man/man1/gencnval.1: 696401204fbe4d17e8dac25eea70ce07 +share/man/man1/gendict.1: f3607026142ed53bf2d0bae71884ce02 +share/man/man1/genrb.1: 3860427c56aa1c847586737737325550 +share/man/man1/icu-config.1: 24f882d0de63c5fee2b10a2911b206f8 +share/man/man1/makeconv.1: ee9bdbd7ee11f0e705e6de72b86f29ac +share/man/man1/pkgdata.1: 2cb82b3e1c820002968867c3b2b5b811 +share/man/man1/uconv.1: 516c265d14b9f3ad72dceb2c2d23f2bb +share/man/man8/genccode.8: 0c9f23a8cec80bfdb6127197f1c3ed17 +share/man/man8/gencmn.8: 251c98aa763ab74829e074c5e6f21c98 +share/man/man8/gensprep.8: a3129a511adbb04310a2d900c15784e1 +share/man/man8/icupkg.8: 145940ae5e9a8aea3a93213f13ddd70c diff --git a/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/11dc74683b2b5768b63ea1e7443e7aaa2d3151c4/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/11dc74683b2b5768b63ea1e7443e7aaa2d3151c4/conanmanifest.txt new file mode 100644 index 00000000..7762ff52 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/11dc74683b2b5768b63ea1e7443e7aaa2d3151c4/conanmanifest.txt @@ -0,0 +1,251 @@ +1563299277 +bin/derb.exe: 90f54a8bbda4f39f4c47287681cb5552 +bin/escapesrc.exe: 12accb206165830ccf4d69fa1f59fc1e +bin/genbrk.exe: 9cbe27e07ad58bf1d237c3349fffa504 +bin/genccode.exe: d84c895291b64a664556e5a1fe6f6bdf +bin/gencfu.exe: be92b3dfda1abb865169cdfb3ede6b4d +bin/gencmn.exe: dac536a66875e73d7d70f881ce89d06d +bin/gencnval.exe: aa1bd302568764a11b399e325e50e653 +bin/gendict.exe: 676c786297c610cf0f5c04599ea3dbe7 +bin/gennorm2.exe: 3c5bf8829fd165df210dcba3b7dc3707 +bin/genrb.exe: 8ae3ad0fda5d3b89f720d423351a5ab7 +bin/gensprep.exe: f5de9cef94d2140c495b63a064013c04 +bin/icu-config: 5b68566c6fde8a8f0c20d9510580f68b +bin/icuinfo.exe: e1141df949642693b26f9fddc43918c0 +bin/icupkg.exe: 8ef556e822f708e61e7c5bb6a1a3b32b +bin/makeconv.exe: ebe2fe9248d4a3a1e0070a2861e35f44 +bin/pkgdata.exe: 807bd1cff4a08161f8b9334e327db6f1 +bin/uconv.exe: 470f25326a8ad758f90f1e4a6f8f17b0 +conaninfo.txt: 9675d2fb92175cb1bef18e3e3ff74825 +include/unicode/alphaindex.h: edc0ff1708822c14fbac4f58a89859c9 +include/unicode/appendable.h: 713ee4a1c3e3ca090b202ceb81d6ad9f +include/unicode/basictz.h: 456683947de10ae84e2c069c9fc55e9f +include/unicode/brkiter.h: c69c05b804270ad6c64f80c03a5b8ee0 +include/unicode/bytestream.h: 8b946f79fb11d18859acdceab1bb5d46 +include/unicode/bytestrie.h: 781e30fb8103ba58fdfe4b6704e54347 +include/unicode/bytestriebuilder.h: e6649e470ceff3af7ec894aa6031cb21 +include/unicode/calendar.h: e640b0fd471a5313b85a866871b9df2a +include/unicode/caniter.h: 74858b2a33cb2805dea0b0bc480dda7d +include/unicode/casemap.h: b40e8878db23b64a72763bf75e4e3e2a +include/unicode/char16ptr.h: 3bed1c6f219d725f6daf274704427035 +include/unicode/chariter.h: 463cdd4748695660223db14c27da3e84 +include/unicode/choicfmt.h: 38f338fb58eebce7fc999c906aad142e +include/unicode/coleitr.h: 35cafcefbe5155408aa6166781d4290d +include/unicode/coll.h: a60e4d0e20f25015d370bfb3b24e267e +include/unicode/compactdecimalformat.h: dd1f639d5c836e200b48ad69ef326fc0 +include/unicode/curramt.h: 8f57c8f5a77ffd6d1f4a9c53b100ee3e +include/unicode/currpinf.h: e279f04f8bb9c6a686ede0f4bbc7caf4 +include/unicode/currunit.h: 0ea702494028296a411ac0bda6895275 +include/unicode/datefmt.h: 91aee102e3fa68c64113645be5b944c4 +include/unicode/dbbi.h: 15a312f4cf6c6bc243fd6d32368956a1 +include/unicode/dcfmtsym.h: 3eec16337aeaa8877e966616ac53783a +include/unicode/decimfmt.h: 18479b4ccc0b4efa7732b1da2d0fd2ab +include/unicode/docmain.h: 0df0e8161180b869031a88050e0a01c9 +include/unicode/dtfmtsym.h: c06710d48a792838da0f5e3814b3908a +include/unicode/dtintrv.h: 65e3985e944f54230322acc986c59a30 +include/unicode/dtitvfmt.h: 72a63051451b33ba43f67e572883e855 +include/unicode/dtitvinf.h: b6e798c244d5d4ed73916a8db5b4a855 +include/unicode/dtptngen.h: 5c7a7e4d10c3db7123815ff42dc904f6 +include/unicode/dtrule.h: a2a865734c97d4d5ee2a095ebbd629cf +include/unicode/edits.h: 7fd52de9a5c418c48234d1425f22fabc +include/unicode/enumset.h: 3bb75fc43c88682895ae98c02e69810d +include/unicode/errorcode.h: 6f00859e026be521cff595db38b871db +include/unicode/fieldpos.h: d42ab3ff641fdc7016cbc3e7526594a1 +include/unicode/filteredbrk.h: 4ab1ef82654177aea8000c72f6652e40 +include/unicode/fmtable.h: c0c5ea7bd3e3a5fded75c2fea543c668 +include/unicode/format.h: 71642e006d9e359a5a8b0800d390ec52 +include/unicode/formattedvalue.h: a502788adec3ba1025321c2cefd0e4c7 +include/unicode/fpositer.h: 2fdf3d1fa8b84e6ba3c561803de5f595 +include/unicode/gender.h: 21d668158f52ab989a8a4711de79f099 +include/unicode/gregocal.h: 4e746c8c84966372f9e66255e3d05246 +include/unicode/icudataver.h: d1c480a9eb95aaa058a6b9311074bc33 +include/unicode/icuplug.h: 60ad27a2a36284bbc1766f9920769175 +include/unicode/idna.h: e2bb1287f5f61b37dd11493008d29ef6 +include/unicode/listformatter.h: 2942dcd998fbadca9043912a2dbe9e7e +include/unicode/localebuilder.h: 5690e3f03681a2fbfe7baea5226378cd +include/unicode/localpointer.h: a89505f84a4bb4e231a17676f1b1d51a +include/unicode/locdspnm.h: 5d12af057d2675b88cf95dc63f015f21 +include/unicode/locid.h: 9df99f05fc348684e116098f6e0a6710 +include/unicode/measfmt.h: 909302945254ede1a345342a8c4b402d +include/unicode/measunit.h: 9e0fe1ba857f051874760f7aad55c68b +include/unicode/measure.h: 060550ced6b6ceae742c8d47772e190f +include/unicode/messagepattern.h: b671e9e96bad09137a7bf186e8d795fc +include/unicode/msgfmt.h: f1723a391f733367dde795d42d1734f3 +include/unicode/normalizer2.h: 909305633321f6cbb76cc88dc8c00c90 +include/unicode/normlzr.h: c974010d56584fcf75f0f2e10e05fe9c +include/unicode/nounit.h: 86e94a9d9377bcd124dfd80600a66d19 +include/unicode/numberformatter.h: 5f13d5de2fb98bb5f6ce33e5b48698c3 +include/unicode/numberrangeformatter.h: 460fa1a21356b00a275e27a9a540140e +include/unicode/numfmt.h: 26724db0305eab9f3b810f3a6accc729 +include/unicode/numsys.h: f68bc678c30deeb7c50a104d852e40d8 +include/unicode/parseerr.h: ce38831411af01eeaf0bbbb6e1cb0153 +include/unicode/parsepos.h: d5300bfbc1b2cd0081aecb71320e11ec +include/unicode/platform.h: d6aed91f3114fe877714fc554ad167ae +include/unicode/plurfmt.h: fa64bd7797a74e8e8769a12047c5bf3c +include/unicode/plurrule.h: 8d3eb6b9c5e6eec6da436601e42ec65e +include/unicode/ptypes.h: d74097874c82f77331d8e06a5c59d37f +include/unicode/putil.h: ee1c69d5060b8d5754bf8879bb7f10d1 +include/unicode/rbbi.h: a0202b93d684e8e595c0012e4cefca83 +include/unicode/rbnf.h: c951102dad30e81d893bc81df09820f5 +include/unicode/rbtz.h: f772120604410ff1f1492b1991d36163 +include/unicode/regex.h: e911b68edf768bc0c96b770fced3a7f5 +include/unicode/region.h: b0c3e0b2ad6650fbab876495b114b639 +include/unicode/reldatefmt.h: 99195dad14eef9b8992409fc066b97d7 +include/unicode/rep.h: d29a88e12fd288a0606a41464630a015 +include/unicode/resbund.h: 87a08c1ea0b825d2f99951e9be9f1127 +include/unicode/schriter.h: 9c196272282acc6ccf6cd34544095b63 +include/unicode/scientificnumberformatter.h: b0f20bc8a5b53b07a07d4576d3d6d928 +include/unicode/search.h: bee76013db18275ff842e90c6805ae72 +include/unicode/selfmt.h: 2457e48d1cf8ff880f1bdaf80a9e2fc7 +include/unicode/simpleformatter.h: 3dfb5ab658aecf124d329b645082b879 +include/unicode/simpletz.h: 07c17256943be808b2b2a597d3d27c33 +include/unicode/smpdtfmt.h: e5ba02765fd03756ba63ca138a47daf1 +include/unicode/sortkey.h: 25af96ad696ab793d62d67debb04c8ba +include/unicode/std_string.h: 2300a9ee3296c630373a6e8b685dff88 +include/unicode/strenum.h: 2d2998dd8033ac7272c39406cc3f8b51 +include/unicode/stringoptions.h: d4929224e8d9df2f272f0305780cbacb +include/unicode/stringpiece.h: 4265692d09da7d3cd585bc6776a8a0c7 +include/unicode/stringtriebuilder.h: fc74bea13a3003c79ebeccc442703037 +include/unicode/stsearch.h: 33d820eada4a37ceb3f0bd9ff07ed63d +include/unicode/symtable.h: 763520aa161c95884efa6f6a5f29eb77 +include/unicode/tblcoll.h: 9aad9b68d582e13be85f437f815a3eb1 +include/unicode/timezone.h: 4e6b12c8e428fae21f99552d29544690 +include/unicode/tmunit.h: 9a1f159c304e2bd283d7cf61a0807c05 +include/unicode/tmutamt.h: 0890de21bc330b69b00f94c437e0f140 +include/unicode/tmutfmt.h: c344b95b816e04ed0bc895c6da6ef460 +include/unicode/translit.h: 3464c7b8023b7c131b0b533e1b372c3a +include/unicode/tzfmt.h: 2cb06301f2376b6802834105060311bf +include/unicode/tznames.h: b5935a11cb884e2e47ad732ee684037d +include/unicode/tzrule.h: bcba9c924da93d42e4f18f507c11e8cf +include/unicode/tztrans.h: 6e72d3497b3e68dc9aad510e2b45f781 +include/unicode/ubidi.h: d90a13a2933198f134efefc0ff7563e6 +include/unicode/ubiditransform.h: fab65809ece8816f1a002eb843b80e29 +include/unicode/ubrk.h: e85002afa629b85ba239135ab11f47f0 +include/unicode/ucal.h: c39d869ac0bca5859e78287092e40721 +include/unicode/ucasemap.h: 2f240e1dc6db1771e843f1a03fd0c8f4 +include/unicode/ucat.h: f412352b86adccba85d7f3e4b4515064 +include/unicode/uchar.h: 25e6419710b325b53286cb7dcaf4af57 +include/unicode/ucharstrie.h: 644af4172d542594c40face6cbe01b5e +include/unicode/ucharstriebuilder.h: 52600c017361ee29f21a6fef13667948 +include/unicode/uchriter.h: 85c221ab993783ec8f7823713c30758c +include/unicode/uclean.h: ef4b9289f510edd0bb6b779d0a299f44 +include/unicode/ucnv.h: db701a7a83540ef4dcfc4e780f1da016 +include/unicode/ucnv_cb.h: 69c1c5b156028cd623ed7e5b5b4ab730 +include/unicode/ucnv_err.h: 6ef0751460140d23ae678ef85c298906 +include/unicode/ucnvsel.h: 6e4c5e31c2a89439ef4945cd4a402ef3 +include/unicode/ucol.h: 0b6d71140d2f8e0cf618e5a54cf251af +include/unicode/ucoleitr.h: b4576706530850666c1cfd2424276b26 +include/unicode/uconfig.h: 680b99d4b154e14ac1ebcb9c60f5ab3c +include/unicode/ucpmap.h: a22571c78880dd947efc0ab547061a35 +include/unicode/ucptrie.h: 9b16abc66b11f53941ec5d90af1df0b0 +include/unicode/ucsdet.h: c7d5b3d36da0c71b0a85a72642439a90 +include/unicode/ucurr.h: 0ec2b114be8c462d4542c6e1d0bf2b8a +include/unicode/udat.h: 373cf290162e44eba9f2cf6dad278858 +include/unicode/udata.h: e747b190fadb0749c129aeff7e6eef54 +include/unicode/udateintervalformat.h: 178f650518ecceeb2eca7b763dd68799 +include/unicode/udatpg.h: 078d2d548f3123fceae0d4056359a62e +include/unicode/udisplaycontext.h: 57a269787da52ad6720ff5b1e87b5cdd +include/unicode/uenum.h: 41cce54d4862d5068f4f087b935c0657 +include/unicode/ufieldpositer.h: 21f8ba8e285bfea4daa3da8a01911b7e +include/unicode/uformattable.h: cad38a97f9f929ebc28d5e72dc5ec14f +include/unicode/uformattedvalue.h: 47ae4b93dddfe15d28400da09201090e +include/unicode/ugender.h: d64c9ad1d5cf04136534e3aca38d2638 +include/unicode/uidna.h: 88ee381ec6ec01cb677f3e5222e9cf22 +include/unicode/uiter.h: 3fea96177f4f814091918f54d1e68ccd +include/unicode/uldnames.h: d18634bc73c16b9ae02b6a60fd94d8be +include/unicode/ulistformatter.h: 64859bc80c70c1e183f3537e1c354142 +include/unicode/uloc.h: b344a11407a95b108ef52a4d88c74d6a +include/unicode/ulocdata.h: 116fad6a2c0db0d08e3f5ae02d93a035 +include/unicode/umachine.h: b25221a74cab16d993f35108e6da340a +include/unicode/umisc.h: eca71d8c8bf86529ae5bbc5f34598bea +include/unicode/umsg.h: 298645d31f8d8e209cbb5eb3751e3ceb +include/unicode/umutablecptrie.h: 4fe0aaad80938fbe881a3fb447be1f24 +include/unicode/unifilt.h: 71e8ecdb31d706e8e0efc4bbdc9f86b5 +include/unicode/unifunct.h: 97d80d81556b54ac674d09643df98cfc +include/unicode/unimatch.h: 00eb31b1d65f3e0f03e7d880b1bb79fb +include/unicode/unirepl.h: c5eeec0e14a9666262d332c22124803f +include/unicode/uniset.h: 69b5447c36eec06421bc9038df3bd80e +include/unicode/unistr.h: e35ee05307a3338579df46718b049b32 +include/unicode/unorm.h: 3a1e6dcd474ef8b2c3377b34141bf6d3 +include/unicode/unorm2.h: e8fff4023ad114b325f346d2cdbbe043 +include/unicode/unum.h: ec868132b7242d85645d30dd549b25fc +include/unicode/unumberformatter.h: 0dc25c33373d63ca0beb10a9ef265237 +include/unicode/unumsys.h: 7e5dd76a0e07f790c30c944bfb810e71 +include/unicode/uobject.h: c9a1e3afb798e0fbcad34b01b0bc5c3e +include/unicode/upluralrules.h: 15feae7c7df35b97d5e715f28f616e63 +include/unicode/uregex.h: 10fe8b8c9f98758bf192bc765fa45e3c +include/unicode/uregion.h: a3f28f15972bf18600012815a8c76535 +include/unicode/ureldatefmt.h: d528589ebdc3f8cb6c27ce4867752c55 +include/unicode/urename.h: 7cd5ed487b56e2aeb354867a0b2cda5f +include/unicode/urep.h: 6ada98ac1aa68081f10d17b1abadef6e +include/unicode/ures.h: 8c69586a969eb2898d5d3e8c08beda9c +include/unicode/uscript.h: 5bf2d96240b17507a05ebe4d36b1a38e +include/unicode/usearch.h: fc5b3e0d1096ff69c3a2397ef5b3a036 +include/unicode/uset.h: a285e1b480a3abaaee753ba74d245efd +include/unicode/usetiter.h: 36896c874036542390b5a75a04f330c5 +include/unicode/ushape.h: 86fdf709d4312bb17cf95b16f58e1dc4 +include/unicode/uspoof.h: 6c2d471942085f091c8bc748a02f113e +include/unicode/usprep.h: e88585ae8bdb3a35aa88417993bde732 +include/unicode/ustdio.h: 3104e526d3de60538f42c0fd5430adcb +include/unicode/ustream.h: 6a3f303b73d795a0ff9a1b8d2758d88d +include/unicode/ustring.h: 92f522f8ef62e443c11baa56c32e42e4 +include/unicode/ustringtrie.h: 54a28aa9c4e117cd3ebfd0a670324f6c +include/unicode/utext.h: b0e85d74193953fcaa29de51853cc95a +include/unicode/utf.h: 4434eeb75c89a49228884aa247714e1c +include/unicode/utf16.h: d95d304275f6c688b0c4ae5620d57e4c +include/unicode/utf32.h: a1fdf74f4bd8808f9fb17df371f886d9 +include/unicode/utf8.h: 7d5d7b60c96cccc184cdc5cd53447e7c +include/unicode/utf_old.h: c89c03a53abcf83e039ad4217246acd9 +include/unicode/utmscale.h: 7c59d91f835bc9f4b805dd64e73851d7 +include/unicode/utrace.h: 35cbc5ec2fd02b703a449e896f48ebfe +include/unicode/utrans.h: 7a20730bb6d33441a5b9c886cc7cd0eb +include/unicode/utypes.h: be7b3c9d785b5d70b2f05e6dd527f026 +include/unicode/uvernum.h: 59a34f58b169d039a90da4e8824af662 +include/unicode/uversion.h: af19802ec4e905051d79ab4579a30bcd +include/unicode/vtzone.h: a9053ef95930bd854729360fe00fed7a +lib/icu/64.2/Makefile.inc: 49a9042429df8bb20c35ae40a5e872bc +lib/icu/64.2/pkgdata.inc: 4baa6960303983040c0689566f358abd +lib/icu/Makefile.inc: 49a9042429df8bb20c35ae40a5e872bc +lib/icu/current/Makefile.inc: 49a9042429df8bb20c35ae40a5e872bc +lib/icu/current/pkgdata.inc: 4baa6960303983040c0689566f358abd +lib/icu/pkgdata.inc: 4baa6960303983040c0689566f358abd +lib/icudt.dll: a8748b83adb2628d2c99150894d8ac1b +lib/icudt.lib: 898e94917525b05795e4a30553f4b666 +lib/icudt64.dll: 4282a87a2c9daf500af6c5f7e9b4e109 +lib/icuin.dll: bff4742e2ba70223bf90373952a1eae7 +lib/icuin.lib: 3f9b2e9d2f305451f8b3915fba0f8403 +lib/icuin64.dll: bff4742e2ba70223bf90373952a1eae7 +lib/icuio.dll: d8d5998ed616f4a66073cfd37efc6caa +lib/icuio.lib: f501e4e1d43982349477e30de4429b9e +lib/icuio64.dll: d8d5998ed616f4a66073cfd37efc6caa +lib/icutest.dll: dfe962d20d861934b40901b50ad90e4b +lib/icutest.lib: 7bf6bdcade9592385d7c9daac9f2745a +lib/icutest64.dll: dfe962d20d861934b40901b50ad90e4b +lib/icutu.dll: 6b7a7fa8f00c563d41cd79928cae7884 +lib/icutu.lib: 942628ede719f1f9908fc7733fc5b437 +lib/icutu64.dll: 6b7a7fa8f00c563d41cd79928cae7884 +lib/icuuc.dll: 4b4ec90086dd45b272354d748cc4f86d +lib/icuuc.lib: 449908250aff19a211223e1f54a00546 +lib/icuuc64.dll: 4b4ec90086dd45b272354d748cc4f86d +lib/pkgconfig/icu-i18n.pc: 35a0ea632f5e2750c5b88b57c280185f +lib/pkgconfig/icu-io.pc: 460699d6c9195c15fe610407e7c94dc1 +lib/pkgconfig/icu-uc.pc: 571c9d5900880452353bed815fe9b556 +licenses/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/config/mh-msys-msvc: deb94ef2bd29c3471723b79091991a51 +share/icu/64.2/install-sh: 5afe8eb5573965dfb58378e4e46f3813 +share/icu/64.2/mkinstalldirs: 31c4856b24c8dbc6319819ccd43b4fda +share/man/man1/derb.1: 140b84149f762ce47b2fe263aed44fb5 +share/man/man1/genbrk.1: f3b0b5c88f6562d93a27e776bf13987c +share/man/man1/gencfu.1: fc9b581c0fe513328c22b44ce035e0c1 +share/man/man1/gencnval.1: 696401204fbe4d17e8dac25eea70ce07 +share/man/man1/gendict.1: f3607026142ed53bf2d0bae71884ce02 +share/man/man1/genrb.1: 3860427c56aa1c847586737737325550 +share/man/man1/icu-config.1: 24f882d0de63c5fee2b10a2911b206f8 +share/man/man1/makeconv.1: ee9bdbd7ee11f0e705e6de72b86f29ac +share/man/man1/pkgdata.1: 2cb82b3e1c820002968867c3b2b5b811 +share/man/man1/uconv.1: 516c265d14b9f3ad72dceb2c2d23f2bb +share/man/man8/genccode.8: 0c9f23a8cec80bfdb6127197f1c3ed17 +share/man/man8/gencmn.8: 251c98aa763ab74829e074c5e6f21c98 +share/man/man8/gensprep.8: a3129a511adbb04310a2d900c15784e1 +share/man/man8/icupkg.8: 145940ae5e9a8aea3a93213f13ddd70c diff --git a/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/8f5896a40336524af740600c29144c7c6a773119/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/8f5896a40336524af740600c29144c7c6a773119/conanmanifest.txt new file mode 100644 index 00000000..e5259822 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/8f5896a40336524af740600c29144c7c6a773119/conanmanifest.txt @@ -0,0 +1,251 @@ +1563297339 +bin/derb.exe: 7cd652556ce507a28ae660230f10568b +bin/escapesrc.exe: 1edea3a9d8522e65e8053c9086eed770 +bin/genbrk.exe: 746dcc890f9723f73aa9f75dea374ce3 +bin/genccode.exe: dcbef1a4ea36678b9526aa87835675e1 +bin/gencfu.exe: cd19e1d4aed9b9aeb7d277daacb5986d +bin/gencmn.exe: 529ea65a5773bb35cde37cdbf9adb6dd +bin/gencnval.exe: 2e6d55a670224e6f0658229d84e6a6a5 +bin/gendict.exe: f8b5a0456d69e825d2c88061b31b9676 +bin/gennorm2.exe: 773d3a430f1b8311882753b65c7c6d71 +bin/genrb.exe: b5432bca364600228474909227413bbe +bin/gensprep.exe: bb9fc116557ab14439cbef3440054134 +bin/icu-config: 869e4451de3e58a28e317cf451c66ac3 +bin/icuinfo.exe: 4bfad340f094172a591d28ba43fdef38 +bin/icupkg.exe: dcaf4627585fb9c59605741f91586107 +bin/makeconv.exe: 6d3238b2b0f479b3c9bebb4bb2d46169 +bin/pkgdata.exe: 27ff75055a8338c77320f4cb9418bcf4 +bin/uconv.exe: 27fce36a4c62ecb72569b769e0349f24 +conaninfo.txt: 540bd8edc660c49d7a7fa5802d75e37a +include/unicode/alphaindex.h: edc0ff1708822c14fbac4f58a89859c9 +include/unicode/appendable.h: 713ee4a1c3e3ca090b202ceb81d6ad9f +include/unicode/basictz.h: 456683947de10ae84e2c069c9fc55e9f +include/unicode/brkiter.h: c69c05b804270ad6c64f80c03a5b8ee0 +include/unicode/bytestream.h: 8b946f79fb11d18859acdceab1bb5d46 +include/unicode/bytestrie.h: 781e30fb8103ba58fdfe4b6704e54347 +include/unicode/bytestriebuilder.h: e6649e470ceff3af7ec894aa6031cb21 +include/unicode/calendar.h: e640b0fd471a5313b85a866871b9df2a +include/unicode/caniter.h: 74858b2a33cb2805dea0b0bc480dda7d +include/unicode/casemap.h: b40e8878db23b64a72763bf75e4e3e2a +include/unicode/char16ptr.h: 3bed1c6f219d725f6daf274704427035 +include/unicode/chariter.h: 463cdd4748695660223db14c27da3e84 +include/unicode/choicfmt.h: 38f338fb58eebce7fc999c906aad142e +include/unicode/coleitr.h: 35cafcefbe5155408aa6166781d4290d +include/unicode/coll.h: a60e4d0e20f25015d370bfb3b24e267e +include/unicode/compactdecimalformat.h: dd1f639d5c836e200b48ad69ef326fc0 +include/unicode/curramt.h: 8f57c8f5a77ffd6d1f4a9c53b100ee3e +include/unicode/currpinf.h: e279f04f8bb9c6a686ede0f4bbc7caf4 +include/unicode/currunit.h: 0ea702494028296a411ac0bda6895275 +include/unicode/datefmt.h: 91aee102e3fa68c64113645be5b944c4 +include/unicode/dbbi.h: 15a312f4cf6c6bc243fd6d32368956a1 +include/unicode/dcfmtsym.h: 3eec16337aeaa8877e966616ac53783a +include/unicode/decimfmt.h: 18479b4ccc0b4efa7732b1da2d0fd2ab +include/unicode/docmain.h: 0df0e8161180b869031a88050e0a01c9 +include/unicode/dtfmtsym.h: c06710d48a792838da0f5e3814b3908a +include/unicode/dtintrv.h: 65e3985e944f54230322acc986c59a30 +include/unicode/dtitvfmt.h: 72a63051451b33ba43f67e572883e855 +include/unicode/dtitvinf.h: b6e798c244d5d4ed73916a8db5b4a855 +include/unicode/dtptngen.h: 5c7a7e4d10c3db7123815ff42dc904f6 +include/unicode/dtrule.h: a2a865734c97d4d5ee2a095ebbd629cf +include/unicode/edits.h: 7fd52de9a5c418c48234d1425f22fabc +include/unicode/enumset.h: 3bb75fc43c88682895ae98c02e69810d +include/unicode/errorcode.h: 6f00859e026be521cff595db38b871db +include/unicode/fieldpos.h: d42ab3ff641fdc7016cbc3e7526594a1 +include/unicode/filteredbrk.h: 4ab1ef82654177aea8000c72f6652e40 +include/unicode/fmtable.h: c0c5ea7bd3e3a5fded75c2fea543c668 +include/unicode/format.h: 71642e006d9e359a5a8b0800d390ec52 +include/unicode/formattedvalue.h: a502788adec3ba1025321c2cefd0e4c7 +include/unicode/fpositer.h: 2fdf3d1fa8b84e6ba3c561803de5f595 +include/unicode/gender.h: 21d668158f52ab989a8a4711de79f099 +include/unicode/gregocal.h: 4e746c8c84966372f9e66255e3d05246 +include/unicode/icudataver.h: d1c480a9eb95aaa058a6b9311074bc33 +include/unicode/icuplug.h: 60ad27a2a36284bbc1766f9920769175 +include/unicode/idna.h: e2bb1287f5f61b37dd11493008d29ef6 +include/unicode/listformatter.h: 2942dcd998fbadca9043912a2dbe9e7e +include/unicode/localebuilder.h: 5690e3f03681a2fbfe7baea5226378cd +include/unicode/localpointer.h: a89505f84a4bb4e231a17676f1b1d51a +include/unicode/locdspnm.h: 5d12af057d2675b88cf95dc63f015f21 +include/unicode/locid.h: 9df99f05fc348684e116098f6e0a6710 +include/unicode/measfmt.h: 909302945254ede1a345342a8c4b402d +include/unicode/measunit.h: 9e0fe1ba857f051874760f7aad55c68b +include/unicode/measure.h: 060550ced6b6ceae742c8d47772e190f +include/unicode/messagepattern.h: b671e9e96bad09137a7bf186e8d795fc +include/unicode/msgfmt.h: f1723a391f733367dde795d42d1734f3 +include/unicode/normalizer2.h: 909305633321f6cbb76cc88dc8c00c90 +include/unicode/normlzr.h: c974010d56584fcf75f0f2e10e05fe9c +include/unicode/nounit.h: 86e94a9d9377bcd124dfd80600a66d19 +include/unicode/numberformatter.h: 5f13d5de2fb98bb5f6ce33e5b48698c3 +include/unicode/numberrangeformatter.h: 460fa1a21356b00a275e27a9a540140e +include/unicode/numfmt.h: 26724db0305eab9f3b810f3a6accc729 +include/unicode/numsys.h: f68bc678c30deeb7c50a104d852e40d8 +include/unicode/parseerr.h: ce38831411af01eeaf0bbbb6e1cb0153 +include/unicode/parsepos.h: d5300bfbc1b2cd0081aecb71320e11ec +include/unicode/platform.h: d6aed91f3114fe877714fc554ad167ae +include/unicode/plurfmt.h: fa64bd7797a74e8e8769a12047c5bf3c +include/unicode/plurrule.h: 8d3eb6b9c5e6eec6da436601e42ec65e +include/unicode/ptypes.h: d74097874c82f77331d8e06a5c59d37f +include/unicode/putil.h: ee1c69d5060b8d5754bf8879bb7f10d1 +include/unicode/rbbi.h: a0202b93d684e8e595c0012e4cefca83 +include/unicode/rbnf.h: c951102dad30e81d893bc81df09820f5 +include/unicode/rbtz.h: f772120604410ff1f1492b1991d36163 +include/unicode/regex.h: e911b68edf768bc0c96b770fced3a7f5 +include/unicode/region.h: b0c3e0b2ad6650fbab876495b114b639 +include/unicode/reldatefmt.h: 99195dad14eef9b8992409fc066b97d7 +include/unicode/rep.h: d29a88e12fd288a0606a41464630a015 +include/unicode/resbund.h: 87a08c1ea0b825d2f99951e9be9f1127 +include/unicode/schriter.h: 9c196272282acc6ccf6cd34544095b63 +include/unicode/scientificnumberformatter.h: b0f20bc8a5b53b07a07d4576d3d6d928 +include/unicode/search.h: bee76013db18275ff842e90c6805ae72 +include/unicode/selfmt.h: 2457e48d1cf8ff880f1bdaf80a9e2fc7 +include/unicode/simpleformatter.h: 3dfb5ab658aecf124d329b645082b879 +include/unicode/simpletz.h: 07c17256943be808b2b2a597d3d27c33 +include/unicode/smpdtfmt.h: e5ba02765fd03756ba63ca138a47daf1 +include/unicode/sortkey.h: 25af96ad696ab793d62d67debb04c8ba +include/unicode/std_string.h: 2300a9ee3296c630373a6e8b685dff88 +include/unicode/strenum.h: 2d2998dd8033ac7272c39406cc3f8b51 +include/unicode/stringoptions.h: d4929224e8d9df2f272f0305780cbacb +include/unicode/stringpiece.h: 4265692d09da7d3cd585bc6776a8a0c7 +include/unicode/stringtriebuilder.h: fc74bea13a3003c79ebeccc442703037 +include/unicode/stsearch.h: 33d820eada4a37ceb3f0bd9ff07ed63d +include/unicode/symtable.h: 763520aa161c95884efa6f6a5f29eb77 +include/unicode/tblcoll.h: 9aad9b68d582e13be85f437f815a3eb1 +include/unicode/timezone.h: 4e6b12c8e428fae21f99552d29544690 +include/unicode/tmunit.h: 9a1f159c304e2bd283d7cf61a0807c05 +include/unicode/tmutamt.h: 0890de21bc330b69b00f94c437e0f140 +include/unicode/tmutfmt.h: c344b95b816e04ed0bc895c6da6ef460 +include/unicode/translit.h: 3464c7b8023b7c131b0b533e1b372c3a +include/unicode/tzfmt.h: 2cb06301f2376b6802834105060311bf +include/unicode/tznames.h: b5935a11cb884e2e47ad732ee684037d +include/unicode/tzrule.h: bcba9c924da93d42e4f18f507c11e8cf +include/unicode/tztrans.h: 6e72d3497b3e68dc9aad510e2b45f781 +include/unicode/ubidi.h: d90a13a2933198f134efefc0ff7563e6 +include/unicode/ubiditransform.h: fab65809ece8816f1a002eb843b80e29 +include/unicode/ubrk.h: e85002afa629b85ba239135ab11f47f0 +include/unicode/ucal.h: c39d869ac0bca5859e78287092e40721 +include/unicode/ucasemap.h: 2f240e1dc6db1771e843f1a03fd0c8f4 +include/unicode/ucat.h: f412352b86adccba85d7f3e4b4515064 +include/unicode/uchar.h: 25e6419710b325b53286cb7dcaf4af57 +include/unicode/ucharstrie.h: 644af4172d542594c40face6cbe01b5e +include/unicode/ucharstriebuilder.h: 52600c017361ee29f21a6fef13667948 +include/unicode/uchriter.h: 85c221ab993783ec8f7823713c30758c +include/unicode/uclean.h: ef4b9289f510edd0bb6b779d0a299f44 +include/unicode/ucnv.h: db701a7a83540ef4dcfc4e780f1da016 +include/unicode/ucnv_cb.h: 69c1c5b156028cd623ed7e5b5b4ab730 +include/unicode/ucnv_err.h: 6ef0751460140d23ae678ef85c298906 +include/unicode/ucnvsel.h: 6e4c5e31c2a89439ef4945cd4a402ef3 +include/unicode/ucol.h: 0b6d71140d2f8e0cf618e5a54cf251af +include/unicode/ucoleitr.h: b4576706530850666c1cfd2424276b26 +include/unicode/uconfig.h: 680b99d4b154e14ac1ebcb9c60f5ab3c +include/unicode/ucpmap.h: a22571c78880dd947efc0ab547061a35 +include/unicode/ucptrie.h: 9b16abc66b11f53941ec5d90af1df0b0 +include/unicode/ucsdet.h: c7d5b3d36da0c71b0a85a72642439a90 +include/unicode/ucurr.h: 0ec2b114be8c462d4542c6e1d0bf2b8a +include/unicode/udat.h: 373cf290162e44eba9f2cf6dad278858 +include/unicode/udata.h: e747b190fadb0749c129aeff7e6eef54 +include/unicode/udateintervalformat.h: 178f650518ecceeb2eca7b763dd68799 +include/unicode/udatpg.h: 078d2d548f3123fceae0d4056359a62e +include/unicode/udisplaycontext.h: 57a269787da52ad6720ff5b1e87b5cdd +include/unicode/uenum.h: 41cce54d4862d5068f4f087b935c0657 +include/unicode/ufieldpositer.h: 21f8ba8e285bfea4daa3da8a01911b7e +include/unicode/uformattable.h: cad38a97f9f929ebc28d5e72dc5ec14f +include/unicode/uformattedvalue.h: 47ae4b93dddfe15d28400da09201090e +include/unicode/ugender.h: d64c9ad1d5cf04136534e3aca38d2638 +include/unicode/uidna.h: 88ee381ec6ec01cb677f3e5222e9cf22 +include/unicode/uiter.h: 3fea96177f4f814091918f54d1e68ccd +include/unicode/uldnames.h: d18634bc73c16b9ae02b6a60fd94d8be +include/unicode/ulistformatter.h: 64859bc80c70c1e183f3537e1c354142 +include/unicode/uloc.h: b344a11407a95b108ef52a4d88c74d6a +include/unicode/ulocdata.h: 116fad6a2c0db0d08e3f5ae02d93a035 +include/unicode/umachine.h: b25221a74cab16d993f35108e6da340a +include/unicode/umisc.h: eca71d8c8bf86529ae5bbc5f34598bea +include/unicode/umsg.h: 298645d31f8d8e209cbb5eb3751e3ceb +include/unicode/umutablecptrie.h: 4fe0aaad80938fbe881a3fb447be1f24 +include/unicode/unifilt.h: 71e8ecdb31d706e8e0efc4bbdc9f86b5 +include/unicode/unifunct.h: 97d80d81556b54ac674d09643df98cfc +include/unicode/unimatch.h: 00eb31b1d65f3e0f03e7d880b1bb79fb +include/unicode/unirepl.h: c5eeec0e14a9666262d332c22124803f +include/unicode/uniset.h: 69b5447c36eec06421bc9038df3bd80e +include/unicode/unistr.h: e35ee05307a3338579df46718b049b32 +include/unicode/unorm.h: 3a1e6dcd474ef8b2c3377b34141bf6d3 +include/unicode/unorm2.h: e8fff4023ad114b325f346d2cdbbe043 +include/unicode/unum.h: ec868132b7242d85645d30dd549b25fc +include/unicode/unumberformatter.h: 0dc25c33373d63ca0beb10a9ef265237 +include/unicode/unumsys.h: 7e5dd76a0e07f790c30c944bfb810e71 +include/unicode/uobject.h: c9a1e3afb798e0fbcad34b01b0bc5c3e +include/unicode/upluralrules.h: 15feae7c7df35b97d5e715f28f616e63 +include/unicode/uregex.h: 10fe8b8c9f98758bf192bc765fa45e3c +include/unicode/uregion.h: a3f28f15972bf18600012815a8c76535 +include/unicode/ureldatefmt.h: d528589ebdc3f8cb6c27ce4867752c55 +include/unicode/urename.h: 7cd5ed487b56e2aeb354867a0b2cda5f +include/unicode/urep.h: 6ada98ac1aa68081f10d17b1abadef6e +include/unicode/ures.h: 8c69586a969eb2898d5d3e8c08beda9c +include/unicode/uscript.h: 5bf2d96240b17507a05ebe4d36b1a38e +include/unicode/usearch.h: fc5b3e0d1096ff69c3a2397ef5b3a036 +include/unicode/uset.h: a285e1b480a3abaaee753ba74d245efd +include/unicode/usetiter.h: 36896c874036542390b5a75a04f330c5 +include/unicode/ushape.h: 86fdf709d4312bb17cf95b16f58e1dc4 +include/unicode/uspoof.h: 6c2d471942085f091c8bc748a02f113e +include/unicode/usprep.h: e88585ae8bdb3a35aa88417993bde732 +include/unicode/ustdio.h: 3104e526d3de60538f42c0fd5430adcb +include/unicode/ustream.h: 6a3f303b73d795a0ff9a1b8d2758d88d +include/unicode/ustring.h: 92f522f8ef62e443c11baa56c32e42e4 +include/unicode/ustringtrie.h: 54a28aa9c4e117cd3ebfd0a670324f6c +include/unicode/utext.h: b0e85d74193953fcaa29de51853cc95a +include/unicode/utf.h: 4434eeb75c89a49228884aa247714e1c +include/unicode/utf16.h: d95d304275f6c688b0c4ae5620d57e4c +include/unicode/utf32.h: a1fdf74f4bd8808f9fb17df371f886d9 +include/unicode/utf8.h: 7d5d7b60c96cccc184cdc5cd53447e7c +include/unicode/utf_old.h: c89c03a53abcf83e039ad4217246acd9 +include/unicode/utmscale.h: 7c59d91f835bc9f4b805dd64e73851d7 +include/unicode/utrace.h: 35cbc5ec2fd02b703a449e896f48ebfe +include/unicode/utrans.h: 7a20730bb6d33441a5b9c886cc7cd0eb +include/unicode/utypes.h: be7b3c9d785b5d70b2f05e6dd527f026 +include/unicode/uvernum.h: 59a34f58b169d039a90da4e8824af662 +include/unicode/uversion.h: af19802ec4e905051d79ab4579a30bcd +include/unicode/vtzone.h: a9053ef95930bd854729360fe00fed7a +lib/icu/64.2/Makefile.inc: 3fe76ee05bc5afaade899a09af565372 +lib/icu/64.2/pkgdata.inc: 438ae219a7c80279027ca5fd315183c3 +lib/icu/Makefile.inc: 3fe76ee05bc5afaade899a09af565372 +lib/icu/current/Makefile.inc: 3fe76ee05bc5afaade899a09af565372 +lib/icu/current/pkgdata.inc: 438ae219a7c80279027ca5fd315183c3 +lib/icu/pkgdata.inc: 438ae219a7c80279027ca5fd315183c3 +lib/icudt.dll: ce725647c92aca144492f3dbf3ee04ab +lib/icudt.lib: d4e6c59a65ceeea625b1c5d7e35f363c +lib/icudt64.dll: 6b2909c7301d61d84f5fd2286153a1b5 +lib/icuin.dll: 8f2c0c4ce91bcd934234802538d8df14 +lib/icuin.lib: d09d76c165eacaaf52f7320ce0640f55 +lib/icuin64.dll: 8f2c0c4ce91bcd934234802538d8df14 +lib/icuio.dll: ed47e8ce82dac037a9890e0267640627 +lib/icuio.lib: 2fd670029f2809911c8222baa6c56873 +lib/icuio64.dll: ed47e8ce82dac037a9890e0267640627 +lib/icutest.dll: 6b3bada7f63c1c864439ade06a7fd723 +lib/icutest.lib: 110add657fb11e29f12b0ca5b051dfde +lib/icutest64.dll: 6b3bada7f63c1c864439ade06a7fd723 +lib/icutu.dll: f18bca836cb96b59f007eb9ac5fd3e68 +lib/icutu.lib: 4d1c6e152525c0b834eeeb06c9196c6f +lib/icutu64.dll: f18bca836cb96b59f007eb9ac5fd3e68 +lib/icuuc.dll: 1dee2047ea3d480376375c7db457acb3 +lib/icuuc.lib: f669e924846cbe1dc144ee15f1094a66 +lib/icuuc64.dll: 1dee2047ea3d480376375c7db457acb3 +lib/pkgconfig/icu-i18n.pc: 75e0caa47aef4ee8dad62714518ce7e3 +lib/pkgconfig/icu-io.pc: bbb8e1ef1d9bf466c474ed4722ba1fe6 +lib/pkgconfig/icu-uc.pc: 5ef9d87af3f5aff6401d808db734f3bf +licenses/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/config/mh-msys-msvc: deb94ef2bd29c3471723b79091991a51 +share/icu/64.2/install-sh: 5afe8eb5573965dfb58378e4e46f3813 +share/icu/64.2/mkinstalldirs: 31c4856b24c8dbc6319819ccd43b4fda +share/man/man1/derb.1: 140b84149f762ce47b2fe263aed44fb5 +share/man/man1/genbrk.1: f3b0b5c88f6562d93a27e776bf13987c +share/man/man1/gencfu.1: fc9b581c0fe513328c22b44ce035e0c1 +share/man/man1/gencnval.1: 696401204fbe4d17e8dac25eea70ce07 +share/man/man1/gendict.1: f3607026142ed53bf2d0bae71884ce02 +share/man/man1/genrb.1: 3860427c56aa1c847586737737325550 +share/man/man1/icu-config.1: 24f882d0de63c5fee2b10a2911b206f8 +share/man/man1/makeconv.1: ee9bdbd7ee11f0e705e6de72b86f29ac +share/man/man1/pkgdata.1: 2cb82b3e1c820002968867c3b2b5b811 +share/man/man1/uconv.1: 516c265d14b9f3ad72dceb2c2d23f2bb +share/man/man8/genccode.8: 0c9f23a8cec80bfdb6127197f1c3ed17 +share/man/man8/gencmn.8: 251c98aa763ab74829e074c5e6f21c98 +share/man/man8/gensprep.8: a3129a511adbb04310a2d900c15784e1 +share/man/man8/icupkg.8: 145940ae5e9a8aea3a93213f13ddd70c diff --git a/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/a75971da93722f430ab0d3354b4c35c8e1cb8be6/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/a75971da93722f430ab0d3354b4c35c8e1cb8be6/conanmanifest.txt new file mode 100644 index 00000000..eace1273 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/a75971da93722f430ab0d3354b4c35c8e1cb8be6/conanmanifest.txt @@ -0,0 +1,251 @@ +1563298569 +bin/derb.exe: 7d155c681231f54f3669512100a3038b +bin/escapesrc.exe: 3a54768e31b5a9bf53d0a9fb7b061f10 +bin/genbrk.exe: 12e8b427719bfc85cb0e360422fd81e5 +bin/genccode.exe: 4396af32d01e2106690bd9be45806950 +bin/gencfu.exe: 59986571fd686f3318478d421a9fc9e8 +bin/gencmn.exe: 50750e744321b6a3bade411422e7200a +bin/gencnval.exe: b57f7999a023751638b310e850a875ce +bin/gendict.exe: c950331a93edec89eb962df7390f870d +bin/gennorm2.exe: 842415940c303beeb1716446f99a9d67 +bin/genrb.exe: 90cf94ed8ae02aa51e96f76ab92bfdea +bin/gensprep.exe: 004c1295706f785027f8dd977ba40f50 +bin/icu-config: a59cd8e08313ed02c280f1594f2e4bf1 +bin/icuinfo.exe: 08bb8fa2d591f6e8ee93db64f7ed2ec4 +bin/icupkg.exe: 5c165a685956ccd12a0d858cab69b20b +bin/makeconv.exe: 89487251963c62fe0c3dc00610e60f09 +bin/pkgdata.exe: 0704cd29d80d2d2e3155fdd989c9b94d +bin/uconv.exe: e1d74673fa12224f8371052f6f5feeb2 +conaninfo.txt: e159d49bd326a197124489ebd8636307 +include/unicode/alphaindex.h: edc0ff1708822c14fbac4f58a89859c9 +include/unicode/appendable.h: 713ee4a1c3e3ca090b202ceb81d6ad9f +include/unicode/basictz.h: 456683947de10ae84e2c069c9fc55e9f +include/unicode/brkiter.h: c69c05b804270ad6c64f80c03a5b8ee0 +include/unicode/bytestream.h: 8b946f79fb11d18859acdceab1bb5d46 +include/unicode/bytestrie.h: 781e30fb8103ba58fdfe4b6704e54347 +include/unicode/bytestriebuilder.h: e6649e470ceff3af7ec894aa6031cb21 +include/unicode/calendar.h: e640b0fd471a5313b85a866871b9df2a +include/unicode/caniter.h: 74858b2a33cb2805dea0b0bc480dda7d +include/unicode/casemap.h: b40e8878db23b64a72763bf75e4e3e2a +include/unicode/char16ptr.h: 3bed1c6f219d725f6daf274704427035 +include/unicode/chariter.h: 463cdd4748695660223db14c27da3e84 +include/unicode/choicfmt.h: 38f338fb58eebce7fc999c906aad142e +include/unicode/coleitr.h: 35cafcefbe5155408aa6166781d4290d +include/unicode/coll.h: a60e4d0e20f25015d370bfb3b24e267e +include/unicode/compactdecimalformat.h: dd1f639d5c836e200b48ad69ef326fc0 +include/unicode/curramt.h: 8f57c8f5a77ffd6d1f4a9c53b100ee3e +include/unicode/currpinf.h: e279f04f8bb9c6a686ede0f4bbc7caf4 +include/unicode/currunit.h: 0ea702494028296a411ac0bda6895275 +include/unicode/datefmt.h: 91aee102e3fa68c64113645be5b944c4 +include/unicode/dbbi.h: 15a312f4cf6c6bc243fd6d32368956a1 +include/unicode/dcfmtsym.h: 3eec16337aeaa8877e966616ac53783a +include/unicode/decimfmt.h: 18479b4ccc0b4efa7732b1da2d0fd2ab +include/unicode/docmain.h: 0df0e8161180b869031a88050e0a01c9 +include/unicode/dtfmtsym.h: c06710d48a792838da0f5e3814b3908a +include/unicode/dtintrv.h: 65e3985e944f54230322acc986c59a30 +include/unicode/dtitvfmt.h: 72a63051451b33ba43f67e572883e855 +include/unicode/dtitvinf.h: b6e798c244d5d4ed73916a8db5b4a855 +include/unicode/dtptngen.h: 5c7a7e4d10c3db7123815ff42dc904f6 +include/unicode/dtrule.h: a2a865734c97d4d5ee2a095ebbd629cf +include/unicode/edits.h: 7fd52de9a5c418c48234d1425f22fabc +include/unicode/enumset.h: 3bb75fc43c88682895ae98c02e69810d +include/unicode/errorcode.h: 6f00859e026be521cff595db38b871db +include/unicode/fieldpos.h: d42ab3ff641fdc7016cbc3e7526594a1 +include/unicode/filteredbrk.h: 4ab1ef82654177aea8000c72f6652e40 +include/unicode/fmtable.h: c0c5ea7bd3e3a5fded75c2fea543c668 +include/unicode/format.h: 71642e006d9e359a5a8b0800d390ec52 +include/unicode/formattedvalue.h: a502788adec3ba1025321c2cefd0e4c7 +include/unicode/fpositer.h: 2fdf3d1fa8b84e6ba3c561803de5f595 +include/unicode/gender.h: 21d668158f52ab989a8a4711de79f099 +include/unicode/gregocal.h: 4e746c8c84966372f9e66255e3d05246 +include/unicode/icudataver.h: d1c480a9eb95aaa058a6b9311074bc33 +include/unicode/icuplug.h: 60ad27a2a36284bbc1766f9920769175 +include/unicode/idna.h: e2bb1287f5f61b37dd11493008d29ef6 +include/unicode/listformatter.h: 2942dcd998fbadca9043912a2dbe9e7e +include/unicode/localebuilder.h: 5690e3f03681a2fbfe7baea5226378cd +include/unicode/localpointer.h: a89505f84a4bb4e231a17676f1b1d51a +include/unicode/locdspnm.h: 5d12af057d2675b88cf95dc63f015f21 +include/unicode/locid.h: 9df99f05fc348684e116098f6e0a6710 +include/unicode/measfmt.h: 909302945254ede1a345342a8c4b402d +include/unicode/measunit.h: 9e0fe1ba857f051874760f7aad55c68b +include/unicode/measure.h: 060550ced6b6ceae742c8d47772e190f +include/unicode/messagepattern.h: b671e9e96bad09137a7bf186e8d795fc +include/unicode/msgfmt.h: f1723a391f733367dde795d42d1734f3 +include/unicode/normalizer2.h: 909305633321f6cbb76cc88dc8c00c90 +include/unicode/normlzr.h: c974010d56584fcf75f0f2e10e05fe9c +include/unicode/nounit.h: 86e94a9d9377bcd124dfd80600a66d19 +include/unicode/numberformatter.h: 5f13d5de2fb98bb5f6ce33e5b48698c3 +include/unicode/numberrangeformatter.h: 460fa1a21356b00a275e27a9a540140e +include/unicode/numfmt.h: 26724db0305eab9f3b810f3a6accc729 +include/unicode/numsys.h: f68bc678c30deeb7c50a104d852e40d8 +include/unicode/parseerr.h: ce38831411af01eeaf0bbbb6e1cb0153 +include/unicode/parsepos.h: d5300bfbc1b2cd0081aecb71320e11ec +include/unicode/platform.h: d6aed91f3114fe877714fc554ad167ae +include/unicode/plurfmt.h: fa64bd7797a74e8e8769a12047c5bf3c +include/unicode/plurrule.h: 8d3eb6b9c5e6eec6da436601e42ec65e +include/unicode/ptypes.h: d74097874c82f77331d8e06a5c59d37f +include/unicode/putil.h: ee1c69d5060b8d5754bf8879bb7f10d1 +include/unicode/rbbi.h: a0202b93d684e8e595c0012e4cefca83 +include/unicode/rbnf.h: c951102dad30e81d893bc81df09820f5 +include/unicode/rbtz.h: f772120604410ff1f1492b1991d36163 +include/unicode/regex.h: e911b68edf768bc0c96b770fced3a7f5 +include/unicode/region.h: b0c3e0b2ad6650fbab876495b114b639 +include/unicode/reldatefmt.h: 99195dad14eef9b8992409fc066b97d7 +include/unicode/rep.h: d29a88e12fd288a0606a41464630a015 +include/unicode/resbund.h: 87a08c1ea0b825d2f99951e9be9f1127 +include/unicode/schriter.h: 9c196272282acc6ccf6cd34544095b63 +include/unicode/scientificnumberformatter.h: b0f20bc8a5b53b07a07d4576d3d6d928 +include/unicode/search.h: bee76013db18275ff842e90c6805ae72 +include/unicode/selfmt.h: 2457e48d1cf8ff880f1bdaf80a9e2fc7 +include/unicode/simpleformatter.h: 3dfb5ab658aecf124d329b645082b879 +include/unicode/simpletz.h: 07c17256943be808b2b2a597d3d27c33 +include/unicode/smpdtfmt.h: e5ba02765fd03756ba63ca138a47daf1 +include/unicode/sortkey.h: 25af96ad696ab793d62d67debb04c8ba +include/unicode/std_string.h: 2300a9ee3296c630373a6e8b685dff88 +include/unicode/strenum.h: 2d2998dd8033ac7272c39406cc3f8b51 +include/unicode/stringoptions.h: d4929224e8d9df2f272f0305780cbacb +include/unicode/stringpiece.h: 4265692d09da7d3cd585bc6776a8a0c7 +include/unicode/stringtriebuilder.h: fc74bea13a3003c79ebeccc442703037 +include/unicode/stsearch.h: 33d820eada4a37ceb3f0bd9ff07ed63d +include/unicode/symtable.h: 763520aa161c95884efa6f6a5f29eb77 +include/unicode/tblcoll.h: 9aad9b68d582e13be85f437f815a3eb1 +include/unicode/timezone.h: 4e6b12c8e428fae21f99552d29544690 +include/unicode/tmunit.h: 9a1f159c304e2bd283d7cf61a0807c05 +include/unicode/tmutamt.h: 0890de21bc330b69b00f94c437e0f140 +include/unicode/tmutfmt.h: c344b95b816e04ed0bc895c6da6ef460 +include/unicode/translit.h: 3464c7b8023b7c131b0b533e1b372c3a +include/unicode/tzfmt.h: 2cb06301f2376b6802834105060311bf +include/unicode/tznames.h: b5935a11cb884e2e47ad732ee684037d +include/unicode/tzrule.h: bcba9c924da93d42e4f18f507c11e8cf +include/unicode/tztrans.h: 6e72d3497b3e68dc9aad510e2b45f781 +include/unicode/ubidi.h: d90a13a2933198f134efefc0ff7563e6 +include/unicode/ubiditransform.h: fab65809ece8816f1a002eb843b80e29 +include/unicode/ubrk.h: e85002afa629b85ba239135ab11f47f0 +include/unicode/ucal.h: c39d869ac0bca5859e78287092e40721 +include/unicode/ucasemap.h: 2f240e1dc6db1771e843f1a03fd0c8f4 +include/unicode/ucat.h: f412352b86adccba85d7f3e4b4515064 +include/unicode/uchar.h: 25e6419710b325b53286cb7dcaf4af57 +include/unicode/ucharstrie.h: 644af4172d542594c40face6cbe01b5e +include/unicode/ucharstriebuilder.h: 52600c017361ee29f21a6fef13667948 +include/unicode/uchriter.h: 85c221ab993783ec8f7823713c30758c +include/unicode/uclean.h: ef4b9289f510edd0bb6b779d0a299f44 +include/unicode/ucnv.h: db701a7a83540ef4dcfc4e780f1da016 +include/unicode/ucnv_cb.h: 69c1c5b156028cd623ed7e5b5b4ab730 +include/unicode/ucnv_err.h: 6ef0751460140d23ae678ef85c298906 +include/unicode/ucnvsel.h: 6e4c5e31c2a89439ef4945cd4a402ef3 +include/unicode/ucol.h: 0b6d71140d2f8e0cf618e5a54cf251af +include/unicode/ucoleitr.h: b4576706530850666c1cfd2424276b26 +include/unicode/uconfig.h: 680b99d4b154e14ac1ebcb9c60f5ab3c +include/unicode/ucpmap.h: a22571c78880dd947efc0ab547061a35 +include/unicode/ucptrie.h: 9b16abc66b11f53941ec5d90af1df0b0 +include/unicode/ucsdet.h: c7d5b3d36da0c71b0a85a72642439a90 +include/unicode/ucurr.h: 0ec2b114be8c462d4542c6e1d0bf2b8a +include/unicode/udat.h: 373cf290162e44eba9f2cf6dad278858 +include/unicode/udata.h: e747b190fadb0749c129aeff7e6eef54 +include/unicode/udateintervalformat.h: 178f650518ecceeb2eca7b763dd68799 +include/unicode/udatpg.h: 078d2d548f3123fceae0d4056359a62e +include/unicode/udisplaycontext.h: 57a269787da52ad6720ff5b1e87b5cdd +include/unicode/uenum.h: 41cce54d4862d5068f4f087b935c0657 +include/unicode/ufieldpositer.h: 21f8ba8e285bfea4daa3da8a01911b7e +include/unicode/uformattable.h: cad38a97f9f929ebc28d5e72dc5ec14f +include/unicode/uformattedvalue.h: 47ae4b93dddfe15d28400da09201090e +include/unicode/ugender.h: d64c9ad1d5cf04136534e3aca38d2638 +include/unicode/uidna.h: 88ee381ec6ec01cb677f3e5222e9cf22 +include/unicode/uiter.h: 3fea96177f4f814091918f54d1e68ccd +include/unicode/uldnames.h: d18634bc73c16b9ae02b6a60fd94d8be +include/unicode/ulistformatter.h: 64859bc80c70c1e183f3537e1c354142 +include/unicode/uloc.h: b344a11407a95b108ef52a4d88c74d6a +include/unicode/ulocdata.h: 116fad6a2c0db0d08e3f5ae02d93a035 +include/unicode/umachine.h: b25221a74cab16d993f35108e6da340a +include/unicode/umisc.h: eca71d8c8bf86529ae5bbc5f34598bea +include/unicode/umsg.h: 298645d31f8d8e209cbb5eb3751e3ceb +include/unicode/umutablecptrie.h: 4fe0aaad80938fbe881a3fb447be1f24 +include/unicode/unifilt.h: 71e8ecdb31d706e8e0efc4bbdc9f86b5 +include/unicode/unifunct.h: 97d80d81556b54ac674d09643df98cfc +include/unicode/unimatch.h: 00eb31b1d65f3e0f03e7d880b1bb79fb +include/unicode/unirepl.h: c5eeec0e14a9666262d332c22124803f +include/unicode/uniset.h: 69b5447c36eec06421bc9038df3bd80e +include/unicode/unistr.h: e35ee05307a3338579df46718b049b32 +include/unicode/unorm.h: 3a1e6dcd474ef8b2c3377b34141bf6d3 +include/unicode/unorm2.h: e8fff4023ad114b325f346d2cdbbe043 +include/unicode/unum.h: ec868132b7242d85645d30dd549b25fc +include/unicode/unumberformatter.h: 0dc25c33373d63ca0beb10a9ef265237 +include/unicode/unumsys.h: 7e5dd76a0e07f790c30c944bfb810e71 +include/unicode/uobject.h: c9a1e3afb798e0fbcad34b01b0bc5c3e +include/unicode/upluralrules.h: 15feae7c7df35b97d5e715f28f616e63 +include/unicode/uregex.h: 10fe8b8c9f98758bf192bc765fa45e3c +include/unicode/uregion.h: a3f28f15972bf18600012815a8c76535 +include/unicode/ureldatefmt.h: d528589ebdc3f8cb6c27ce4867752c55 +include/unicode/urename.h: 7cd5ed487b56e2aeb354867a0b2cda5f +include/unicode/urep.h: 6ada98ac1aa68081f10d17b1abadef6e +include/unicode/ures.h: 8c69586a969eb2898d5d3e8c08beda9c +include/unicode/uscript.h: 5bf2d96240b17507a05ebe4d36b1a38e +include/unicode/usearch.h: fc5b3e0d1096ff69c3a2397ef5b3a036 +include/unicode/uset.h: a285e1b480a3abaaee753ba74d245efd +include/unicode/usetiter.h: 36896c874036542390b5a75a04f330c5 +include/unicode/ushape.h: 86fdf709d4312bb17cf95b16f58e1dc4 +include/unicode/uspoof.h: 6c2d471942085f091c8bc748a02f113e +include/unicode/usprep.h: e88585ae8bdb3a35aa88417993bde732 +include/unicode/ustdio.h: 3104e526d3de60538f42c0fd5430adcb +include/unicode/ustream.h: 6a3f303b73d795a0ff9a1b8d2758d88d +include/unicode/ustring.h: 92f522f8ef62e443c11baa56c32e42e4 +include/unicode/ustringtrie.h: 54a28aa9c4e117cd3ebfd0a670324f6c +include/unicode/utext.h: b0e85d74193953fcaa29de51853cc95a +include/unicode/utf.h: 4434eeb75c89a49228884aa247714e1c +include/unicode/utf16.h: d95d304275f6c688b0c4ae5620d57e4c +include/unicode/utf32.h: a1fdf74f4bd8808f9fb17df371f886d9 +include/unicode/utf8.h: 7d5d7b60c96cccc184cdc5cd53447e7c +include/unicode/utf_old.h: c89c03a53abcf83e039ad4217246acd9 +include/unicode/utmscale.h: 7c59d91f835bc9f4b805dd64e73851d7 +include/unicode/utrace.h: 35cbc5ec2fd02b703a449e896f48ebfe +include/unicode/utrans.h: 7a20730bb6d33441a5b9c886cc7cd0eb +include/unicode/utypes.h: be7b3c9d785b5d70b2f05e6dd527f026 +include/unicode/uvernum.h: 59a34f58b169d039a90da4e8824af662 +include/unicode/uversion.h: af19802ec4e905051d79ab4579a30bcd +include/unicode/vtzone.h: a9053ef95930bd854729360fe00fed7a +lib/icu/64.2/Makefile.inc: 6c092462cc6db00d752a733b771de789 +lib/icu/64.2/pkgdata.inc: e0192327bcacf61fba9402f67377ab4a +lib/icu/Makefile.inc: 6c092462cc6db00d752a733b771de789 +lib/icu/current/Makefile.inc: 6c092462cc6db00d752a733b771de789 +lib/icu/current/pkgdata.inc: e0192327bcacf61fba9402f67377ab4a +lib/icu/pkgdata.inc: e0192327bcacf61fba9402f67377ab4a +lib/icudt.dll: 15709335a869f8f94cc8c6be6c67a3d7 +lib/icudt.lib: 6c28bff05a11ca4606ccdb90935307d8 +lib/icudt64.dll: f8a3a40930adfbd0da1863a3c345aff8 +lib/icuin.dll: 9a3c5dfa3855df6e1d0292a572274abb +lib/icuin.lib: 314b4206062131c02206389852decf97 +lib/icuin64.dll: 9a3c5dfa3855df6e1d0292a572274abb +lib/icuio.dll: ecf45606b8b48e38f13938e1bdc06252 +lib/icuio.lib: 68b6479455934321afd66a395f920fe1 +lib/icuio64.dll: ecf45606b8b48e38f13938e1bdc06252 +lib/icutest.dll: 31eb2b086911853280a3e52907e8cbae +lib/icutest.lib: cc54d80d0566a234ba8c33f25ea21a0e +lib/icutest64.dll: 31eb2b086911853280a3e52907e8cbae +lib/icutu.dll: 493b7e3e5f80811d7f15ce8695936db6 +lib/icutu.lib: 5e9f9225f1c5a767e636ad81f45fb854 +lib/icutu64.dll: 493b7e3e5f80811d7f15ce8695936db6 +lib/icuuc.dll: 16f1a404b6a12e105ef79b8c080dce93 +lib/icuuc.lib: c7cb6e9b49a9982322891656c9bf4ee8 +lib/icuuc64.dll: 16f1a404b6a12e105ef79b8c080dce93 +lib/pkgconfig/icu-i18n.pc: 563963d9f6cca93481456dc19e973958 +lib/pkgconfig/icu-io.pc: 838e3c4ffd237b5fe921cefea15fd327 +lib/pkgconfig/icu-uc.pc: ea0501759b296704a1e2319420dddb59 +licenses/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/config/mh-msys-msvc: deb94ef2bd29c3471723b79091991a51 +share/icu/64.2/install-sh: 5afe8eb5573965dfb58378e4e46f3813 +share/icu/64.2/mkinstalldirs: 31c4856b24c8dbc6319819ccd43b4fda +share/man/man1/derb.1: 140b84149f762ce47b2fe263aed44fb5 +share/man/man1/genbrk.1: f3b0b5c88f6562d93a27e776bf13987c +share/man/man1/gencfu.1: fc9b581c0fe513328c22b44ce035e0c1 +share/man/man1/gencnval.1: 696401204fbe4d17e8dac25eea70ce07 +share/man/man1/gendict.1: f3607026142ed53bf2d0bae71884ce02 +share/man/man1/genrb.1: 3860427c56aa1c847586737737325550 +share/man/man1/icu-config.1: 24f882d0de63c5fee2b10a2911b206f8 +share/man/man1/makeconv.1: ee9bdbd7ee11f0e705e6de72b86f29ac +share/man/man1/pkgdata.1: 2cb82b3e1c820002968867c3b2b5b811 +share/man/man1/uconv.1: 516c265d14b9f3ad72dceb2c2d23f2bb +share/man/man8/genccode.8: 0c9f23a8cec80bfdb6127197f1c3ed17 +share/man/man8/gencmn.8: 251c98aa763ab74829e074c5e6f21c98 +share/man/man8/gensprep.8: a3129a511adbb04310a2d900c15784e1 +share/man/man8/icupkg.8: 145940ae5e9a8aea3a93213f13ddd70c diff --git a/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/a779998d6f2f83fe0e000f516f7f7c4a1739e0a3/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/a779998d6f2f83fe0e000f516f7f7c4a1739e0a3/conanmanifest.txt new file mode 100644 index 00000000..706f1e53 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/icu/64.2/qtproject/stable/package/a779998d6f2f83fe0e000f516f7f7c4a1739e0a3/conanmanifest.txt @@ -0,0 +1,251 @@ +1563297860 +bin/derb.exe: 4007262865fcb9d6c7b7bfaadacc0b8e +bin/escapesrc.exe: 877b764cf7a705f0f0f0b81173078c01 +bin/genbrk.exe: 716cf45fb7e09ffe4f110480b6a28832 +bin/genccode.exe: 3b468fd77d7e5cf80ecbb4d32b4be7cb +bin/gencfu.exe: 95f0d7ff1f481f66726036b672076ba8 +bin/gencmn.exe: a03b4d4f9b94a8444a8d8a3c3f798bd6 +bin/gencnval.exe: 6750a9a5197fbd74b275b5fd7dd7c33e +bin/gendict.exe: b6f46c1edc548cbdd9ac67118a5d7c10 +bin/gennorm2.exe: e8cc3907125b3bc4c5e9ed448e3c2973 +bin/genrb.exe: d1a306e9480606f24b54149e2799dc2b +bin/gensprep.exe: 63036e1b8ddb3bad807d6c715eda172a +bin/icu-config: 9781767fcfa815c455e405cbcbb9145c +bin/icuinfo.exe: 74bc712f5696f58051aab155bc8dadfa +bin/icupkg.exe: 61c5bf5b56108646efc293a4655db32a +bin/makeconv.exe: e52c6aa01bb900e12a94af475aecd1c1 +bin/pkgdata.exe: 1ef1bfbf10da2177339157bf133b03d9 +bin/uconv.exe: c37a845021460f32e50e9674c13bbd95 +conaninfo.txt: ca8ff827ceed6bcfd8927596f342ccd3 +include/unicode/alphaindex.h: edc0ff1708822c14fbac4f58a89859c9 +include/unicode/appendable.h: 713ee4a1c3e3ca090b202ceb81d6ad9f +include/unicode/basictz.h: 456683947de10ae84e2c069c9fc55e9f +include/unicode/brkiter.h: c69c05b804270ad6c64f80c03a5b8ee0 +include/unicode/bytestream.h: 8b946f79fb11d18859acdceab1bb5d46 +include/unicode/bytestrie.h: 781e30fb8103ba58fdfe4b6704e54347 +include/unicode/bytestriebuilder.h: e6649e470ceff3af7ec894aa6031cb21 +include/unicode/calendar.h: e640b0fd471a5313b85a866871b9df2a +include/unicode/caniter.h: 74858b2a33cb2805dea0b0bc480dda7d +include/unicode/casemap.h: b40e8878db23b64a72763bf75e4e3e2a +include/unicode/char16ptr.h: 3bed1c6f219d725f6daf274704427035 +include/unicode/chariter.h: 463cdd4748695660223db14c27da3e84 +include/unicode/choicfmt.h: 38f338fb58eebce7fc999c906aad142e +include/unicode/coleitr.h: 35cafcefbe5155408aa6166781d4290d +include/unicode/coll.h: a60e4d0e20f25015d370bfb3b24e267e +include/unicode/compactdecimalformat.h: dd1f639d5c836e200b48ad69ef326fc0 +include/unicode/curramt.h: 8f57c8f5a77ffd6d1f4a9c53b100ee3e +include/unicode/currpinf.h: e279f04f8bb9c6a686ede0f4bbc7caf4 +include/unicode/currunit.h: 0ea702494028296a411ac0bda6895275 +include/unicode/datefmt.h: 91aee102e3fa68c64113645be5b944c4 +include/unicode/dbbi.h: 15a312f4cf6c6bc243fd6d32368956a1 +include/unicode/dcfmtsym.h: 3eec16337aeaa8877e966616ac53783a +include/unicode/decimfmt.h: 18479b4ccc0b4efa7732b1da2d0fd2ab +include/unicode/docmain.h: 0df0e8161180b869031a88050e0a01c9 +include/unicode/dtfmtsym.h: c06710d48a792838da0f5e3814b3908a +include/unicode/dtintrv.h: 65e3985e944f54230322acc986c59a30 +include/unicode/dtitvfmt.h: 72a63051451b33ba43f67e572883e855 +include/unicode/dtitvinf.h: b6e798c244d5d4ed73916a8db5b4a855 +include/unicode/dtptngen.h: 5c7a7e4d10c3db7123815ff42dc904f6 +include/unicode/dtrule.h: a2a865734c97d4d5ee2a095ebbd629cf +include/unicode/edits.h: 7fd52de9a5c418c48234d1425f22fabc +include/unicode/enumset.h: 3bb75fc43c88682895ae98c02e69810d +include/unicode/errorcode.h: 6f00859e026be521cff595db38b871db +include/unicode/fieldpos.h: d42ab3ff641fdc7016cbc3e7526594a1 +include/unicode/filteredbrk.h: 4ab1ef82654177aea8000c72f6652e40 +include/unicode/fmtable.h: c0c5ea7bd3e3a5fded75c2fea543c668 +include/unicode/format.h: 71642e006d9e359a5a8b0800d390ec52 +include/unicode/formattedvalue.h: a502788adec3ba1025321c2cefd0e4c7 +include/unicode/fpositer.h: 2fdf3d1fa8b84e6ba3c561803de5f595 +include/unicode/gender.h: 21d668158f52ab989a8a4711de79f099 +include/unicode/gregocal.h: 4e746c8c84966372f9e66255e3d05246 +include/unicode/icudataver.h: d1c480a9eb95aaa058a6b9311074bc33 +include/unicode/icuplug.h: 60ad27a2a36284bbc1766f9920769175 +include/unicode/idna.h: e2bb1287f5f61b37dd11493008d29ef6 +include/unicode/listformatter.h: 2942dcd998fbadca9043912a2dbe9e7e +include/unicode/localebuilder.h: 5690e3f03681a2fbfe7baea5226378cd +include/unicode/localpointer.h: a89505f84a4bb4e231a17676f1b1d51a +include/unicode/locdspnm.h: 5d12af057d2675b88cf95dc63f015f21 +include/unicode/locid.h: 9df99f05fc348684e116098f6e0a6710 +include/unicode/measfmt.h: 909302945254ede1a345342a8c4b402d +include/unicode/measunit.h: 9e0fe1ba857f051874760f7aad55c68b +include/unicode/measure.h: 060550ced6b6ceae742c8d47772e190f +include/unicode/messagepattern.h: b671e9e96bad09137a7bf186e8d795fc +include/unicode/msgfmt.h: f1723a391f733367dde795d42d1734f3 +include/unicode/normalizer2.h: 909305633321f6cbb76cc88dc8c00c90 +include/unicode/normlzr.h: c974010d56584fcf75f0f2e10e05fe9c +include/unicode/nounit.h: 86e94a9d9377bcd124dfd80600a66d19 +include/unicode/numberformatter.h: 5f13d5de2fb98bb5f6ce33e5b48698c3 +include/unicode/numberrangeformatter.h: 460fa1a21356b00a275e27a9a540140e +include/unicode/numfmt.h: 26724db0305eab9f3b810f3a6accc729 +include/unicode/numsys.h: f68bc678c30deeb7c50a104d852e40d8 +include/unicode/parseerr.h: ce38831411af01eeaf0bbbb6e1cb0153 +include/unicode/parsepos.h: d5300bfbc1b2cd0081aecb71320e11ec +include/unicode/platform.h: d6aed91f3114fe877714fc554ad167ae +include/unicode/plurfmt.h: fa64bd7797a74e8e8769a12047c5bf3c +include/unicode/plurrule.h: 8d3eb6b9c5e6eec6da436601e42ec65e +include/unicode/ptypes.h: d74097874c82f77331d8e06a5c59d37f +include/unicode/putil.h: ee1c69d5060b8d5754bf8879bb7f10d1 +include/unicode/rbbi.h: a0202b93d684e8e595c0012e4cefca83 +include/unicode/rbnf.h: c951102dad30e81d893bc81df09820f5 +include/unicode/rbtz.h: f772120604410ff1f1492b1991d36163 +include/unicode/regex.h: e911b68edf768bc0c96b770fced3a7f5 +include/unicode/region.h: b0c3e0b2ad6650fbab876495b114b639 +include/unicode/reldatefmt.h: 99195dad14eef9b8992409fc066b97d7 +include/unicode/rep.h: d29a88e12fd288a0606a41464630a015 +include/unicode/resbund.h: 87a08c1ea0b825d2f99951e9be9f1127 +include/unicode/schriter.h: 9c196272282acc6ccf6cd34544095b63 +include/unicode/scientificnumberformatter.h: b0f20bc8a5b53b07a07d4576d3d6d928 +include/unicode/search.h: bee76013db18275ff842e90c6805ae72 +include/unicode/selfmt.h: 2457e48d1cf8ff880f1bdaf80a9e2fc7 +include/unicode/simpleformatter.h: 3dfb5ab658aecf124d329b645082b879 +include/unicode/simpletz.h: 07c17256943be808b2b2a597d3d27c33 +include/unicode/smpdtfmt.h: e5ba02765fd03756ba63ca138a47daf1 +include/unicode/sortkey.h: 25af96ad696ab793d62d67debb04c8ba +include/unicode/std_string.h: 2300a9ee3296c630373a6e8b685dff88 +include/unicode/strenum.h: 2d2998dd8033ac7272c39406cc3f8b51 +include/unicode/stringoptions.h: d4929224e8d9df2f272f0305780cbacb +include/unicode/stringpiece.h: 4265692d09da7d3cd585bc6776a8a0c7 +include/unicode/stringtriebuilder.h: fc74bea13a3003c79ebeccc442703037 +include/unicode/stsearch.h: 33d820eada4a37ceb3f0bd9ff07ed63d +include/unicode/symtable.h: 763520aa161c95884efa6f6a5f29eb77 +include/unicode/tblcoll.h: 9aad9b68d582e13be85f437f815a3eb1 +include/unicode/timezone.h: 4e6b12c8e428fae21f99552d29544690 +include/unicode/tmunit.h: 9a1f159c304e2bd283d7cf61a0807c05 +include/unicode/tmutamt.h: 0890de21bc330b69b00f94c437e0f140 +include/unicode/tmutfmt.h: c344b95b816e04ed0bc895c6da6ef460 +include/unicode/translit.h: 3464c7b8023b7c131b0b533e1b372c3a +include/unicode/tzfmt.h: 2cb06301f2376b6802834105060311bf +include/unicode/tznames.h: b5935a11cb884e2e47ad732ee684037d +include/unicode/tzrule.h: bcba9c924da93d42e4f18f507c11e8cf +include/unicode/tztrans.h: 6e72d3497b3e68dc9aad510e2b45f781 +include/unicode/ubidi.h: d90a13a2933198f134efefc0ff7563e6 +include/unicode/ubiditransform.h: fab65809ece8816f1a002eb843b80e29 +include/unicode/ubrk.h: e85002afa629b85ba239135ab11f47f0 +include/unicode/ucal.h: c39d869ac0bca5859e78287092e40721 +include/unicode/ucasemap.h: 2f240e1dc6db1771e843f1a03fd0c8f4 +include/unicode/ucat.h: f412352b86adccba85d7f3e4b4515064 +include/unicode/uchar.h: 25e6419710b325b53286cb7dcaf4af57 +include/unicode/ucharstrie.h: 644af4172d542594c40face6cbe01b5e +include/unicode/ucharstriebuilder.h: 52600c017361ee29f21a6fef13667948 +include/unicode/uchriter.h: 85c221ab993783ec8f7823713c30758c +include/unicode/uclean.h: ef4b9289f510edd0bb6b779d0a299f44 +include/unicode/ucnv.h: db701a7a83540ef4dcfc4e780f1da016 +include/unicode/ucnv_cb.h: 69c1c5b156028cd623ed7e5b5b4ab730 +include/unicode/ucnv_err.h: 6ef0751460140d23ae678ef85c298906 +include/unicode/ucnvsel.h: 6e4c5e31c2a89439ef4945cd4a402ef3 +include/unicode/ucol.h: 0b6d71140d2f8e0cf618e5a54cf251af +include/unicode/ucoleitr.h: b4576706530850666c1cfd2424276b26 +include/unicode/uconfig.h: 680b99d4b154e14ac1ebcb9c60f5ab3c +include/unicode/ucpmap.h: a22571c78880dd947efc0ab547061a35 +include/unicode/ucptrie.h: 9b16abc66b11f53941ec5d90af1df0b0 +include/unicode/ucsdet.h: c7d5b3d36da0c71b0a85a72642439a90 +include/unicode/ucurr.h: 0ec2b114be8c462d4542c6e1d0bf2b8a +include/unicode/udat.h: 373cf290162e44eba9f2cf6dad278858 +include/unicode/udata.h: e747b190fadb0749c129aeff7e6eef54 +include/unicode/udateintervalformat.h: 178f650518ecceeb2eca7b763dd68799 +include/unicode/udatpg.h: 078d2d548f3123fceae0d4056359a62e +include/unicode/udisplaycontext.h: 57a269787da52ad6720ff5b1e87b5cdd +include/unicode/uenum.h: 41cce54d4862d5068f4f087b935c0657 +include/unicode/ufieldpositer.h: 21f8ba8e285bfea4daa3da8a01911b7e +include/unicode/uformattable.h: cad38a97f9f929ebc28d5e72dc5ec14f +include/unicode/uformattedvalue.h: 47ae4b93dddfe15d28400da09201090e +include/unicode/ugender.h: d64c9ad1d5cf04136534e3aca38d2638 +include/unicode/uidna.h: 88ee381ec6ec01cb677f3e5222e9cf22 +include/unicode/uiter.h: 3fea96177f4f814091918f54d1e68ccd +include/unicode/uldnames.h: d18634bc73c16b9ae02b6a60fd94d8be +include/unicode/ulistformatter.h: 64859bc80c70c1e183f3537e1c354142 +include/unicode/uloc.h: b344a11407a95b108ef52a4d88c74d6a +include/unicode/ulocdata.h: 116fad6a2c0db0d08e3f5ae02d93a035 +include/unicode/umachine.h: b25221a74cab16d993f35108e6da340a +include/unicode/umisc.h: eca71d8c8bf86529ae5bbc5f34598bea +include/unicode/umsg.h: 298645d31f8d8e209cbb5eb3751e3ceb +include/unicode/umutablecptrie.h: 4fe0aaad80938fbe881a3fb447be1f24 +include/unicode/unifilt.h: 71e8ecdb31d706e8e0efc4bbdc9f86b5 +include/unicode/unifunct.h: 97d80d81556b54ac674d09643df98cfc +include/unicode/unimatch.h: 00eb31b1d65f3e0f03e7d880b1bb79fb +include/unicode/unirepl.h: c5eeec0e14a9666262d332c22124803f +include/unicode/uniset.h: 69b5447c36eec06421bc9038df3bd80e +include/unicode/unistr.h: e35ee05307a3338579df46718b049b32 +include/unicode/unorm.h: 3a1e6dcd474ef8b2c3377b34141bf6d3 +include/unicode/unorm2.h: e8fff4023ad114b325f346d2cdbbe043 +include/unicode/unum.h: ec868132b7242d85645d30dd549b25fc +include/unicode/unumberformatter.h: 0dc25c33373d63ca0beb10a9ef265237 +include/unicode/unumsys.h: 7e5dd76a0e07f790c30c944bfb810e71 +include/unicode/uobject.h: c9a1e3afb798e0fbcad34b01b0bc5c3e +include/unicode/upluralrules.h: 15feae7c7df35b97d5e715f28f616e63 +include/unicode/uregex.h: 10fe8b8c9f98758bf192bc765fa45e3c +include/unicode/uregion.h: a3f28f15972bf18600012815a8c76535 +include/unicode/ureldatefmt.h: d528589ebdc3f8cb6c27ce4867752c55 +include/unicode/urename.h: 7cd5ed487b56e2aeb354867a0b2cda5f +include/unicode/urep.h: 6ada98ac1aa68081f10d17b1abadef6e +include/unicode/ures.h: 8c69586a969eb2898d5d3e8c08beda9c +include/unicode/uscript.h: 5bf2d96240b17507a05ebe4d36b1a38e +include/unicode/usearch.h: fc5b3e0d1096ff69c3a2397ef5b3a036 +include/unicode/uset.h: a285e1b480a3abaaee753ba74d245efd +include/unicode/usetiter.h: 36896c874036542390b5a75a04f330c5 +include/unicode/ushape.h: 86fdf709d4312bb17cf95b16f58e1dc4 +include/unicode/uspoof.h: 6c2d471942085f091c8bc748a02f113e +include/unicode/usprep.h: e88585ae8bdb3a35aa88417993bde732 +include/unicode/ustdio.h: 3104e526d3de60538f42c0fd5430adcb +include/unicode/ustream.h: 6a3f303b73d795a0ff9a1b8d2758d88d +include/unicode/ustring.h: 92f522f8ef62e443c11baa56c32e42e4 +include/unicode/ustringtrie.h: 54a28aa9c4e117cd3ebfd0a670324f6c +include/unicode/utext.h: b0e85d74193953fcaa29de51853cc95a +include/unicode/utf.h: 4434eeb75c89a49228884aa247714e1c +include/unicode/utf16.h: d95d304275f6c688b0c4ae5620d57e4c +include/unicode/utf32.h: a1fdf74f4bd8808f9fb17df371f886d9 +include/unicode/utf8.h: 7d5d7b60c96cccc184cdc5cd53447e7c +include/unicode/utf_old.h: c89c03a53abcf83e039ad4217246acd9 +include/unicode/utmscale.h: 7c59d91f835bc9f4b805dd64e73851d7 +include/unicode/utrace.h: 35cbc5ec2fd02b703a449e896f48ebfe +include/unicode/utrans.h: 7a20730bb6d33441a5b9c886cc7cd0eb +include/unicode/utypes.h: be7b3c9d785b5d70b2f05e6dd527f026 +include/unicode/uvernum.h: 59a34f58b169d039a90da4e8824af662 +include/unicode/uversion.h: af19802ec4e905051d79ab4579a30bcd +include/unicode/vtzone.h: a9053ef95930bd854729360fe00fed7a +lib/icu/64.2/Makefile.inc: b9c41b216021001f76a7ee0e7a52be73 +lib/icu/64.2/pkgdata.inc: 97b000374f8cbf1bc206bd53c44b2484 +lib/icu/Makefile.inc: b9c41b216021001f76a7ee0e7a52be73 +lib/icu/current/Makefile.inc: b9c41b216021001f76a7ee0e7a52be73 +lib/icu/current/pkgdata.inc: 97b000374f8cbf1bc206bd53c44b2484 +lib/icu/pkgdata.inc: 97b000374f8cbf1bc206bd53c44b2484 +lib/icudt.dll: 4bf335f3c812239fdb288af9c7536ac4 +lib/icudt.lib: ef983e4199b691cb04ccd33f0d59d042 +lib/icudt64.dll: 5f5f9b34176b0c012f5d62cdd1d947d6 +lib/icuin.dll: 3da27ef4f6ed75685def244900ab251f +lib/icuin.lib: 7b4035a5a6b22ee5a062a4a7c11aeed6 +lib/icuin64.dll: 3da27ef4f6ed75685def244900ab251f +lib/icuio.dll: 3c0193269e42635affe3809d9fccb3eb +lib/icuio.lib: ca82aa1a25c7f1089855744bffaf9e4e +lib/icuio64.dll: 3c0193269e42635affe3809d9fccb3eb +lib/icutest.dll: 538469e7a3a2b678b9628df448d950fb +lib/icutest.lib: c0725af49af2df05b5cd1508cd7ed8d2 +lib/icutest64.dll: 538469e7a3a2b678b9628df448d950fb +lib/icutu.dll: aee92b3be1ad903962710112088b0a4e +lib/icutu.lib: b39b7512ad21ceb5734159f4061cb1cb +lib/icutu64.dll: aee92b3be1ad903962710112088b0a4e +lib/icuuc.dll: 187d80a431a3dd72bc5635e42680ee0d +lib/icuuc.lib: dfb526d79d8568a1b6db40e9c02ea072 +lib/icuuc64.dll: 187d80a431a3dd72bc5635e42680ee0d +lib/pkgconfig/icu-i18n.pc: d4740b0d88c4f31cdb35448da73f84c3 +lib/pkgconfig/icu-io.pc: 3a210f03beec91148eaf11f9f57aa22e +lib/pkgconfig/icu-uc.pc: 4c0594d00617771efbe334cf08c5e5b0 +licenses/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/LICENSE: 8bc5d32052a96f214cbdd1e53dfc935d +share/icu/64.2/config/mh-msys-msvc: deb94ef2bd29c3471723b79091991a51 +share/icu/64.2/install-sh: 5afe8eb5573965dfb58378e4e46f3813 +share/icu/64.2/mkinstalldirs: 31c4856b24c8dbc6319819ccd43b4fda +share/man/man1/derb.1: 140b84149f762ce47b2fe263aed44fb5 +share/man/man1/genbrk.1: f3b0b5c88f6562d93a27e776bf13987c +share/man/man1/gencfu.1: fc9b581c0fe513328c22b44ce035e0c1 +share/man/man1/gencnval.1: 696401204fbe4d17e8dac25eea70ce07 +share/man/man1/gendict.1: f3607026142ed53bf2d0bae71884ce02 +share/man/man1/genrb.1: 3860427c56aa1c847586737737325550 +share/man/man1/icu-config.1: 24f882d0de63c5fee2b10a2911b206f8 +share/man/man1/makeconv.1: ee9bdbd7ee11f0e705e6de72b86f29ac +share/man/man1/pkgdata.1: 2cb82b3e1c820002968867c3b2b5b811 +share/man/man1/uconv.1: 516c265d14b9f3ad72dceb2c2d23f2bb +share/man/man8/genccode.8: 0c9f23a8cec80bfdb6127197f1c3ed17 +share/man/man8/gencmn.8: 251c98aa763ab74829e074c5e6f21c98 +share/man/man8/gensprep.8: a3129a511adbb04310a2d900c15784e1 +share/man/man8/icupkg.8: 145940ae5e9a8aea3a93213f13ddd70c diff --git a/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/export/conanmanifest.txt new file mode 100644 index 00000000..0685a515 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/export/conanmanifest.txt @@ -0,0 +1,4 @@ +1563317256 +LICENSE.md: 5aa9930034582b90e2008d2c609d1317 +conanfile.py: f80221898becb58bc0de993097f98818 +export_source/CMakeLists.txt: eb0fcc86f467a4c6ac9f37c16887a29f diff --git a/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/2b3cb3bb931646fe98ad49632435cdd3ed213435/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/2b3cb3bb931646fe98ad49632435cdd3ed213435/conanmanifest.txt new file mode 100644 index 00000000..44600a77 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/2b3cb3bb931646fe98ad49632435cdd3ed213435/conanmanifest.txt @@ -0,0 +1,12 @@ +1563319076 +conaninfo.txt: f7407f0b37a177dbd8da281e911fae13 +include/jconfig.h: 4afbe7884ea1911cce5eb488828a2441 +include/jerror.h: 9b7898fe417de269b8be88b10df908b0 +include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d +include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb +include/turbojpeg.h: b5b3a4a233ea12d2041ad1d1c971e6a0 +lib/libjpeg.a: 76c0df72f772b8437d4cbae90033e9e1 +lib/libturbojpeg.a: 5c6f3ef0620d46137252e6c3a74bd235 +lib/pkgconfig/libjpeg.pc: e8374a56760f12ee4e809879b1675b88 +lib/pkgconfig/libturbojpeg.pc: e9877f5ec875796a6063943cc96cfb3a +licenses/LICENSE.md: 2a423a921d0f68082c80ccc7ad808ef2 diff --git a/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/4985763cfece81b148d7c11f16d564e42ee2756c/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/4985763cfece81b148d7c11f16d564e42ee2756c/conanmanifest.txt new file mode 100644 index 00000000..2b4c30ed --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/4985763cfece81b148d7c11f16d564e42ee2756c/conanmanifest.txt @@ -0,0 +1,12 @@ +1563317429 +conaninfo.txt: d18e9d7f8420204b797c974a3840cd84 +include/jconfig.h: 4afbe7884ea1911cce5eb488828a2441 +include/jerror.h: 9b7898fe417de269b8be88b10df908b0 +include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d +include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb +include/turbojpeg.h: b5b3a4a233ea12d2041ad1d1c971e6a0 +lib/jpeg-static.lib: ff36c0d3e4e89fe38504b7902848cf43 +lib/pkgconfig/libjpeg.pc: aaa7ae7e53ca96542aa9dc600892a37f +lib/pkgconfig/libturbojpeg.pc: bd2d8c64e49e878fb5b3d9ec4e5d48cc +lib/turbojpeg-static.lib: b8f67c803866ebd5e8a4b78e5b1e69be +licenses/LICENSE.md: 2a423a921d0f68082c80ccc7ad808ef2 diff --git a/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/6fe55a250d22d4408ba9c4b99015260e933b58f0/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/6fe55a250d22d4408ba9c4b99015260e933b58f0/conanmanifest.txt new file mode 100644 index 00000000..bf462a03 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/6fe55a250d22d4408ba9c4b99015260e933b58f0/conanmanifest.txt @@ -0,0 +1,12 @@ +1563317951 +conaninfo.txt: 30e51ce35bad9c012af4f30e6e7892ed +include/jconfig.h: 4afbe7884ea1911cce5eb488828a2441 +include/jerror.h: 9b7898fe417de269b8be88b10df908b0 +include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d +include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb +include/turbojpeg.h: b5b3a4a233ea12d2041ad1d1c971e6a0 +lib/jpeg-static.lib: 9bc7573efc66b8352d20c75ccc749f02 +lib/pkgconfig/libjpeg.pc: 8262515528659421186ba8c1ec623689 +lib/pkgconfig/libturbojpeg.pc: 837f896e637fff65f9d69c867fafdfec +lib/turbojpeg-static.lib: c018bdcd94775b2a7b25c1a69742cf28 +licenses/LICENSE.md: 2a423a921d0f68082c80ccc7ad808ef2 diff --git a/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/8f06876bcdec0570dded47fecf362dd95832bd6e/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/8f06876bcdec0570dded47fecf362dd95832bd6e/conanmanifest.txt new file mode 100644 index 00000000..dcf9b779 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/8f06876bcdec0570dded47fecf362dd95832bd6e/conanmanifest.txt @@ -0,0 +1,12 @@ +1563318848 +conaninfo.txt: 91949552e25a4ed2d26b7f0720dfb965 +include/jconfig.h: 4afbe7884ea1911cce5eb488828a2441 +include/jerror.h: 9b7898fe417de269b8be88b10df908b0 +include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d +include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb +include/turbojpeg.h: b5b3a4a233ea12d2041ad1d1c971e6a0 +lib/libjpeg.a: 66c75997f3c87e8c27f51bd4c464f421 +lib/libturbojpeg.a: 1fdd01646bf0752dc56aa89326e81081 +lib/pkgconfig/libjpeg.pc: 5d283d46775e3e57e96354b3e019af5e +lib/pkgconfig/libturbojpeg.pc: f72af38bacd8a265b3d7c595b2fcb631 +licenses/LICENSE.md: 2a423a921d0f68082c80ccc7ad808ef2 diff --git a/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/9b721b63e452039565ba8417e25a183d1bbcb4df/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/9b721b63e452039565ba8417e25a183d1bbcb4df/conanmanifest.txt new file mode 100644 index 00000000..641788cf --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/9b721b63e452039565ba8417e25a183d1bbcb4df/conanmanifest.txt @@ -0,0 +1,12 @@ +1563318176 +conaninfo.txt: 6ec16cc31fcf0bd158817c15ca8b5fab +include/jconfig.h: 4afbe7884ea1911cce5eb488828a2441 +include/jerror.h: 9b7898fe417de269b8be88b10df908b0 +include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d +include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb +include/turbojpeg.h: b5b3a4a233ea12d2041ad1d1c971e6a0 +lib/jpeg-static.lib: 5cd2ee8719b6d66010f5467e5b2df897 +lib/pkgconfig/libjpeg.pc: 8d5435c5c55ee8c6ac656a369397ab7e +lib/pkgconfig/libturbojpeg.pc: 16682a8d9851f1b61285ef3ba5cd999e +lib/turbojpeg-static.lib: 9f40b2cddb0673e15b28f5a345cd9d58 +licenses/LICENSE.md: 2a423a921d0f68082c80ccc7ad808ef2 diff --git a/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/acb703d92685c00a6f85ed3ca8225725f0e186c1/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/acb703d92685c00a6f85ed3ca8225725f0e186c1/conanmanifest.txt new file mode 100644 index 00000000..6a50555a --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libjpeg-turbo/2.0.2/qtproject/stable/package/acb703d92685c00a6f85ed3ca8225725f0e186c1/conanmanifest.txt @@ -0,0 +1,12 @@ +1563317644 +conaninfo.txt: 2c723d8a067380f691577b026b7edafd +include/jconfig.h: 4afbe7884ea1911cce5eb488828a2441 +include/jerror.h: 9b7898fe417de269b8be88b10df908b0 +include/jmorecfg.h: 7873b0a4457d21a746e23c16fc16127d +include/jpeglib.h: 49b0829e2b84fcd4a0cee359199499cb +include/turbojpeg.h: b5b3a4a233ea12d2041ad1d1c971e6a0 +lib/jpeg-static.lib: 08048bd6e49dfd238c50d5063f1c3141 +lib/pkgconfig/libjpeg.pc: 5523669f66f81e12a045408fac68bbde +lib/pkgconfig/libturbojpeg.pc: 3261437bc15909fb4090d70cc282eaa9 +lib/turbojpeg-static.lib: 5430670586f6bde839d35b9a98d57624 +licenses/LICENSE.md: 2a423a921d0f68082c80ccc7ad808ef2 diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/annulen/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/annulen/stable/export/conanmanifest.txt deleted file mode 100644 index c5714a18..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/annulen/stable/export/conanmanifest.txt +++ /dev/null @@ -1,2 +0,0 @@ -1478795230 -conanfile.py: 677544f321559ff6cc9d738c8b609308 \ No newline at end of file diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/annulen/stable/package/357fb491ae867cbbfe369d54132f4f21c3f13f7d/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/annulen/stable/package/357fb491ae867cbbfe369d54132f4f21c3f13f7d/conanmanifest.txt deleted file mode 100644 index b68bca2b..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/annulen/stable/package/357fb491ae867cbbfe369d54132f4f21c3f13f7d/conanmanifest.txt +++ /dev/null @@ -1,320 +0,0 @@ -1478728779 -bin/libxml2-2.dll: 6393dbaab96c3c733b8c78dbf0adba46 -bin/xml2-config: d50d6a18c0f68d0b3ef5939ee20d59f8 -bin/xmlcatalog.exe: a2762f091400139b67e01c54de582896 -bin/xmllint.exe: 6582dafc121c69b8727bed62b9fbc74f -conaninfo.txt: a2d34e82b2ec55a9a2ffcafb7e6451f7 -include/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d -include/libxml/HTMLparser.h: 083a413aedc738e1903735b7f1678087 -include/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f -include/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa -include/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 -include/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f -include/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e -include/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e -include/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 -include/libxml/dict.h: 93b78165ce896cbda4417bd278259714 -include/libxml/encoding.h: e07b28c25a85356f585dd6891e0c7778 -include/libxml/entities.h: 16467595fdaff28420d1657b1658f267 -include/libxml/globals.h: 7dc017984a2a506caaeb45db0e895357 -include/libxml/hash.h: 747ad49c1a665e2eafaf052cbd9d165b -include/libxml/list.h: a81670013af01c8003fa9fdbd9a8cad7 -include/libxml/nanoftp.h: a4aad060f2cedb04dacbe4c58969817a -include/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 -include/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 -include/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 -include/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 -include/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba -include/libxml/schemasInternals.h: 28ed78fdce3dbad508a6381dd580d1e7 -include/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 -include/libxml/threads.h: 2c630b6409352bcd1e10d94177215265 -include/libxml/tree.h: f2a9a61c9a96a73c293f57bff2913ffb -include/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf -include/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 -include/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef -include/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 -include/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d -include/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a -include/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 -include/libxml/xmlexports.h: c7982540f18e547b3ca70c7259c59e4c -include/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 -include/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 -include/libxml/xmlreader.h: dbd5ae99042659a13427209a2bc0041f -include/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b -include/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d -include/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 -include/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 -include/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 -include/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 -include/libxml/xmlversion.h: 22579da9671c7d2d7662135fe8523088 -include/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 -include/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 -include/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd -include/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 -include/libxml2/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d -include/libxml2/libxml/HTMLparser.h: 083a413aedc738e1903735b7f1678087 -include/libxml2/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f -include/libxml2/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa -include/libxml2/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 -include/libxml2/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f -include/libxml2/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e -include/libxml2/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e -include/libxml2/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 -include/libxml2/libxml/dict.h: 93b78165ce896cbda4417bd278259714 -include/libxml2/libxml/encoding.h: e07b28c25a85356f585dd6891e0c7778 -include/libxml2/libxml/entities.h: 16467595fdaff28420d1657b1658f267 -include/libxml2/libxml/globals.h: 7dc017984a2a506caaeb45db0e895357 -include/libxml2/libxml/hash.h: 747ad49c1a665e2eafaf052cbd9d165b -include/libxml2/libxml/list.h: a81670013af01c8003fa9fdbd9a8cad7 -include/libxml2/libxml/nanoftp.h: a4aad060f2cedb04dacbe4c58969817a -include/libxml2/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 -include/libxml2/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 -include/libxml2/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 -include/libxml2/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 -include/libxml2/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba -include/libxml2/libxml/schemasInternals.h: 28ed78fdce3dbad508a6381dd580d1e7 -include/libxml2/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 -include/libxml2/libxml/threads.h: 2c630b6409352bcd1e10d94177215265 -include/libxml2/libxml/tree.h: f2a9a61c9a96a73c293f57bff2913ffb -include/libxml2/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf -include/libxml2/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 -include/libxml2/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef -include/libxml2/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 -include/libxml2/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d -include/libxml2/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a -include/libxml2/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 -include/libxml2/libxml/xmlexports.h: c7982540f18e547b3ca70c7259c59e4c -include/libxml2/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 -include/libxml2/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 -include/libxml2/libxml/xmlreader.h: dbd5ae99042659a13427209a2bc0041f -include/libxml2/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b -include/libxml2/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d -include/libxml2/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 -include/libxml2/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 -include/libxml2/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 -include/libxml2/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 -include/libxml2/libxml/xmlversion.h: 90bea4a276022638ecb073eea7c849e4 -include/libxml2/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 -include/libxml2/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 -include/libxml2/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd -include/libxml2/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 -include/win32config.h: 410df263529fb9ec616b22f590dbdd1d -include/wsockcompat.h: f975f4dc926c27ab755f05a79296bd72 -lib/cmake/libxml2/libxml2-config.cmake: 905864882fbb75196d4618cdf923ef78 -lib/libxml2.dll.a: 6944466ef81a685127a88f1ec6c528a2 -lib/libxml2.la: 82844cbca6a62f0052bb403866940c5c -lib/pkgconfig/libxml-2.0.pc: 85b1b86303c386209ad29dd2d909dfd3 -lib/xml2Conf.sh: 1ae0e5bede910b47b1cb3adc34cf7acf -share/aclocal/libxml.m4: a07f9db1c83755505dbf961c953efdf8 -share/doc/libxml2-2.9.4/Copyright: 2044417e2e5006b65a8b9067b683fcf1 -share/doc/libxml2-2.9.4/examples/testHTML.c: 6b181ebf4001bb62b07c7be7d79a2f01 -share/doc/libxml2-2.9.4/examples/testSAX.c: 34e3e9b268e1915652c15c4be11216a8 -share/doc/libxml2-2.9.4/examples/testXPath.c: 1db9d6ae0438d72387bcfd0ff1ae5ce4 -share/doc/libxml2-2.9.4/examples/xmllint.c: fc1fb77452cd8975c74b5f2664330feb -share/doc/libxml2-2.9.4/html/DOM.gif: b3d91cf23f7c9199b395356ea98cd097 -share/doc/libxml2-2.9.4/html/FAQ.html: 46b6bf6536bf9b2652891363aafb0b58 -share/doc/libxml2-2.9.4/html/Libxml2-Logo-180x168.gif: 6704060ba0272a9624e0a732455439ba -share/doc/libxml2-2.9.4/html/Libxml2-Logo-90x34.gif: 29dfd4b3dec5fee179d3dc7e3d65be8a -share/doc/libxml2-2.9.4/html/encoding.html: 3be0aba75968021dc9be873c020b93a9 -share/doc/libxml2-2.9.4/html/examples.xml: e6fad87730c6957a238a06ad3e33a4e9 -share/doc/libxml2-2.9.4/html/examples.xsl: 821de9e855568781f8c87ad0fe9afcba -share/doc/libxml2-2.9.4/html/html/book1.html: 461321024ef78221594067503eb0eba0 -share/doc/libxml2-2.9.4/html/html/home.png: f6192f4292d744423df690e785d60fdf -share/doc/libxml2-2.9.4/html/html/index.html: 461321024ef78221594067503eb0eba0 -share/doc/libxml2-2.9.4/html/html/left.png: f771308152ab24a69682daed70ce136d -share/doc/libxml2-2.9.4/html/html/libxml-DOCBparser.html: a9c425e3ab0c095b85759a321c294a72 -share/doc/libxml2-2.9.4/html/html/libxml-HTMLparser.html: b20a43ee13f4a8020b84830aa83cefb0 -share/doc/libxml2-2.9.4/html/html/libxml-HTMLtree.html: b639bc91545a89e12d9c0a34a23bd6de -share/doc/libxml2-2.9.4/html/html/libxml-SAX.html: a1dddf7f62888196c45c587a216cbe8a -share/doc/libxml2-2.9.4/html/html/libxml-SAX2.html: 2d8812144ee7796aa073b748ba560d34 -share/doc/libxml2-2.9.4/html/html/libxml-c14n.html: af407530b72ad6d8342eab7e3d90207b -share/doc/libxml2-2.9.4/html/html/libxml-catalog.html: 6ccaf618b222577f8b1c9ed8278ea357 -share/doc/libxml2-2.9.4/html/html/libxml-chvalid.html: 4bec2549c1505b9048041b722cb052c6 -share/doc/libxml2-2.9.4/html/html/libxml-debugXML.html: b1b29857fbff5d68b7bdf982f8b9f6c7 -share/doc/libxml2-2.9.4/html/html/libxml-dict.html: 390df4fbbac8f9ba0a1338bc448b6ad4 -share/doc/libxml2-2.9.4/html/html/libxml-encoding.html: 812d49f58d6f7721ccf9289c0813a473 -share/doc/libxml2-2.9.4/html/html/libxml-entities.html: d4ae454060415d31a5eec7a09d6c05a3 -share/doc/libxml2-2.9.4/html/html/libxml-globals.html: 7487fd3b2740f53f259016b9032caf19 -share/doc/libxml2-2.9.4/html/html/libxml-hash.html: 53ff0d00bc6b42b1f6981a58a4bc5ff8 -share/doc/libxml2-2.9.4/html/html/libxml-lib.html: 461321024ef78221594067503eb0eba0 -share/doc/libxml2-2.9.4/html/html/libxml-list.html: 086afdd20e6be957346251d3ea8552f0 -share/doc/libxml2-2.9.4/html/html/libxml-nanoftp.html: c07d479ce51894e6181be84cd7afc8f6 -share/doc/libxml2-2.9.4/html/html/libxml-nanohttp.html: a4457c15280d27457677a436286c344e -share/doc/libxml2-2.9.4/html/html/libxml-parser.html: d9abc1e3b231427736e24bb53d310edf -share/doc/libxml2-2.9.4/html/html/libxml-parserInternals.html: dc212b49555db1f4d3473021415990f5 -share/doc/libxml2-2.9.4/html/html/libxml-pattern.html: bff29ccd97d10d65cd40201985ba2501 -share/doc/libxml2-2.9.4/html/html/libxml-relaxng.html: da69ff4b925629ce5667c63895aecf3f -share/doc/libxml2-2.9.4/html/html/libxml-schemasInternals.html: 9fe427f9b1b272d687e6ed524df9ac77 -share/doc/libxml2-2.9.4/html/html/libxml-schematron.html: f0ddff7bae5bba25b1c98abd75038c36 -share/doc/libxml2-2.9.4/html/html/libxml-threads.html: 8bfd4253309b18e5b94f01228f3c6887 -share/doc/libxml2-2.9.4/html/html/libxml-tree.html: dd8a9d64d5cd75bcecfcfa530a298cf1 -share/doc/libxml2-2.9.4/html/html/libxml-uri.html: 9b4186c1502963221da42717dfcf2789 -share/doc/libxml2-2.9.4/html/html/libxml-valid.html: 51b24ec90bd3c5591130fa219172dca8 -share/doc/libxml2-2.9.4/html/html/libxml-xinclude.html: 2639d942d8a7bb71201ef35d8dd0a5d1 -share/doc/libxml2-2.9.4/html/html/libxml-xlink.html: 1de0d3b14ab220eb6b51bfa254b03769 -share/doc/libxml2-2.9.4/html/html/libxml-xmlIO.html: e9d7b75133b68febff966553614ca1e3 -share/doc/libxml2-2.9.4/html/html/libxml-xmlautomata.html: 28a6fdabf1bcc027c5723ef484551a3b -share/doc/libxml2-2.9.4/html/html/libxml-xmlerror.html: 13b79642aa3895e095f83dc5ebddc7d9 -share/doc/libxml2-2.9.4/html/html/libxml-xmlexports.html: 76a89eb95c8256a4277f65250245ef9a -share/doc/libxml2-2.9.4/html/html/libxml-xmlmemory.html: ea097805488added49ebb2f1373c212a -share/doc/libxml2-2.9.4/html/html/libxml-xmlmodule.html: dad4c35e0c0a8fb9bc1db2d42ae5f664 -share/doc/libxml2-2.9.4/html/html/libxml-xmlreader.html: 61db95ee91a1056009c76ad04c7aad47 -share/doc/libxml2-2.9.4/html/html/libxml-xmlregexp.html: fc8289c2885a2e9adae8ce5f3f784f4d -share/doc/libxml2-2.9.4/html/html/libxml-xmlsave.html: 8e4208e2908bd9a021c31ee1338755d2 -share/doc/libxml2-2.9.4/html/html/libxml-xmlschemas.html: 455628ea9eca007ecaa224305df3b0c8 -share/doc/libxml2-2.9.4/html/html/libxml-xmlschemastypes.html: f698db4a289728d46199ad42160da1d3 -share/doc/libxml2-2.9.4/html/html/libxml-xmlstring.html: 708539f930210582860e0374d501b801 -share/doc/libxml2-2.9.4/html/html/libxml-xmlunicode.html: 7b282351048157db2233f4a8c9ed305c -share/doc/libxml2-2.9.4/html/html/libxml-xmlversion.html: d9e2cd59ac2a1aa5319d09f7ad726a63 -share/doc/libxml2-2.9.4/html/html/libxml-xmlwriter.html: f7345386e22ec21cf60d91371eeaed57 -share/doc/libxml2-2.9.4/html/html/libxml-xpath.html: 9e3290a0c3f1704b066d736cdadaa93f -share/doc/libxml2-2.9.4/html/html/libxml-xpathInternals.html: 463d1f6b154041eaed041a32ffd5a8c5 -share/doc/libxml2-2.9.4/html/html/libxml-xpointer.html: 578d2d95c3a254fdd208d5eb5d8bc063 -share/doc/libxml2-2.9.4/html/html/libxml-xzlib.html: 8d55e7cdc5a0363d945c8a672841bd6f -share/doc/libxml2-2.9.4/html/html/right.png: ebd7e6d206d73850d77d305ab548f957 -share/doc/libxml2-2.9.4/html/html/up.png: 2f07d9272deb4ae870ca6821117877fa -share/doc/libxml2-2.9.4/html/index.html: 854eae61c805261731f38a873415144f -share/doc/libxml2-2.9.4/html/io1.c: 8861af9d5ae163e2679d14cccd7c50a8 -share/doc/libxml2-2.9.4/html/io1.res: c1063365cedce05c3c75361d8b21eda0 -share/doc/libxml2-2.9.4/html/io2.c: 064a8c92267a391f5cbc41dbf49b14ad -share/doc/libxml2-2.9.4/html/io2.res: c6a030758261e4b23c18fe8fa9b9f1cb -share/doc/libxml2-2.9.4/html/libxml.gif: 7b77627ea524c095934962f5dee442cb -share/doc/libxml2-2.9.4/html/parse1.c: 35924de5d0e047f4e2732e8ef4d31fea -share/doc/libxml2-2.9.4/html/parse2.c: 1533aa6faa9efa078a56d2d37b4e318c -share/doc/libxml2-2.9.4/html/parse3.c: 745ea8e70138377b1fb1d0e3116dba63 -share/doc/libxml2-2.9.4/html/parse4.c: 1ebc80d9df8a1b0568f9cf7a2cc70a3e -share/doc/libxml2-2.9.4/html/reader1.c: b30f26d62bb3c37fc9cba51fff13924e -share/doc/libxml2-2.9.4/html/reader1.res: c7e547f58d4407d091d189a1ebfeab77 -share/doc/libxml2-2.9.4/html/reader2.c: 8b66731b71444ec57b99acc9d41a5f1d -share/doc/libxml2-2.9.4/html/reader3.c: 2874d5506c9f0b9f4a1dead26d58e559 -share/doc/libxml2-2.9.4/html/reader3.res: ce152220e5a24918935d6f0c8bbcf587 -share/doc/libxml2-2.9.4/html/reader4.c: c7d0e7908cfc12c1102a58f4e530bbfd -share/doc/libxml2-2.9.4/html/reader4.res: 2f8c9c74667d1434104e5610a77f824f -share/doc/libxml2-2.9.4/html/redhat.gif: dd0216f442bf6845c103aba1b4bcb869 -share/doc/libxml2-2.9.4/html/smallfootonly.gif: e92b022a99a76d6fceeb35576bb7718f -share/doc/libxml2-2.9.4/html/structure.gif: f10610a92f24c3f0fc35078f5764867e -share/doc/libxml2-2.9.4/html/test1.xml: 5ffe018a2890cdd13b4d08d674cf8dd4 -share/doc/libxml2-2.9.4/html/test2.xml: 4084cf4871ee86fef27f5e5ee91ea455 -share/doc/libxml2-2.9.4/html/test3.xml: 0ba76ca9c89e995bbaf258ab154e5205 -share/doc/libxml2-2.9.4/html/testWriter.c: f76b29aaee2bb1f0323ed8b28a45a794 -share/doc/libxml2-2.9.4/html/tree1.c: 8e3b9f050ff7e6ecd2912940cbb2394f -share/doc/libxml2-2.9.4/html/tree1.res: 4d4d5f3e8297d35e59d9f92c876b42ac -share/doc/libxml2-2.9.4/html/tree2.c: 58c5720b77f06428c3824c66003c6b73 -share/doc/libxml2-2.9.4/html/tree2.res: 8e5cc417bcb23115c4f802404e09657e -share/doc/libxml2-2.9.4/html/tst.xml: 6d10ac1b8fb04bc8fb73f9964589a223 -share/doc/libxml2-2.9.4/html/tutorial/apa.html: 51b23839855ffbb232c8ba2211a4d9ca -share/doc/libxml2-2.9.4/html/tutorial/apb.html: 6fa0d1a793a7d794967c497dc9112077 -share/doc/libxml2-2.9.4/html/tutorial/apc.html: c263a905499b8177ee93b6ab39b26266 -share/doc/libxml2-2.9.4/html/tutorial/apd.html: 9f3342db337c1a28df32d4b85eba94be -share/doc/libxml2-2.9.4/html/tutorial/ape.html: 69164a2345a37ac0b1001f2084ee5abc -share/doc/libxml2-2.9.4/html/tutorial/apf.html: 4b58ea573ee05ceb46cac6c3eeef8211 -share/doc/libxml2-2.9.4/html/tutorial/apg.html: a84665f786e99169afa8e9dceb5003ca -share/doc/libxml2-2.9.4/html/tutorial/aph.html: d49dfaba969e5b9161748d98b6f8eb0b -share/doc/libxml2-2.9.4/html/tutorial/api.html: 0433fb6f377e50662e0f89b1e2f8e49a -share/doc/libxml2-2.9.4/html/tutorial/ar01s02.html: d2b5e466f1613a0a281969296efe652e -share/doc/libxml2-2.9.4/html/tutorial/ar01s03.html: af7d8b5f8bf6e7c6949c5f1b260289ef -share/doc/libxml2-2.9.4/html/tutorial/ar01s04.html: 08161b16d07d12969e2ff0db52c0006d -share/doc/libxml2-2.9.4/html/tutorial/ar01s05.html: a39259d226409f45e234b8e4f0ae1e9f -share/doc/libxml2-2.9.4/html/tutorial/ar01s06.html: 4d622cd5afe28d58e8808651c896ff1e -share/doc/libxml2-2.9.4/html/tutorial/ar01s07.html: c3d0264c72c908e119c22c7787892db9 -share/doc/libxml2-2.9.4/html/tutorial/ar01s08.html: 47bfaa87452e5e5d3436b232d96b1cf7 -share/doc/libxml2-2.9.4/html/tutorial/ar01s09.html: 066052f4864add31dffd8fc4bb1b9b7f -share/doc/libxml2-2.9.4/html/tutorial/images/blank.png: 6f7573d4bb6bf0f55ed9ebd79f3f786f -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/1.png: 0f67842b8cc059137a88288e95115a18 -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/10.png: 29fd9e419eee2efa4ef6ce493ca51a9c -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/2.png: 782f998bab59d0221977c1c0eaa676c8 -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/3.png: 35dcf1dd29a802080c984e52d76e5b1f -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/4.png: 3d412b47729eb73afc7aa430feeb7da0 -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/5.png: 489005941fbb522369466ca850189c59 -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/6.png: f64cfcfac0c4219edebc96d6d043c84c -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/7.png: 0def94f52c5e45256232320aaffeb1ce -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/8.png: 2f899cf0909049b0472654d7357eaeb3 -share/doc/libxml2-2.9.4/html/tutorial/images/callouts/9.png: 5ba16a0731d050493bd7e0b95244aafc -share/doc/libxml2-2.9.4/html/tutorial/images/caution.png: 2245032ab69fc481e2eefd246aa96e07 -share/doc/libxml2-2.9.4/html/tutorial/images/draft.png: 1b1da3ec69df05af5f2a5475e8a8a24b -share/doc/libxml2-2.9.4/html/tutorial/images/home.png: 700644702db92b31d7488edfb3adfe7e -share/doc/libxml2-2.9.4/html/tutorial/images/important.png: ca20b7b781cf82d1aeb36ce63590ccd0 -share/doc/libxml2-2.9.4/html/tutorial/images/next.png: c4ec8d7f81407ce09d175d7366c25ba0 -share/doc/libxml2-2.9.4/html/tutorial/images/note.png: 109e4af9c43357a74c6de01db819f36f -share/doc/libxml2-2.9.4/html/tutorial/images/prev.png: 2188e42454c65ed8a37126d0f5f5830a -share/doc/libxml2-2.9.4/html/tutorial/images/tip.png: dbb88aaf05b4a6a7df59c72cc5c947b4 -share/doc/libxml2-2.9.4/html/tutorial/images/toc-blank.png: a9dfccc01739501bbc01d561da12c944 -share/doc/libxml2-2.9.4/html/tutorial/images/toc-minus.png: 72baddf4a76d4d74f634edf1e71134b3 -share/doc/libxml2-2.9.4/html/tutorial/images/toc-plus.png: ee8d311bafbc474875730d7644e86047 -share/doc/libxml2-2.9.4/html/tutorial/images/up.png: ddf37bee4d12f626b42004e26bdd4e13 -share/doc/libxml2-2.9.4/html/tutorial/images/warning.png: 59c28f6840b1f20094af4ffc16ce3189 -share/doc/libxml2-2.9.4/html/tutorial/includeaddattribute.c: ba57721ff902105ef3c79eb199f4da5e -share/doc/libxml2-2.9.4/html/tutorial/includeaddkeyword.c: 268f90fc598ccf5a5bd1de7d1f57c873 -share/doc/libxml2-2.9.4/html/tutorial/includeconvert.c: b91e86a449cb257dd92ada947c2b2320 -share/doc/libxml2-2.9.4/html/tutorial/includegetattribute.c: af83032a68f54f420f04430efd7629c8 -share/doc/libxml2-2.9.4/html/tutorial/includekeyword.c: 5508972bd6f704cddb4b4faeaa5397b0 -share/doc/libxml2-2.9.4/html/tutorial/includexpath.c: a9718d128b1abbf9710cb7ea315cffec -share/doc/libxml2-2.9.4/html/tutorial/index.html: c3df2af08328cd4cbf697d55ca9cd419 -share/doc/libxml2-2.9.4/html/tutorial/ix01.html: 2f9c98d5610fc9a8f02c7312c3c49691 -share/doc/libxml2-2.9.4/html/tutorial/xmltutorial.pdf: 12df01000d92ab495235de65abcd4e46 -share/doc/libxml2-2.9.4/html/w3c.png: ba69544b9cfa7659a0bb1b81410680a9 -share/doc/libxml2-2.9.4/html/writer.xml: 1e16356328b8e3fa703a18858a11f3bb -share/doc/libxml2-2.9.4/html/xml.html: 238ceba29df713265480f81bf31c1f1a -share/doc/libxml2-2.9.4/html/xpath1.c: 87445983c77091ef0441ff775fb8edc6 -share/doc/libxml2-2.9.4/html/xpath1.res: cf508aadb27c5c145ac58d256326e8eb -share/doc/libxml2-2.9.4/html/xpath2.c: 413d481a75246b5af3d8e7f489e3408f -share/doc/libxml2-2.9.4/html/xpath2.res: c32344efbb7334a5f2563420e0d1723c -share/gtk-doc/html/libxml2/general.html: df2b20bc526b927eefa3f401349d1287 -share/gtk-doc/html/libxml2/home.png: f6192f4292d744423df690e785d60fdf -share/gtk-doc/html/libxml2/index.html: b0b369ddf6959a2604b422c9268a0a3f -share/gtk-doc/html/libxml2/left.png: f771308152ab24a69682daed70ce136d -share/gtk-doc/html/libxml2/libxml2-DOCBparser.html: bde929bed90adf39144b561ad443c278 -share/gtk-doc/html/libxml2/libxml2-HTMLparser.html: 448bf8a3ac020486b4b50ac3cdd52c16 -share/gtk-doc/html/libxml2/libxml2-HTMLtree.html: e53dcd12a0e8e51413ca1de4986d7898 -share/gtk-doc/html/libxml2/libxml2-SAX.html: 5ba9dd3cf89972a337869e55024aeb0e -share/gtk-doc/html/libxml2/libxml2-SAX2.html: 9a8574da93ad762a54194f690db4dbee -share/gtk-doc/html/libxml2/libxml2-c14n.html: 57a9ef60a8af4df6586ab78061a75fd6 -share/gtk-doc/html/libxml2/libxml2-catalog.html: bcd705392f52867a1afadc1166739d17 -share/gtk-doc/html/libxml2/libxml2-chvalid.html: dca486d382dbf88f4d9155e3f7a826cf -share/gtk-doc/html/libxml2/libxml2-debugXML.html: efd04207438816e0ce69c47bc93e525b -share/gtk-doc/html/libxml2/libxml2-dict.html: 3d220f5057f1d2f86c2d900763855a53 -share/gtk-doc/html/libxml2/libxml2-encoding.html: eac9c8c39be246af865c4ad51bf94d32 -share/gtk-doc/html/libxml2/libxml2-entities.html: 3afcaf72917d0f9dda002baf4445e936 -share/gtk-doc/html/libxml2/libxml2-globals.html: 08b752bd53e687bf8ac51400c62ded68 -share/gtk-doc/html/libxml2/libxml2-hash.html: 11b6563618a2b99b9831857a5e81cfd2 -share/gtk-doc/html/libxml2/libxml2-list.html: e26c2e29812e0dd9b790a38f447f6aba -share/gtk-doc/html/libxml2/libxml2-nanoftp.html: 79f4eb67e7eb955c19bd5337a8cc5177 -share/gtk-doc/html/libxml2/libxml2-nanohttp.html: 0eac4dace4fda9fcd0bb2ebb6c16aaf0 -share/gtk-doc/html/libxml2/libxml2-parser.html: c3f66200ba47bd8198ec81aa3c8ce608 -share/gtk-doc/html/libxml2/libxml2-parserInternals.html: b2757ce5c41539e70df72da43af67825 -share/gtk-doc/html/libxml2/libxml2-pattern.html: 6129a6b5661fc0a38d5c967153651d26 -share/gtk-doc/html/libxml2/libxml2-relaxng.html: f98fee61d7e051dff9719e13b768b26c -share/gtk-doc/html/libxml2/libxml2-schemasInternals.html: f69402825563b84f449e76963e654c55 -share/gtk-doc/html/libxml2/libxml2-schematron.html: b3700a489202f309f02c6309f9d86984 -share/gtk-doc/html/libxml2/libxml2-threads.html: bb12a300c2c86bc49f586858a1ef6cd0 -share/gtk-doc/html/libxml2/libxml2-tree.html: 18d8636860bdf93d9a33d4780c84db61 -share/gtk-doc/html/libxml2/libxml2-uri.html: c46c9dfea580890ac48b70346c987bf0 -share/gtk-doc/html/libxml2/libxml2-valid.html: b4165290c6751ed9b2074eb915f0601f -share/gtk-doc/html/libxml2/libxml2-xinclude.html: 644e5093b3931eee1fece47fb9a3c908 -share/gtk-doc/html/libxml2/libxml2-xlink.html: fe35c6e86ba9419aea9f628ed45bc57a -share/gtk-doc/html/libxml2/libxml2-xmlIO.html: 1dd2f72b5a9014978f94155981fa6486 -share/gtk-doc/html/libxml2/libxml2-xmlautomata.html: 9cd301cf92ecca4ff9e896663f6d6570 -share/gtk-doc/html/libxml2/libxml2-xmlerror.html: 00e0588cbbeed28f03ca5665d6ff27ec -share/gtk-doc/html/libxml2/libxml2-xmlexports.html: 62aebfe3442aedae77f8ff0514a8160c -share/gtk-doc/html/libxml2/libxml2-xmlmemory.html: 8c22f5ea8ddd2ed6795726d714b4ab9f -share/gtk-doc/html/libxml2/libxml2-xmlmodule.html: 215331b3567ef3b2e79cf35b1998a357 -share/gtk-doc/html/libxml2/libxml2-xmlreader.html: 576384e2dd8965ab77e6f459022d827f -share/gtk-doc/html/libxml2/libxml2-xmlregexp.html: 1a42a4508373992c4471d360bf1cdf4f -share/gtk-doc/html/libxml2/libxml2-xmlsave.html: ee31535906cba2ee6455e430f48eb236 -share/gtk-doc/html/libxml2/libxml2-xmlschemas.html: 55b5ed0793dd7f64e9c25cfe4be40287 -share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html: aa49b7bc4fe1493b926c035484fd77af -share/gtk-doc/html/libxml2/libxml2-xmlstring.html: 92b3946891a43aaa8d983f599b9aadf0 -share/gtk-doc/html/libxml2/libxml2-xmlunicode.html: 9ac652a74d46f8c3e1caa26c19732b2a -share/gtk-doc/html/libxml2/libxml2-xmlversion.html: 11a6e7c28ccbdbc1ca91213139decfa9 -share/gtk-doc/html/libxml2/libxml2-xmlwriter.html: 088d1735eaf6fcd0e4117c3cad0aa691 -share/gtk-doc/html/libxml2/libxml2-xpath.html: 09af6c8f3ce2aec4abfc523bc197bda6 -share/gtk-doc/html/libxml2/libxml2-xpathInternals.html: 7e1cd39d27fb760f721fb1f5e276dcf9 -share/gtk-doc/html/libxml2/libxml2-xpointer.html: eb4ef1b1665e08fd1c43e44f311367bb -share/gtk-doc/html/libxml2/libxml2.devhelp: dec063a88e7aa03c218f1a7a93cfb912 -share/gtk-doc/html/libxml2/right.png: ebd7e6d206d73850d77d305ab548f957 -share/gtk-doc/html/libxml2/style.css: a7b180ebf583ed0c315d70d6a4890f79 -share/gtk-doc/html/libxml2/up.png: 2f07d9272deb4ae870ca6821117877fa -share/man/man1/xml2-config.1: f9ea1b8ede868111a96fc3dbd9db79e6 -share/man/man1/xmlcatalog.1: c01059c82575fe971688706702d175e7 -share/man/man1/xmllint.1: c2da2d5425849f19b8b0d355f5215973 -share/man/man3/libxml.3: 1bc9e496f1d34157a9e0d1b65704819a \ No newline at end of file diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/export/conanmanifest.txt deleted file mode 100644 index 54a81a2e..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/export/conanmanifest.txt +++ /dev/null @@ -1,2 +0,0 @@ -1499347513 -conanfile.py: 13d33f258924b0e194abbae675d10623 diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/3c9b592a3dd15507b8a6d90a8fcc34d2b4de2260/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/3c9b592a3dd15507b8a6d90a8fcc34d2b4de2260/conanmanifest.txt deleted file mode 100644 index 46e106f7..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/3c9b592a3dd15507b8a6d90a8fcc34d2b4de2260/conanmanifest.txt +++ /dev/null @@ -1,55 +0,0 @@ -1499348590 -bin/libxml2.dll: 21125a168735fe1f2da4ed04d7478ae6 -conaninfo.txt: 38d79dbe71569466f32385561d0a7c01 -include/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d -include/libxml/HTMLparser.h: 083a413aedc738e1903735b7f1678087 -include/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f -include/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa -include/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 -include/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f -include/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e -include/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e -include/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 -include/libxml/dict.h: 93b78165ce896cbda4417bd278259714 -include/libxml/encoding.h: e07b28c25a85356f585dd6891e0c7778 -include/libxml/entities.h: 16467595fdaff28420d1657b1658f267 -include/libxml/globals.h: 7dc017984a2a506caaeb45db0e895357 -include/libxml/hash.h: 747ad49c1a665e2eafaf052cbd9d165b -include/libxml/list.h: a81670013af01c8003fa9fdbd9a8cad7 -include/libxml/nanoftp.h: a4aad060f2cedb04dacbe4c58969817a -include/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 -include/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 -include/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 -include/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 -include/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba -include/libxml/schemasInternals.h: 28ed78fdce3dbad508a6381dd580d1e7 -include/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 -include/libxml/threads.h: 2c630b6409352bcd1e10d94177215265 -include/libxml/tree.h: f2a9a61c9a96a73c293f57bff2913ffb -include/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf -include/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 -include/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef -include/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 -include/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d -include/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a -include/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 -include/libxml/xmlexports.h: c7982540f18e547b3ca70c7259c59e4c -include/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 -include/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 -include/libxml/xmlreader.h: dbd5ae99042659a13427209a2bc0041f -include/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b -include/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d -include/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 -include/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 -include/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 -include/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 -include/libxml/xmlversion.h: 3a4cd39c7bcdbe5358570771fa1f1c10 -include/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 -include/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 -include/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd -include/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 -include/win32config.h: 410df263529fb9ec616b22f590dbdd1d -include/wsockcompat.h: f975f4dc926c27ab755f05a79296bd72 -lib/libxml2.lib: 8401cfb31c445b419fd36f7cca9287ba -lib/libxml2_a.lib: b44b970cfaee62a922b7424646f07bbc -lib/libxml2_a_dll.lib: b7a0af9a50e80ab55a92714e1068f48c diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/61c4f21bb72fcb92afb46571ac7caaa967c09c5d/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/61c4f21bb72fcb92afb46571ac7caaa967c09c5d/conanmanifest.txt deleted file mode 100644 index 5aded80c..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/61c4f21bb72fcb92afb46571ac7caaa967c09c5d/conanmanifest.txt +++ /dev/null @@ -1,55 +0,0 @@ -1499348835 -bin/libxml2.dll: d9a4499bddd011be860ed1414a2cbae4 -conaninfo.txt: 64d85058962adbbc211c59513c575f8e -include/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d -include/libxml/HTMLparser.h: 083a413aedc738e1903735b7f1678087 -include/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f -include/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa -include/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 -include/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f -include/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e -include/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e -include/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 -include/libxml/dict.h: 93b78165ce896cbda4417bd278259714 -include/libxml/encoding.h: e07b28c25a85356f585dd6891e0c7778 -include/libxml/entities.h: 16467595fdaff28420d1657b1658f267 -include/libxml/globals.h: 7dc017984a2a506caaeb45db0e895357 -include/libxml/hash.h: 747ad49c1a665e2eafaf052cbd9d165b -include/libxml/list.h: a81670013af01c8003fa9fdbd9a8cad7 -include/libxml/nanoftp.h: a4aad060f2cedb04dacbe4c58969817a -include/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 -include/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 -include/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 -include/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 -include/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba -include/libxml/schemasInternals.h: 28ed78fdce3dbad508a6381dd580d1e7 -include/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 -include/libxml/threads.h: 2c630b6409352bcd1e10d94177215265 -include/libxml/tree.h: f2a9a61c9a96a73c293f57bff2913ffb -include/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf -include/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 -include/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef -include/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 -include/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d -include/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a -include/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 -include/libxml/xmlexports.h: c7982540f18e547b3ca70c7259c59e4c -include/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 -include/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 -include/libxml/xmlreader.h: dbd5ae99042659a13427209a2bc0041f -include/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b -include/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d -include/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 -include/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 -include/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 -include/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 -include/libxml/xmlversion.h: 3a4cd39c7bcdbe5358570771fa1f1c10 -include/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 -include/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 -include/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd -include/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 -include/win32config.h: 410df263529fb9ec616b22f590dbdd1d -include/wsockcompat.h: f975f4dc926c27ab755f05a79296bd72 -lib/libxml2.lib: 1943502c63f1459602a39bd2323d38f6 -lib/libxml2_a.lib: fd6456fbcd17a0467525faad0666ff8b -lib/libxml2_a_dll.lib: a4c27aa254afe3f1b0279a92421e7342 diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/8ec39b27fb5828ba512b3f2dafe88cc0962c29b9/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/8ec39b27fb5828ba512b3f2dafe88cc0962c29b9/conanmanifest.txt deleted file mode 100644 index e07078e6..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/8ec39b27fb5828ba512b3f2dafe88cc0962c29b9/conanmanifest.txt +++ /dev/null @@ -1,55 +0,0 @@ -1499348420 -bin/libxml2.dll: d97dd77e1ca7b5cc92bb16f1519c2f02 -conaninfo.txt: 2954c763996d7723b688af93f860be53 -include/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d -include/libxml/HTMLparser.h: 083a413aedc738e1903735b7f1678087 -include/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f -include/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa -include/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 -include/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f -include/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e -include/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e -include/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 -include/libxml/dict.h: 93b78165ce896cbda4417bd278259714 -include/libxml/encoding.h: e07b28c25a85356f585dd6891e0c7778 -include/libxml/entities.h: 16467595fdaff28420d1657b1658f267 -include/libxml/globals.h: 7dc017984a2a506caaeb45db0e895357 -include/libxml/hash.h: 747ad49c1a665e2eafaf052cbd9d165b -include/libxml/list.h: a81670013af01c8003fa9fdbd9a8cad7 -include/libxml/nanoftp.h: a4aad060f2cedb04dacbe4c58969817a -include/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 -include/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 -include/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 -include/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 -include/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba -include/libxml/schemasInternals.h: 28ed78fdce3dbad508a6381dd580d1e7 -include/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 -include/libxml/threads.h: 2c630b6409352bcd1e10d94177215265 -include/libxml/tree.h: f2a9a61c9a96a73c293f57bff2913ffb -include/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf -include/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 -include/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef -include/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 -include/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d -include/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a -include/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 -include/libxml/xmlexports.h: c7982540f18e547b3ca70c7259c59e4c -include/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 -include/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 -include/libxml/xmlreader.h: dbd5ae99042659a13427209a2bc0041f -include/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b -include/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d -include/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 -include/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 -include/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 -include/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 -include/libxml/xmlversion.h: 3a4cd39c7bcdbe5358570771fa1f1c10 -include/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 -include/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 -include/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd -include/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 -include/win32config.h: 410df263529fb9ec616b22f590dbdd1d -include/wsockcompat.h: f975f4dc926c27ab755f05a79296bd72 -lib/libxml2.lib: 63bd590c414dfc9907df9e8cea6c3ba6 -lib/libxml2_a.lib: e811e6c280f3715f435ea3d7cebda6c2 -lib/libxml2_a_dll.lib: e2c6edb8085198269970611c68edffaf diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/e08083f0910e4ba3ae89c4298d94b672829af1fe/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/e08083f0910e4ba3ae89c4298d94b672829af1fe/conanmanifest.txt deleted file mode 100644 index 75b0084f..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.4/vitallium/stable/package/e08083f0910e4ba3ae89c4298d94b672829af1fe/conanmanifest.txt +++ /dev/null @@ -1,55 +0,0 @@ -1499348033 -bin/libxml2.dll: 41e781ae591bbf0b36780ccce4565226 -conaninfo.txt: 6ef37ed57f0f92d64efc139dff95365b -include/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d -include/libxml/HTMLparser.h: 083a413aedc738e1903735b7f1678087 -include/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f -include/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa -include/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 -include/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f -include/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e -include/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e -include/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 -include/libxml/dict.h: 93b78165ce896cbda4417bd278259714 -include/libxml/encoding.h: e07b28c25a85356f585dd6891e0c7778 -include/libxml/entities.h: 16467595fdaff28420d1657b1658f267 -include/libxml/globals.h: 7dc017984a2a506caaeb45db0e895357 -include/libxml/hash.h: 747ad49c1a665e2eafaf052cbd9d165b -include/libxml/list.h: a81670013af01c8003fa9fdbd9a8cad7 -include/libxml/nanoftp.h: a4aad060f2cedb04dacbe4c58969817a -include/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 -include/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 -include/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 -include/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 -include/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba -include/libxml/schemasInternals.h: 28ed78fdce3dbad508a6381dd580d1e7 -include/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 -include/libxml/threads.h: 2c630b6409352bcd1e10d94177215265 -include/libxml/tree.h: f2a9a61c9a96a73c293f57bff2913ffb -include/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf -include/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 -include/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef -include/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 -include/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d -include/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a -include/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 -include/libxml/xmlexports.h: c7982540f18e547b3ca70c7259c59e4c -include/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 -include/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 -include/libxml/xmlreader.h: dbd5ae99042659a13427209a2bc0041f -include/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b -include/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d -include/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 -include/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 -include/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 -include/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 -include/libxml/xmlversion.h: 3a4cd39c7bcdbe5358570771fa1f1c10 -include/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 -include/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 -include/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd -include/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 -include/win32config.h: 410df263529fb9ec616b22f590dbdd1d -include/wsockcompat.h: f975f4dc926c27ab755f05a79296bd72 -lib/libxml2.lib: d7556bca5f0c194de00b118175c9e786 -lib/libxml2_a.lib: 2e4f2027834a545ab38246c576ff0f31 -lib/libxml2_a_dll.lib: 1932915fa9f066097c72915cabea32a0 diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/export/conanmanifest.txt new file mode 100644 index 00000000..4ae813dc --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/export/conanmanifest.txt @@ -0,0 +1,4 @@ +1563312451 +LICENSE.md: 5aa9930034582b90e2008d2c609d1317 +conanfile.py: ccf2921e844affb96a4da65b7272cfc5 +export_source/FindLibXml2.cmake: d030bc3535551b29c75e192b74469347 diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/0576a44cadaf801a35075ee2885891b12616dbb9/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/0576a44cadaf801a35075ee2885891b12616dbb9/conanmanifest.txt new file mode 100644 index 00000000..1f9402da --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/0576a44cadaf801a35075ee2885891b12616dbb9/conanmanifest.txt @@ -0,0 +1,57 @@ +1563313057 +FindLibXml2.cmake: d030bc3535551b29c75e192b74469347 +bin/libxml2.dll: 0663731980bb5825bc40424f4dedf2ad +bin/xmlcatalog.exe: 6c78c8607751fac92cb6b7e2aa114d41 +bin/xmllint.exe: 899b5bf615155460ef9f1c9e8c378c62 +conaninfo.txt: 43bcadd86eb95b1ececb8eb5bb363cc0 +include/libxml2/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d +include/libxml2/libxml/HTMLparser.h: d57891c89573ed6dce04b8133e7438d2 +include/libxml2/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f +include/libxml2/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa +include/libxml2/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 +include/libxml2/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f +include/libxml2/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e +include/libxml2/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e +include/libxml2/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 +include/libxml2/libxml/dict.h: 93b78165ce896cbda4417bd278259714 +include/libxml2/libxml/encoding.h: 807b84fade38abad3ae0d9b6af714dbc +include/libxml2/libxml/entities.h: 16467595fdaff28420d1657b1658f267 +include/libxml2/libxml/globals.h: 4b9d5b9ff807b093244cc301d2cefda5 +include/libxml2/libxml/hash.h: 35f22cf7568b12fcf7bdc3f47fe2ccca +include/libxml2/libxml/list.h: 7600108b9a637797d97d3f47ed045287 +include/libxml2/libxml/nanoftp.h: 3f25d5edfbdb1fd084e53d9a7dbaff73 +include/libxml2/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 +include/libxml2/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 +include/libxml2/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 +include/libxml2/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 +include/libxml2/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba +include/libxml2/libxml/schemasInternals.h: 57e07ffffb72ccfa3ef131c7ad89633a +include/libxml2/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 +include/libxml2/libxml/threads.h: 56e93792a1e4d23fe9c6940231cd4a40 +include/libxml2/libxml/tree.h: 7e730a421411d4d34ad95b52122f2650 +include/libxml2/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf +include/libxml2/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 +include/libxml2/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef +include/libxml2/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 +include/libxml2/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d +include/libxml2/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a +include/libxml2/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 +include/libxml2/libxml/xmlexports.h: 600bbe5e56f034234213b0c0bf36f2b9 +include/libxml2/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 +include/libxml2/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 +include/libxml2/libxml/xmlreader.h: f4e1ae61cb2ac0d3ded93985fed902db +include/libxml2/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b +include/libxml2/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d +include/libxml2/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 +include/libxml2/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 +include/libxml2/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 +include/libxml2/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 +include/libxml2/libxml/xmlversion.h: e3b607d4f9fb7f1efffd2a983cdd3563 +include/libxml2/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 +include/libxml2/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 +include/libxml2/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd +include/libxml2/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 +include/libxml2/win32config.h: 117c7e9cb4e95acd6648f4af9cf98c5b +include/libxml2/wsockcompat.h: 04a6c8ece3e62ee924d3653c2613b5be +lib/libxml2.lib: 08c8e1421562bb62aee40892226151ec +licenses/COPYING: 2044417e2e5006b65a8b9067b683fcf1 diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/228fe6274aa7b6b50620b9e88bd3505648dacfd9/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/228fe6274aa7b6b50620b9e88bd3505648dacfd9/conanmanifest.txt new file mode 100644 index 00000000..9ca47ec2 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/228fe6274aa7b6b50620b9e88bd3505648dacfd9/conanmanifest.txt @@ -0,0 +1,274 @@ +1563313980 +FindLibXml2.cmake: d030bc3535551b29c75e192b74469347 +bin/libxml2-2.dll: 15a6499bd578ade12e2cf23132a80c0a +bin/xml2-config: 8928b07e20f1e79cdf49a6b6bd41ac43 +bin/xmlcatalog.exe: 35d5476cb769eea55ca9b3477d0fd793 +bin/xmllint.exe: 14b1972dc6dcfefb0286c9cdfe578873 +conaninfo.txt: 31e483fb81ef6da53e5e7c43e641cce3 +include/libxml2/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d +include/libxml2/libxml/HTMLparser.h: d57891c89573ed6dce04b8133e7438d2 +include/libxml2/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f +include/libxml2/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa +include/libxml2/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 +include/libxml2/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f +include/libxml2/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e +include/libxml2/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e +include/libxml2/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 +include/libxml2/libxml/dict.h: 93b78165ce896cbda4417bd278259714 +include/libxml2/libxml/encoding.h: 807b84fade38abad3ae0d9b6af714dbc +include/libxml2/libxml/entities.h: 16467595fdaff28420d1657b1658f267 +include/libxml2/libxml/globals.h: 4b9d5b9ff807b093244cc301d2cefda5 +include/libxml2/libxml/hash.h: 35f22cf7568b12fcf7bdc3f47fe2ccca +include/libxml2/libxml/list.h: 7600108b9a637797d97d3f47ed045287 +include/libxml2/libxml/nanoftp.h: 3f25d5edfbdb1fd084e53d9a7dbaff73 +include/libxml2/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 +include/libxml2/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 +include/libxml2/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 +include/libxml2/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 +include/libxml2/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba +include/libxml2/libxml/schemasInternals.h: 57e07ffffb72ccfa3ef131c7ad89633a +include/libxml2/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 +include/libxml2/libxml/threads.h: 56e93792a1e4d23fe9c6940231cd4a40 +include/libxml2/libxml/tree.h: 7e730a421411d4d34ad95b52122f2650 +include/libxml2/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf +include/libxml2/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 +include/libxml2/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef +include/libxml2/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 +include/libxml2/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d +include/libxml2/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a +include/libxml2/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 +include/libxml2/libxml/xmlexports.h: 600bbe5e56f034234213b0c0bf36f2b9 +include/libxml2/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 +include/libxml2/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 +include/libxml2/libxml/xmlreader.h: f4e1ae61cb2ac0d3ded93985fed902db +include/libxml2/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b +include/libxml2/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d +include/libxml2/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 +include/libxml2/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 +include/libxml2/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 +include/libxml2/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 +include/libxml2/libxml/xmlversion.h: 23a57bce6575bfbeea3ce80479990313 +include/libxml2/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 +include/libxml2/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 +include/libxml2/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd +include/libxml2/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 +include/libxml2/win32config.h: 117c7e9cb4e95acd6648f4af9cf98c5b +include/libxml2/wsockcompat.h: 04a6c8ece3e62ee924d3653c2613b5be +lib/cmake/libxml2/libxml2-config.cmake: 52555e668f1ac8a60ed70f97137e235b +lib/libxml2.dll.a: 1727a0e231ae14d0a847108d588727f8 +lib/pkgconfig/libxml-2.0.pc: 4ab65cc88734f5b0fd61903eb57c2375 +lib/xml2Conf.sh: 31d3c8499fc68d2d81616b021ddf13bd +licenses/COPYING: 2044417e2e5006b65a8b9067b683fcf1 +share/aclocal/libxml.m4: c6969a0bf79628df8bf639433092d7b2 +share/doc/libxml2-2.9.9/Copyright: 2044417e2e5006b65a8b9067b683fcf1 +share/doc/libxml2-2.9.9/examples/testHTML.c: 6b181ebf4001bb62b07c7be7d79a2f01 +share/doc/libxml2-2.9.9/examples/testSAX.c: 34e3e9b268e1915652c15c4be11216a8 +share/doc/libxml2-2.9.9/examples/testXPath.c: 1db9d6ae0438d72387bcfd0ff1ae5ce4 +share/doc/libxml2-2.9.9/examples/xmllint.c: 15e78f93aab67d34d487eaeef8d7df22 +share/doc/libxml2-2.9.9/html/DOM.gif: b3d91cf23f7c9199b395356ea98cd097 +share/doc/libxml2-2.9.9/html/FAQ.html: 46b6bf6536bf9b2652891363aafb0b58 +share/doc/libxml2-2.9.9/html/Libxml2-Logo-180x168.gif: 6704060ba0272a9624e0a732455439ba +share/doc/libxml2-2.9.9/html/Libxml2-Logo-90x34.gif: 29dfd4b3dec5fee179d3dc7e3d65be8a +share/doc/libxml2-2.9.9/html/encoding.html: 3be0aba75968021dc9be873c020b93a9 +share/doc/libxml2-2.9.9/html/examples.xml: e94ff0f46d36f998999908d5f55cbbe9 +share/doc/libxml2-2.9.9/html/examples.xsl: 821de9e855568781f8c87ad0fe9afcba +share/doc/libxml2-2.9.9/html/html/book1.html: 461321024ef78221594067503eb0eba0 +share/doc/libxml2-2.9.9/html/html/home.png: f6192f4292d744423df690e785d60fdf +share/doc/libxml2-2.9.9/html/html/index.html: 461321024ef78221594067503eb0eba0 +share/doc/libxml2-2.9.9/html/html/left.png: f771308152ab24a69682daed70ce136d +share/doc/libxml2-2.9.9/html/html/libxml-DOCBparser.html: a9c425e3ab0c095b85759a321c294a72 +share/doc/libxml2-2.9.9/html/html/libxml-HTMLparser.html: 9bed50ea5f7ef6398a54151a85e5d82e +share/doc/libxml2-2.9.9/html/html/libxml-HTMLtree.html: b639bc91545a89e12d9c0a34a23bd6de +share/doc/libxml2-2.9.9/html/html/libxml-SAX.html: a1dddf7f62888196c45c587a216cbe8a +share/doc/libxml2-2.9.9/html/html/libxml-SAX2.html: 2d8812144ee7796aa073b748ba560d34 +share/doc/libxml2-2.9.9/html/html/libxml-c14n.html: af407530b72ad6d8342eab7e3d90207b +share/doc/libxml2-2.9.9/html/html/libxml-catalog.html: 6ccaf618b222577f8b1c9ed8278ea357 +share/doc/libxml2-2.9.9/html/html/libxml-chvalid.html: 4bec2549c1505b9048041b722cb052c6 +share/doc/libxml2-2.9.9/html/html/libxml-debugXML.html: b1b29857fbff5d68b7bdf982f8b9f6c7 +share/doc/libxml2-2.9.9/html/html/libxml-dict.html: 01ef47c7c40b6bcdcea9c6ee95a20780 +share/doc/libxml2-2.9.9/html/html/libxml-encoding.html: 9158690112453706058d7c502fd881e1 +share/doc/libxml2-2.9.9/html/html/libxml-entities.html: d4ae454060415d31a5eec7a09d6c05a3 +share/doc/libxml2-2.9.9/html/html/libxml-globals.html: 7487fd3b2740f53f259016b9032caf19 +share/doc/libxml2-2.9.9/html/html/libxml-hash.html: b29d9a4775962146ba81bc5b89d54126 +share/doc/libxml2-2.9.9/html/html/libxml-lib.html: 461321024ef78221594067503eb0eba0 +share/doc/libxml2-2.9.9/html/html/libxml-list.html: f6aa3e5c878950a036c171fc9632a362 +share/doc/libxml2-2.9.9/html/html/libxml-nanoftp.html: c07d479ce51894e6181be84cd7afc8f6 +share/doc/libxml2-2.9.9/html/html/libxml-nanohttp.html: a4457c15280d27457677a436286c344e +share/doc/libxml2-2.9.9/html/html/libxml-parser.html: d9abc1e3b231427736e24bb53d310edf +share/doc/libxml2-2.9.9/html/html/libxml-parserInternals.html: dc212b49555db1f4d3473021415990f5 +share/doc/libxml2-2.9.9/html/html/libxml-pattern.html: bff29ccd97d10d65cd40201985ba2501 +share/doc/libxml2-2.9.9/html/html/libxml-relaxng.html: da69ff4b925629ce5667c63895aecf3f +share/doc/libxml2-2.9.9/html/html/libxml-schemasInternals.html: ca466a394d9e945fcbe283d0b4a24e2f +share/doc/libxml2-2.9.9/html/html/libxml-schematron.html: f0ddff7bae5bba25b1c98abd75038c36 +share/doc/libxml2-2.9.9/html/html/libxml-threads.html: 8bfd4253309b18e5b94f01228f3c6887 +share/doc/libxml2-2.9.9/html/html/libxml-tree.html: 298516ac6d45a3439975e5de9b830a3a +share/doc/libxml2-2.9.9/html/html/libxml-uri.html: 9b4186c1502963221da42717dfcf2789 +share/doc/libxml2-2.9.9/html/html/libxml-valid.html: 51b24ec90bd3c5591130fa219172dca8 +share/doc/libxml2-2.9.9/html/html/libxml-xinclude.html: 2639d942d8a7bb71201ef35d8dd0a5d1 +share/doc/libxml2-2.9.9/html/html/libxml-xlink.html: 1de0d3b14ab220eb6b51bfa254b03769 +share/doc/libxml2-2.9.9/html/html/libxml-xmlIO.html: e9d7b75133b68febff966553614ca1e3 +share/doc/libxml2-2.9.9/html/html/libxml-xmlautomata.html: 28a6fdabf1bcc027c5723ef484551a3b +share/doc/libxml2-2.9.9/html/html/libxml-xmlerror.html: b5130ac841f15f86cc076778451028c3 +share/doc/libxml2-2.9.9/html/html/libxml-xmlexports.html: 76a89eb95c8256a4277f65250245ef9a +share/doc/libxml2-2.9.9/html/html/libxml-xmlmemory.html: ea097805488added49ebb2f1373c212a +share/doc/libxml2-2.9.9/html/html/libxml-xmlmodule.html: dad4c35e0c0a8fb9bc1db2d42ae5f664 +share/doc/libxml2-2.9.9/html/html/libxml-xmlreader.html: c73d0449fa012be1b45d28aabb9dd67c +share/doc/libxml2-2.9.9/html/html/libxml-xmlregexp.html: fc8289c2885a2e9adae8ce5f3f784f4d +share/doc/libxml2-2.9.9/html/html/libxml-xmlsave.html: 8e4208e2908bd9a021c31ee1338755d2 +share/doc/libxml2-2.9.9/html/html/libxml-xmlschemas.html: 455628ea9eca007ecaa224305df3b0c8 +share/doc/libxml2-2.9.9/html/html/libxml-xmlschemastypes.html: f698db4a289728d46199ad42160da1d3 +share/doc/libxml2-2.9.9/html/html/libxml-xmlstring.html: d567835fca72a7e73875b513626e1d54 +share/doc/libxml2-2.9.9/html/html/libxml-xmlunicode.html: 7b282351048157db2233f4a8c9ed305c +share/doc/libxml2-2.9.9/html/html/libxml-xmlversion.html: d9e2cd59ac2a1aa5319d09f7ad726a63 +share/doc/libxml2-2.9.9/html/html/libxml-xmlwriter.html: f7345386e22ec21cf60d91371eeaed57 +share/doc/libxml2-2.9.9/html/html/libxml-xpath.html: 0308bfeeaa1f3f9c39d95e2015ae7157 +share/doc/libxml2-2.9.9/html/html/libxml-xpathInternals.html: f41a22321ebfed3de68cd89b8a84a118 +share/doc/libxml2-2.9.9/html/html/libxml-xpointer.html: 39926eb00e10d3513053bebbb82d015e +share/doc/libxml2-2.9.9/html/html/libxml-xzlib.html: 8d55e7cdc5a0363d945c8a672841bd6f +share/doc/libxml2-2.9.9/html/html/right.png: ebd7e6d206d73850d77d305ab548f957 +share/doc/libxml2-2.9.9/html/html/up.png: 2f07d9272deb4ae870ca6821117877fa +share/doc/libxml2-2.9.9/html/index.html: 854eae61c805261731f38a873415144f +share/doc/libxml2-2.9.9/html/io1.c: 8861af9d5ae163e2679d14cccd7c50a8 +share/doc/libxml2-2.9.9/html/io1.res: c1063365cedce05c3c75361d8b21eda0 +share/doc/libxml2-2.9.9/html/io2.c: 064a8c92267a391f5cbc41dbf49b14ad +share/doc/libxml2-2.9.9/html/io2.res: c6a030758261e4b23c18fe8fa9b9f1cb +share/doc/libxml2-2.9.9/html/libxml.gif: 7b77627ea524c095934962f5dee442cb +share/doc/libxml2-2.9.9/html/parse1.c: 35924de5d0e047f4e2732e8ef4d31fea +share/doc/libxml2-2.9.9/html/parse2.c: 1533aa6faa9efa078a56d2d37b4e318c +share/doc/libxml2-2.9.9/html/parse3.c: 745ea8e70138377b1fb1d0e3116dba63 +share/doc/libxml2-2.9.9/html/parse4.c: 1ebc80d9df8a1b0568f9cf7a2cc70a3e +share/doc/libxml2-2.9.9/html/reader1.c: b30f26d62bb3c37fc9cba51fff13924e +share/doc/libxml2-2.9.9/html/reader1.res: c7e547f58d4407d091d189a1ebfeab77 +share/doc/libxml2-2.9.9/html/reader2.c: 8b66731b71444ec57b99acc9d41a5f1d +share/doc/libxml2-2.9.9/html/reader3.c: 2874d5506c9f0b9f4a1dead26d58e559 +share/doc/libxml2-2.9.9/html/reader3.res: ce152220e5a24918935d6f0c8bbcf587 +share/doc/libxml2-2.9.9/html/reader4.c: c7d0e7908cfc12c1102a58f4e530bbfd +share/doc/libxml2-2.9.9/html/reader4.res: 2f8c9c74667d1434104e5610a77f824f +share/doc/libxml2-2.9.9/html/redhat.gif: dd0216f442bf6845c103aba1b4bcb869 +share/doc/libxml2-2.9.9/html/smallfootonly.gif: e92b022a99a76d6fceeb35576bb7718f +share/doc/libxml2-2.9.9/html/structure.gif: f10610a92f24c3f0fc35078f5764867e +share/doc/libxml2-2.9.9/html/test1.xml: 5ffe018a2890cdd13b4d08d674cf8dd4 +share/doc/libxml2-2.9.9/html/test2.xml: 4084cf4871ee86fef27f5e5ee91ea455 +share/doc/libxml2-2.9.9/html/test3.xml: 0ba76ca9c89e995bbaf258ab154e5205 +share/doc/libxml2-2.9.9/html/testWriter.c: 26b676b61b6f1926e5ff470395878a20 +share/doc/libxml2-2.9.9/html/tree1.c: 8e3b9f050ff7e6ecd2912940cbb2394f +share/doc/libxml2-2.9.9/html/tree1.res: 4d4d5f3e8297d35e59d9f92c876b42ac +share/doc/libxml2-2.9.9/html/tree2.c: 9896bce93692a296135127551f5b2a4b +share/doc/libxml2-2.9.9/html/tree2.res: 8e5cc417bcb23115c4f802404e09657e +share/doc/libxml2-2.9.9/html/tst.xml: 6d10ac1b8fb04bc8fb73f9964589a223 +share/doc/libxml2-2.9.9/html/tutorial/apa.html: 51b23839855ffbb232c8ba2211a4d9ca +share/doc/libxml2-2.9.9/html/tutorial/apb.html: 6fa0d1a793a7d794967c497dc9112077 +share/doc/libxml2-2.9.9/html/tutorial/apc.html: c263a905499b8177ee93b6ab39b26266 +share/doc/libxml2-2.9.9/html/tutorial/apd.html: 9f3342db337c1a28df32d4b85eba94be +share/doc/libxml2-2.9.9/html/tutorial/ape.html: 69164a2345a37ac0b1001f2084ee5abc +share/doc/libxml2-2.9.9/html/tutorial/apf.html: 4b58ea573ee05ceb46cac6c3eeef8211 +share/doc/libxml2-2.9.9/html/tutorial/apg.html: a84665f786e99169afa8e9dceb5003ca +share/doc/libxml2-2.9.9/html/tutorial/aph.html: d49dfaba969e5b9161748d98b6f8eb0b +share/doc/libxml2-2.9.9/html/tutorial/api.html: 0433fb6f377e50662e0f89b1e2f8e49a +share/doc/libxml2-2.9.9/html/tutorial/ar01s02.html: d2b5e466f1613a0a281969296efe652e +share/doc/libxml2-2.9.9/html/tutorial/ar01s03.html: af7d8b5f8bf6e7c6949c5f1b260289ef +share/doc/libxml2-2.9.9/html/tutorial/ar01s04.html: 08161b16d07d12969e2ff0db52c0006d +share/doc/libxml2-2.9.9/html/tutorial/ar01s05.html: a39259d226409f45e234b8e4f0ae1e9f +share/doc/libxml2-2.9.9/html/tutorial/ar01s06.html: 4d622cd5afe28d58e8808651c896ff1e +share/doc/libxml2-2.9.9/html/tutorial/ar01s07.html: c3d0264c72c908e119c22c7787892db9 +share/doc/libxml2-2.9.9/html/tutorial/ar01s08.html: 47bfaa87452e5e5d3436b232d96b1cf7 +share/doc/libxml2-2.9.9/html/tutorial/ar01s09.html: 066052f4864add31dffd8fc4bb1b9b7f +share/doc/libxml2-2.9.9/html/tutorial/images/blank.png: 6f7573d4bb6bf0f55ed9ebd79f3f786f +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/1.png: 0f67842b8cc059137a88288e95115a18 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/10.png: 29fd9e419eee2efa4ef6ce493ca51a9c +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/2.png: 782f998bab59d0221977c1c0eaa676c8 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/3.png: 35dcf1dd29a802080c984e52d76e5b1f +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/4.png: 3d412b47729eb73afc7aa430feeb7da0 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/5.png: 489005941fbb522369466ca850189c59 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/6.png: f64cfcfac0c4219edebc96d6d043c84c +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/7.png: 0def94f52c5e45256232320aaffeb1ce +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/8.png: 2f899cf0909049b0472654d7357eaeb3 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/9.png: 5ba16a0731d050493bd7e0b95244aafc +share/doc/libxml2-2.9.9/html/tutorial/images/caution.png: 2245032ab69fc481e2eefd246aa96e07 +share/doc/libxml2-2.9.9/html/tutorial/images/draft.png: 1b1da3ec69df05af5f2a5475e8a8a24b +share/doc/libxml2-2.9.9/html/tutorial/images/home.png: 700644702db92b31d7488edfb3adfe7e +share/doc/libxml2-2.9.9/html/tutorial/images/important.png: ca20b7b781cf82d1aeb36ce63590ccd0 +share/doc/libxml2-2.9.9/html/tutorial/images/next.png: c4ec8d7f81407ce09d175d7366c25ba0 +share/doc/libxml2-2.9.9/html/tutorial/images/note.png: 109e4af9c43357a74c6de01db819f36f +share/doc/libxml2-2.9.9/html/tutorial/images/prev.png: 2188e42454c65ed8a37126d0f5f5830a +share/doc/libxml2-2.9.9/html/tutorial/images/tip.png: dbb88aaf05b4a6a7df59c72cc5c947b4 +share/doc/libxml2-2.9.9/html/tutorial/images/toc-blank.png: a9dfccc01739501bbc01d561da12c944 +share/doc/libxml2-2.9.9/html/tutorial/images/toc-minus.png: 72baddf4a76d4d74f634edf1e71134b3 +share/doc/libxml2-2.9.9/html/tutorial/images/toc-plus.png: ee8d311bafbc474875730d7644e86047 +share/doc/libxml2-2.9.9/html/tutorial/images/up.png: ddf37bee4d12f626b42004e26bdd4e13 +share/doc/libxml2-2.9.9/html/tutorial/images/warning.png: 59c28f6840b1f20094af4ffc16ce3189 +share/doc/libxml2-2.9.9/html/tutorial/includeaddattribute.c: ba57721ff902105ef3c79eb199f4da5e +share/doc/libxml2-2.9.9/html/tutorial/includeaddkeyword.c: 268f90fc598ccf5a5bd1de7d1f57c873 +share/doc/libxml2-2.9.9/html/tutorial/includeconvert.c: b91e86a449cb257dd92ada947c2b2320 +share/doc/libxml2-2.9.9/html/tutorial/includegetattribute.c: af83032a68f54f420f04430efd7629c8 +share/doc/libxml2-2.9.9/html/tutorial/includekeyword.c: 5508972bd6f704cddb4b4faeaa5397b0 +share/doc/libxml2-2.9.9/html/tutorial/includexpath.c: a9718d128b1abbf9710cb7ea315cffec +share/doc/libxml2-2.9.9/html/tutorial/index.html: c3df2af08328cd4cbf697d55ca9cd419 +share/doc/libxml2-2.9.9/html/tutorial/ix01.html: 2f9c98d5610fc9a8f02c7312c3c49691 +share/doc/libxml2-2.9.9/html/tutorial/xmltutorial.pdf: 12df01000d92ab495235de65abcd4e46 +share/doc/libxml2-2.9.9/html/w3c.png: ba69544b9cfa7659a0bb1b81410680a9 +share/doc/libxml2-2.9.9/html/writer.xml: 1e16356328b8e3fa703a18858a11f3bb +share/doc/libxml2-2.9.9/html/xml.html: 86d057e640e777486b33b7e424e0beeb +share/doc/libxml2-2.9.9/html/xpath1.c: 87445983c77091ef0441ff775fb8edc6 +share/doc/libxml2-2.9.9/html/xpath1.res: cf508aadb27c5c145ac58d256326e8eb +share/doc/libxml2-2.9.9/html/xpath2.c: 413d481a75246b5af3d8e7f489e3408f +share/doc/libxml2-2.9.9/html/xpath2.res: c32344efbb7334a5f2563420e0d1723c +share/gtk-doc/html/libxml2/general.html: df2b20bc526b927eefa3f401349d1287 +share/gtk-doc/html/libxml2/home.png: f6192f4292d744423df690e785d60fdf +share/gtk-doc/html/libxml2/index.html: b0b369ddf6959a2604b422c9268a0a3f +share/gtk-doc/html/libxml2/left.png: f771308152ab24a69682daed70ce136d +share/gtk-doc/html/libxml2/libxml2-DOCBparser.html: bde929bed90adf39144b561ad443c278 +share/gtk-doc/html/libxml2/libxml2-HTMLparser.html: b0c4afaee2ffdfb2381d66acad586e2a +share/gtk-doc/html/libxml2/libxml2-HTMLtree.html: e53dcd12a0e8e51413ca1de4986d7898 +share/gtk-doc/html/libxml2/libxml2-SAX.html: 5ba9dd3cf89972a337869e55024aeb0e +share/gtk-doc/html/libxml2/libxml2-SAX2.html: 9a8574da93ad762a54194f690db4dbee +share/gtk-doc/html/libxml2/libxml2-c14n.html: 57a9ef60a8af4df6586ab78061a75fd6 +share/gtk-doc/html/libxml2/libxml2-catalog.html: bcd705392f52867a1afadc1166739d17 +share/gtk-doc/html/libxml2/libxml2-chvalid.html: dca486d382dbf88f4d9155e3f7a826cf +share/gtk-doc/html/libxml2/libxml2-debugXML.html: efd04207438816e0ce69c47bc93e525b +share/gtk-doc/html/libxml2/libxml2-dict.html: 48012abaae77f87834377e8d4eb7caf1 +share/gtk-doc/html/libxml2/libxml2-encoding.html: d273f53a4f3c511372c5b984455f0288 +share/gtk-doc/html/libxml2/libxml2-entities.html: 3afcaf72917d0f9dda002baf4445e936 +share/gtk-doc/html/libxml2/libxml2-globals.html: 08b752bd53e687bf8ac51400c62ded68 +share/gtk-doc/html/libxml2/libxml2-hash.html: 371418533e8ef188b888d9e6e34aa245 +share/gtk-doc/html/libxml2/libxml2-list.html: 5a6fe5bf2cefe31f0f68cd2d8cafb2d7 +share/gtk-doc/html/libxml2/libxml2-nanoftp.html: 79f4eb67e7eb955c19bd5337a8cc5177 +share/gtk-doc/html/libxml2/libxml2-nanohttp.html: 0eac4dace4fda9fcd0bb2ebb6c16aaf0 +share/gtk-doc/html/libxml2/libxml2-parser.html: c3f66200ba47bd8198ec81aa3c8ce608 +share/gtk-doc/html/libxml2/libxml2-parserInternals.html: b2757ce5c41539e70df72da43af67825 +share/gtk-doc/html/libxml2/libxml2-pattern.html: 6129a6b5661fc0a38d5c967153651d26 +share/gtk-doc/html/libxml2/libxml2-relaxng.html: f98fee61d7e051dff9719e13b768b26c +share/gtk-doc/html/libxml2/libxml2-schemasInternals.html: d25db26772d036681e1299a9f214427a +share/gtk-doc/html/libxml2/libxml2-schematron.html: b3700a489202f309f02c6309f9d86984 +share/gtk-doc/html/libxml2/libxml2-threads.html: bb12a300c2c86bc49f586858a1ef6cd0 +share/gtk-doc/html/libxml2/libxml2-tree.html: 5bbe2d33f9b1917956919b7e18e47c53 +share/gtk-doc/html/libxml2/libxml2-uri.html: c46c9dfea580890ac48b70346c987bf0 +share/gtk-doc/html/libxml2/libxml2-valid.html: b4165290c6751ed9b2074eb915f0601f +share/gtk-doc/html/libxml2/libxml2-xinclude.html: 644e5093b3931eee1fece47fb9a3c908 +share/gtk-doc/html/libxml2/libxml2-xlink.html: fe35c6e86ba9419aea9f628ed45bc57a +share/gtk-doc/html/libxml2/libxml2-xmlIO.html: 1dd2f72b5a9014978f94155981fa6486 +share/gtk-doc/html/libxml2/libxml2-xmlautomata.html: 9cd301cf92ecca4ff9e896663f6d6570 +share/gtk-doc/html/libxml2/libxml2-xmlerror.html: 57549b7df0cd531b4d0ce6c03f9d9ade +share/gtk-doc/html/libxml2/libxml2-xmlexports.html: 62aebfe3442aedae77f8ff0514a8160c +share/gtk-doc/html/libxml2/libxml2-xmlmemory.html: 8c22f5ea8ddd2ed6795726d714b4ab9f +share/gtk-doc/html/libxml2/libxml2-xmlmodule.html: 215331b3567ef3b2e79cf35b1998a357 +share/gtk-doc/html/libxml2/libxml2-xmlreader.html: 512101e5eb61e5955c991e14b11ab3bd +share/gtk-doc/html/libxml2/libxml2-xmlregexp.html: 1a42a4508373992c4471d360bf1cdf4f +share/gtk-doc/html/libxml2/libxml2-xmlsave.html: ee31535906cba2ee6455e430f48eb236 +share/gtk-doc/html/libxml2/libxml2-xmlschemas.html: 55b5ed0793dd7f64e9c25cfe4be40287 +share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html: aa49b7bc4fe1493b926c035484fd77af +share/gtk-doc/html/libxml2/libxml2-xmlstring.html: 39057622b32c4f7bdb0836fd6005a1fa +share/gtk-doc/html/libxml2/libxml2-xmlunicode.html: 9ac652a74d46f8c3e1caa26c19732b2a +share/gtk-doc/html/libxml2/libxml2-xmlversion.html: 11a6e7c28ccbdbc1ca91213139decfa9 +share/gtk-doc/html/libxml2/libxml2-xmlwriter.html: 088d1735eaf6fcd0e4117c3cad0aa691 +share/gtk-doc/html/libxml2/libxml2-xpath.html: b75d3437dc3c3c355d6bace3b077e019 +share/gtk-doc/html/libxml2/libxml2-xpathInternals.html: 5f40882d1654ed5c644f22a10c8df2d3 +share/gtk-doc/html/libxml2/libxml2-xpointer.html: f1a81f0b99b0230bc0ceacae67d87043 +share/gtk-doc/html/libxml2/libxml2.devhelp: 138e3b9326546e2e347b3c0b18c12764 +share/gtk-doc/html/libxml2/right.png: ebd7e6d206d73850d77d305ab548f957 +share/gtk-doc/html/libxml2/style.css: a7b180ebf583ed0c315d70d6a4890f79 +share/gtk-doc/html/libxml2/up.png: 2f07d9272deb4ae870ca6821117877fa +share/man/man1/xml2-config.1: f9ea1b8ede868111a96fc3dbd9db79e6 +share/man/man1/xmlcatalog.1: 79205743b3bdefdddbcb175c60105cc8 +share/man/man1/xmllint.1: c2da2d5425849f19b8b0d355f5215973 +share/man/man3/libxml.3: 1bc9e496f1d34157a9e0d1b65704819a diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/4370064884cce35fe631d04efb5ff5c356ea732a/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/4370064884cce35fe631d04efb5ff5c356ea732a/conanmanifest.txt new file mode 100644 index 00000000..ebd8dee8 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/4370064884cce35fe631d04efb5ff5c356ea732a/conanmanifest.txt @@ -0,0 +1,57 @@ +1563312863 +FindLibXml2.cmake: d030bc3535551b29c75e192b74469347 +bin/libxml2.dll: 632148ab34c6b6cb2561f1681e22279f +bin/xmlcatalog.exe: 08d32e0db94de3b1cf466ddc7089045d +bin/xmllint.exe: 8037bc812f6015bfecbd4eb5e0f97770 +conaninfo.txt: e46ac0e8413b00cf35c221a02d466f4a +include/libxml2/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d +include/libxml2/libxml/HTMLparser.h: d57891c89573ed6dce04b8133e7438d2 +include/libxml2/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f +include/libxml2/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa +include/libxml2/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 +include/libxml2/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f +include/libxml2/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e +include/libxml2/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e +include/libxml2/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 +include/libxml2/libxml/dict.h: 93b78165ce896cbda4417bd278259714 +include/libxml2/libxml/encoding.h: 807b84fade38abad3ae0d9b6af714dbc +include/libxml2/libxml/entities.h: 16467595fdaff28420d1657b1658f267 +include/libxml2/libxml/globals.h: 4b9d5b9ff807b093244cc301d2cefda5 +include/libxml2/libxml/hash.h: 35f22cf7568b12fcf7bdc3f47fe2ccca +include/libxml2/libxml/list.h: 7600108b9a637797d97d3f47ed045287 +include/libxml2/libxml/nanoftp.h: 3f25d5edfbdb1fd084e53d9a7dbaff73 +include/libxml2/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 +include/libxml2/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 +include/libxml2/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 +include/libxml2/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 +include/libxml2/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba +include/libxml2/libxml/schemasInternals.h: 57e07ffffb72ccfa3ef131c7ad89633a +include/libxml2/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 +include/libxml2/libxml/threads.h: 56e93792a1e4d23fe9c6940231cd4a40 +include/libxml2/libxml/tree.h: 7e730a421411d4d34ad95b52122f2650 +include/libxml2/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf +include/libxml2/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 +include/libxml2/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef +include/libxml2/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 +include/libxml2/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d +include/libxml2/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a +include/libxml2/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 +include/libxml2/libxml/xmlexports.h: 600bbe5e56f034234213b0c0bf36f2b9 +include/libxml2/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 +include/libxml2/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 +include/libxml2/libxml/xmlreader.h: f4e1ae61cb2ac0d3ded93985fed902db +include/libxml2/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b +include/libxml2/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d +include/libxml2/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 +include/libxml2/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 +include/libxml2/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 +include/libxml2/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 +include/libxml2/libxml/xmlversion.h: e3b607d4f9fb7f1efffd2a983cdd3563 +include/libxml2/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 +include/libxml2/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 +include/libxml2/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd +include/libxml2/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 +include/libxml2/win32config.h: 117c7e9cb4e95acd6648f4af9cf98c5b +include/libxml2/wsockcompat.h: 04a6c8ece3e62ee924d3653c2613b5be +lib/libxml2.lib: 41f3c91f5e91295170f3d8bb407871dd +licenses/COPYING: 2044417e2e5006b65a8b9067b683fcf1 diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/61072772572f3007a94ff98e7a5b24691e94f83f/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/61072772572f3007a94ff98e7a5b24691e94f83f/conanmanifest.txt new file mode 100644 index 00000000..8833c57a --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/61072772572f3007a94ff98e7a5b24691e94f83f/conanmanifest.txt @@ -0,0 +1,274 @@ +1563314249 +FindLibXml2.cmake: d030bc3535551b29c75e192b74469347 +bin/libxml2-2.dll: 4a66e2fbb3e6ff0d3be4288f48ec4357 +bin/xml2-config: 76e6eed3b6f08bbd199bc8c0b7053dd5 +bin/xmlcatalog.exe: 3e562c6e39cbb4c5df1e3c0f8c413e2a +bin/xmllint.exe: dff065ca8a593135b1dfcfeb4f03326e +conaninfo.txt: 22f2906125da3c1eb305243d0f2b63bf +include/libxml2/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d +include/libxml2/libxml/HTMLparser.h: d57891c89573ed6dce04b8133e7438d2 +include/libxml2/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f +include/libxml2/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa +include/libxml2/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 +include/libxml2/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f +include/libxml2/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e +include/libxml2/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e +include/libxml2/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 +include/libxml2/libxml/dict.h: 93b78165ce896cbda4417bd278259714 +include/libxml2/libxml/encoding.h: 807b84fade38abad3ae0d9b6af714dbc +include/libxml2/libxml/entities.h: 16467595fdaff28420d1657b1658f267 +include/libxml2/libxml/globals.h: 4b9d5b9ff807b093244cc301d2cefda5 +include/libxml2/libxml/hash.h: 35f22cf7568b12fcf7bdc3f47fe2ccca +include/libxml2/libxml/list.h: 7600108b9a637797d97d3f47ed045287 +include/libxml2/libxml/nanoftp.h: 3f25d5edfbdb1fd084e53d9a7dbaff73 +include/libxml2/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 +include/libxml2/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 +include/libxml2/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 +include/libxml2/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 +include/libxml2/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba +include/libxml2/libxml/schemasInternals.h: 57e07ffffb72ccfa3ef131c7ad89633a +include/libxml2/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 +include/libxml2/libxml/threads.h: 56e93792a1e4d23fe9c6940231cd4a40 +include/libxml2/libxml/tree.h: 7e730a421411d4d34ad95b52122f2650 +include/libxml2/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf +include/libxml2/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 +include/libxml2/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef +include/libxml2/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 +include/libxml2/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d +include/libxml2/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a +include/libxml2/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 +include/libxml2/libxml/xmlexports.h: 600bbe5e56f034234213b0c0bf36f2b9 +include/libxml2/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 +include/libxml2/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 +include/libxml2/libxml/xmlreader.h: f4e1ae61cb2ac0d3ded93985fed902db +include/libxml2/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b +include/libxml2/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d +include/libxml2/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 +include/libxml2/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 +include/libxml2/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 +include/libxml2/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 +include/libxml2/libxml/xmlversion.h: 23a57bce6575bfbeea3ce80479990313 +include/libxml2/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 +include/libxml2/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 +include/libxml2/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd +include/libxml2/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 +include/libxml2/win32config.h: 117c7e9cb4e95acd6648f4af9cf98c5b +include/libxml2/wsockcompat.h: 04a6c8ece3e62ee924d3653c2613b5be +lib/cmake/libxml2/libxml2-config.cmake: 52555e668f1ac8a60ed70f97137e235b +lib/libxml2.dll.a: e98c74ae88f8c5d3cecef3bbd139beb7 +lib/pkgconfig/libxml-2.0.pc: fe998038a6721fa60055ab9cc8b32139 +lib/xml2Conf.sh: 83704a436b85808dce196ac73c3b7803 +licenses/COPYING: 2044417e2e5006b65a8b9067b683fcf1 +share/aclocal/libxml.m4: c6969a0bf79628df8bf639433092d7b2 +share/doc/libxml2-2.9.9/Copyright: 2044417e2e5006b65a8b9067b683fcf1 +share/doc/libxml2-2.9.9/examples/testHTML.c: 6b181ebf4001bb62b07c7be7d79a2f01 +share/doc/libxml2-2.9.9/examples/testSAX.c: 34e3e9b268e1915652c15c4be11216a8 +share/doc/libxml2-2.9.9/examples/testXPath.c: 1db9d6ae0438d72387bcfd0ff1ae5ce4 +share/doc/libxml2-2.9.9/examples/xmllint.c: 15e78f93aab67d34d487eaeef8d7df22 +share/doc/libxml2-2.9.9/html/DOM.gif: b3d91cf23f7c9199b395356ea98cd097 +share/doc/libxml2-2.9.9/html/FAQ.html: 46b6bf6536bf9b2652891363aafb0b58 +share/doc/libxml2-2.9.9/html/Libxml2-Logo-180x168.gif: 6704060ba0272a9624e0a732455439ba +share/doc/libxml2-2.9.9/html/Libxml2-Logo-90x34.gif: 29dfd4b3dec5fee179d3dc7e3d65be8a +share/doc/libxml2-2.9.9/html/encoding.html: 3be0aba75968021dc9be873c020b93a9 +share/doc/libxml2-2.9.9/html/examples.xml: e94ff0f46d36f998999908d5f55cbbe9 +share/doc/libxml2-2.9.9/html/examples.xsl: 821de9e855568781f8c87ad0fe9afcba +share/doc/libxml2-2.9.9/html/html/book1.html: 461321024ef78221594067503eb0eba0 +share/doc/libxml2-2.9.9/html/html/home.png: f6192f4292d744423df690e785d60fdf +share/doc/libxml2-2.9.9/html/html/index.html: 461321024ef78221594067503eb0eba0 +share/doc/libxml2-2.9.9/html/html/left.png: f771308152ab24a69682daed70ce136d +share/doc/libxml2-2.9.9/html/html/libxml-DOCBparser.html: a9c425e3ab0c095b85759a321c294a72 +share/doc/libxml2-2.9.9/html/html/libxml-HTMLparser.html: 9bed50ea5f7ef6398a54151a85e5d82e +share/doc/libxml2-2.9.9/html/html/libxml-HTMLtree.html: b639bc91545a89e12d9c0a34a23bd6de +share/doc/libxml2-2.9.9/html/html/libxml-SAX.html: a1dddf7f62888196c45c587a216cbe8a +share/doc/libxml2-2.9.9/html/html/libxml-SAX2.html: 2d8812144ee7796aa073b748ba560d34 +share/doc/libxml2-2.9.9/html/html/libxml-c14n.html: af407530b72ad6d8342eab7e3d90207b +share/doc/libxml2-2.9.9/html/html/libxml-catalog.html: 6ccaf618b222577f8b1c9ed8278ea357 +share/doc/libxml2-2.9.9/html/html/libxml-chvalid.html: 4bec2549c1505b9048041b722cb052c6 +share/doc/libxml2-2.9.9/html/html/libxml-debugXML.html: b1b29857fbff5d68b7bdf982f8b9f6c7 +share/doc/libxml2-2.9.9/html/html/libxml-dict.html: 01ef47c7c40b6bcdcea9c6ee95a20780 +share/doc/libxml2-2.9.9/html/html/libxml-encoding.html: 9158690112453706058d7c502fd881e1 +share/doc/libxml2-2.9.9/html/html/libxml-entities.html: d4ae454060415d31a5eec7a09d6c05a3 +share/doc/libxml2-2.9.9/html/html/libxml-globals.html: 7487fd3b2740f53f259016b9032caf19 +share/doc/libxml2-2.9.9/html/html/libxml-hash.html: b29d9a4775962146ba81bc5b89d54126 +share/doc/libxml2-2.9.9/html/html/libxml-lib.html: 461321024ef78221594067503eb0eba0 +share/doc/libxml2-2.9.9/html/html/libxml-list.html: f6aa3e5c878950a036c171fc9632a362 +share/doc/libxml2-2.9.9/html/html/libxml-nanoftp.html: c07d479ce51894e6181be84cd7afc8f6 +share/doc/libxml2-2.9.9/html/html/libxml-nanohttp.html: a4457c15280d27457677a436286c344e +share/doc/libxml2-2.9.9/html/html/libxml-parser.html: d9abc1e3b231427736e24bb53d310edf +share/doc/libxml2-2.9.9/html/html/libxml-parserInternals.html: dc212b49555db1f4d3473021415990f5 +share/doc/libxml2-2.9.9/html/html/libxml-pattern.html: bff29ccd97d10d65cd40201985ba2501 +share/doc/libxml2-2.9.9/html/html/libxml-relaxng.html: da69ff4b925629ce5667c63895aecf3f +share/doc/libxml2-2.9.9/html/html/libxml-schemasInternals.html: ca466a394d9e945fcbe283d0b4a24e2f +share/doc/libxml2-2.9.9/html/html/libxml-schematron.html: f0ddff7bae5bba25b1c98abd75038c36 +share/doc/libxml2-2.9.9/html/html/libxml-threads.html: 8bfd4253309b18e5b94f01228f3c6887 +share/doc/libxml2-2.9.9/html/html/libxml-tree.html: 298516ac6d45a3439975e5de9b830a3a +share/doc/libxml2-2.9.9/html/html/libxml-uri.html: 9b4186c1502963221da42717dfcf2789 +share/doc/libxml2-2.9.9/html/html/libxml-valid.html: 51b24ec90bd3c5591130fa219172dca8 +share/doc/libxml2-2.9.9/html/html/libxml-xinclude.html: 2639d942d8a7bb71201ef35d8dd0a5d1 +share/doc/libxml2-2.9.9/html/html/libxml-xlink.html: 1de0d3b14ab220eb6b51bfa254b03769 +share/doc/libxml2-2.9.9/html/html/libxml-xmlIO.html: e9d7b75133b68febff966553614ca1e3 +share/doc/libxml2-2.9.9/html/html/libxml-xmlautomata.html: 28a6fdabf1bcc027c5723ef484551a3b +share/doc/libxml2-2.9.9/html/html/libxml-xmlerror.html: b5130ac841f15f86cc076778451028c3 +share/doc/libxml2-2.9.9/html/html/libxml-xmlexports.html: 76a89eb95c8256a4277f65250245ef9a +share/doc/libxml2-2.9.9/html/html/libxml-xmlmemory.html: ea097805488added49ebb2f1373c212a +share/doc/libxml2-2.9.9/html/html/libxml-xmlmodule.html: dad4c35e0c0a8fb9bc1db2d42ae5f664 +share/doc/libxml2-2.9.9/html/html/libxml-xmlreader.html: c73d0449fa012be1b45d28aabb9dd67c +share/doc/libxml2-2.9.9/html/html/libxml-xmlregexp.html: fc8289c2885a2e9adae8ce5f3f784f4d +share/doc/libxml2-2.9.9/html/html/libxml-xmlsave.html: 8e4208e2908bd9a021c31ee1338755d2 +share/doc/libxml2-2.9.9/html/html/libxml-xmlschemas.html: 455628ea9eca007ecaa224305df3b0c8 +share/doc/libxml2-2.9.9/html/html/libxml-xmlschemastypes.html: f698db4a289728d46199ad42160da1d3 +share/doc/libxml2-2.9.9/html/html/libxml-xmlstring.html: d567835fca72a7e73875b513626e1d54 +share/doc/libxml2-2.9.9/html/html/libxml-xmlunicode.html: 7b282351048157db2233f4a8c9ed305c +share/doc/libxml2-2.9.9/html/html/libxml-xmlversion.html: d9e2cd59ac2a1aa5319d09f7ad726a63 +share/doc/libxml2-2.9.9/html/html/libxml-xmlwriter.html: f7345386e22ec21cf60d91371eeaed57 +share/doc/libxml2-2.9.9/html/html/libxml-xpath.html: 0308bfeeaa1f3f9c39d95e2015ae7157 +share/doc/libxml2-2.9.9/html/html/libxml-xpathInternals.html: f41a22321ebfed3de68cd89b8a84a118 +share/doc/libxml2-2.9.9/html/html/libxml-xpointer.html: 39926eb00e10d3513053bebbb82d015e +share/doc/libxml2-2.9.9/html/html/libxml-xzlib.html: 8d55e7cdc5a0363d945c8a672841bd6f +share/doc/libxml2-2.9.9/html/html/right.png: ebd7e6d206d73850d77d305ab548f957 +share/doc/libxml2-2.9.9/html/html/up.png: 2f07d9272deb4ae870ca6821117877fa +share/doc/libxml2-2.9.9/html/index.html: 854eae61c805261731f38a873415144f +share/doc/libxml2-2.9.9/html/io1.c: 8861af9d5ae163e2679d14cccd7c50a8 +share/doc/libxml2-2.9.9/html/io1.res: c1063365cedce05c3c75361d8b21eda0 +share/doc/libxml2-2.9.9/html/io2.c: 064a8c92267a391f5cbc41dbf49b14ad +share/doc/libxml2-2.9.9/html/io2.res: c6a030758261e4b23c18fe8fa9b9f1cb +share/doc/libxml2-2.9.9/html/libxml.gif: 7b77627ea524c095934962f5dee442cb +share/doc/libxml2-2.9.9/html/parse1.c: 35924de5d0e047f4e2732e8ef4d31fea +share/doc/libxml2-2.9.9/html/parse2.c: 1533aa6faa9efa078a56d2d37b4e318c +share/doc/libxml2-2.9.9/html/parse3.c: 745ea8e70138377b1fb1d0e3116dba63 +share/doc/libxml2-2.9.9/html/parse4.c: 1ebc80d9df8a1b0568f9cf7a2cc70a3e +share/doc/libxml2-2.9.9/html/reader1.c: b30f26d62bb3c37fc9cba51fff13924e +share/doc/libxml2-2.9.9/html/reader1.res: c7e547f58d4407d091d189a1ebfeab77 +share/doc/libxml2-2.9.9/html/reader2.c: 8b66731b71444ec57b99acc9d41a5f1d +share/doc/libxml2-2.9.9/html/reader3.c: 2874d5506c9f0b9f4a1dead26d58e559 +share/doc/libxml2-2.9.9/html/reader3.res: ce152220e5a24918935d6f0c8bbcf587 +share/doc/libxml2-2.9.9/html/reader4.c: c7d0e7908cfc12c1102a58f4e530bbfd +share/doc/libxml2-2.9.9/html/reader4.res: 2f8c9c74667d1434104e5610a77f824f +share/doc/libxml2-2.9.9/html/redhat.gif: dd0216f442bf6845c103aba1b4bcb869 +share/doc/libxml2-2.9.9/html/smallfootonly.gif: e92b022a99a76d6fceeb35576bb7718f +share/doc/libxml2-2.9.9/html/structure.gif: f10610a92f24c3f0fc35078f5764867e +share/doc/libxml2-2.9.9/html/test1.xml: 5ffe018a2890cdd13b4d08d674cf8dd4 +share/doc/libxml2-2.9.9/html/test2.xml: 4084cf4871ee86fef27f5e5ee91ea455 +share/doc/libxml2-2.9.9/html/test3.xml: 0ba76ca9c89e995bbaf258ab154e5205 +share/doc/libxml2-2.9.9/html/testWriter.c: 26b676b61b6f1926e5ff470395878a20 +share/doc/libxml2-2.9.9/html/tree1.c: 8e3b9f050ff7e6ecd2912940cbb2394f +share/doc/libxml2-2.9.9/html/tree1.res: 4d4d5f3e8297d35e59d9f92c876b42ac +share/doc/libxml2-2.9.9/html/tree2.c: 9896bce93692a296135127551f5b2a4b +share/doc/libxml2-2.9.9/html/tree2.res: 8e5cc417bcb23115c4f802404e09657e +share/doc/libxml2-2.9.9/html/tst.xml: 6d10ac1b8fb04bc8fb73f9964589a223 +share/doc/libxml2-2.9.9/html/tutorial/apa.html: 51b23839855ffbb232c8ba2211a4d9ca +share/doc/libxml2-2.9.9/html/tutorial/apb.html: 6fa0d1a793a7d794967c497dc9112077 +share/doc/libxml2-2.9.9/html/tutorial/apc.html: c263a905499b8177ee93b6ab39b26266 +share/doc/libxml2-2.9.9/html/tutorial/apd.html: 9f3342db337c1a28df32d4b85eba94be +share/doc/libxml2-2.9.9/html/tutorial/ape.html: 69164a2345a37ac0b1001f2084ee5abc +share/doc/libxml2-2.9.9/html/tutorial/apf.html: 4b58ea573ee05ceb46cac6c3eeef8211 +share/doc/libxml2-2.9.9/html/tutorial/apg.html: a84665f786e99169afa8e9dceb5003ca +share/doc/libxml2-2.9.9/html/tutorial/aph.html: d49dfaba969e5b9161748d98b6f8eb0b +share/doc/libxml2-2.9.9/html/tutorial/api.html: 0433fb6f377e50662e0f89b1e2f8e49a +share/doc/libxml2-2.9.9/html/tutorial/ar01s02.html: d2b5e466f1613a0a281969296efe652e +share/doc/libxml2-2.9.9/html/tutorial/ar01s03.html: af7d8b5f8bf6e7c6949c5f1b260289ef +share/doc/libxml2-2.9.9/html/tutorial/ar01s04.html: 08161b16d07d12969e2ff0db52c0006d +share/doc/libxml2-2.9.9/html/tutorial/ar01s05.html: a39259d226409f45e234b8e4f0ae1e9f +share/doc/libxml2-2.9.9/html/tutorial/ar01s06.html: 4d622cd5afe28d58e8808651c896ff1e +share/doc/libxml2-2.9.9/html/tutorial/ar01s07.html: c3d0264c72c908e119c22c7787892db9 +share/doc/libxml2-2.9.9/html/tutorial/ar01s08.html: 47bfaa87452e5e5d3436b232d96b1cf7 +share/doc/libxml2-2.9.9/html/tutorial/ar01s09.html: 066052f4864add31dffd8fc4bb1b9b7f +share/doc/libxml2-2.9.9/html/tutorial/images/blank.png: 6f7573d4bb6bf0f55ed9ebd79f3f786f +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/1.png: 0f67842b8cc059137a88288e95115a18 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/10.png: 29fd9e419eee2efa4ef6ce493ca51a9c +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/2.png: 782f998bab59d0221977c1c0eaa676c8 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/3.png: 35dcf1dd29a802080c984e52d76e5b1f +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/4.png: 3d412b47729eb73afc7aa430feeb7da0 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/5.png: 489005941fbb522369466ca850189c59 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/6.png: f64cfcfac0c4219edebc96d6d043c84c +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/7.png: 0def94f52c5e45256232320aaffeb1ce +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/8.png: 2f899cf0909049b0472654d7357eaeb3 +share/doc/libxml2-2.9.9/html/tutorial/images/callouts/9.png: 5ba16a0731d050493bd7e0b95244aafc +share/doc/libxml2-2.9.9/html/tutorial/images/caution.png: 2245032ab69fc481e2eefd246aa96e07 +share/doc/libxml2-2.9.9/html/tutorial/images/draft.png: 1b1da3ec69df05af5f2a5475e8a8a24b +share/doc/libxml2-2.9.9/html/tutorial/images/home.png: 700644702db92b31d7488edfb3adfe7e +share/doc/libxml2-2.9.9/html/tutorial/images/important.png: ca20b7b781cf82d1aeb36ce63590ccd0 +share/doc/libxml2-2.9.9/html/tutorial/images/next.png: c4ec8d7f81407ce09d175d7366c25ba0 +share/doc/libxml2-2.9.9/html/tutorial/images/note.png: 109e4af9c43357a74c6de01db819f36f +share/doc/libxml2-2.9.9/html/tutorial/images/prev.png: 2188e42454c65ed8a37126d0f5f5830a +share/doc/libxml2-2.9.9/html/tutorial/images/tip.png: dbb88aaf05b4a6a7df59c72cc5c947b4 +share/doc/libxml2-2.9.9/html/tutorial/images/toc-blank.png: a9dfccc01739501bbc01d561da12c944 +share/doc/libxml2-2.9.9/html/tutorial/images/toc-minus.png: 72baddf4a76d4d74f634edf1e71134b3 +share/doc/libxml2-2.9.9/html/tutorial/images/toc-plus.png: ee8d311bafbc474875730d7644e86047 +share/doc/libxml2-2.9.9/html/tutorial/images/up.png: ddf37bee4d12f626b42004e26bdd4e13 +share/doc/libxml2-2.9.9/html/tutorial/images/warning.png: 59c28f6840b1f20094af4ffc16ce3189 +share/doc/libxml2-2.9.9/html/tutorial/includeaddattribute.c: ba57721ff902105ef3c79eb199f4da5e +share/doc/libxml2-2.9.9/html/tutorial/includeaddkeyword.c: 268f90fc598ccf5a5bd1de7d1f57c873 +share/doc/libxml2-2.9.9/html/tutorial/includeconvert.c: b91e86a449cb257dd92ada947c2b2320 +share/doc/libxml2-2.9.9/html/tutorial/includegetattribute.c: af83032a68f54f420f04430efd7629c8 +share/doc/libxml2-2.9.9/html/tutorial/includekeyword.c: 5508972bd6f704cddb4b4faeaa5397b0 +share/doc/libxml2-2.9.9/html/tutorial/includexpath.c: a9718d128b1abbf9710cb7ea315cffec +share/doc/libxml2-2.9.9/html/tutorial/index.html: c3df2af08328cd4cbf697d55ca9cd419 +share/doc/libxml2-2.9.9/html/tutorial/ix01.html: 2f9c98d5610fc9a8f02c7312c3c49691 +share/doc/libxml2-2.9.9/html/tutorial/xmltutorial.pdf: 12df01000d92ab495235de65abcd4e46 +share/doc/libxml2-2.9.9/html/w3c.png: ba69544b9cfa7659a0bb1b81410680a9 +share/doc/libxml2-2.9.9/html/writer.xml: 1e16356328b8e3fa703a18858a11f3bb +share/doc/libxml2-2.9.9/html/xml.html: 86d057e640e777486b33b7e424e0beeb +share/doc/libxml2-2.9.9/html/xpath1.c: 87445983c77091ef0441ff775fb8edc6 +share/doc/libxml2-2.9.9/html/xpath1.res: cf508aadb27c5c145ac58d256326e8eb +share/doc/libxml2-2.9.9/html/xpath2.c: 413d481a75246b5af3d8e7f489e3408f +share/doc/libxml2-2.9.9/html/xpath2.res: c32344efbb7334a5f2563420e0d1723c +share/gtk-doc/html/libxml2/general.html: df2b20bc526b927eefa3f401349d1287 +share/gtk-doc/html/libxml2/home.png: f6192f4292d744423df690e785d60fdf +share/gtk-doc/html/libxml2/index.html: b0b369ddf6959a2604b422c9268a0a3f +share/gtk-doc/html/libxml2/left.png: f771308152ab24a69682daed70ce136d +share/gtk-doc/html/libxml2/libxml2-DOCBparser.html: bde929bed90adf39144b561ad443c278 +share/gtk-doc/html/libxml2/libxml2-HTMLparser.html: b0c4afaee2ffdfb2381d66acad586e2a +share/gtk-doc/html/libxml2/libxml2-HTMLtree.html: e53dcd12a0e8e51413ca1de4986d7898 +share/gtk-doc/html/libxml2/libxml2-SAX.html: 5ba9dd3cf89972a337869e55024aeb0e +share/gtk-doc/html/libxml2/libxml2-SAX2.html: 9a8574da93ad762a54194f690db4dbee +share/gtk-doc/html/libxml2/libxml2-c14n.html: 57a9ef60a8af4df6586ab78061a75fd6 +share/gtk-doc/html/libxml2/libxml2-catalog.html: bcd705392f52867a1afadc1166739d17 +share/gtk-doc/html/libxml2/libxml2-chvalid.html: dca486d382dbf88f4d9155e3f7a826cf +share/gtk-doc/html/libxml2/libxml2-debugXML.html: efd04207438816e0ce69c47bc93e525b +share/gtk-doc/html/libxml2/libxml2-dict.html: 48012abaae77f87834377e8d4eb7caf1 +share/gtk-doc/html/libxml2/libxml2-encoding.html: d273f53a4f3c511372c5b984455f0288 +share/gtk-doc/html/libxml2/libxml2-entities.html: 3afcaf72917d0f9dda002baf4445e936 +share/gtk-doc/html/libxml2/libxml2-globals.html: 08b752bd53e687bf8ac51400c62ded68 +share/gtk-doc/html/libxml2/libxml2-hash.html: 371418533e8ef188b888d9e6e34aa245 +share/gtk-doc/html/libxml2/libxml2-list.html: 5a6fe5bf2cefe31f0f68cd2d8cafb2d7 +share/gtk-doc/html/libxml2/libxml2-nanoftp.html: 79f4eb67e7eb955c19bd5337a8cc5177 +share/gtk-doc/html/libxml2/libxml2-nanohttp.html: 0eac4dace4fda9fcd0bb2ebb6c16aaf0 +share/gtk-doc/html/libxml2/libxml2-parser.html: c3f66200ba47bd8198ec81aa3c8ce608 +share/gtk-doc/html/libxml2/libxml2-parserInternals.html: b2757ce5c41539e70df72da43af67825 +share/gtk-doc/html/libxml2/libxml2-pattern.html: 6129a6b5661fc0a38d5c967153651d26 +share/gtk-doc/html/libxml2/libxml2-relaxng.html: f98fee61d7e051dff9719e13b768b26c +share/gtk-doc/html/libxml2/libxml2-schemasInternals.html: d25db26772d036681e1299a9f214427a +share/gtk-doc/html/libxml2/libxml2-schematron.html: b3700a489202f309f02c6309f9d86984 +share/gtk-doc/html/libxml2/libxml2-threads.html: bb12a300c2c86bc49f586858a1ef6cd0 +share/gtk-doc/html/libxml2/libxml2-tree.html: 5bbe2d33f9b1917956919b7e18e47c53 +share/gtk-doc/html/libxml2/libxml2-uri.html: c46c9dfea580890ac48b70346c987bf0 +share/gtk-doc/html/libxml2/libxml2-valid.html: b4165290c6751ed9b2074eb915f0601f +share/gtk-doc/html/libxml2/libxml2-xinclude.html: 644e5093b3931eee1fece47fb9a3c908 +share/gtk-doc/html/libxml2/libxml2-xlink.html: fe35c6e86ba9419aea9f628ed45bc57a +share/gtk-doc/html/libxml2/libxml2-xmlIO.html: 1dd2f72b5a9014978f94155981fa6486 +share/gtk-doc/html/libxml2/libxml2-xmlautomata.html: 9cd301cf92ecca4ff9e896663f6d6570 +share/gtk-doc/html/libxml2/libxml2-xmlerror.html: 57549b7df0cd531b4d0ce6c03f9d9ade +share/gtk-doc/html/libxml2/libxml2-xmlexports.html: 62aebfe3442aedae77f8ff0514a8160c +share/gtk-doc/html/libxml2/libxml2-xmlmemory.html: 8c22f5ea8ddd2ed6795726d714b4ab9f +share/gtk-doc/html/libxml2/libxml2-xmlmodule.html: 215331b3567ef3b2e79cf35b1998a357 +share/gtk-doc/html/libxml2/libxml2-xmlreader.html: 512101e5eb61e5955c991e14b11ab3bd +share/gtk-doc/html/libxml2/libxml2-xmlregexp.html: 1a42a4508373992c4471d360bf1cdf4f +share/gtk-doc/html/libxml2/libxml2-xmlsave.html: ee31535906cba2ee6455e430f48eb236 +share/gtk-doc/html/libxml2/libxml2-xmlschemas.html: 55b5ed0793dd7f64e9c25cfe4be40287 +share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html: aa49b7bc4fe1493b926c035484fd77af +share/gtk-doc/html/libxml2/libxml2-xmlstring.html: 39057622b32c4f7bdb0836fd6005a1fa +share/gtk-doc/html/libxml2/libxml2-xmlunicode.html: 9ac652a74d46f8c3e1caa26c19732b2a +share/gtk-doc/html/libxml2/libxml2-xmlversion.html: 11a6e7c28ccbdbc1ca91213139decfa9 +share/gtk-doc/html/libxml2/libxml2-xmlwriter.html: 088d1735eaf6fcd0e4117c3cad0aa691 +share/gtk-doc/html/libxml2/libxml2-xpath.html: b75d3437dc3c3c355d6bace3b077e019 +share/gtk-doc/html/libxml2/libxml2-xpathInternals.html: 5f40882d1654ed5c644f22a10c8df2d3 +share/gtk-doc/html/libxml2/libxml2-xpointer.html: f1a81f0b99b0230bc0ceacae67d87043 +share/gtk-doc/html/libxml2/libxml2.devhelp: 138e3b9326546e2e347b3c0b18c12764 +share/gtk-doc/html/libxml2/right.png: ebd7e6d206d73850d77d305ab548f957 +share/gtk-doc/html/libxml2/style.css: a7b180ebf583ed0c315d70d6a4890f79 +share/gtk-doc/html/libxml2/up.png: 2f07d9272deb4ae870ca6821117877fa +share/man/man1/xml2-config.1: f9ea1b8ede868111a96fc3dbd9db79e6 +share/man/man1/xmlcatalog.1: 79205743b3bdefdddbcb175c60105cc8 +share/man/man1/xmllint.1: c2da2d5425849f19b8b0d355f5215973 +share/man/man3/libxml.3: 1bc9e496f1d34157a9e0d1b65704819a diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/a2f0cba83ce6faca8664d5e4c043b89cb0b7bfe2/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/a2f0cba83ce6faca8664d5e4c043b89cb0b7bfe2/conanmanifest.txt new file mode 100644 index 00000000..5bc2a52a --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/a2f0cba83ce6faca8664d5e4c043b89cb0b7bfe2/conanmanifest.txt @@ -0,0 +1,57 @@ +1563312673 +FindLibXml2.cmake: d030bc3535551b29c75e192b74469347 +bin/libxml2.dll: 36f09f1647f79bbcd6fb83990e7556d6 +bin/xmlcatalog.exe: aece355d60e23820db6b8a8f5398926b +bin/xmllint.exe: 5b4c66ea7fd3eded27162c6a264168d6 +conaninfo.txt: 2f9e27dac66da907585431bf3e1cd5cd +include/libxml2/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d +include/libxml2/libxml/HTMLparser.h: d57891c89573ed6dce04b8133e7438d2 +include/libxml2/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f +include/libxml2/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa +include/libxml2/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 +include/libxml2/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f +include/libxml2/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e +include/libxml2/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e +include/libxml2/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 +include/libxml2/libxml/dict.h: 93b78165ce896cbda4417bd278259714 +include/libxml2/libxml/encoding.h: 807b84fade38abad3ae0d9b6af714dbc +include/libxml2/libxml/entities.h: 16467595fdaff28420d1657b1658f267 +include/libxml2/libxml/globals.h: 4b9d5b9ff807b093244cc301d2cefda5 +include/libxml2/libxml/hash.h: 35f22cf7568b12fcf7bdc3f47fe2ccca +include/libxml2/libxml/list.h: 7600108b9a637797d97d3f47ed045287 +include/libxml2/libxml/nanoftp.h: 3f25d5edfbdb1fd084e53d9a7dbaff73 +include/libxml2/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 +include/libxml2/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 +include/libxml2/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 +include/libxml2/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 +include/libxml2/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba +include/libxml2/libxml/schemasInternals.h: 57e07ffffb72ccfa3ef131c7ad89633a +include/libxml2/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 +include/libxml2/libxml/threads.h: 56e93792a1e4d23fe9c6940231cd4a40 +include/libxml2/libxml/tree.h: 7e730a421411d4d34ad95b52122f2650 +include/libxml2/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf +include/libxml2/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 +include/libxml2/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef +include/libxml2/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 +include/libxml2/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d +include/libxml2/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a +include/libxml2/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 +include/libxml2/libxml/xmlexports.h: 600bbe5e56f034234213b0c0bf36f2b9 +include/libxml2/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 +include/libxml2/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 +include/libxml2/libxml/xmlreader.h: f4e1ae61cb2ac0d3ded93985fed902db +include/libxml2/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b +include/libxml2/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d +include/libxml2/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 +include/libxml2/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 +include/libxml2/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 +include/libxml2/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 +include/libxml2/libxml/xmlversion.h: e3b607d4f9fb7f1efffd2a983cdd3563 +include/libxml2/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 +include/libxml2/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 +include/libxml2/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd +include/libxml2/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 +include/libxml2/win32config.h: 117c7e9cb4e95acd6648f4af9cf98c5b +include/libxml2/wsockcompat.h: 04a6c8ece3e62ee924d3653c2613b5be +lib/libxml2.lib: 3298f82644251a34bd95fbd900087e19 +licenses/COPYING: 2044417e2e5006b65a8b9067b683fcf1 diff --git a/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/c837186703e4fb24344e99222c6f8da4a8574e49/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/c837186703e4fb24344e99222c6f8da4a8574e49/conanmanifest.txt new file mode 100644 index 00000000..1c0f5276 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxml2/2.9.9/qtproject/stable/package/c837186703e4fb24344e99222c6f8da4a8574e49/conanmanifest.txt @@ -0,0 +1,57 @@ +1563312495 +FindLibXml2.cmake: d030bc3535551b29c75e192b74469347 +bin/libxml2.dll: b028a505c7edcec4b7ee8e1a4d49a846 +bin/xmlcatalog.exe: c6047d4112de01e2da37c1c591c9a451 +bin/xmllint.exe: 47b08028082138743437c8bcd9e4fa2a +conaninfo.txt: 70025695045214886ea8bb78eb461369 +include/libxml2/libxml/DOCBparser.h: 21e6523a86338325c527e1e8847adc1d +include/libxml2/libxml/HTMLparser.h: d57891c89573ed6dce04b8133e7438d2 +include/libxml2/libxml/HTMLtree.h: 46cf4cefb419e18c40b8d5b6ac982f3f +include/libxml2/libxml/SAX.h: bf46553ceac47b24126d4a1abb7b26fa +include/libxml2/libxml/SAX2.h: 226675de48e46a282141b438b0895db4 +include/libxml2/libxml/c14n.h: 083bf52bbdd0563ff61605cb2bc9316f +include/libxml2/libxml/catalog.h: 1d5e464fe629dde9758d6c33ea7a3d8e +include/libxml2/libxml/chvalid.h: 4e1ca6554b98687e75d03662cd92d14e +include/libxml2/libxml/debugXML.h: 73816937df233c77ebfa261f3ca00dd8 +include/libxml2/libxml/dict.h: 93b78165ce896cbda4417bd278259714 +include/libxml2/libxml/encoding.h: 807b84fade38abad3ae0d9b6af714dbc +include/libxml2/libxml/entities.h: 16467595fdaff28420d1657b1658f267 +include/libxml2/libxml/globals.h: 4b9d5b9ff807b093244cc301d2cefda5 +include/libxml2/libxml/hash.h: 35f22cf7568b12fcf7bdc3f47fe2ccca +include/libxml2/libxml/list.h: 7600108b9a637797d97d3f47ed045287 +include/libxml2/libxml/nanoftp.h: 3f25d5edfbdb1fd084e53d9a7dbaff73 +include/libxml2/libxml/nanohttp.h: d31b62933eab6d58a46eb075b49b7715 +include/libxml2/libxml/parser.h: 3ef7bece85150ab2319aed3fd0d36034 +include/libxml2/libxml/parserInternals.h: c55ce5832dae535ce6d59b6aa10f6133 +include/libxml2/libxml/pattern.h: db123ed3ecc27ab31b3f808e96edb492 +include/libxml2/libxml/relaxng.h: 348c151f5b45a3543862c0e280f9fbba +include/libxml2/libxml/schemasInternals.h: 57e07ffffb72ccfa3ef131c7ad89633a +include/libxml2/libxml/schematron.h: 96d9e0c083c4949e246ce02cf31de483 +include/libxml2/libxml/threads.h: 56e93792a1e4d23fe9c6940231cd4a40 +include/libxml2/libxml/tree.h: 7e730a421411d4d34ad95b52122f2650 +include/libxml2/libxml/uri.h: 032d430e35153af35f2fe17a9e9c37bf +include/libxml2/libxml/valid.h: 3c082c0a5b81e1bc9fd9a21b69014584 +include/libxml2/libxml/xinclude.h: 1f8b2beb8f49da4bf3a658d31dccb2ef +include/libxml2/libxml/xlink.h: 8b82b67e61ebffc721bd23af66724f49 +include/libxml2/libxml/xmlIO.h: 31c8dfbaee25e20cd0d6eb2549929f5d +include/libxml2/libxml/xmlautomata.h: 3c3c0a7d353bacfbede7c2decf27e62a +include/libxml2/libxml/xmlerror.h: 9f03d7b7788f158e68a75132e9249975 +include/libxml2/libxml/xmlexports.h: 600bbe5e56f034234213b0c0bf36f2b9 +include/libxml2/libxml/xmlmemory.h: c0167c625ecaf670d76480506425b472 +include/libxml2/libxml/xmlmodule.h: de174bf853776e7e653c66c059d19e61 +include/libxml2/libxml/xmlreader.h: f4e1ae61cb2ac0d3ded93985fed902db +include/libxml2/libxml/xmlregexp.h: fea3110c96e8cd9013900e1c8e5b6c0b +include/libxml2/libxml/xmlsave.h: eed2463cad941f74f99b8b9bc03aa74d +include/libxml2/libxml/xmlschemas.h: 44ee98f77e997b8843fe6e5c45aa4ab0 +include/libxml2/libxml/xmlschemastypes.h: 160197e01dfa56cd9ad09d201d5bdeb4 +include/libxml2/libxml/xmlstring.h: 82efb8a055d5fc8eb7d815ed471eca53 +include/libxml2/libxml/xmlunicode.h: b9f0b8acddfee9b620ea822978a51d29 +include/libxml2/libxml/xmlversion.h: e3b607d4f9fb7f1efffd2a983cdd3563 +include/libxml2/libxml/xmlwriter.h: 8694436144b1fb0aab2e2d6b725035e3 +include/libxml2/libxml/xpath.h: 2e60b359a61db15d05409ebef1b140b1 +include/libxml2/libxml/xpathInternals.h: c18fad3cce22369a75166afed6343bcd +include/libxml2/libxml/xpointer.h: 5b8025430888d5b99d03d159ddc78388 +include/libxml2/win32config.h: 117c7e9cb4e95acd6648f4af9cf98c5b +include/libxml2/wsockcompat.h: 04a6c8ece3e62ee924d3653c2613b5be +lib/libxml2.lib: 80971fc22fe9830afe2ec26e2f0e1597 +licenses/COPYING: 2044417e2e5006b65a8b9067b683fcf1 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/annulen/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/annulen/stable/export/conanmanifest.txt deleted file mode 100644 index 73d392f3..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/annulen/stable/export/conanmanifest.txt +++ /dev/null @@ -1,2 +0,0 @@ -1478799778 -conanfile.py: b879c8be77c29214d239564bf9d04969 \ No newline at end of file diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/annulen/stable/package/30620cba1eaf28add40f441a20f7d1be9a5c636c/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/annulen/stable/package/30620cba1eaf28add40f441a20f7d1be9a5c636c/conanmanifest.txt deleted file mode 100644 index ead7f1ca..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/annulen/stable/package/30620cba1eaf28add40f441a20f7d1be9a5c636c/conanmanifest.txt +++ /dev/null @@ -1,136 +0,0 @@ -1478799864 -bin/libexslt-0.dll: 7675292df50bf7e337e6fe7641612f2b -bin/libxslt-1.dll: a1c6847bea36a592e198604f930974d2 -bin/xslt-config: 92edf713575aac5c5db15127af375842 -bin/xsltproc.exe: c215ee880a249a87c6eab40d5a9660e3 -conaninfo.txt: d4dddabb56f9b9605df4d8fa2f367028 -include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 -include/libexslt/exsltconfig.h: b3e4cceec1495ff23ba07518c4a8afcb -include/libexslt/exsltexports.h: 079c35b6fa14302aad0764c1dee57809 -include/libexslt/libexslt.h: 2a281322663dba16ccf7b4ed1eb5858f -include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f -include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a -include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 -include/libxslt/extra.h: 6d41618d5d9708628ec9b33a587f06c3 -include/libxslt/functions.h: b5ad00884390fb9b86c55a2628e9f6a0 -include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 -include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e -include/libxslt/libxslt.h: 11c489a4083c7d341b70e8693676852f -include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b -include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 -include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f -include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 -include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 -include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac -include/libxslt/transform.h: 060c2e753adea589569d2835a006075e -include/libxslt/trio.h: 7da7b1fcf378330699c7ecdd96908641 -include/libxslt/triodef.h: e41149b088de4a04c067c85969f4db3c -include/libxslt/variables.h: ee9c8174c5a42ab6821d2e28f0a15661 -include/libxslt/win32config.h: c64153b1a2c8bba1a8aa600741f04690 -include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 -include/libxslt/xsltInternals.h: 4b93c6b8abdb8f67a5718ed98a2b2e6e -include/libxslt/xsltconfig.h: 696ee4c678ac92cb4b17a955475698b0 -include/libxslt/xsltexports.h: 207ffe4e458a8c24635b3eb24bdd8000 -include/libxslt/xsltlocale.h: b934279cc2a6556075638425e5634b07 -include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 -lib/libexslt.dll.a: c03cb36bcefbeaf9f2529dcae7d38db5 -lib/libexslt.la: 4e7f084a461a3ab245dce1836aaf4384 -lib/libxslt.dll.a: 3dca0c97875f4f44cf46039657d5f5eb -lib/libxslt.la: 04ac200e9b2c56292ad91ffcb83ff676 -lib/pkgconfig/libexslt.pc: 6ae3965889e819ace738967546160ede -lib/pkgconfig/libxslt.pc: 101abf476285d150fb6130679868fd2a -lib/xsltConf.sh: 387130017807ac4132eccf4db20b3be8 -share/aclocal/libxslt.m4: 7b0b8b6bd86eea30c617663c9e9439b3 -share/doc/libxslt-1.1.29/html/API.html: 99b964a0e24da7db2d479302fbde49ef -share/doc/libxslt-1.1.29/html/APIchunk0.html: 379e5dd4f4ae9cdbaea4428322524d23 -share/doc/libxslt-1.1.29/html/APIchunk1.html: e6bedc4a557c35709cfaadb3b3a2c78e -share/doc/libxslt-1.1.29/html/APIchunk10.html: 990d5445086a566dff80c3c55e7fe777 -share/doc/libxslt-1.1.29/html/APIchunk11.html: d2c1db9800e2fefec12d29d1d4935787 -share/doc/libxslt-1.1.29/html/APIchunk12.html: 3e91f14eb29aa1b149a6dc47adfe3f7e -share/doc/libxslt-1.1.29/html/APIchunk13.html: f81829102703ab031d34501e86c38de6 -share/doc/libxslt-1.1.29/html/APIchunk2.html: 8de13f862400c55f79640149263ecdf2 -share/doc/libxslt-1.1.29/html/APIchunk3.html: a67b4125d6d62adefd42a1f14d8e743e -share/doc/libxslt-1.1.29/html/APIchunk4.html: 56f35b492dacfd056fb9aeb0d465d4d8 -share/doc/libxslt-1.1.29/html/APIchunk5.html: a0fd3189be50ea1bd6193387408f586c -share/doc/libxslt-1.1.29/html/APIchunk6.html: 9bbcf809a505e114d6639124cf4ea61c -share/doc/libxslt-1.1.29/html/APIchunk7.html: a13a001cbc5772a5f078dcb6b6933ed7 -share/doc/libxslt-1.1.29/html/APIchunk8.html: bcffc0a904c0e63029ea40434087e8a6 -share/doc/libxslt-1.1.29/html/APIchunk9.html: ed227fe1b81942da23d7e2aa7b743888 -share/doc/libxslt-1.1.29/html/APIconstructors.html: d79268dc83d0336691469ee5e7de4ffa -share/doc/libxslt-1.1.29/html/APIfiles.html: 490ec3f50d79908176cd61723381ebdf -share/doc/libxslt-1.1.29/html/APIfunctions.html: 78ba3e4807646ecedb871570caecf6d2 -share/doc/libxslt-1.1.29/html/APIsymbols.html: 3e7d7df3374823ed4a8b9e00de152f5e -share/doc/libxslt-1.1.29/html/EXSLT/APIchunk0.html: be037131987b78b19b9e61ce54877bee -share/doc/libxslt-1.1.29/html/EXSLT/APIconstructors.html: 3da084171718dfe3cfc77c6d4350762f -share/doc/libxslt-1.1.29/html/EXSLT/APIfiles.html: d67a66297a2fd601bc1553874765a315 -share/doc/libxslt-1.1.29/html/EXSLT/APIfunctions.html: 6b0b4b814785deca06fb32b27d1421db -share/doc/libxslt-1.1.29/html/EXSLT/APIsymbols.html: 39928a27a9ada210627deef998899296 -share/doc/libxslt-1.1.29/html/EXSLT/bugs.html: 7e22e19ae460ec6a27849b6bf2870eaf -share/doc/libxslt-1.1.29/html/EXSLT/docs.html: de04679a46246ab14183bfddfb9fe21e -share/doc/libxslt-1.1.29/html/EXSLT/downloads.html: 775d1c9006018e2a6afbd46aabac94cc -share/doc/libxslt-1.1.29/html/EXSLT/exslt.html: 9f53a9098c0ae4b86092ec453f9bf5e0 -share/doc/libxslt-1.1.29/html/EXSLT/help.html: 6a3ae7a677b508299d6843ec2aa06919 -share/doc/libxslt-1.1.29/html/EXSLT/index.html: f10878530c0c370434e38f8669b87fb2 -share/doc/libxslt-1.1.29/html/EXSLT/intro.html: 08c5743544fa11d3e47794d2bddf58c5 -share/doc/libxslt-1.1.29/html/FAQ.html: d50bcf8a29a1593dd5e0a3821071274f -share/doc/libxslt-1.1.29/html/Libxslt-Logo-180x168.gif: e6f8bb7e4a5a426380d387adaedadad9 -share/doc/libxslt-1.1.29/html/Libxslt-Logo-90x34.gif: 6b3ac58ce6c3e622db3dbf83d127f1ac -share/doc/libxslt-1.1.29/html/bugs.html: f724ff1f191cd6d6006ff81f85b84987 -share/doc/libxslt-1.1.29/html/contexts.gif: 8d882ee509aaba54abf791a312fdb617 -share/doc/libxslt-1.1.29/html/contribs.html: c3d4e7a850f0d5e373f857093b092fbc -share/doc/libxslt-1.1.29/html/docbook.html: 776f814590907d566008cb194162da1a -share/doc/libxslt-1.1.29/html/docs.html: 4291a6eb59ef115310843882330d25f1 -share/doc/libxslt-1.1.29/html/downloads.html: a34b24da9c37d11b160a51375b2d8e26 -share/doc/libxslt-1.1.29/html/extensions.html: d9dc8d45c36e77af9b229d9de2fa184c -share/doc/libxslt-1.1.29/html/help.html: ec0ba42602368c606bb282ae37d6e8ff -share/doc/libxslt-1.1.29/html/html/book1.html: 38e702d7abb51be701e9e4a132b7fbf3 -share/doc/libxslt-1.1.29/html/html/home.png: f6192f4292d744423df690e785d60fdf -share/doc/libxslt-1.1.29/html/html/index.html: 38e702d7abb51be701e9e4a132b7fbf3 -share/doc/libxslt-1.1.29/html/html/left.png: f771308152ab24a69682daed70ce136d -share/doc/libxslt-1.1.29/html/html/libxslt-attributes.html: 01e3dad54911c715af8eb4edd03680d7 -share/doc/libxslt-1.1.29/html/html/libxslt-documents.html: 04b4f566bc179282ba31e4086733d392 -share/doc/libxslt-1.1.29/html/html/libxslt-extensions.html: 48ba473ecaca35f0e9d118bfe569a4ce -share/doc/libxslt-1.1.29/html/html/libxslt-extra.html: b531cac2627f78c17bf7751d709d15e4 -share/doc/libxslt-1.1.29/html/html/libxslt-functions.html: 8f859868f4d61cc91fc3297f58cf467f -share/doc/libxslt-1.1.29/html/html/libxslt-imports.html: b190003ede5181d38069a360e9e54696 -share/doc/libxslt-1.1.29/html/html/libxslt-keys.html: 595c6d8e3cbd5836d765a714cdaa8662 -share/doc/libxslt-1.1.29/html/html/libxslt-lib.html: 38e702d7abb51be701e9e4a132b7fbf3 -share/doc/libxslt-1.1.29/html/html/libxslt-namespaces.html: f1957f303bf803b546fea20c3210e66c -share/doc/libxslt-1.1.29/html/html/libxslt-numbersInternals.html: 8270d01773d6827cef5eb0e5fbc06cbe -share/doc/libxslt-1.1.29/html/html/libxslt-pattern.html: 68a6e5041985bd90b062f225d3e4a4ea -share/doc/libxslt-1.1.29/html/html/libxslt-preproc.html: 2e5b3d40d10b5d19f8d8981890fa60e6 -share/doc/libxslt-1.1.29/html/html/libxslt-security.html: 0fc54dbb04c31db7273540c6aa15b789 -share/doc/libxslt-1.1.29/html/html/libxslt-templates.html: f795df05f5ada549196b3b0af2b51b6f -share/doc/libxslt-1.1.29/html/html/libxslt-transform.html: 10347ce214f564ed64480e3a29629bce -share/doc/libxslt-1.1.29/html/html/libxslt-variables.html: 78a0a52b6df345ecda47c06da8ac8d58 -share/doc/libxslt-1.1.29/html/html/libxslt-xslt.html: e94fba7be3d50049b723a80d3b0a1b40 -share/doc/libxslt-1.1.29/html/html/libxslt-xsltInternals.html: 4fc3053cfdc99227025f82dd83b99059 -share/doc/libxslt-1.1.29/html/html/libxslt-xsltexports.html: 21afd523be589d91dac3cdd1692d434c -share/doc/libxslt-1.1.29/html/html/libxslt-xsltlocale.html: 8a6973315db00ad07f270a50fb864ff1 -share/doc/libxslt-1.1.29/html/html/libxslt-xsltutils.html: 25ce5faa616e42268d54a34cb5983e5c -share/doc/libxslt-1.1.29/html/html/right.png: ebd7e6d206d73850d77d305ab548f957 -share/doc/libxslt-1.1.29/html/html/up.png: 2f07d9272deb4ae870ca6821117877fa -share/doc/libxslt-1.1.29/html/index.html: 05e32435399ac231b17cd820de78ac70 -share/doc/libxslt-1.1.29/html/internals.html: 922c61987ad85ba31859d1fa36ca2fc2 -share/doc/libxslt-1.1.29/html/intro.html: f7674ee30704647018c1cdd5ffa4b56f -share/doc/libxslt-1.1.29/html/news.html: 7deecee24a4b90b4e4c88f0d299f090f -share/doc/libxslt-1.1.29/html/node.gif: e0b48d09fa64e4a64831c42c4f9e6331 -share/doc/libxslt-1.1.29/html/object.gif: 879905dbfdc584f7a8543b7804cc3ff4 -share/doc/libxslt-1.1.29/html/processing.gif: e6924e110962e92a04d6d3f1f1196b31 -share/doc/libxslt-1.1.29/html/python.html: c8c7fafbda61cd06c188c4cceb78184e -share/doc/libxslt-1.1.29/html/redhat.gif: dd0216f442bf6845c103aba1b4bcb869 -share/doc/libxslt-1.1.29/html/smallfootonly.gif: e92b022a99a76d6fceeb35576bb7718f -share/doc/libxslt-1.1.29/html/stylesheet.gif: 15a7ac6844ef2b2a7f601ed6cb6cb277 -share/doc/libxslt-1.1.29/html/templates.gif: e1ac04018d8f602adbd28a72153f9956 -share/doc/libxslt-1.1.29/html/tutorial/libxslt_tutorial.c: 0c3d2acbfb0be23b984c695600170d16 -share/doc/libxslt-1.1.29/html/tutorial/libxslttutorial.html: ee8ec694b4a88c4b6503f5301c998ecd -share/doc/libxslt-1.1.29/html/tutorial/libxslttutorial.xml: 7f3bb19c2dcc54c5f76e953a65dbd339 -share/doc/libxslt-1.1.29/html/tutorial2/libxslt_pipes.c: 01a91d21b5e9a1e2259752d5325feaf0 -share/doc/libxslt-1.1.29/html/tutorial2/libxslt_pipes.html: ac0dc678b3ab0da56681555c51e6fa64 -share/doc/libxslt-1.1.29/html/tutorial2/libxslt_pipes.xml: 0c0faafe5595b19ebe09f6110fe3a7fd -share/doc/libxslt-1.1.29/html/xslt.html: 739e6a1bf660969174feb4db301f3e80 -share/doc/libxslt-1.1.29/html/xsltproc.html: fa713b8a3fd6b30a19319a821d7bb238 -share/doc/libxslt-1.1.29/html/xsltproc2.html: 52997d42ce172e9b1cace319bb5aaa0b -share/man/man1/xsltproc.1: be3aaba050a613d185ab69a1547eeee1 -share/man/man3/libexslt.3: c7089bab11720e9c9c17962a68c528ff -share/man/man3/libxslt.3: e4962632ed2590adad3621054417bd2a \ No newline at end of file diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/export/conanmanifest.txt deleted file mode 100644 index de2aa3a0..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/export/conanmanifest.txt +++ /dev/null @@ -1,2 +0,0 @@ -1482494842 -conanfile.py: 2472a82109b2d59062d3e50a54d08a4a diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt deleted file mode 100644 index 0820b583..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt +++ /dev/null @@ -1,38 +0,0 @@ -1482494796 -bin/libexslt.dll: acf1f58607eb1a10534cc30ca2bf2c9f -bin/libxslt.dll: 9edc15648704934221ec3afcedb25451 -conaninfo.txt: 224814c47f7d14968c401d2180974e77 -include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 -include/libexslt/exsltconfig.h: a36134fd73a90b0c39ba3eb4fa8833b9 -include/libexslt/exsltexports.h: 079c35b6fa14302aad0764c1dee57809 -include/libexslt/libexslt.h: 2a281322663dba16ccf7b4ed1eb5858f -include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f -include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a -include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 -include/libxslt/extra.h: 6d41618d5d9708628ec9b33a587f06c3 -include/libxslt/functions.h: b5ad00884390fb9b86c55a2628e9f6a0 -include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 -include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e -include/libxslt/libxslt.h: 11c489a4083c7d341b70e8693676852f -include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b -include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 -include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f -include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 -include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 -include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac -include/libxslt/transform.h: 060c2e753adea589569d2835a006075e -include/libxslt/trio.h: 7da7b1fcf378330699c7ecdd96908641 -include/libxslt/triodef.h: e41149b088de4a04c067c85969f4db3c -include/libxslt/variables.h: ee9c8174c5a42ab6821d2e28f0a15661 -include/libxslt/win32config.h: c64153b1a2c8bba1a8aa600741f04690 -include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 -include/libxslt/xsltInternals.h: 4b93c6b8abdb8f67a5718ed98a2b2e6e -include/libxslt/xsltconfig.h: 047bffd75335b6951063c467c91973a7 -include/libxslt/xsltexports.h: 207ffe4e458a8c24635b3eb24bdd8000 -include/libxslt/xsltlocale.h: b934279cc2a6556075638425e5634b07 -include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 -include/libxslt/xsltwin32config.h: 8a3a4b0359659042a66603eb59cc4001 -lib/libexslt.lib: 0c9f94aeea183a48ec62d6e1a3ac42af -lib/libexslt_a.lib: 026a42ff0b36660c1bd4890b656c80ee -lib/libxslt.lib: 084d078777bf34d52af7fc93a425d6b0 -lib/libxslt_a.lib: a07434cb5a40a32a17be58f71fe24976 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt deleted file mode 100644 index 22a7c428..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt +++ /dev/null @@ -1,38 +0,0 @@ -1482494566 -bin/libexslt.dll: 656ebfef4dcd7d299bff8f5123bfd4b9 -bin/libxslt.dll: cdca16a3183ddcbdf3d0087c3f1e62e9 -conaninfo.txt: 73548fb3ff61aade734c0ce2071a2d05 -include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 -include/libexslt/exsltconfig.h: a36134fd73a90b0c39ba3eb4fa8833b9 -include/libexslt/exsltexports.h: 079c35b6fa14302aad0764c1dee57809 -include/libexslt/libexslt.h: 2a281322663dba16ccf7b4ed1eb5858f -include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f -include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a -include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 -include/libxslt/extra.h: 6d41618d5d9708628ec9b33a587f06c3 -include/libxslt/functions.h: b5ad00884390fb9b86c55a2628e9f6a0 -include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 -include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e -include/libxslt/libxslt.h: 11c489a4083c7d341b70e8693676852f -include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b -include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 -include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f -include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 -include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 -include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac -include/libxslt/transform.h: 060c2e753adea589569d2835a006075e -include/libxslt/trio.h: 7da7b1fcf378330699c7ecdd96908641 -include/libxslt/triodef.h: e41149b088de4a04c067c85969f4db3c -include/libxslt/variables.h: ee9c8174c5a42ab6821d2e28f0a15661 -include/libxslt/win32config.h: c64153b1a2c8bba1a8aa600741f04690 -include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 -include/libxslt/xsltInternals.h: 4b93c6b8abdb8f67a5718ed98a2b2e6e -include/libxslt/xsltconfig.h: 047bffd75335b6951063c467c91973a7 -include/libxslt/xsltexports.h: 207ffe4e458a8c24635b3eb24bdd8000 -include/libxslt/xsltlocale.h: b934279cc2a6556075638425e5634b07 -include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 -include/libxslt/xsltwin32config.h: 8a3a4b0359659042a66603eb59cc4001 -lib/libexslt.lib: a84716fa57d325856a55cf5ba8a816c6 -lib/libexslt_a.lib: c428937c93542c6386534b61239e8119 -lib/libxslt.lib: 43b2e966367546ff110762f24f4c919d -lib/libxslt_a.lib: a802233763886894a7a89e4f8e634e6a diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt deleted file mode 100644 index 0501df3e..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt +++ /dev/null @@ -1,38 +0,0 @@ -1499348623 -bin/libexslt.dll: 27d2ff4cdff16eb9dd4944ef27cb467a -bin/libxslt.dll: b33bd4f30819263259ab52ee0cd9b7ff -conaninfo.txt: 00cd7d1f6493ac337bb709aedcabcc77 -include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 -include/libexslt/exsltconfig.h: a36134fd73a90b0c39ba3eb4fa8833b9 -include/libexslt/exsltexports.h: 079c35b6fa14302aad0764c1dee57809 -include/libexslt/libexslt.h: 2a281322663dba16ccf7b4ed1eb5858f -include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f -include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a -include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 -include/libxslt/extra.h: 6d41618d5d9708628ec9b33a587f06c3 -include/libxslt/functions.h: b5ad00884390fb9b86c55a2628e9f6a0 -include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 -include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e -include/libxslt/libxslt.h: 11c489a4083c7d341b70e8693676852f -include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b -include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 -include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f -include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 -include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 -include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac -include/libxslt/transform.h: 060c2e753adea589569d2835a006075e -include/libxslt/trio.h: 7da7b1fcf378330699c7ecdd96908641 -include/libxslt/triodef.h: e41149b088de4a04c067c85969f4db3c -include/libxslt/variables.h: ee9c8174c5a42ab6821d2e28f0a15661 -include/libxslt/win32config.h: c64153b1a2c8bba1a8aa600741f04690 -include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 -include/libxslt/xsltInternals.h: 4b93c6b8abdb8f67a5718ed98a2b2e6e -include/libxslt/xsltconfig.h: 047bffd75335b6951063c467c91973a7 -include/libxslt/xsltexports.h: 207ffe4e458a8c24635b3eb24bdd8000 -include/libxslt/xsltlocale.h: b934279cc2a6556075638425e5634b07 -include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 -include/libxslt/xsltwin32config.h: 8a3a4b0359659042a66603eb59cc4001 -lib/libexslt.lib: c491b1f54d162d9d5d42271d49315fee -lib/libexslt_a.lib: 7be28465f2df067865a4edd9a70fca92 -lib/libxslt.lib: 5392c2fe22b1ee711bd469eb1cfdceae -lib/libxslt_a.lib: 8f62e865d164a187b5b8c43d07315363 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt deleted file mode 100644 index db328396..00000000 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.29/vitallium/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt +++ /dev/null @@ -1,38 +0,0 @@ -1499348859 -bin/libexslt.dll: d2372193eb260a7b2351402a8e14b0f8 -bin/libxslt.dll: 9f8883be8f7b3df46f0d7b1c6312e191 -conaninfo.txt: fab5795c699ab977ff1852840f4d1c77 -include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 -include/libexslt/exsltconfig.h: a36134fd73a90b0c39ba3eb4fa8833b9 -include/libexslt/exsltexports.h: 079c35b6fa14302aad0764c1dee57809 -include/libexslt/libexslt.h: 2a281322663dba16ccf7b4ed1eb5858f -include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f -include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a -include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 -include/libxslt/extra.h: 6d41618d5d9708628ec9b33a587f06c3 -include/libxslt/functions.h: b5ad00884390fb9b86c55a2628e9f6a0 -include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 -include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e -include/libxslt/libxslt.h: 11c489a4083c7d341b70e8693676852f -include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b -include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 -include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f -include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 -include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 -include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac -include/libxslt/transform.h: 060c2e753adea589569d2835a006075e -include/libxslt/trio.h: 7da7b1fcf378330699c7ecdd96908641 -include/libxslt/triodef.h: e41149b088de4a04c067c85969f4db3c -include/libxslt/variables.h: ee9c8174c5a42ab6821d2e28f0a15661 -include/libxslt/win32config.h: c64153b1a2c8bba1a8aa600741f04690 -include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 -include/libxslt/xsltInternals.h: 4b93c6b8abdb8f67a5718ed98a2b2e6e -include/libxslt/xsltconfig.h: 047bffd75335b6951063c467c91973a7 -include/libxslt/xsltexports.h: 207ffe4e458a8c24635b3eb24bdd8000 -include/libxslt/xsltlocale.h: b934279cc2a6556075638425e5634b07 -include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 -include/libxslt/xsltwin32config.h: 8a3a4b0359659042a66603eb59cc4001 -lib/libexslt.lib: 0c2503b1eca0a09387fda8cc216dd487 -lib/libexslt_a.lib: 24a3c1b936b7433a786954203dea83cd -lib/libxslt.lib: bfbf055a6a5fb8aa246bf4b094669fd9 -lib/libxslt_a.lib: 49538c60313cbfc216007fa1ec3fc6a7 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/export/conanmanifest.txt new file mode 100644 index 00000000..fca5f192 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/export/conanmanifest.txt @@ -0,0 +1,3 @@ +1563314340 +LICENSE.md: 5aa9930034582b90e2008d2c609d1317 +conanfile.py: 85aee547c18dc9922ef9b56faf3e7a07 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt new file mode 100644 index 00000000..33da41c9 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt @@ -0,0 +1,39 @@ +1563314516 +bin/libexslt.dll: 1027ae276703fdb975b78af97f50a3fd +bin/libxslt.dll: 5fbe99fe4c940217a9a18593b3580701 +bin/xsltproc.exe: 7b2a42162459c1b506d563c6fb449afd +conaninfo.txt: 131c2efa982318cd7b48007ceedd90c2 +include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 +include/libexslt/exsltconfig.h: b59169f8160a77fbe1f2a5857b0d3575 +include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 +include/libexslt/libexslt.h: 4564d6e70f8ce16e36c0bde5969fdab5 +include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f +include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a +include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 +include/libxslt/extra.h: 94fe9ce1c0c47724aae4a1bcb8c29433 +include/libxslt/functions.h: 052fd28e9971416b2bbebdc3d1103c4e +include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 +include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e +include/libxslt/libxslt.h: b84034c942ffa214709b590b29131637 +include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b +include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 +include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f +include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 +include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 +include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac +include/libxslt/transform.h: ccbcce4553f3231003b1944002814246 +include/libxslt/trio.h: 7da7b1fcf378330699c7ecdd96908641 +include/libxslt/triodef.h: e41149b088de4a04c067c85969f4db3c +include/libxslt/variables.h: ebd9b3b1f996c4a2ed79d4473ff0fd77 +include/libxslt/win32config.h: c64153b1a2c8bba1a8aa600741f04690 +include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 +include/libxslt/xsltInternals.h: 83c28cbab61567177227bc7d65cedc5d +include/libxslt/xsltconfig.h: b650a6d45e6a25c2b6a855e881c57f2c +include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df +include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 +include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 +lib/libexslt.lib: 2de6293c1989c7ff270db23f2a51027f +lib/libexslt_a.lib: c5887a724f9ca61adfcff43ea3510432 +lib/libxslt.lib: ae3fb6fd41bcc83e99eb833d7f11312c +lib/libxslt_a.lib: 5b6184ab67226653a619992d2e66d30a +licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt new file mode 100644 index 00000000..655972a0 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt @@ -0,0 +1,39 @@ +1563314384 +bin/libexslt.dll: e0f8b366523f930466733da6b10c8477 +bin/libxslt.dll: f00b9c502cc7a684a7f479a8f7500ee8 +bin/xsltproc.exe: a4517cf3425c2240a9a1656cac8b0d61 +conaninfo.txt: 4ec410e069cb83d8a1364e503ef5e869 +include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 +include/libexslt/exsltconfig.h: b59169f8160a77fbe1f2a5857b0d3575 +include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 +include/libexslt/libexslt.h: 4564d6e70f8ce16e36c0bde5969fdab5 +include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f +include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a +include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 +include/libxslt/extra.h: 94fe9ce1c0c47724aae4a1bcb8c29433 +include/libxslt/functions.h: 052fd28e9971416b2bbebdc3d1103c4e +include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 +include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e +include/libxslt/libxslt.h: b84034c942ffa214709b590b29131637 +include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b +include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 +include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f +include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 +include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 +include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac +include/libxslt/transform.h: ccbcce4553f3231003b1944002814246 +include/libxslt/trio.h: 7da7b1fcf378330699c7ecdd96908641 +include/libxslt/triodef.h: e41149b088de4a04c067c85969f4db3c +include/libxslt/variables.h: ebd9b3b1f996c4a2ed79d4473ff0fd77 +include/libxslt/win32config.h: c64153b1a2c8bba1a8aa600741f04690 +include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 +include/libxslt/xsltInternals.h: 83c28cbab61567177227bc7d65cedc5d +include/libxslt/xsltconfig.h: b650a6d45e6a25c2b6a855e881c57f2c +include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df +include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 +include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 +lib/libexslt.lib: 62a9bb46b41162952efeaa60ef7bab1c +lib/libexslt_a.lib: c92bb2cea4ca81635b84f156c05ec86d +lib/libxslt.lib: a8b2e5f594f4b9c0b685dd742778fcc7 +lib/libxslt_a.lib: 8448d05a7195909bbabbe069855fc9b9 +licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt new file mode 100644 index 00000000..c36a1022 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt @@ -0,0 +1,39 @@ +1563314840 +bin/libexslt.dll: 4141dfa25d865a0cee1b59fe424acc3d +bin/libxslt.dll: 43556087a0f9ef6644fedb03b7a0b290 +bin/xsltproc.exe: 777526f819fe1316100b90b29d442bae +conaninfo.txt: 9215fe709c0363a6446192bdbf7be8b0 +include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 +include/libexslt/exsltconfig.h: b59169f8160a77fbe1f2a5857b0d3575 +include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 +include/libexslt/libexslt.h: 4564d6e70f8ce16e36c0bde5969fdab5 +include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f +include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a +include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 +include/libxslt/extra.h: 94fe9ce1c0c47724aae4a1bcb8c29433 +include/libxslt/functions.h: 052fd28e9971416b2bbebdc3d1103c4e +include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 +include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e +include/libxslt/libxslt.h: b84034c942ffa214709b590b29131637 +include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b +include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 +include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f +include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 +include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 +include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac +include/libxslt/transform.h: ccbcce4553f3231003b1944002814246 +include/libxslt/trio.h: 7da7b1fcf378330699c7ecdd96908641 +include/libxslt/triodef.h: e41149b088de4a04c067c85969f4db3c +include/libxslt/variables.h: ebd9b3b1f996c4a2ed79d4473ff0fd77 +include/libxslt/win32config.h: c64153b1a2c8bba1a8aa600741f04690 +include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 +include/libxslt/xsltInternals.h: 83c28cbab61567177227bc7d65cedc5d +include/libxslt/xsltconfig.h: b650a6d45e6a25c2b6a855e881c57f2c +include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df +include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 +include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 +lib/libexslt.lib: a6856e7a6c5bf5a3219d20f6a4196af7 +lib/libexslt_a.lib: a8c039f9ec02c10bbe0b4e7d7b64c7c2 +lib/libxslt.lib: c92f8017146bd83d247fa2923fefad40 +lib/libxslt_a.lib: 35d4de952df68733c2e4d483cc60ab9a +licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/ae932df57acef9c094443d5579df1a9b72790e1a/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/ae932df57acef9c094443d5579df1a9b72790e1a/conanmanifest.txt new file mode 100644 index 00000000..a931af23 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/ae932df57acef9c094443d5579df1a9b72790e1a/conanmanifest.txt @@ -0,0 +1,131 @@ +1563315535 +bin/libexslt-0.dll: cab6eb3a57d592d0c6556772e75bc091 +bin/libxslt-1.dll: 1b237a7dca37e8be1a2b7644b4e32f2a +bin/xslt-config: 40811a2730bb0b6542758cff609476a4 +bin/xsltproc.exe: 7f47496605bb3c31198b2028295e41cb +conaninfo.txt: 98809b81082a2638531dca7c3c6b8196 +include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 +include/libexslt/exsltconfig.h: 0ecd038f6193e48046754b4c19c5100a +include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 +include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f +include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a +include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 +include/libxslt/extra.h: 94fe9ce1c0c47724aae4a1bcb8c29433 +include/libxslt/functions.h: 052fd28e9971416b2bbebdc3d1103c4e +include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 +include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e +include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b +include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 +include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f +include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 +include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 +include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac +include/libxslt/transform.h: ccbcce4553f3231003b1944002814246 +include/libxslt/variables.h: ebd9b3b1f996c4a2ed79d4473ff0fd77 +include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 +include/libxslt/xsltInternals.h: 83c28cbab61567177227bc7d65cedc5d +include/libxslt/xsltconfig.h: 05fef7eabdf530bd4187f2ab36f75ab2 +include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df +include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 +include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 +lib/libexslt.dll.a: 83bc04597cc3a197ad757f5a76cd3cf8 +lib/libexslt.la: 0cb3b2219e4d584e600e7c8c2793c17f +lib/libxslt.dll.a: 7e6d45f7f66e7095e0706a8cb487b2ad +lib/pkgconfig/libexslt.pc: bf17f17059d9835bd023402072aae276 +lib/pkgconfig/libxslt.pc: d44ef86e4b636bfdb470a0abac21ea2c +lib/xsltConf.sh: 6592ea47fbdda09eda481af47695c07e +licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 +share/aclocal/libxslt.m4: 7b0b8b6bd86eea30c617663c9e9439b3 +share/doc/libxslt-1.1.33/html/API.html: 99b964a0e24da7db2d479302fbde49ef +share/doc/libxslt-1.1.33/html/APIchunk0.html: 2606a248a6bcc15dc3a0a7b24aa4c986 +share/doc/libxslt-1.1.33/html/APIchunk1.html: b7d490ac26795f95c2bef95c0a594602 +share/doc/libxslt-1.1.33/html/APIchunk10.html: 21469e5e8bddfc34612199bcbe475986 +share/doc/libxslt-1.1.33/html/APIchunk11.html: d885dc364ca2e7f673e70a8e4bebe708 +share/doc/libxslt-1.1.33/html/APIchunk12.html: bf1786a4eec69d7f07b1b343e5896578 +share/doc/libxslt-1.1.33/html/APIchunk13.html: a6260a4828dede37e72fcba0b0896bbc +share/doc/libxslt-1.1.33/html/APIchunk2.html: d23cc069d98f804c94b5f89d689df18d +share/doc/libxslt-1.1.33/html/APIchunk3.html: 726cc909e934c30b155938c7e3054514 +share/doc/libxslt-1.1.33/html/APIchunk4.html: 6ae81594249831b8fb705cf93e2aeb1c +share/doc/libxslt-1.1.33/html/APIchunk5.html: abec4cefc8e617a8a5a09a4eb698f1b2 +share/doc/libxslt-1.1.33/html/APIchunk6.html: fbf021be7dc8290f2e982f142db88c65 +share/doc/libxslt-1.1.33/html/APIchunk7.html: 8a239dc2258366ba021dff7da5bff984 +share/doc/libxslt-1.1.33/html/APIchunk8.html: 477f0b927ea36d2b304b4d9cc50c1d33 +share/doc/libxslt-1.1.33/html/APIchunk9.html: 6a3e5b1297a1ac42a923be4572e910b1 +share/doc/libxslt-1.1.33/html/APIconstructors.html: 024a521581bd48526c32d53ad523ca7d +share/doc/libxslt-1.1.33/html/APIfiles.html: 5d7c6992d4f45cc688140d67c1c36819 +share/doc/libxslt-1.1.33/html/APIfunctions.html: 3507a0636b416c3d0e26d751ffbc89b4 +share/doc/libxslt-1.1.33/html/APIsymbols.html: b4e69e2a3f573e06627682607098e7d5 +share/doc/libxslt-1.1.33/html/EXSLT/APIchunk0.html: be037131987b78b19b9e61ce54877bee +share/doc/libxslt-1.1.33/html/EXSLT/APIconstructors.html: 3da084171718dfe3cfc77c6d4350762f +share/doc/libxslt-1.1.33/html/EXSLT/APIfiles.html: d67a66297a2fd601bc1553874765a315 +share/doc/libxslt-1.1.33/html/EXSLT/APIfunctions.html: 6b0b4b814785deca06fb32b27d1421db +share/doc/libxslt-1.1.33/html/EXSLT/APIsymbols.html: 39928a27a9ada210627deef998899296 +share/doc/libxslt-1.1.33/html/EXSLT/bugs.html: 7e22e19ae460ec6a27849b6bf2870eaf +share/doc/libxslt-1.1.33/html/EXSLT/docs.html: de04679a46246ab14183bfddfb9fe21e +share/doc/libxslt-1.1.33/html/EXSLT/downloads.html: 775d1c9006018e2a6afbd46aabac94cc +share/doc/libxslt-1.1.33/html/EXSLT/exslt.html: 506581c3f25d8dbc5443c8892dfd09fe +share/doc/libxslt-1.1.33/html/EXSLT/help.html: 6a3ae7a677b508299d6843ec2aa06919 +share/doc/libxslt-1.1.33/html/EXSLT/index.html: f10878530c0c370434e38f8669b87fb2 +share/doc/libxslt-1.1.33/html/EXSLT/intro.html: 08c5743544fa11d3e47794d2bddf58c5 +share/doc/libxslt-1.1.33/html/FAQ.html: d50bcf8a29a1593dd5e0a3821071274f +share/doc/libxslt-1.1.33/html/Libxslt-Logo-180x168.gif: e6f8bb7e4a5a426380d387adaedadad9 +share/doc/libxslt-1.1.33/html/Libxslt-Logo-90x34.gif: 6b3ac58ce6c3e622db3dbf83d127f1ac +share/doc/libxslt-1.1.33/html/bugs.html: f724ff1f191cd6d6006ff81f85b84987 +share/doc/libxslt-1.1.33/html/contexts.gif: 8d882ee509aaba54abf791a312fdb617 +share/doc/libxslt-1.1.33/html/contribs.html: c3d4e7a850f0d5e373f857093b092fbc +share/doc/libxslt-1.1.33/html/docbook.html: 776f814590907d566008cb194162da1a +share/doc/libxslt-1.1.33/html/docs.html: 4291a6eb59ef115310843882330d25f1 +share/doc/libxslt-1.1.33/html/downloads.html: a34b24da9c37d11b160a51375b2d8e26 +share/doc/libxslt-1.1.33/html/extensions.html: d9dc8d45c36e77af9b229d9de2fa184c +share/doc/libxslt-1.1.33/html/help.html: ec0ba42602368c606bb282ae37d6e8ff +share/doc/libxslt-1.1.33/html/html/book1.html: 38e702d7abb51be701e9e4a132b7fbf3 +share/doc/libxslt-1.1.33/html/html/home.png: f6192f4292d744423df690e785d60fdf +share/doc/libxslt-1.1.33/html/html/index.html: 38e702d7abb51be701e9e4a132b7fbf3 +share/doc/libxslt-1.1.33/html/html/left.png: f771308152ab24a69682daed70ce136d +share/doc/libxslt-1.1.33/html/html/libxslt-attributes.html: 01e3dad54911c715af8eb4edd03680d7 +share/doc/libxslt-1.1.33/html/html/libxslt-documents.html: 04b4f566bc179282ba31e4086733d392 +share/doc/libxslt-1.1.33/html/html/libxslt-extensions.html: 48ba473ecaca35f0e9d118bfe569a4ce +share/doc/libxslt-1.1.33/html/html/libxslt-extra.html: caf4705080e4ff3f3ade158e71226d47 +share/doc/libxslt-1.1.33/html/html/libxslt-functions.html: bb94525f596eb9c2e1f3920758659832 +share/doc/libxslt-1.1.33/html/html/libxslt-imports.html: fc82892efd0d57468cf0bbae61aeb34f +share/doc/libxslt-1.1.33/html/html/libxslt-keys.html: 595c6d8e3cbd5836d765a714cdaa8662 +share/doc/libxslt-1.1.33/html/html/libxslt-lib.html: 38e702d7abb51be701e9e4a132b7fbf3 +share/doc/libxslt-1.1.33/html/html/libxslt-namespaces.html: f1957f303bf803b546fea20c3210e66c +share/doc/libxslt-1.1.33/html/html/libxslt-numbersInternals.html: 8270d01773d6827cef5eb0e5fbc06cbe +share/doc/libxslt-1.1.33/html/html/libxslt-pattern.html: 68a6e5041985bd90b062f225d3e4a4ea +share/doc/libxslt-1.1.33/html/html/libxslt-preproc.html: 2e5b3d40d10b5d19f8d8981890fa60e6 +share/doc/libxslt-1.1.33/html/html/libxslt-security.html: 0fc54dbb04c31db7273540c6aa15b789 +share/doc/libxslt-1.1.33/html/html/libxslt-templates.html: f795df05f5ada549196b3b0af2b51b6f +share/doc/libxslt-1.1.33/html/html/libxslt-transform.html: 4e6ec4dbc8937a8c616f86691efbbf00 +share/doc/libxslt-1.1.33/html/html/libxslt-variables.html: 35187493583603e51076ec5a24641ef9 +share/doc/libxslt-1.1.33/html/html/libxslt-xslt.html: e94fba7be3d50049b723a80d3b0a1b40 +share/doc/libxslt-1.1.33/html/html/libxslt-xsltInternals.html: cc1b16d88f1793e3a851668a70c9c759 +share/doc/libxslt-1.1.33/html/html/libxslt-xsltexports.html: 21afd523be589d91dac3cdd1692d434c +share/doc/libxslt-1.1.33/html/html/libxslt-xsltlocale.html: 81fdb21658d2250d7d760a3ce7fb7e2f +share/doc/libxslt-1.1.33/html/html/libxslt-xsltutils.html: ac754a1cb0a4674f5f9758c5e5349901 +share/doc/libxslt-1.1.33/html/html/right.png: ebd7e6d206d73850d77d305ab548f957 +share/doc/libxslt-1.1.33/html/html/up.png: 2f07d9272deb4ae870ca6821117877fa +share/doc/libxslt-1.1.33/html/index.html: 05e32435399ac231b17cd820de78ac70 +share/doc/libxslt-1.1.33/html/internals.html: 922c61987ad85ba31859d1fa36ca2fc2 +share/doc/libxslt-1.1.33/html/intro.html: f7674ee30704647018c1cdd5ffa4b56f +share/doc/libxslt-1.1.33/html/news.html: 61820b5fa72adba71e24ff667a33473b +share/doc/libxslt-1.1.33/html/node.gif: e0b48d09fa64e4a64831c42c4f9e6331 +share/doc/libxslt-1.1.33/html/object.gif: 879905dbfdc584f7a8543b7804cc3ff4 +share/doc/libxslt-1.1.33/html/processing.gif: e6924e110962e92a04d6d3f1f1196b31 +share/doc/libxslt-1.1.33/html/python.html: c8c7fafbda61cd06c188c4cceb78184e +share/doc/libxslt-1.1.33/html/redhat.gif: dd0216f442bf6845c103aba1b4bcb869 +share/doc/libxslt-1.1.33/html/smallfootonly.gif: e92b022a99a76d6fceeb35576bb7718f +share/doc/libxslt-1.1.33/html/stylesheet.gif: 15a7ac6844ef2b2a7f601ed6cb6cb277 +share/doc/libxslt-1.1.33/html/templates.gif: e1ac04018d8f602adbd28a72153f9956 +share/doc/libxslt-1.1.33/html/tutorial/libxslt_tutorial.c: 0c3d2acbfb0be23b984c695600170d16 +share/doc/libxslt-1.1.33/html/tutorial/libxslttutorial.html: ee8ec694b4a88c4b6503f5301c998ecd +share/doc/libxslt-1.1.33/html/tutorial/libxslttutorial.xml: 7f3bb19c2dcc54c5f76e953a65dbd339 +share/doc/libxslt-1.1.33/html/tutorial2/libxslt_pipes.c: 01a91d21b5e9a1e2259752d5325feaf0 +share/doc/libxslt-1.1.33/html/tutorial2/libxslt_pipes.html: ac0dc678b3ab0da56681555c51e6fa64 +share/doc/libxslt-1.1.33/html/tutorial2/libxslt_pipes.xml: 0c0faafe5595b19ebe09f6110fe3a7fd +share/doc/libxslt-1.1.33/html/xslt.html: 1374af624caff863c3a74a0638cc864e +share/doc/libxslt-1.1.33/html/xsltproc.html: fa713b8a3fd6b30a19319a821d7bb238 +share/doc/libxslt-1.1.33/html/xsltproc2.html: 52997d42ce172e9b1cace319bb5aaa0b +share/man/man1/xsltproc.1: de3280d3d36348484726358785ec0b16 +share/man/man3/libexslt.3: c7089bab11720e9c9c17962a68c528ff +share/man/man3/libxslt.3: e4962632ed2590adad3621054417bd2a diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/b06e2211adc32e230f2d9e729d1dcad2648782e8/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/b06e2211adc32e230f2d9e729d1dcad2648782e8/conanmanifest.txt new file mode 100644 index 00000000..16a5f30e --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/b06e2211adc32e230f2d9e729d1dcad2648782e8/conanmanifest.txt @@ -0,0 +1,131 @@ +1563315757 +bin/libexslt-0.dll: 8246da72c1d928df83645852d0aad04d +bin/libxslt-1.dll: 4313a0eef07d9f23605018a709f094ef +bin/xslt-config: 8da5db250243d255558b3e78442b2509 +bin/xsltproc.exe: a71a65dbab3e694b8aea4a6a7f115c29 +conaninfo.txt: ae8f13739b7fa8ffd7f6802c7de8d097 +include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 +include/libexslt/exsltconfig.h: 0ecd038f6193e48046754b4c19c5100a +include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 +include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f +include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a +include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 +include/libxslt/extra.h: 94fe9ce1c0c47724aae4a1bcb8c29433 +include/libxslt/functions.h: 052fd28e9971416b2bbebdc3d1103c4e +include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 +include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e +include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b +include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 +include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f +include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 +include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 +include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac +include/libxslt/transform.h: ccbcce4553f3231003b1944002814246 +include/libxslt/variables.h: ebd9b3b1f996c4a2ed79d4473ff0fd77 +include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 +include/libxslt/xsltInternals.h: 83c28cbab61567177227bc7d65cedc5d +include/libxslt/xsltconfig.h: 57168ad99e4e28bcfeea713ead5cea37 +include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df +include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 +include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 +lib/libexslt.dll.a: 4115a89bfabd8b730ff512618fb73cd9 +lib/libexslt.la: 64bd984341b00db0bef87e5452b8a52c +lib/libxslt.dll.a: 235305b53da66753ff5f80e481084d49 +lib/pkgconfig/libexslt.pc: 96de8f80e8e66cc6fa593aaaae8f0d79 +lib/pkgconfig/libxslt.pc: ca661115f87755258b6c925774d0bc04 +lib/xsltConf.sh: 9fcd150c391ae3fba108aa9ec272601b +licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 +share/aclocal/libxslt.m4: 7b0b8b6bd86eea30c617663c9e9439b3 +share/doc/libxslt-1.1.33/html/API.html: 99b964a0e24da7db2d479302fbde49ef +share/doc/libxslt-1.1.33/html/APIchunk0.html: 2606a248a6bcc15dc3a0a7b24aa4c986 +share/doc/libxslt-1.1.33/html/APIchunk1.html: b7d490ac26795f95c2bef95c0a594602 +share/doc/libxslt-1.1.33/html/APIchunk10.html: 21469e5e8bddfc34612199bcbe475986 +share/doc/libxslt-1.1.33/html/APIchunk11.html: d885dc364ca2e7f673e70a8e4bebe708 +share/doc/libxslt-1.1.33/html/APIchunk12.html: bf1786a4eec69d7f07b1b343e5896578 +share/doc/libxslt-1.1.33/html/APIchunk13.html: a6260a4828dede37e72fcba0b0896bbc +share/doc/libxslt-1.1.33/html/APIchunk2.html: d23cc069d98f804c94b5f89d689df18d +share/doc/libxslt-1.1.33/html/APIchunk3.html: 726cc909e934c30b155938c7e3054514 +share/doc/libxslt-1.1.33/html/APIchunk4.html: 6ae81594249831b8fb705cf93e2aeb1c +share/doc/libxslt-1.1.33/html/APIchunk5.html: abec4cefc8e617a8a5a09a4eb698f1b2 +share/doc/libxslt-1.1.33/html/APIchunk6.html: fbf021be7dc8290f2e982f142db88c65 +share/doc/libxslt-1.1.33/html/APIchunk7.html: 8a239dc2258366ba021dff7da5bff984 +share/doc/libxslt-1.1.33/html/APIchunk8.html: 477f0b927ea36d2b304b4d9cc50c1d33 +share/doc/libxslt-1.1.33/html/APIchunk9.html: 6a3e5b1297a1ac42a923be4572e910b1 +share/doc/libxslt-1.1.33/html/APIconstructors.html: 024a521581bd48526c32d53ad523ca7d +share/doc/libxslt-1.1.33/html/APIfiles.html: 5d7c6992d4f45cc688140d67c1c36819 +share/doc/libxslt-1.1.33/html/APIfunctions.html: 3507a0636b416c3d0e26d751ffbc89b4 +share/doc/libxslt-1.1.33/html/APIsymbols.html: b4e69e2a3f573e06627682607098e7d5 +share/doc/libxslt-1.1.33/html/EXSLT/APIchunk0.html: be037131987b78b19b9e61ce54877bee +share/doc/libxslt-1.1.33/html/EXSLT/APIconstructors.html: 3da084171718dfe3cfc77c6d4350762f +share/doc/libxslt-1.1.33/html/EXSLT/APIfiles.html: d67a66297a2fd601bc1553874765a315 +share/doc/libxslt-1.1.33/html/EXSLT/APIfunctions.html: 6b0b4b814785deca06fb32b27d1421db +share/doc/libxslt-1.1.33/html/EXSLT/APIsymbols.html: 39928a27a9ada210627deef998899296 +share/doc/libxslt-1.1.33/html/EXSLT/bugs.html: 7e22e19ae460ec6a27849b6bf2870eaf +share/doc/libxslt-1.1.33/html/EXSLT/docs.html: de04679a46246ab14183bfddfb9fe21e +share/doc/libxslt-1.1.33/html/EXSLT/downloads.html: 775d1c9006018e2a6afbd46aabac94cc +share/doc/libxslt-1.1.33/html/EXSLT/exslt.html: 506581c3f25d8dbc5443c8892dfd09fe +share/doc/libxslt-1.1.33/html/EXSLT/help.html: 6a3ae7a677b508299d6843ec2aa06919 +share/doc/libxslt-1.1.33/html/EXSLT/index.html: f10878530c0c370434e38f8669b87fb2 +share/doc/libxslt-1.1.33/html/EXSLT/intro.html: 08c5743544fa11d3e47794d2bddf58c5 +share/doc/libxslt-1.1.33/html/FAQ.html: d50bcf8a29a1593dd5e0a3821071274f +share/doc/libxslt-1.1.33/html/Libxslt-Logo-180x168.gif: e6f8bb7e4a5a426380d387adaedadad9 +share/doc/libxslt-1.1.33/html/Libxslt-Logo-90x34.gif: 6b3ac58ce6c3e622db3dbf83d127f1ac +share/doc/libxslt-1.1.33/html/bugs.html: f724ff1f191cd6d6006ff81f85b84987 +share/doc/libxslt-1.1.33/html/contexts.gif: 8d882ee509aaba54abf791a312fdb617 +share/doc/libxslt-1.1.33/html/contribs.html: c3d4e7a850f0d5e373f857093b092fbc +share/doc/libxslt-1.1.33/html/docbook.html: 776f814590907d566008cb194162da1a +share/doc/libxslt-1.1.33/html/docs.html: 4291a6eb59ef115310843882330d25f1 +share/doc/libxslt-1.1.33/html/downloads.html: a34b24da9c37d11b160a51375b2d8e26 +share/doc/libxslt-1.1.33/html/extensions.html: d9dc8d45c36e77af9b229d9de2fa184c +share/doc/libxslt-1.1.33/html/help.html: ec0ba42602368c606bb282ae37d6e8ff +share/doc/libxslt-1.1.33/html/html/book1.html: 38e702d7abb51be701e9e4a132b7fbf3 +share/doc/libxslt-1.1.33/html/html/home.png: f6192f4292d744423df690e785d60fdf +share/doc/libxslt-1.1.33/html/html/index.html: 38e702d7abb51be701e9e4a132b7fbf3 +share/doc/libxslt-1.1.33/html/html/left.png: f771308152ab24a69682daed70ce136d +share/doc/libxslt-1.1.33/html/html/libxslt-attributes.html: 01e3dad54911c715af8eb4edd03680d7 +share/doc/libxslt-1.1.33/html/html/libxslt-documents.html: 04b4f566bc179282ba31e4086733d392 +share/doc/libxslt-1.1.33/html/html/libxslt-extensions.html: 48ba473ecaca35f0e9d118bfe569a4ce +share/doc/libxslt-1.1.33/html/html/libxslt-extra.html: caf4705080e4ff3f3ade158e71226d47 +share/doc/libxslt-1.1.33/html/html/libxslt-functions.html: bb94525f596eb9c2e1f3920758659832 +share/doc/libxslt-1.1.33/html/html/libxslt-imports.html: fc82892efd0d57468cf0bbae61aeb34f +share/doc/libxslt-1.1.33/html/html/libxslt-keys.html: 595c6d8e3cbd5836d765a714cdaa8662 +share/doc/libxslt-1.1.33/html/html/libxslt-lib.html: 38e702d7abb51be701e9e4a132b7fbf3 +share/doc/libxslt-1.1.33/html/html/libxslt-namespaces.html: f1957f303bf803b546fea20c3210e66c +share/doc/libxslt-1.1.33/html/html/libxslt-numbersInternals.html: 8270d01773d6827cef5eb0e5fbc06cbe +share/doc/libxslt-1.1.33/html/html/libxslt-pattern.html: 68a6e5041985bd90b062f225d3e4a4ea +share/doc/libxslt-1.1.33/html/html/libxslt-preproc.html: 2e5b3d40d10b5d19f8d8981890fa60e6 +share/doc/libxslt-1.1.33/html/html/libxslt-security.html: 0fc54dbb04c31db7273540c6aa15b789 +share/doc/libxslt-1.1.33/html/html/libxslt-templates.html: f795df05f5ada549196b3b0af2b51b6f +share/doc/libxslt-1.1.33/html/html/libxslt-transform.html: 4e6ec4dbc8937a8c616f86691efbbf00 +share/doc/libxslt-1.1.33/html/html/libxslt-variables.html: 35187493583603e51076ec5a24641ef9 +share/doc/libxslt-1.1.33/html/html/libxslt-xslt.html: e94fba7be3d50049b723a80d3b0a1b40 +share/doc/libxslt-1.1.33/html/html/libxslt-xsltInternals.html: cc1b16d88f1793e3a851668a70c9c759 +share/doc/libxslt-1.1.33/html/html/libxslt-xsltexports.html: 21afd523be589d91dac3cdd1692d434c +share/doc/libxslt-1.1.33/html/html/libxslt-xsltlocale.html: 81fdb21658d2250d7d760a3ce7fb7e2f +share/doc/libxslt-1.1.33/html/html/libxslt-xsltutils.html: ac754a1cb0a4674f5f9758c5e5349901 +share/doc/libxslt-1.1.33/html/html/right.png: ebd7e6d206d73850d77d305ab548f957 +share/doc/libxslt-1.1.33/html/html/up.png: 2f07d9272deb4ae870ca6821117877fa +share/doc/libxslt-1.1.33/html/index.html: 05e32435399ac231b17cd820de78ac70 +share/doc/libxslt-1.1.33/html/internals.html: 922c61987ad85ba31859d1fa36ca2fc2 +share/doc/libxslt-1.1.33/html/intro.html: f7674ee30704647018c1cdd5ffa4b56f +share/doc/libxslt-1.1.33/html/news.html: 61820b5fa72adba71e24ff667a33473b +share/doc/libxslt-1.1.33/html/node.gif: e0b48d09fa64e4a64831c42c4f9e6331 +share/doc/libxslt-1.1.33/html/object.gif: 879905dbfdc584f7a8543b7804cc3ff4 +share/doc/libxslt-1.1.33/html/processing.gif: e6924e110962e92a04d6d3f1f1196b31 +share/doc/libxslt-1.1.33/html/python.html: c8c7fafbda61cd06c188c4cceb78184e +share/doc/libxslt-1.1.33/html/redhat.gif: dd0216f442bf6845c103aba1b4bcb869 +share/doc/libxslt-1.1.33/html/smallfootonly.gif: e92b022a99a76d6fceeb35576bb7718f +share/doc/libxslt-1.1.33/html/stylesheet.gif: 15a7ac6844ef2b2a7f601ed6cb6cb277 +share/doc/libxslt-1.1.33/html/templates.gif: e1ac04018d8f602adbd28a72153f9956 +share/doc/libxslt-1.1.33/html/tutorial/libxslt_tutorial.c: 0c3d2acbfb0be23b984c695600170d16 +share/doc/libxslt-1.1.33/html/tutorial/libxslttutorial.html: ee8ec694b4a88c4b6503f5301c998ecd +share/doc/libxslt-1.1.33/html/tutorial/libxslttutorial.xml: 7f3bb19c2dcc54c5f76e953a65dbd339 +share/doc/libxslt-1.1.33/html/tutorial2/libxslt_pipes.c: 01a91d21b5e9a1e2259752d5325feaf0 +share/doc/libxslt-1.1.33/html/tutorial2/libxslt_pipes.html: ac0dc678b3ab0da56681555c51e6fa64 +share/doc/libxslt-1.1.33/html/tutorial2/libxslt_pipes.xml: 0c0faafe5595b19ebe09f6110fe3a7fd +share/doc/libxslt-1.1.33/html/xslt.html: 1374af624caff863c3a74a0638cc864e +share/doc/libxslt-1.1.33/html/xsltproc.html: fa713b8a3fd6b30a19319a821d7bb238 +share/doc/libxslt-1.1.33/html/xsltproc2.html: 52997d42ce172e9b1cace319bb5aaa0b +share/man/man1/xsltproc.1: de3280d3d36348484726358785ec0b16 +share/man/man3/libexslt.3: c7089bab11720e9c9c17962a68c528ff +share/man/man3/libxslt.3: e4962632ed2590adad3621054417bd2a diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt new file mode 100644 index 00000000..72fc7217 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt @@ -0,0 +1,39 @@ +1563314699 +bin/libexslt.dll: 2f6c1b0675b471626eb6b059c62dc47d +bin/libxslt.dll: ce6e74e9f547eb8075a38217fce288bc +bin/xsltproc.exe: 6b622ec4f565be591db0a1512e62afd0 +conaninfo.txt: c5e083fe93cb280366b4719ebc623f14 +include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 +include/libexslt/exsltconfig.h: b59169f8160a77fbe1f2a5857b0d3575 +include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 +include/libexslt/libexslt.h: 4564d6e70f8ce16e36c0bde5969fdab5 +include/libxslt/attributes.h: 32e43c08f66b85266c391301d322a21f +include/libxslt/documents.h: 22a35bd1102fd1ac301e50cf650a8b8a +include/libxslt/extensions.h: 0396b6be07f707b0c6ee171a63b2e520 +include/libxslt/extra.h: 94fe9ce1c0c47724aae4a1bcb8c29433 +include/libxslt/functions.h: 052fd28e9971416b2bbebdc3d1103c4e +include/libxslt/imports.h: 66e26ad969e3c37fdeedcbc2716d7cf3 +include/libxslt/keys.h: 77a11ee3de841d02d3461b829cfcc11e +include/libxslt/libxslt.h: b84034c942ffa214709b590b29131637 +include/libxslt/namespaces.h: c784b4b8e80274491fe023ce26d4847b +include/libxslt/numbersInternals.h: 27c2c21ab1535f84710fe1c8c8829018 +include/libxslt/pattern.h: 1d928199f1adf63d79d9ec6aa7eb060f +include/libxslt/preproc.h: 829de337aca8b15f699708e6b7340549 +include/libxslt/security.h: 1b24b61ea6afe01d18c647c94b1245c7 +include/libxslt/templates.h: 6901f4c8fad239b588b9f6d4cdfef5ac +include/libxslt/transform.h: ccbcce4553f3231003b1944002814246 +include/libxslt/trio.h: 7da7b1fcf378330699c7ecdd96908641 +include/libxslt/triodef.h: e41149b088de4a04c067c85969f4db3c +include/libxslt/variables.h: ebd9b3b1f996c4a2ed79d4473ff0fd77 +include/libxslt/win32config.h: c64153b1a2c8bba1a8aa600741f04690 +include/libxslt/xslt.h: 0c08b8e7223b72f822a58457520b6387 +include/libxslt/xsltInternals.h: 83c28cbab61567177227bc7d65cedc5d +include/libxslt/xsltconfig.h: b650a6d45e6a25c2b6a855e881c57f2c +include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df +include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 +include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 +lib/libexslt.lib: b42f86d1df0d2ea5acdab2358ce0e342 +lib/libexslt_a.lib: ede1e3dd3681e09f5aebb24c1f27f34a +lib/libxslt.lib: e27ebe0519adda4e86bdb7c66084dd5f +lib/libxslt_a.lib: cee614fe2761af1dc0ad4a5ab3da444f +licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 diff --git a/coin/provisioning/common/windows/conan_manifests/zlib/1.2.11/qtproject/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/zlib/1.2.11/qtproject/stable/export/conanmanifest.txt new file mode 100644 index 00000000..6b51b7b6 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/zlib/1.2.11/qtproject/stable/export/conanmanifest.txt @@ -0,0 +1,7 @@ +1563296424 +FindZLIB.cmake: 0ec128c2f97a3a6d7e800d3204e5c94f +LICENSE: 1ac8330e79e050867144e174d80880f7 +conanfile.py: c7aba1a732c28bb9851cb50acf3f7a4d +export_source/CMakeLists.txt: b45a8f19ed120e922c1cb720c0e4a7c7 +export_source/CMakeLists_minizip.txt: 7b2c2a9ab51d0ba37b5ca35da21579b7 +export_source/minizip.patch: dc8ffe80d334f8e5b1bb967593fe2d4a diff --git a/coin/provisioning/common/windows/conan_manifests/zlib/1.2.11/qtproject/stable/package/5a14faea650589a68f33a6a5b0207a4a852a5f1d/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/zlib/1.2.11/qtproject/stable/package/5a14faea650589a68f33a6a5b0207a4a852a5f1d/conanmanifest.txt new file mode 100644 index 00000000..45447d86 --- /dev/null +++ b/coin/provisioning/common/windows/conan_manifests/zlib/1.2.11/qtproject/stable/package/5a14faea650589a68f33a6a5b0207a4a852a5f1d/conanmanifest.txt @@ -0,0 +1,9 @@ +1563296480 +FindZLIB.cmake: 0ec128c2f97a3a6d7e800d3204e5c94f +conaninfo.txt: 40e76e93e86476bbd92e1e82b71d04bb +include/zconf.h: 931d0dd891d90ace1eab7a46125a8bda +include/zlib.h: 0338828e9d00c94645648b1517108324 +lib/libzlib.a: 5dc51a25ecef8f9c97e6b67cec736634 +lib/pkgconfig/zlib.pc: 29adeed07108745c3562dc19343f3d99 +licenses/LICENSE: 1af2e5353c16e930435fff550f827c3e +zlib.pc: 29adeed07108745c3562dc19343f3d99 diff --git a/coin/provisioning/common/windows/conan_manifests/zlib/1.2.8/annulen/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/zlib/1.2.8/annulen/stable/export/conanmanifest.txt deleted file mode 100644 index d7806e94..00000000 --- a/coin/provisioning/common/windows/conan_manifests/zlib/1.2.8/annulen/stable/export/conanmanifest.txt +++ /dev/null @@ -1,4 +0,0 @@ -1479836260 -CMakeLists.txt: 6ce169fb0b2f6eaa5d054d1dc007fc81 -FindZLIB.cmake: 4b85e65d40b77da736416f28e5931e56 -conanfile.py: e8de244463aa84c51238f1fd22a1ae00 \ No newline at end of file diff --git a/coin/provisioning/common/windows/conan_manifests/zlib/1.2.8/annulen/stable/package/a990f14748d35a55b067140a0973ea7204f67350/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/zlib/1.2.8/annulen/stable/package/a990f14748d35a55b067140a0973ea7204f67350/conanmanifest.txt deleted file mode 100644 index 88b5c152..00000000 --- a/coin/provisioning/common/windows/conan_manifests/zlib/1.2.8/annulen/stable/package/a990f14748d35a55b067140a0973ea7204f67350/conanmanifest.txt +++ /dev/null @@ -1,56 +0,0 @@ -1479836298 -FindZLIB.cmake: 4b85e65d40b77da736416f28e5931e56 -conaninfo.txt: e2f8774ada0606cca4800e6f6987394e -include/blast.h: fa67f1dd7e681b188546423884fe25ec -include/crc32.h: f28d16b67efecdfafa0d816a7d982124 -include/crypt.h: 6e72c46776f0db175ec8f15144a3c250 -include/deflate.h: 7ceae74a13201f14c91623116af169c3 -include/gzguts.h: b337a2af7b4c7af157b1b2a9dd64c0f8 -include/gzlog.h: 7d497747a90370d3b13320bbf97e65dc -include/infback9.h: 52b1ed99960d3ed7ed60cd20295e64a8 -include/inffast.h: f3669099d3f571dbc0426401ed5f50e3 -include/inffix9.h: 1558f49aeca6376b7aa331add59e0e06 -include/inffixed.h: 7fa3e91804601b6618c915b76a8dc332 -include/inflate.h: 8f1b05cdf36a269882a955071b140162 -include/inflate9.h: 8a4de1bca6c4182d025ea55062d125d9 -include/inftree9.h: be5cf855a19b76feb28468e5b46145b7 -include/inftrees.h: ec87be89b9bcca8ced80a70f857e823b -include/ioapi.h: 7d6c0585719ba47fd356795801befc6d -include/iowin32.h: 818e2950cc00d787eaa9b710007dc53f -include/mztools.h: 7caac7503f8f002d61e0f0e5b7f33bc6 -include/puff.h: 7ecbeeb67e09a843961187673974f86d -include/trees.h: 51fdcb3e2ccf60ca13c06920c89296a3 -include/unzip.h: 11ae6a9d654c95c47da55fe16772a1e5 -include/zconf.h: 371f055f4b9c75a473da59dfb9268f21 -include/zfstream.h: 938f58c179fabf6ff9ffb85395ada81f -include/zip.h: e1495f151b00503a64aae7b375cc3b80 -include/zlib.h: 64d8a5180bd54ff5452886e4cbb21e14 -include/zstream.h: a980b61c1e8be68d5cdb1236ba6b43e7 -include/zutil.h: 04fcfbb961591c9452c4d0fd1525ffdf -lib/C.includecache: 2a275573d6bdd65a8b8ef59f629c18ba -lib/DependInfo.cmake: ae32810aa874699287b057a57bb4ebe3 -lib/adler32.obj: 628307ada6c4f583837f98a86f0cdc7a -lib/build.make: d22b7b24b231da06fed02e9c19860d8c -lib/cmake_clean.cmake: 02e9e0e203fb9e96f49a4136f66ae6d9 -lib/cmake_clean_target.cmake: 0d82d9dfb4e94fa1d2c8201023c801ab -lib/compress.obj: fd3ee3b189db238906e6d8c3bc7f3785 -lib/crc32.obj: 4a4ea589d4cb9c892a9690446bded090 -lib/deflate.obj: 5c08287751273abb2649a39abd33b57c -lib/depend.internal: 9f57661ca5d24b63b07e4b17717dbf31 -lib/depend.make: 3565852809d7357179f74379be7af651 -lib/flags.make: 15b3124297b5ec74b2f7ba7876adca3e -lib/gzclose.obj: fa130c24a884e3db58195315eb2002e9 -lib/gzlib.obj: 100b5cdf0edf3cf759446d8a836a9e63 -lib/gzread.obj: e44720562c175dd122e99a158a87272a -lib/gzwrite.obj: 2943d7662bee2a9367c62d5a5a84e122 -lib/includes_C.rsp: 459fa74070615e1040d5c8dfd9bd5177 -lib/infback.obj: e19339854ee788b1ac54cd97e03fde0b -lib/inffast.obj: 067b8b689801213f6740e05405053a84 -lib/inflate.obj: a429f8ec8a73d923911f50f0153b5e42 -lib/inftrees.obj: 8a7349abf3599a7d2d5b88578fa44ac4 -lib/libzlibstatic.a: 91f1ddd318e256ffb4c526e111ed063f -lib/link.txt: f94b96609f51147e6e09cd3143aaac07 -lib/progress.make: 20799cec453b892ad5a11033508bce80 -lib/trees.obj: a9f9d07743b1742ed4e466469581c54f -lib/uncompr.obj: d46edd5a818878e69c138a5bde688b22 -lib/zutil.obj: d59a363a9262423a29179499e1479c45 \ No newline at end of file diff --git a/coin/provisioning/qtci-windows-10-x86/03-conan.ps1 b/coin/provisioning/qtci-windows-10-x86/03-conan.ps1 deleted file mode 100644 index d33ceea8..00000000 --- a/coin/provisioning/qtci-windows-10-x86/03-conan.ps1 +++ /dev/null @@ -1,17 +0,0 @@ -. "$PSScriptRoot\..\common\windows\conan.ps1" - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2015-x86 ` - -Arch x86 ` - -Compiler "Visual Studio" ` - -CompilerVersion 14 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2017-x86 ` - -Arch x86 ` - -Compiler "Visual Studio" ` - -CompilerVersion 15 ` - -CompilerRuntime MD diff --git a/coin/provisioning/qtci-windows-10-x86/11-conan.ps1 b/coin/provisioning/qtci-windows-10-x86/11-conan.ps1 new file mode 100644 index 00000000..d33ceea8 --- /dev/null +++ b/coin/provisioning/qtci-windows-10-x86/11-conan.ps1 @@ -0,0 +1,17 @@ +. "$PSScriptRoot\..\common\windows\conan.ps1" + +Run-Conan-Install ` + -ConanfilesDir "$PSScriptRoot\conanfiles" ` + -BuildinfoDir MSVC2015-x86 ` + -Arch x86 ` + -Compiler "Visual Studio" ` + -CompilerVersion 14 ` + -CompilerRuntime MD + +Run-Conan-Install ` + -ConanfilesDir "$PSScriptRoot\conanfiles" ` + -BuildinfoDir MSVC2017-x86 ` + -Arch x86 ` + -Compiler "Visual Studio" ` + -CompilerVersion 15 ` + -CompilerRuntime MD diff --git a/coin/provisioning/qtci-windows-10-x86/conanfiles/qtwebkit.txt b/coin/provisioning/qtci-windows-10-x86/conanfiles/qtwebkit.txt index a7ced8ae..0c910ea2 100644 --- a/coin/provisioning/qtci-windows-10-x86/conanfiles/qtwebkit.txt +++ b/coin/provisioning/qtci-windows-10-x86/conanfiles/qtwebkit.txt @@ -1,7 +1,8 @@ [requires] -icu/59.1@vitallium/stable -libxml2/2.9.4@vitallium/stable -libxslt/1.1.29@vitallium/stable +icu/64.2@qtproject/stable +libxml2/2.9.9@qtproject/stable +libxslt/1.1.33@qtproject/stable +libjpeg-turbo/2.0.2@qtproject/stable [generators] cmake @@ -9,12 +10,20 @@ txt [options] icu:shared=True +icu:data_packaging=library + libxml2:shared=True +libxml2:iconv=False +libxml2:icu=True +libxml2:zlib=False + libxslt:shared=True +libjpeg-turbo:shared=False + [imports] -bin, icudt59.dll -> ./bin -bin, icuin59.dll -> ./bin -bin, icuuc59.dll -> ./bin +lib, icudt64.dll -> ./bin +lib, icuin64.dll -> ./bin +lib, icuuc64.dll -> ./bin bin, libxml2.dll -> ./bin bin, libxslt.dll -> ./bin diff --git a/coin/provisioning/qtci-windows-10-x86_64/03-conan.ps1 b/coin/provisioning/qtci-windows-10-x86_64/03-conan.ps1 deleted file mode 100644 index 40131a81..00000000 --- a/coin/provisioning/qtci-windows-10-x86_64/03-conan.ps1 +++ /dev/null @@ -1,33 +0,0 @@ -. "$PSScriptRoot\..\common\windows\conan.ps1" - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2015-x86_64 ` - -Arch x86_64 ` - -Compiler "Visual Studio" ` - -CompilerVersion 14 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2015-x86 ` - -Arch x86 ` - -Compiler "Visual Studio" ` - -CompilerVersion 14 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2017-x86_64 ` - -Arch x86_64 ` - -Compiler "Visual Studio" ` - -CompilerVersion 15 ` - -CompilerRuntime MD - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir MSVC2017-x86 ` - -Arch x86 ` - -Compiler "Visual Studio" ` - -CompilerVersion 15 ` - -CompilerRuntime MD diff --git a/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1 b/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1 new file mode 100644 index 00000000..a651bb0c --- /dev/null +++ b/coin/provisioning/qtci-windows-10-x86_64/11-conan.ps1 @@ -0,0 +1,53 @@ +. "$PSScriptRoot\..\common\windows\conan.ps1" + +Run-Conan-Install ` + -ConanfilesDir "$PSScriptRoot\conanfiles" ` + -BuildinfoDir MSVC2015-x86_64 ` + -Arch x86_64 ` + -Compiler "Visual Studio" ` + -CompilerVersion 14 ` + -CompilerRuntime MD + +Run-Conan-Install ` + -ConanfilesDir "$PSScriptRoot\conanfiles" ` + -BuildinfoDir MSVC2015-x86 ` + -Arch x86 ` + -Compiler "Visual Studio" ` + -CompilerVersion 14 ` + -CompilerRuntime MD + +Run-Conan-Install ` + -ConanfilesDir "$PSScriptRoot\conanfiles" ` + -BuildinfoDir MSVC2017-x86_64 ` + -Arch x86_64 ` + -Compiler "Visual Studio" ` + -CompilerVersion 15 ` + -CompilerRuntime MD + +Run-Conan-Install ` + -ConanfilesDir "$PSScriptRoot\conanfiles" ` + -BuildinfoDir MSVC2017-x86 ` + -Arch x86 ` + -Compiler "Visual Studio" ` + -CompilerVersion 15 ` + -CompilerRuntime MD + +Run-Conan-Install ` + -ConanfilesDir "$PSScriptRoot\conanfiles" ` + -BuildinfoDir Mingw73-x86 ` + -Arch x86 ` + -Compiler "gcc" ` + -CompilerVersion 7 ` + -CompilerLibcxx "libstdc++" ` + -CompilerException "dwarf2" ` + -CompilerThreads "posix" + +Run-Conan-Install ` + -ConanfilesDir "$PSScriptRoot\conanfiles" ` + -BuildinfoDir Mingw73-x86_64 ` + -Arch x86_64 ` + -Compiler "gcc" ` + -CompilerVersion 7 ` + -CompilerLibcxx "libstdc++" ` + -CompilerException "seh" ` + -CompilerThreads "posix" diff --git a/coin/provisioning/qtci-windows-10-x86_64/conanfiles/qtwebkit.txt b/coin/provisioning/qtci-windows-10-x86_64/conanfiles/qtwebkit.txt index a7ced8ae..4d9ca4b9 100644 --- a/coin/provisioning/qtci-windows-10-x86_64/conanfiles/qtwebkit.txt +++ b/coin/provisioning/qtci-windows-10-x86_64/conanfiles/qtwebkit.txt @@ -1,7 +1,8 @@ [requires] -icu/59.1@vitallium/stable -libxml2/2.9.4@vitallium/stable -libxslt/1.1.29@vitallium/stable +icu/64.2@qtproject/stable +libxml2/2.9.9@qtproject/stable +libxslt/1.1.33@qtproject/stable +libjpeg-turbo/2.0.2@qtproject/stable [generators] cmake @@ -9,12 +10,22 @@ txt [options] icu:shared=True +icu:data_packaging=library + libxml2:shared=True +libxml2:iconv=False +libxml2:icu=True +libxml2:zlib=False + libxslt:shared=True +libjpeg-turbo:shared=False + [imports] -bin, icudt59.dll -> ./bin -bin, icuin59.dll -> ./bin -bin, icuuc59.dll -> ./bin +lib, icudt64.dll -> ./bin +lib, icuin64.dll -> ./bin +lib, icuuc64.dll -> ./bin bin, libxml2.dll -> ./bin bin, libxslt.dll -> ./bin +bin, libxml2-2.dll -> ./bin +bin, libxslt-1.dll -> ./bin diff --git a/coin/provisioning/qtci-windows-7-x86/03-conan.ps1 b/coin/provisioning/qtci-windows-7-x86/03-conan.ps1 deleted file mode 100644 index 4aa9658d..00000000 --- a/coin/provisioning/qtci-windows-7-x86/03-conan.ps1 +++ /dev/null @@ -1,9 +0,0 @@ -. "$PSScriptRoot\..\common\windows\conan.ps1" - -Run-Conan-Install ` - -ConanfilesDir "$PSScriptRoot\conanfiles" ` - -BuildinfoDir Mingw53-x86 ` - -Arch x86 ` - -Compiler "gcc" ` - -CompilerVersion "5.3" ` - -CompilerLibcxx "libstdc++11" diff --git a/coin/provisioning/qtci-windows-7-x86/11-conan.ps1 b/coin/provisioning/qtci-windows-7-x86/11-conan.ps1 new file mode 100644 index 00000000..aa380a09 --- /dev/null +++ b/coin/provisioning/qtci-windows-7-x86/11-conan.ps1 @@ -0,0 +1,11 @@ +. "$PSScriptRoot\..\common\windows\conan.ps1" + +Run-Conan-Install ` + -ConanfilesDir "$PSScriptRoot\conanfiles" ` + -BuildinfoDir Mingw73-x86 ` + -Arch x86 ` + -Compiler "gcc" ` + -CompilerVersion 7 ` + -CompilerLibcxx "libstdc++" ` + -CompilerException "dwarf2" ` + -CompilerThreads "posix" diff --git a/coin/provisioning/qtci-windows-7-x86/conanfiles/qtwebkit.txt b/coin/provisioning/qtci-windows-7-x86/conanfiles/qtwebkit.txt index 4a5bc05d..7a5a892a 100644 --- a/coin/provisioning/qtci-windows-7-x86/conanfiles/qtwebkit.txt +++ b/coin/provisioning/qtci-windows-7-x86/conanfiles/qtwebkit.txt @@ -1,8 +1,9 @@ [requires] -icu/57.1@annulen/stable -libxml2/2.9.4@annulen/stable -libxslt/1.1.29@annulen/stable -zlib/1.2.8@annulen/stable +icu/64.2@qtproject/stable +libxml2/2.9.9@qtproject/stable +libxslt/1.1.33@qtproject/stable +libjpeg-turbo/2.0.2@qtproject/stable +zlib/1.2.11@qtproject/stable [generators] cmake @@ -10,13 +11,22 @@ txt [options] icu:shared=True +icu:data_packaging=library + libxml2:shared=True +libxml2:iconv=False +libxml2:icu=True +libxml2:zlib=False + libxslt:shared=True + +libjpeg-turbo:shared=False + zlib:shared=False [imports] -lib, icudt57.dll -> ./bin -lib, icuin57.dll -> ./bin -lib, icuuc57.dll -> ./bin +lib, icudt64.dll -> ./bin +lib, icuin64.dll -> ./bin +lib, icuuc64.dll -> ./bin bin, libxml2-2.dll -> ./bin bin, libxslt-1.dll -> ./bin -- cgit v1.2.3 From 30b0d05343fcc8a0edec379cdc550f9e744cd58f Mon Sep 17 00:00:00 2001 From: Jani Heikkinen Date: Thu, 1 Aug 2019 12:24:57 +0300 Subject: Remove 'Packaging' feature from WinRT_10 x86 We don't deliver binaries for that target anymore -> do not export that either Change-Id: Iccf408adeaed071294e10774a5a0c21ec8bd8014 Reviewed-by: Antti Kokko --- coin/platform_configs/default.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coin') diff --git a/coin/platform_configs/default.yaml b/coin/platform_configs/default.yaml index 6de43501..ce4394fb 100644 --- a/coin/platform_configs/default.yaml +++ b/coin/platform_configs/default.yaml @@ -22,7 +22,7 @@ Target os: 'WinRT_10' Target arch: 'x86' Compiler: 'MSVC2015' - Features: ['Packaging', 'DisableTests'] + Features: ['DisableTests'] Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -debug-and-release -release -force-debug-info -nomake tests -nomake examples -no-sql-mysql -platform win32-msvc2015 -xplatform winrt-x86-msvc2015' - Template: 'qtci-windows-10-x86_64-10' -- cgit v1.2.3 From b521ad483c68a38361504469f133376ce7f45005 Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Wed, 31 Jul 2019 14:25:58 +0300 Subject: Update platform_configs for QtWebKit * Remove redundant MSVC2017 configuration * Synchronize Mingw73 configuration with qt5.txt Change-Id: I05557ecbf57206fe56ff113f893c37a65f503bf0 Reviewed-by: Liang Qi Reviewed-by: Simon Hausmann --- coin/platform_configs/qtwebkit.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'coin') diff --git a/coin/platform_configs/qtwebkit.yaml b/coin/platform_configs/qtwebkit.yaml index 01378ddc..49426405 100644 --- a/coin/platform_configs/qtwebkit.yaml +++ b/coin/platform_configs/qtwebkit.yaml @@ -1,11 +1,5 @@ -- - Template: 'qtci-windows-10-x86_64-10' - Target arch: 'x86' - Compiler: 'MSVC2017' - Features: ['DisableTests'] - Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -force-debug-info -opengl dynamic' - Template: 'qtci-windows-7-x86-3' Compiler: 'Mingw73' Features: ['Packaging', 'DisableTests'] - Configure arguments: '-opensource -confirm-license -verbose -prefix /home/qt/work/install -nomake tests -debug-and-release -release -opengl dynamic' + Configure arguments: '-opensource -confirm-license -verbose -prefix c:\Users\qt\work\install -release -debug-and-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++' -- cgit v1.2.3 From 125c5e6528abee7796f6e5b68526bc050bd9250e Mon Sep 17 00:00:00 2001 From: Konstantin Tokarev Date: Thu, 1 Aug 2019 13:42:52 +0300 Subject: Provisioning: update conan_manifests for libxslt packages Package recipe was improved, as a result packages were rebuilt and checksums need update. Change-Id: I33bd30b44cbe48b3550cb42eeb995ef8588fcce7 Reviewed-by: Simon Hausmann --- .../1.1.33/qtproject/stable/export/conanmanifest.txt | 4 ++-- .../conanmanifest.txt | 16 +++++++--------- .../conanmanifest.txt | 16 +++++++--------- .../conanmanifest.txt | 12 +++++------- .../conanmanifest.txt | 14 +++++++------- .../conanmanifest.txt | 14 +++++++------- .../conanmanifest.txt | 12 +++++------- 7 files changed, 40 insertions(+), 48 deletions(-) (limited to 'coin') diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/export/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/export/conanmanifest.txt index fca5f192..f01b0b20 100644 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/export/conanmanifest.txt +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/export/conanmanifest.txt @@ -1,3 +1,3 @@ -1563314340 +1564572636 LICENSE.md: 5aa9930034582b90e2008d2c609d1317 -conanfile.py: 85aee547c18dc9922ef9b56faf3e7a07 +conanfile.py: cd5a1ced5c2ea7eebac675979e021936 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt index 33da41c9..9bf86a8e 100644 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/19663639a14063d996b277c7fac0e00264689c20/conanmanifest.txt @@ -1,8 +1,8 @@ -1563314516 -bin/libexslt.dll: 1027ae276703fdb975b78af97f50a3fd -bin/libxslt.dll: 5fbe99fe4c940217a9a18593b3580701 -bin/xsltproc.exe: 7b2a42162459c1b506d563c6fb449afd -conaninfo.txt: 131c2efa982318cd7b48007ceedd90c2 +1564656371 +bin/libexslt.dll: 89db784739897fce0f3eb2d1e9eb999e +bin/libxslt.dll: 540a0335b4abe7684a79df6f1e3af541 +bin/xsltproc.exe: 35f757a2ae4c7ec075ea77726ceaf9e8 +conaninfo.txt: e7802d9fecb7b400478ba69c2bf3b6fb include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 include/libexslt/exsltconfig.h: b59169f8160a77fbe1f2a5857b0d3575 include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 @@ -32,8 +32,6 @@ include/libxslt/xsltconfig.h: b650a6d45e6a25c2b6a855e881c57f2c include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 -lib/libexslt.lib: 2de6293c1989c7ff270db23f2a51027f -lib/libexslt_a.lib: c5887a724f9ca61adfcff43ea3510432 -lib/libxslt.lib: ae3fb6fd41bcc83e99eb833d7f11312c -lib/libxslt_a.lib: 5b6184ab67226653a619992d2e66d30a +lib/libexslt.lib: 574b83bbe26eca748519e1e2ef2ad50a +lib/libxslt.lib: 2a550274770dc3a3ae6611acc2466cf9 licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt index 655972a0..a9c74e01 100644 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/466fc39fa8b7a19ee2095aa945fff98630acdd12/conanmanifest.txt @@ -1,8 +1,8 @@ -1563314384 -bin/libexslt.dll: e0f8b366523f930466733da6b10c8477 -bin/libxslt.dll: f00b9c502cc7a684a7f479a8f7500ee8 -bin/xsltproc.exe: a4517cf3425c2240a9a1656cac8b0d61 -conaninfo.txt: 4ec410e069cb83d8a1364e503ef5e869 +1564656268 +bin/libexslt.dll: 0cd198fb320233108fddee3ec09bc377 +bin/libxslt.dll: 54cb08fddcb054636a8075e00e0bc883 +bin/xsltproc.exe: e874bb0ee567a308e9a9fde668a0702e +conaninfo.txt: bcb10215b78158b38fd56dadc574ca72 include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 include/libexslt/exsltconfig.h: b59169f8160a77fbe1f2a5857b0d3575 include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 @@ -32,8 +32,6 @@ include/libxslt/xsltconfig.h: b650a6d45e6a25c2b6a855e881c57f2c include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 -lib/libexslt.lib: 62a9bb46b41162952efeaa60ef7bab1c -lib/libexslt_a.lib: c92bb2cea4ca81635b84f156c05ec86d -lib/libxslt.lib: a8b2e5f594f4b9c0b685dd742778fcc7 -lib/libxslt_a.lib: 8448d05a7195909bbabbe069855fc9b9 +lib/libexslt.lib: f0201dd318f087f040abe3361adc6041 +lib/libxslt.lib: 3ca1e0c7dc446c2b547593d2243052c2 licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt index c36a1022..a5f648f7 100644 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/8c83c725f7fefe466a2c6c18ff17d3b0b91202c6/conanmanifest.txt @@ -1,8 +1,8 @@ -1563314840 -bin/libexslt.dll: 4141dfa25d865a0cee1b59fe424acc3d -bin/libxslt.dll: 43556087a0f9ef6644fedb03b7a0b290 -bin/xsltproc.exe: 777526f819fe1316100b90b29d442bae -conaninfo.txt: 9215fe709c0363a6446192bdbf7be8b0 +1564656635 +bin/libexslt.dll: 5c4d6d1be796247772c3b2e64847e21a +bin/libxslt.dll: 3153114bfd1f64870f6523d2643b58db +bin/xsltproc.exe: 31f2b7049e0a5e168358a03d2cfb2e3a +conaninfo.txt: 2970ef8cccdfe7e239697f31c737af3c include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 include/libexslt/exsltconfig.h: b59169f8160a77fbe1f2a5857b0d3575 include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 @@ -33,7 +33,5 @@ include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 lib/libexslt.lib: a6856e7a6c5bf5a3219d20f6a4196af7 -lib/libexslt_a.lib: a8c039f9ec02c10bbe0b4e7d7b64c7c2 lib/libxslt.lib: c92f8017146bd83d247fa2923fefad40 -lib/libxslt_a.lib: 35d4de952df68733c2e4d483cc60ab9a licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/ae932df57acef9c094443d5579df1a9b72790e1a/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/ae932df57acef9c094443d5579df1a9b72790e1a/conanmanifest.txt index a931af23..9df383f3 100644 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/ae932df57acef9c094443d5579df1a9b72790e1a/conanmanifest.txt +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/ae932df57acef9c094443d5579df1a9b72790e1a/conanmanifest.txt @@ -1,9 +1,9 @@ -1563315535 -bin/libexslt-0.dll: cab6eb3a57d592d0c6556772e75bc091 -bin/libxslt-1.dll: 1b237a7dca37e8be1a2b7644b4e32f2a +1564657192 +bin/libexslt-0.dll: 5b1aa1e3f0b7420e460bd2ba7c0905b7 +bin/libxslt-1.dll: 304fe2300204c90d4f9ff63489d69037 bin/xslt-config: 40811a2730bb0b6542758cff609476a4 -bin/xsltproc.exe: 7f47496605bb3c31198b2028295e41cb -conaninfo.txt: 98809b81082a2638531dca7c3c6b8196 +bin/xsltproc.exe: 4816b9ff0fe4dcc89c57c2e3fab9ea1f +conaninfo.txt: 0e255efc593a041926b319133858565c include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 include/libexslt/exsltconfig.h: 0ecd038f6193e48046754b4c19c5100a include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 @@ -28,9 +28,9 @@ include/libxslt/xsltconfig.h: 05fef7eabdf530bd4187f2ab36f75ab2 include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 -lib/libexslt.dll.a: 83bc04597cc3a197ad757f5a76cd3cf8 +lib/libexslt.dll.a: 9bd0029908c64166fc25a8f9768a9899 lib/libexslt.la: 0cb3b2219e4d584e600e7c8c2793c17f -lib/libxslt.dll.a: 7e6d45f7f66e7095e0706a8cb487b2ad +lib/libxslt.dll.a: 19e51032012443406f5baa4cbc9f2fc0 lib/pkgconfig/libexslt.pc: bf17f17059d9835bd023402072aae276 lib/pkgconfig/libxslt.pc: d44ef86e4b636bfdb470a0abac21ea2c lib/xsltConf.sh: 6592ea47fbdda09eda481af47695c07e diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/b06e2211adc32e230f2d9e729d1dcad2648782e8/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/b06e2211adc32e230f2d9e729d1dcad2648782e8/conanmanifest.txt index 16a5f30e..e68abb87 100644 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/b06e2211adc32e230f2d9e729d1dcad2648782e8/conanmanifest.txt +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/b06e2211adc32e230f2d9e729d1dcad2648782e8/conanmanifest.txt @@ -1,9 +1,9 @@ -1563315757 -bin/libexslt-0.dll: 8246da72c1d928df83645852d0aad04d -bin/libxslt-1.dll: 4313a0eef07d9f23605018a709f094ef +1564657427 +bin/libexslt-0.dll: 833bc209ca4345e34a91747b902561a8 +bin/libxslt-1.dll: 664ee7f047e6f16dcbcf81b7244f0574 bin/xslt-config: 8da5db250243d255558b3e78442b2509 -bin/xsltproc.exe: a71a65dbab3e694b8aea4a6a7f115c29 -conaninfo.txt: ae8f13739b7fa8ffd7f6802c7de8d097 +bin/xsltproc.exe: 748e52a2a7ac0424a8be0aca0e1a3721 +conaninfo.txt: bb58ef48f7e3996938a57377e073c849 include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 include/libexslt/exsltconfig.h: 0ecd038f6193e48046754b4c19c5100a include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 @@ -28,9 +28,9 @@ include/libxslt/xsltconfig.h: 57168ad99e4e28bcfeea713ead5cea37 include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 -lib/libexslt.dll.a: 4115a89bfabd8b730ff512618fb73cd9 +lib/libexslt.dll.a: c6b6ba9f72c57f2737cb58744db48cce lib/libexslt.la: 64bd984341b00db0bef87e5452b8a52c -lib/libxslt.dll.a: 235305b53da66753ff5f80e481084d49 +lib/libxslt.dll.a: 9c6d3367a2c9d81da888aec728595158 lib/pkgconfig/libexslt.pc: 96de8f80e8e66cc6fa593aaaae8f0d79 lib/pkgconfig/libxslt.pc: ca661115f87755258b6c925774d0bc04 lib/xsltConf.sh: 9fcd150c391ae3fba108aa9ec272601b diff --git a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt index 72fc7217..c4697d0a 100644 --- a/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt +++ b/coin/provisioning/common/windows/conan_manifests/libxslt/1.1.33/qtproject/stable/package/f8cbe39e2f6584ea05b56c1f3dd9b0a99f522727/conanmanifest.txt @@ -1,8 +1,8 @@ -1563314699 -bin/libexslt.dll: 2f6c1b0675b471626eb6b059c62dc47d -bin/libxslt.dll: ce6e74e9f547eb8075a38217fce288bc -bin/xsltproc.exe: 6b622ec4f565be591db0a1512e62afd0 -conaninfo.txt: c5e083fe93cb280366b4719ebc623f14 +1564656516 +bin/libexslt.dll: 3a90a85d74d278313c61201a5c93c400 +bin/libxslt.dll: 15647e2321ca68c2967b669a63e1b107 +bin/xsltproc.exe: ac0db93df3f4d40b628285c69f20a56b +conaninfo.txt: 8871cf3a8be8aaedae333c30219d4169 include/libexslt/exslt.h: f01af3bf058520059ba6d50f42133717 include/libexslt/exsltconfig.h: b59169f8160a77fbe1f2a5857b0d3575 include/libexslt/exsltexports.h: 03a75a174bc5b056f014e592cfd4db36 @@ -33,7 +33,5 @@ include/libxslt/xsltexports.h: 751f95448e71222d8e10d31ebf8822df include/libxslt/xsltlocale.h: d7b200e408cefe5082b15d3a5e1bf600 include/libxslt/xsltutils.h: c190bd536ce0cffe1ccba74c68f7b0c9 lib/libexslt.lib: b42f86d1df0d2ea5acdab2358ce0e342 -lib/libexslt_a.lib: ede1e3dd3681e09f5aebb24c1f27f34a lib/libxslt.lib: e27ebe0519adda4e86bdb7c66084dd5f -lib/libxslt_a.lib: cee614fe2761af1dc0ad4a5ab3da444f licenses/COPYING: 0cd9a07afbeb24026c9b03aecfeba458 -- cgit v1.2.3