blob: 23333a9d82ac1f1bec81f7719ce713fb3043da1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from buildstream import Source
class FooSource(Source):
# We have a little while until we have to manually modify this
BST_REQUIRED_VERSION_MAJOR = 5000
def setup():
return FooSource
|