summaryrefslogtreecommitdiff
path: root/tests/plugins/deprecationwarnings/project/plugins/elements/deprecated_plugin.py
blob: a8e39562a140b667e4207ded0c89b90869de052f (plain)
1
2
3
4
5
6
7
8
9
10
11
from buildstream import BuildElement, SandboxFlags


class DeprecatedPlugin(BuildElement):
    BST_PLUGIN_DEPRECATED = True
    BST_PLUGIN_DEPRECATION_MESSAGE = "Here is some detail."


# Plugin entry point
def setup():
    return DeprecatedPlugin