File size: 11,139 Bytes
859a779 |
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 |
from typing import *
from apt.progress.base import (
AcquireProgress,
CdromProgress,
InstallProgress,
OpProgress,
)
class FileLike(Protocol):
def fileno(self) -> int: ...
class Cdrom:
def add(self, progress: CdromProgress) -> bool: ...
def ident(self, progress: CdromProgress) -> str: ...
@overload
def gettext(msg: str, domain: str) -> str: ...
@overload
def gettext(msg: str) -> str: ...
class Configuration(Mapping[str, str]):
def find_file(self, key: str, default: str="") -> str: ...
def find_dir(self, key: str, default: str="") -> str: ...
def dump(self) -> str: ...
def find(self, key: str, default: object=None) -> str: ...
def find_b(self, key: str, default: bool=False) -> bool: ...
def set(self, key: str, value: str) -> None: ...
def value_list(self, key: str) -> List[str]: ...
def clear(self, root: object=None) -> None: ...
def __getitem__(self, key: str) -> str: ...
def __iter__(self) -> Iterator[str]: ...
def __len__(self) -> int: ...
config = Configuration()
def init() -> None: ...
def init_config() -> None: ...
def init_system() -> None: ...
# FIXME: this is really a file-like object
def md5sum(o: Any) -> str: ...
class Dependency():
comp_type: str
comp_type_deb: str
target_pkg: Package
target_ver: str
dep_type_untranslated: str
def all_targets(self) -> List[Version]: ...
# This is really a SystemError, but we don't want to expose that
class Error(Exception):
pass
class Package():
name: str
version_list: List[Version]
architecture: str
id: int
current_ver: Version
essential: bool
current_state: int
inst_state: int
selected_state: int
has_versions: bool
has_provides: bool
provides_list: List[Tuple[str, str, Version]]
def get_fullname(self, pretty: bool=False) -> str: ...
class ProblemResolver:
def __init__(self, cache: DepCache) -> None: ...
def clear(self, pkg: Package) -> None: ...
def protect(self, pkg: Package) -> None: ...
def remove(self, pkg: Package) -> None: ...
def resolve(self, fix_broken: bool=True) -> bool: ...
def resolve_by_keep(self) -> bool: ...
CURSTATE_CONFIG_FILES: int
INSTSTATE_REINSTREQ: int
INSTSTATE_HOLD_REINSTREQ: int
class Version():
ver_str: str
hash: int
file_list: List[Tuple[PackageFile, int]]
translated_description: Description
installed_size: int
size: int
arch: str
downloadable: bool
id: int
section: str
priority: int
priority_str: str
provides_list: List[Tuple[str,str,str]]
depends_list: Dict[str, List[List[Dependency]]]
parent_pkg: Package
multi_arch: int
MULTI_ARCH_ALL: int
MULTI_ARCH_ALLOWED: int
MULTI_ARCH_ALL_ALLOWED: int
MULTI_ARCH_ALL_FOREIGN: int
MULTI_ARCH_FOREIGN: int
MULTI_ARCH_NO: int
MULTI_ARCH_NONE: int
MULTI_ARCH_SAME: int
class Description():
file_list: List[Tuple[PackageFile, int]]
class PackageRecords():
homepage: str
short_desc: str
long_desc: str
source_pkg: str
source_ver: str
record: str
filename: str
md5_hash: str
sha1_hash: str
sha256_hash: str
hashes: HashStringList
def __init__(self, cache: Cache) -> None: ...
def lookup(self, packagefile: Tuple[PackageFile, int], index: int=0) -> bool: ...
class PackageFile:
architecture: str
archive: str
codename: str
component: str
filename: str
id: int
index_type: str
label: str
not_automatic: bool
not_source: bool
origin: str
site: str
size: int
version: str
class TagFile(Iterator[TagSection[AnyStr]]):
@overload
def __new__(cls, file: object) -> TagFile[str]: ...
@overload
def __new__(cls, file: object, bytes: Literal[True]) -> TagFile[bytes]: ...
@overload
def __new__(cls, file: object, bytes: Literal[False]) -> TagFile[str]: ...
def __iter__(self) -> Iterator[TagSection[AnyStr]]: ...
def __next__(self) -> TagSection[AnyStr]: ...
class TagSection(Mapping[str, AnyStr]):
@overload
def __new__(cls, str: Union[str, bytes]) -> TagSection[str]: ...
@overload
def __new__(cls, str: Union[str, bytes], bytes: Literal[True]) -> TagSection[bytes]: ...
@overload
def __new__(cls, str: Union[str, bytes], bytes: Literal[False]) -> TagSection[str]: ...
def __getitem__(self, key: str) -> AnyStr: ...
def get(self, key: str, default: Optional[object] = None) -> AnyStr: ...
def find(self, key: str, default: Optional[object] = None) -> AnyStr: ...
def find_raw(self, key: str, default: Optional[object] = None) -> AnyStr: ...
def __contains__(self, key: object) -> bool: ...
def __len__(self) -> int: ...
def __iter__(self) -> Iterator[str]: ...
def version_compare(a: str, b: str) -> int: ...
def get_lock(file: str, errors: bool=False) -> int: ...
def pkgsystem_lock() -> None: ...
def pkgsystem_unlock() -> None: ...
def read_config_file(configuration: Configuration, path: str) -> None: ...
def read_config_dir(configuration: Configuration, path: str) -> None: ...
def pkgsystem_lock_inner() -> None: ...
def pkgsystem_unlock_inner() -> None: ...
def pkgsystem_is_locked() -> bool: ...
SELSTATE_HOLD: int
class Acquire:
fetch_needed: int
items: List[AcquireItem]
partial_present: int
total_needed: int
workers: List[AcquireWorker]
RESULT_CANCELLED: int
RESULT_FAILED: int
RESULT_CONTINUE: int
def __init__(self, progress: Optional[AcquireProgress]=None) -> None: ...
def run(self) -> int: ...
def shutdown(self) -> None: ...
def get_lock(self, path: str) -> None: ...
class AcquireWorker:
current_item: AcquireItemDesc
current_size: int
total_size: int
status: str
class AcquireItem:
active_subprocess: str
complete: bool
desc_uri: str
destfile: str
error_text: str
filesize: int
id: int
is_trusted: bool
local: bool
mode: str
partialsize: int
status: int
STAT_IDLE: int
STAT_FETCHING: int
STAT_DONE: int
STAT_ERROR: int
STAT_AUTH_ERROR: int
STAT_TRANSIENT_NETWORK_ERROR: int
class AcquireItemDesc:
description: str
owner: AcquireItem
shortdesc: str
uri: str
class Hashes:
def __init__(self, object: Union[bytes, FileLike, int]) -> None: ...
hashes: HashStringList
class HashString:
def __init__(self, type: str, hash: Optional[str] = None) -> None: ...
def verify_file(self, filename: str) -> bool: ...
hashtype: str
hashvalue: str
usable: bool
class HashStringList:
def append(self, object: HashString) -> None: ...
def find(self, type: str = "") -> HashString: ...
def verify_file(self, filename: str) -> bool: ...
file_size: int
usable: bool
class AcquireFile(AcquireItem):
def __init__(self, owner: Acquire, uri: str, hash: Optional[Union[HashStringList, str]], size: int=0, descr: str="", short_descr: str="", destdir: str="", destfile: str="") -> None: ...
class IndexFile:
def archive_uri(self, path: str) -> str: ...
describe: str
exists: bool
has_packages: bool
is_trusted: bool
label: str
size: int
class SourceRecordFiles:
hashes: HashStringList
path: str
size: int
type: str
class SourceRecords:
def lookup(self, name: str) -> bool: ...
def restart(self) -> None: ...
def step(self) -> bool: ...
binaries: List[str]
version: str
files: List[SourceRecordFiles]
index: IndexFile
package: str
section: str
class ActionGroup:
def __init__(self, depcache: DepCache) -> None: ...
class MetaIndex:
dist: str
index_files: List[IndexFile]
is_trusted: bool
uri: str
class SourceList():
list: List[MetaIndex]
def read_main_list(self) -> None: ...
def find_index(self, pf: PackageFile) -> IndexFile: ...
class PackageManager():
RESULT_FAILED: int
RESULT_COMPLETED: int
RESULT_INCOMPLETE: int
def __init__(self, depcache: DepCache) -> None: ...
def get_archives(self, fetcher: Acquire, list: SourceList, recs: PackageRecords) -> bool: ...
class Cache():
packages: List[Package]
def __init__(self, progress: Optional[OpProgress]=None) -> None: ...
def __contains__(self, name: Union[str, Tuple[str, str]]) -> Package: ...
def __getitem__(self, name: Union[str, Tuple[str, str]]) -> Package: ...
def __len__(self) -> int: ...
def update(self, progress: AcquireProgress, sources: SourceList, pulse_interval: int) -> int: ...
class DepCache():
broken_count: int
inst_count: int
del_count: int
keep_count: int
usr_size: int
policy: Policy
def __init__(self, cache: Cache) -> None: ...
def init(self, progress: Optional[OpProgress]=None) -> None: ...
def get_candidate_ver(self, pkg: Package) -> Optional[Version]: ...
def set_candidate_ver(self, pkg: Package, ver: Version) -> bool: ...
def marked_install(self, pkg: Package) -> bool: ...
def marked_upgrade(self, pkg: Package) -> bool: ...
def marked_keep(self, pkg: Package) -> bool: ...
def marked_downgrade(self, pkg: Package) -> bool: ...
def marked_delete(self, pkg: Package) -> bool: ...
def marked_reinstall(self, pkg: Package) -> bool: ...
def is_upgradable(self, pkg: Package) -> bool: ...
def is_garbage(self, pkg: Package) -> bool: ...
def is_auto_installed(self, pkg: Package) -> bool: ...
def is_inst_broken(self, pkg: Package) -> bool: ...
def is_now_broken(self, pkg: Package) -> bool: ...
def mark_keep(self, pkg: Package) -> None: ...
def mark_install(self, pkg: Package, auto_inst: bool=True, from_user: bool=True) -> None: ...
def mark_delete(self, pkg: Package, purge: bool=False) -> None: ...
def mark_auto(self, pkg: Package, auto: bool) -> None: ...
def commit(self, acquire_progress: AcquireProgress, install_progress: InstallProgress) -> None: ...
def upgrade(self, dist_upgrade: bool=True) -> bool: ...
def fix_broken(self) -> bool: ...
class Policy():
def get_priority(self, pkg: Union[PackageFile, Version]) -> int: ...
class SystemLock():
def __enter__(self) -> None: ...
def __exit__(self, typ: object, value: object, traceback: object) -> None: ...
class FileLock():
def __init__(self, path: str) -> None: ...
def __enter__(self) -> None: ...
def __exit__(self, typ: object, value: object, traceback: object) -> None: ...
def upstream_version(ver: str) -> str: ...
def get_architectures() -> List[str]: ...
def check_dep(pkg_ver: str, dep_op: str, dep_ver: str) -> bool: ...
def uri_to_filename(uri: str) -> str: ...
def str_to_time(rfc_time: str) -> int: ...
def time_to_str(time: int) -> str: ...
def size_to_str(size: Union[float, int]) -> str: ...
def open_maybe_clear_signed_file(file: str) -> int: ...
def parse_depends(s: str, strip_multi_arch: bool = True, architecture: str = '') -> List[List[Tuple[str, str, str]]]: ...
def parse_src_depends(s: str, strip_multi_arch: bool = True, architecture: str = '') -> List[List[Tuple[str, str, str]]]: ...
|