From c8fd9abf628ea8f35c465e183ebe250d4411381f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Tue, 6 Jun 2023 13:48:01 +0200 Subject: Remove conanfile.py The conan experiment has ended, and the file is only bitrotting nowadays. Pick-to: 6.5 6.6 Change-Id: I683b325910e65e7895740b6bacff7f8c8e3624ed Reviewed-by: Fabian Kosmale --- conanfile.py | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 conanfile.py (limited to 'conanfile.py') 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 " - 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) -- cgit v1.2.3