pybuild.info module

Importing values from this module fills them with information about the pybuild file from which they were imported

Data:

CATEGORY

The package's category.

P

The package name and version.

PF

The package name with version and revision.

PN

The package name without version.

PR

The package's revision

PV

The package's version without revision

PVR

The package's version and revision

pybuild.info.CATEGORY: str = ''

The package’s category.

E.g. base

pybuild.info.P: str = ''

The package name and version.

E.g.: example-suite-1.0

pybuild.info.PF: str = ''

The package name with version and revision.

E.g.: example-suite-1.0-r1

pybuild.info.PN: str = ''

The package name without version.

E.g.: example-suite

pybuild.info.PR: str | None = None

The package’s revision

E.g. r1

pybuild.info.PV: str = ''

The package’s version without revision

E.g. 1.0

pybuild.info.PVR: str = ''

The package’s version and revision

E.g. 1.0-r1