summaryrefslogtreecommitdiffstats
path: root/src/debputy/plugin/debputy/private_api.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/debputy/plugin/debputy/private_api.py')
-rw-r--r--src/debputy/plugin/debputy/private_api.py38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/debputy/plugin/debputy/private_api.py b/src/debputy/plugin/debputy/private_api.py
index 2db2b56..b9aa043 100644
--- a/src/debputy/plugin/debputy/private_api.py
+++ b/src/debputy/plugin/debputy/private_api.py
@@ -781,7 +781,7 @@ def register_special_ppfs(api: DebputyPluginInitializerProvider) -> None:
def register_install_rules(api: DebputyPluginInitializerProvider) -> None:
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
InstallRule,
MK_INSTALLATIONS_INSTALL,
ParsedInstallRule,
@@ -868,7 +868,7 @@ def register_install_rules(api: DebputyPluginInitializerProvider) -> None:
reference_documentation_url=_manifest_format_doc("generic-install-install"),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
InstallRule,
[
MK_INSTALLATIONS_INSTALL_DOCS,
@@ -977,7 +977,7 @@ def register_install_rules(api: DebputyPluginInitializerProvider) -> None:
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
InstallRule,
[
MK_INSTALLATIONS_INSTALL_EXAMPLES,
@@ -1059,7 +1059,7 @@ def register_install_rules(api: DebputyPluginInitializerProvider) -> None:
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
InstallRule,
MK_INSTALLATIONS_INSTALL_MAN,
ParsedInstallManpageRule,
@@ -1166,7 +1166,7 @@ def register_install_rules(api: DebputyPluginInitializerProvider) -> None:
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
InstallRule,
MK_INSTALLATIONS_DISCARD,
ParsedInstallDiscardRule,
@@ -1242,7 +1242,7 @@ def register_install_rules(api: DebputyPluginInitializerProvider) -> None:
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
InstallRule,
MK_INSTALLATIONS_MULTI_DEST_INSTALL,
ParsedMultiDestInstallRule,
@@ -1329,7 +1329,7 @@ def register_install_rules(api: DebputyPluginInitializerProvider) -> None:
def register_transformation_rules(api: DebputyPluginInitializerProvider) -> None:
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
TransformationRule,
"move",
TransformationMoveRuleSpec,
@@ -1381,7 +1381,7 @@ def register_transformation_rules(api: DebputyPluginInitializerProvider) -> None
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
TransformationRule,
"remove",
TransformationRemoveRuleSpec,
@@ -1451,7 +1451,7 @@ def register_transformation_rules(api: DebputyPluginInitializerProvider) -> None
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
TransformationRule,
"create-symlink",
CreateSymlinkRule,
@@ -1537,7 +1537,7 @@ def register_transformation_rules(api: DebputyPluginInitializerProvider) -> None
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
TransformationRule,
"path-metadata",
PathManifestRule,
@@ -1653,7 +1653,7 @@ def register_transformation_rules(api: DebputyPluginInitializerProvider) -> None
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
TransformationRule,
"create-directories",
EnsureDirectoryRule,
@@ -1824,7 +1824,7 @@ def register_manifest_condition_rules(api: DebputyPluginInitializerProvider) ->
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
ManifestCondition,
"not",
MCNot,
@@ -1868,7 +1868,7 @@ def register_manifest_condition_rules(api: DebputyPluginInitializerProvider) ->
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
ManifestCondition,
["any-of", "all-of"],
MCAnyOfAllOf,
@@ -1887,7 +1887,7 @@ def register_manifest_condition_rules(api: DebputyPluginInitializerProvider) ->
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
ManifestCondition,
"arch-matches",
MCArchMatches,
@@ -1997,7 +1997,7 @@ def register_manifest_condition_rules(api: DebputyPluginInitializerProvider) ->
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
ManifestCondition,
"source-context-arch-matches",
MCArchMatches,
@@ -2005,7 +2005,7 @@ def register_manifest_condition_rules(api: DebputyPluginInitializerProvider) ->
source_format=str,
inline_reference_documentation=context_arch_doc,
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
ManifestCondition,
"package-context-arch-matches",
MCArchMatches,
@@ -2013,7 +2013,7 @@ def register_manifest_condition_rules(api: DebputyPluginInitializerProvider) ->
source_format=str,
inline_reference_documentation=context_arch_doc,
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
ManifestCondition,
"build-profiles-matches",
MCBuildProfileMatches,
@@ -2043,7 +2043,7 @@ def register_manifest_condition_rules(api: DebputyPluginInitializerProvider) ->
def register_dpkg_conffile_rules(api: DebputyPluginInitializerProvider) -> None:
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
DpkgMaintscriptHelperCommand,
"remove",
DpkgRemoveConffileRule,
@@ -2051,7 +2051,7 @@ def register_dpkg_conffile_rules(api: DebputyPluginInitializerProvider) -> None:
inline_reference_documentation=None, # TODO: write and add
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
DpkgMaintscriptHelperCommand,
"rename",
DpkgRenameConffileRule,