File: bdist_rpm.pyi

package info (click to toggle)
typeshed 0.0~git20241223.ea91db2-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 28,756 kB
  • sloc: python: 7,741; makefile: 20; sh: 18
file content (53 lines) | stat: -rw-r--r-- 1,457 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from _typeshed import Incomplete
from typing import ClassVar

from ..cmd import Command

class bdist_rpm(Command):
    description: str
    user_options: ClassVar[list[tuple[str, str | None, str]]]
    boolean_options: ClassVar[list[str]]
    negative_opt: ClassVar[dict[str, str]]
    bdist_base: Incomplete
    rpm_base: Incomplete
    dist_dir: Incomplete
    python: Incomplete
    fix_python: Incomplete
    spec_only: Incomplete
    binary_only: Incomplete
    source_only: Incomplete
    use_bzip2: Incomplete
    distribution_name: Incomplete
    group: Incomplete
    release: Incomplete
    serial: Incomplete
    vendor: Incomplete
    packager: Incomplete
    doc_files: Incomplete
    changelog: Incomplete
    icon: Incomplete
    prep_script: Incomplete
    build_script: Incomplete
    install_script: Incomplete
    clean_script: Incomplete
    verify_script: Incomplete
    pre_install: Incomplete
    post_install: Incomplete
    pre_uninstall: Incomplete
    post_uninstall: Incomplete
    prep: Incomplete
    provides: Incomplete
    requires: Incomplete
    conflicts: Incomplete
    build_requires: Incomplete
    obsoletes: Incomplete
    keep_temp: int
    use_rpm_opt_flags: int
    rpm3_mode: int
    no_autoreq: int
    force_arch: Incomplete
    quiet: int
    def initialize_options(self) -> None: ...
    def finalize_options(self) -> None: ...
    def finalize_package_data(self) -> None: ...
    def run(self) -> None: ...