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


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


# Plugin entry point
def setup():
    return DeprecatedPlugin