GRAYBYTE WORDPRESS FILE MANAGER5972

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /opt/alt/python313/lib/python3.13/site-packages/pkg_resources/_vendor/packaging/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/alt/python313/lib/python3.13/site-packages/pkg_resources/_vendor/packaging//_musllinux.py
"""PEP 656 support.

This module implements logic to detect if the currently running Python is
linked against musl, and what musl version is used.
"""

import functools
import re
import subprocess
import sys
from typing import Iterator, NamedTuple, Optional

from ._elffile import ELFFile


class _MuslVersion(NamedTuple):
    major: int
    minor: int


def _parse_musl_version(output: str) -> Optional[_MuslVersion]:
    lines = [n for n in (n.strip() for n in output.splitlines()) if n]
    if len(lines) < 2 or lines[0][:4] != "musl":
        return None
    m = re.match(r"Version (\d+)\.(\d+)", lines[1])
    if not m:
        return None
    return _MuslVersion(major=int(m.group(1)), minor=int(m.group(2)))


@functools.lru_cache()
def _get_musl_version(executable: str) -> Optional[_MuslVersion]:
    """Detect currently-running musl runtime version.

    This is done by checking the specified executable's dynamic linking
    information, and invoking the loader to parse its output for a version
    string. If the loader is musl, the output would be something like::

        musl libc (x86_64)
        Version 1.2.2
        Dynamic Program Loader
    """
    try:
        with open(executable, "rb") as f:
            ld = ELFFile(f).interpreter
    except (OSError, TypeError, ValueError):
        return None
    if ld is None or "musl" not in ld:
        return None
    proc = subprocess.run([ld], stderr=subprocess.PIPE, universal_newlines=True)
    return _parse_musl_version(proc.stderr)


def platform_tags(arch: str) -> Iterator[str]:
    """Generate musllinux tags compatible to the current platform.

    :param arch: Should be the part of platform tag after the ``linux_``
        prefix, e.g. ``x86_64``. The ``linux_`` prefix is assumed as a
        prerequisite for the current platform to be musllinux-compatible.

    :returns: An iterator of compatible musllinux tags.
    """
    sys_musl = _get_musl_version(sys.executable)
    if sys_musl is None:  # Python not dynamically linked against musl.
        return
    for minor in range(sys_musl.minor, -1, -1):
        yield f"musllinux_{sys_musl.major}_{minor}_{arch}"


if __name__ == "__main__":  # pragma: no cover
    import sysconfig

    plat = sysconfig.get_platform()
    assert plat.startswith("linux-"), "not linux"

    print("plat:", plat)
    print("musl:", _get_musl_version(sys.executable))
    print("tags:", end=" ")
    for t in platform_tags(re.sub(r"[.-]", "_", plat.split("-", 1)[-1])):
        print(t, end="\n      ")

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
January 15 2025 09:39:54
root / linksafe
0755
__pycache__
--
January 15 2025 09:39:54
root / linksafe
0755
__init__.py
0.489 KB
December 01 2024 12:53:24
root / linksafe
0644
_elffile.py
3.189 KB
December 01 2024 12:53:24
root / linksafe
0644
_manylinux.py
8.717 KB
December 01 2024 12:53:24
root / linksafe
0644
_musllinux.py
2.465 KB
December 01 2024 12:53:24
root / linksafe
0644
_parser.py
9.955 KB
December 01 2024 12:53:24
root / linksafe
0644
_structures.py
1.397 KB
December 01 2024 12:53:24
root / linksafe
0644
_tokenizer.py
5.168 KB
December 01 2024 12:53:24
root / linksafe
0644
markers.py
8.016 KB
December 01 2024 12:53:24
root / linksafe
0644
metadata.py
16.013 KB
December 01 2024 12:53:24
root / linksafe
0644
py.typed
0 KB
December 01 2024 12:53:24
root / linksafe
0644
requirements.py
3.21 KB
December 01 2024 12:53:24
root / linksafe
0644
specifiers.py
38.287 KB
December 01 2024 12:53:24
root / linksafe
0644
tags.py
17.682 KB
December 01 2024 12:53:24
root / linksafe
0644
utils.py
4.253 KB
December 01 2024 12:53:24
root / linksafe
0644
version.py
15.943 KB
December 01 2024 12:53:24
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF