aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-06 13:47:59 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-06-07 08:22:40 +0000
commit9e0ec97ad133427fc74ac94ce04b554815cc25e0 (patch)
tree126fe3e5e4f8fe773f4403461a49fa0ba0cc1970
parent01841f919ce3b25fed9658e9585d4c1ec95c28d3 (diff)
Remove conanfile.py
The conan experiment has ended, and the file is only bitrotting nowadays. Change-Id: I73829287a3835daffe6c01ff0c217a04f3f4ef56 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit 9b156da92600b0f70d3eeef884df7db52a95132a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--conanfile.py35
1 files changed, 0 insertions, 35 deletions
diff --git a/conanfile.py b/conanfile.py
deleted file mode 100644
index c385863..0000000
--- a/conanfile.py
+++ /dev/null
@@ -1,35 +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 QtQuickTimeline(ConanFile):
- name = "qtquicktimeline"
- 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/qtquicktimeline.git"
- description = (
- "The Qt Quick Timeline module enables keyframe-based animations and parameterization. "
- "This module is directly supported by Qt Design Studio and Qt Quick Designer, with a "
- "timeline editor to create keyframe-based animations."
- )
- topics = "qt", "qt6", "qtquicktimeline", "animation"
- 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"