summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-06 13:47:53 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-07 09:54:53 +0200
commitc1ecaf7470684c1e1298106a3d151f68727e2bf8 (patch)
treea5cc452c21bd60a2606a2f66716ec3764e45fe00
parentb60a2bd4d2e849275a4c16c8f4b795d736ecea04 (diff)
Remove conanfile.py
The conan experiment has ended, and the file is only bitrotting nowadays. Pick-to: 6.5 6.6 Change-Id: Ie8ec2f8fa852e8afbf090d9885b264df894fdb8f Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
-rw-r--r--conanfile.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/conanfile.py b/conanfile.py
deleted file mode 100644
index c608368..0000000
--- a/conanfile.py
+++ /dev/null
@@ -1,34 +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 QtLottie(ConanFile):
- name = "qtlottie"
- 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/qtlottie.git"
- description = (
- "Lottie is a family of player software for a certain json-based "
- "file format for describing 2d vector graphics animations."
- )
- topics = "qt", "qt6", "2d", "vector", "player"
- 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"