summaryrefslogtreecommitdiff
path: root/rtemsspec/packagebuildfactory.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsspec/packagebuildfactory.py')
-rw-r--r--rtemsspec/packagebuildfactory.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/rtemsspec/packagebuildfactory.py b/rtemsspec/packagebuildfactory.py
index 600c58de..22ba8ded 100644
--- a/rtemsspec/packagebuildfactory.py
+++ b/rtemsspec/packagebuildfactory.py
@@ -27,6 +27,7 @@
from rtemsspec.archiver import Archiver
from rtemsspec.directorystate import DirectoryState
from rtemsspec.packagebuild import BuildItemFactory, PackageVariant
+from rtemsspec.reposubset import RepositorySubset
from rtemsspec.runactions import RunActions
@@ -34,6 +35,8 @@ def create_build_item_factory() -> BuildItemFactory:
""" Creates the default build item factory. """
factory = BuildItemFactory()
factory.add_constructor("qdp/build-step/archive", Archiver)
+ factory.add_constructor("qdp/build-step/repository-subset",
+ RepositorySubset)
factory.add_constructor("qdp/build-step/run-actions", RunActions)
factory.add_constructor("qdp/directory-state/generic", DirectoryState)
factory.add_constructor("qdp/directory-state/repository", DirectoryState)