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


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


# Plugin entry point
def setup():
    return DeprecatedPlugin