| Server IP : 85.214.143.32 / Your IP : 216.73.217.10 Web Server : nginx/1.24.0 System : Linux datensicherung.webdress.site 6.8.0-139-generic #139-Ubuntu SMP PREEMPT_DYNAMIC Sat Aug 1 03:52:05 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /bin/ |
Upload File : |
#!/usr/bin/python3
# Copyright 2023 Collabora Ltd.
# Copyright 2024 Simon McVittie
# SPDX-License-Identifier: MIT
import os
import shutil
import subprocess
import sys
import sysconfig
from typing import NoReturn
CAN_RUN = '/usr/lib/x86_64-linux-gnu/glib-2.0/deb-can-run'
DEB_HOST_ARCH = 'amd64'
DEB_HOST_GNU_TYPE = 'x86_64-linux-gnu'
DEB_HOST_MULTIARCH = 'x86_64-linux-gnu'
TOOL = 'gi-compile-repository'
TOOL_PATH = '/usr/lib/x86_64-linux-gnu/glib-2.0/gi-compile-repository'
ME = f'{DEB_HOST_GNU_TYPE}-{TOOL}'
class CrossGirTool:
def __init__(
self,
argv: list[str],
) -> None:
self.argv = argv
def can_run(self) -> bool:
python_arch = sysconfig.get_config_var('MULTIARCH')
if python_arch == DEB_HOST_MULTIARCH:
# Common case: if python3 is already an executable of the desired
# architecture, then trivially we can run it
return True
try:
completed = subprocess.run(
[CAN_RUN],
check=False,
stdout=subprocess.PIPE,
stderr=subprocess.DEVNULL,
)
except OSError:
return False
else:
return completed.stdout == b'ok\n' and completed.returncode == 0
def find_qemu(self) -> str:
qemu = shutil.which(f'qemu-{DEB_HOST_ARCH}')
if qemu is not None:
return qemu
qemu = shutil.which(f'qemu-{DEB_HOST_ARCH}-static')
if qemu is not None:
return qemu
raise SystemExit(f'{ME}: Cannot find qemu-{DEB_HOST_ARCH}(-static)')
def exec(self) -> NoReturn:
exe_wrapper = []
if not self.can_run():
print(
(f'{ME}: Cannot run {DEB_HOST_ARCH} executables '
+ 'directly, using qemu'),
file=sys.stderr,
)
exe_wrapper = [self.find_qemu()]
argv = exe_wrapper + [TOOL_PATH] + sys.argv[1:]
try:
os.execvp(argv[0], argv)
except OSError:
print(f'{ME}: Unable to run: {argv}')
raise
if __name__ == '__main__':
CrossGirTool(sys.argv).exec()