summaryrefslogtreecommitdiff
path: root/conanfile.py
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2021-10-26 13:55:08 +0200
committerDominik Holland <dominik.holland@qt.io>2021-10-28 11:12:10 +0200
commit67cb6dd723bdf6cfadb7eabeee97b67035c3a706 (patch)
tree182d3dfd7268a607b3e2412e378f7aed44b42249 /conanfile.py
parentafe24a0d5f17fc267ff81fbd729351b6209c74c0 (diff)
downloadqtapplicationmanager-67cb6dd723bdf6cfadb7eabeee97b67035c3a706.tar.gz
Support builds with Conan
Provide conanfile.py recipe to support building this module with Conan. The conanfile.py recipe inherits the main functionality from base class located in qt-conan-common.git. 'qt-configure-module(.bat)' and cmake is used for the builds. Dependencies (Conan requirements) are defined by the base class implementation which reads those from the 'dependencies.yaml' which is also used by the Coin/CI. Change-Id: I7d3202e75cc3c2168b4b15897a3d9794c209f9bf Pick-to: 6.2 Reviewed-by: Robert Griebl <robert.griebl@qt.io>
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py60
1 files changed, 60 insertions, 0 deletions
diff --git a/conanfile.py b/conanfile.py
new file mode 100644
index 00000000..1fa7df5d
--- /dev/null
+++ b/conanfile.py
@@ -0,0 +1,60 @@
+#############################################################################
+##
+## Copyright (C) 2021 The Qt Company Ltd.
+## Contact: https://www.qt.io/licensing/
+##
+## This file is part of the release tools of the Qt Toolkit.
+##
+## $QT_BEGIN_LICENSE:GPL-EXCEPT$
+## 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 https://www.qt.io/terms-conditions. For further
+## information use the contact form at https://www.qt.io/contact-us.
+##
+## GNU General Public License Usage
+## Alternatively, this file may be used under the terms of the GNU
+## General Public License version 3 as published by the Free Software
+## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+## included in the packaging of this file. Please review the following
+## information to ensure the GNU General Public License requirements will
+## be met: https://www.gnu.org/licenses/gpl-3.0.html.
+##
+## $QT_END_LICENSE$
+##
+#############################################################################
+
+from conans import ConanFile
+import re
+from pathlib import Path
+
+
+def _parse_qt_version_by_key(key: str) -> str:
+ with open(Path(__file__).parent.resolve() / ".cmake.conf") as f:
+ m = re.search(fr'{key} .*"(.*)"', f.read())
+ return m.group(1) if m else ""
+
+
+def _get_qt_minor_version() -> str:
+ return ".".join(_parse_qt_version_by_key("QT_REPO_MODULE_VERSION").split(".")[:2])
+
+
+class QtApplicationManager(ConanFile):
+ name = "qtapplicationmanager"
+ license = "GPL-3.0, Commercial Qt License Agreement"
+ author = "The Qt Company <https://www.qt.io/contact-us>"
+ url = "https://code.qt.io/cgit/qt/qtapplicationmanager.git"
+ description = (
+ """The Qt Application Manager is a daemon that helps you to create embedded Linux systems
+ that have a highly complex UI setup, which you can optionally split into a
+ multi-process setup to increase flexibility and stability."""
+ )
+ topics = "qt", "qt6", "wayland", "applicationmanager"
+ settings = "os", "compiler", "arch", "build_type"
+ # for referencing the version number and prerelease tag and dependencies info
+ exports = ".cmake.conf", "dependencies.yaml"
+ exports_sources = "*", "!conan*.*"
+ python_requires = f"qt-conan-common/{_get_qt_minor_version()}@qt/everywhere"
+ python_requires_extend = "qt-conan-common.QtLeafModule"