From 5df15c1bf2728da929d2a111d2f8cfb122814a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Arne=20Vestb=C3=B8?= Date: Tue, 6 Jun 2023 13:47:55 +0200 Subject: Remove conanfile.py The conan experiment has ended, and the file is only bitrotting nowadays. Change-Id: I2d0d1f5145b4880e0f1eade36220142dd764bb12 Reviewed-by: Fabian Kosmale (cherry picked from commit 22980bc6e851b7ea20a1af41fa29741c670bf6b5) Reviewed-by: Qt Cherry-pick Bot --- conanfile.py | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 conanfile.py diff --git a/conanfile.py b/conanfile.py deleted file mode 100644 index 430d99ebe..000000000 --- a/conanfile.py +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright (C) 2021 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 - - -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 QtMultimedia(ConanFile): - name = "qtmultimedia" - license = "LGPL-3.0, GPL-2.0+, Commercial Qt License Agreement" - author = "The Qt Company " - url = "https://code.qt.io/cgit/qt/qtmultimedia.git" - description = ( - "Qt Multimedia is an essential module that provides a rich set of QML types and C++ " - "classes to handle multimedia content. It also provides necessary APIs to access " - "camera and radio functionality. The included Qt Audio Engine provides types for 3D " - "positional audio playback and content management." - ) - topics = "qt", "qt6", "qtmultimedia", "multimedia" - 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" -- cgit v1.2.3