Module debby.args

Classes

class Args (files: Sequence[Tuple[pathlib.Path, pathlib.Path]], template: Optional[pathlib.Path], out_dir: pathlib.Path, preinst: Optional[pathlib.Path], preinst_cmd: Sequence[str], postinst: Optional[pathlib.Path], postinst_cmd: Sequence[str], prerm: Optional[pathlib.Path], prerm_cmd: Sequence[str], postrm: Optional[pathlib.Path], postrm_cmd: Sequence[str], pyproject: Optional[pathlib.Path], poetry: Optional[pathlib.Path], name: Optional[str], source: Optional[str], version: Optional[str], section: Optional[str], priority: Optional[str], architecture: Optional[str], essential: Optional[Literal['yes', 'no']], maintainer: Optional[str], description: Optional[str], homepage: Optional[str], depends: Optional[str], pre_depends: Optional[str], recommends: Optional[str], suggests: Optional[str], enhances: Optional[str], breaks: Optional[str], conflicts: Optional[str], no_size: bool = False)

Args(files: Sequence[Tuple[pathlib.Path, pathlib.Path]], template: pathlib.Path | None, out_dir: pathlib.Path, preinst: pathlib.Path | None, preinst_cmd: Sequence[str], postinst: pathlib.Path | None, postinst_cmd: Sequence[str], prerm: pathlib.Path | None, prerm_cmd: Sequence[str], postrm: pathlib.Path | None, postrm_cmd: Sequence[str], pyproject: pathlib.Path | None, poetry: pathlib.Path | None, name: str | None, source: str | None, version: str | None, section: str | None, priority: str | None, architecture: str | None, essential: Literal['yes', 'no'] | None, maintainer: str | None, description: str | None, homepage: str | None, depends: str | None, pre_depends: str | None, recommends: str | None, suggests: str | None, enhances: str | None, breaks: str | None, conflicts: str | None, no_size: bool = False)

Class variables

var architecture : Optional[str]

The type of the None singleton.

var breaks : Optional[str]

The type of the None singleton.

var conflicts : Optional[str]

The type of the None singleton.

var depends : Optional[str]

The type of the None singleton.

var description : Optional[str]

The type of the None singleton.

var enhances : Optional[str]

The type of the None singleton.

var essential : Optional[Literal['yes', 'no']]

The type of the None singleton.

var files : Sequence[Tuple[pathlib.Path, pathlib.Path]]

The type of the None singleton.

var homepage : Optional[str]

The type of the None singleton.

var maintainer : Optional[str]

The type of the None singleton.

var name : Optional[str]

The type of the None singleton.

var no_size : bool

The type of the None singleton.

var out_dir : pathlib.Path

The type of the None singleton.

var poetry : Optional[pathlib.Path]

The type of the None singleton.

var postinst : Optional[pathlib.Path]

The type of the None singleton.

var postinst_cmd : Sequence[str]

The type of the None singleton.

var postrm : Optional[pathlib.Path]

The type of the None singleton.

var postrm_cmd : Sequence[str]

The type of the None singleton.

var pre_depends : Optional[str]

The type of the None singleton.

var preinst : Optional[pathlib.Path]

The type of the None singleton.

var preinst_cmd : Sequence[str]

The type of the None singleton.

var prerm : Optional[pathlib.Path]

The type of the None singleton.

var prerm_cmd : Sequence[str]

The type of the None singleton.

var priority : Optional[str]

The type of the None singleton.

var pyproject : Optional[pathlib.Path]

The type of the None singleton.

var recommends : Optional[str]

The type of the None singleton.

var section : Optional[str]

The type of the None singleton.

var source : Optional[str]

The type of the None singleton.

var suggests : Optional[str]

The type of the None singleton.

var template : Optional[pathlib.Path]

The type of the None singleton.

var version : Optional[str]

The type of the None singleton.

Static methods

def parse(argv: Optional[Sequence[str]] = None) ‑> Self