pmb.commands package

Submodules

pmb.commands.aportgen module

class pmb.commands.aportgen.Aportgen(package_list: list[str], fork_alpine: bool, fork_alpine_retain_branch: bool)

Bases: Command

run() None

Run the command.

pmb.commands.base module

class pmb.commands.base.Command

Bases: object

Base class for pmbootstrap commands.

run() None

Run the command.

pmb.commands.flasher module

class pmb.commands.flasher.Flasher(action_flasher: str, autoinstall: bool, cmdline: str | None, flash_method: str, no_reboot: bool | None, partition: str | None, resume: bool | None)

Bases: Command

run() None

Run the command.

pmb.commands.index module

class pmb.commands.index.Index

Bases: Command

run() None

Run the command.

pmb.commands.kconfig module

class pmb.commands.kconfig.KConfigCheck(details: bool, file: str, pkgname: str | list[str], keep_going: bool)

Bases: Command

run() None

Run the command.

class pmb.commands.kconfig.KConfigEdit(pkgname: str, arch: Arch | None, use_xconfig: bool, use_nconfig: bool)

Bases: Command

run() None

Run the command.

class pmb.commands.kconfig.KConfigMigrate(pkgname: str | list[str], arch: Arch | None)

Bases: Command

run() None

Run the command.

pmb.commands.log module

class pmb.commands.log.Log(clear_log: bool, lines: int)

Bases: Command

clear_log: bool
lines: int
run() None

Run the command.

pmb.commands.pkgrel_bump module

class pmb.commands.pkgrel_bump.PkgrelBump(packages: list[str], dry_run: bool, auto: bool)

Bases: Command

run() None

Run the command.

pmb.commands.pkgver_bump module

class pmb.commands.pkgver_bump.PkgverBump(packages: list[str])

Bases: Command

run() None

Run the command.

pmb.commands.pull module

class pmb.commands.pull.Pull

Bases: Command

run() None

Run the command.

pmb.commands.shutdown module

class pmb.commands.shutdown.Shutdown

Bases: Command

run() None

Run the command.

Module contents

pmb.commands.run_command(args: PmbArgs) None