summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-06 13:48:01 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-06-07 08:19:11 +0000
commitd8b275ccc5899b538ccdd11d1f215a0db84ebe91 (patch)
tree5901be95b1644e68e31583da7060d1e84369826d
parent6613b5b08609f7ca4ba37195f7410caf6e0f4373 (diff)
Remove conanfile.py
The conan experiment has ended, and the file is only bitrotting nowadays. Change-Id: I683b325910e65e7895740b6bacff7f8c8e3624ed Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit c8fd9abf628ea8f35c465e183ebe250d4411381f) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--conanfile.py45
1 files changed, 0 insertions, 45 deletions
diff --git a/conanfile.py b/conanfile.py
deleted file mode 100644
index 3fe7931..0000000
--- a/conanfile.py
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-
-from conans import ConanFile
-import re
-from pathlib import Path
-from typing import Dict, Any
-
-_qtserialbus_features = ["modbus-serialport"]
-
-
-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 QtSerialBus(ConanFile):
- name = "qtserialbus"
- license = "LGPL-3.0, GPL-2.0+, Commercial Qt License Agreement"
- author = "The Qt Company <https://www.qt.io/contact-us>"
- url = "https://code.qt.io/cgit/qt/qtserialbus.git"
- description = (
- "The Qt Serial Bus API provides classes and functions to access the various "
- "industrial serial buses and protocols, such as CAN, ModBus, and others. "
- )
- topics = "qt", "qt6", "qtserialbus", "serialbus", "CAN", "ModBus"
- 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"
-
- def get_qt_leaf_module_options(self) -> Dict[str, Any]:
- """Implements abstractmethod from qt-conan-common.QtLeafModule"""
- return self._shared.convert_qt_features_to_conan_options(_qtserialbus_features)
-
- def get_qt_leaf_module_default_options(self) -> Dict[str, Any]:
- """Implements abstractmethod from qt-conan-common.QtLeafModule"""
- return self._shared.convert_qt_features_to_default_conan_options(_qtserialbus_features)