ReXdZddlZddlZddlZddlZddlZddlZddlZddlZddl Z dZ ejd d Zejd d ZdZddiZddddddZ ddiZ!ej"dZ#ej"dZ$dddedddfZ%d7dZ&dZ'd8dZ(d9d Z)d8d!Z*d8d"Z+d8d#Z,d8d$Z-d%Z.d&Z/d9d'Z0d(Z1d)Z2d*Z3d+Z4d,Z5d-Z6d.Z7d/Z8 dd0l9m:Z:n#e;$rGd1d2e<Z:YnwxYwGd3d4e<Z=e=Z>d5Z?e@d6kr e?dSdS):a The ``distro`` package (``distro`` stands for Linux Distribution) provides information about the Linux distribution it runs on, such as a reliable machine-readable distro ID, or version information. It is the recommended replacement for Python's original :py:func:`platform.linux_distribution` function, but it provides much more functionality. An alternative implementation became necessary because Python 3.5 deprecated this function, and Python 3.8 removed it altogether. Its predecessor function :py:func:`platform.dist` was already deprecated since Python 2.6 and removed in Python 3.8. Still, there are many cases in which access to OS distribution information is needed. See `Python issue 1322 `_ for more information. Nz1.6.0F) AnyCallableDictIterableOptionalSequenceTextIOTupleType TypedDictUnion VersionDictmajorminor build_numberInfoDictidversion version_partslikecodename UNIXCONFDIRz/etc UNIXUSRLIBDIRz/usr/libz os-releaseoloraclerhel)enterpriseenterpriseasenterpriseenterpriseserverredhatenterpriseworkstationredhatenterpriseserverredhatenterprisecomputenoderedhatzA(?:[^)]*\)(.*)\()? *(?:STL )?([\d.+\-a-z]*\d) *(?:esaeler *)?(.+)z(\w+)[-_](release|version)$debian_versionz lsb-releasez oem-releasezsystem-releasez plesk-releaseziredmail-releaseTcntjdtdt|S)aG .. deprecated:: 1.6.0 :func:`distro.linux_distribution()` is deprecated. It should only be used as a compatibility shim with Python's :py:func:`platform.linux_distribution()`. Please use :func:`distro.id`, :func:`distro.version` and :func:`distro.name` instead. Return information about the current OS distribution as a tuple ``(id_name, version, codename)`` with items as follows: * ``id_name``: If *full_distribution_name* is false, the result of :func:`distro.id`. Otherwise, the result of :func:`distro.name`. * ``version``: The result of :func:`distro.version`. * ``codename``: The result of :func:`distro.codename`. The interface of this function is compatible with the original :py:func:`platform.linux_distribution` function, supporting a subset of its parameters. The data it returns may not exactly be the same, because it uses more data sources than the original function, and that may lead to different data if the OS distribution is not consistent across multiple data sources it provides (there are indeed such distributions ...). Another reason for differences is the fact that the :func:`distro.id` method normalizes the distro ID string to a reliable machine-readable value for a number of popular OS distributions. zdistro.linux_distribution() is deprecated. It should only be used as a compatibility shim with Python's platform.linux_distribution(). Please use distro.id(), distro.version() and distro.name() instead.) stacklevel)warningswarnDeprecationWarning_distrolinux_distribution)full_distribution_names /builddir/build/BUILDROOT/alt-python311-pip-21.3.1-3.el8.x86_64/opt/alt/python311/lib/python3.11/site-packages/pip/_vendor/distro.pyr-r-sCB M C    % %&< = ==c4tS)aD Return the distro ID of the current distribution, as a machine-readable string. For a number of OS distributions, the returned distro ID value is *reliable*, in the sense that it is documented and that it does not change across releases of the distribution. This package maintains the following reliable distro ID values: ============== ========================================= Distro ID Distribution ============== ========================================= "ubuntu" Ubuntu "debian" Debian "rhel" RedHat Enterprise Linux "centos" CentOS "fedora" Fedora "sles" SUSE Linux Enterprise Server "opensuse" openSUSE "amazon" Amazon Linux "arch" Arch Linux "cloudlinux" CloudLinux OS "exherbo" Exherbo Linux "gentoo" GenToo Linux "ibm_powerkvm" IBM PowerKVM "kvmibm" KVM for IBM z Systems "linuxmint" Linux Mint "mageia" Mageia "mandriva" Mandriva Linux "parallels" Parallels "pidora" Pidora "raspbian" Raspbian "oracle" Oracle Linux (and Oracle Enterprise Linux) "scientific" Scientific Linux "slackware" Slackware "xenserver" XenServer "openbsd" OpenBSD "netbsd" NetBSD "freebsd" FreeBSD "midnightbsd" MidnightBSD ============== ========================================= If you have a need to get distros for reliable IDs added into this set, or if you find that the :func:`distro.id` function returns a different distro ID for one of the listed distros, please create an issue in the `distro issue tracker`_. **Lookup hierarchy and transformations:** First, the ID is obtained from the following sources, in the specified order. The first available and non-empty value is used: * the value of the "ID" attribute of the os-release file, * the value of the "Distributor ID" attribute returned by the lsb_release command, * the first part of the file name of the distro release file, The so determined ID value then passes the following transformations, before it is returned by this method: * it is translated to lower case, * blanks (which should not be there anyway) are translated to underscores, * a normalization of the ID is performed, based upon `normalization tables`_. The purpose of this normalization is to ensure that the ID is as reliable as possible, even across incompatible changes in the OS distributions. A common reason for an incompatible change is the addition of an os-release file, or the addition of the lsb_release command, with ID values that differ from what was previously determined from the distro release file name. )r,rr0r/rrsZ ::<<r0c6t|S)ak Return the name of the current OS distribution, as a human-readable string. If *pretty* is false, the name is returned without version or codename. (e.g. "CentOS Linux") If *pretty* is true, the version and codename are appended. (e.g. "CentOS Linux 7.1.1503 (Core)") **Lookup hierarchy:** The name is obtained from the following sources, in the specified order. The first available and non-empty value is used: * If *pretty* is false: - the value of the "NAME" attribute of the os-release file, - the value of the "Distributor ID" attribute returned by the lsb_release command, - the value of the "" field of the distro release file. * If *pretty* is true: - the value of the "PRETTY_NAME" attribute of the os-release file, - the value of the "Description" attribute returned by the lsb_release command, - the value of the "" field of the distro release file, appended with the value of the pretty version ("" and "" fields) of the distro release file, if available. )r,nameprettys r/r4r4sJ <<  r0c8t||S)av Return the version of the current OS distribution, as a human-readable string. If *pretty* is false, the version is returned without codename (e.g. "7.0"). If *pretty* is true, the codename in parenthesis is appended, if the codename is non-empty (e.g. "7.0 (Maipo)"). Some distributions provide version numbers with different precisions in the different sources of distribution information. Examining the different sources in a fixed priority order does not always yield the most precise version (e.g. for Debian 8.2, or CentOS 7.1). The *best* parameter can be used to control the approach for the returned version: If *best* is false, the first non-empty version number in priority order of the examined sources is returned. If *best* is true, the most precise version number out of all examined sources is returned. **Lookup hierarchy:** In all cases, the version number is obtained from the following sources. If *best* is false, this order represents the priority order: * the value of the "VERSION_ID" attribute of the os-release file, * the value of the "Release" attribute returned by the lsb_release command, * the version number parsed from the "" field of the first line of the distro release file, * the version number parsed from the "PRETTY_NAME" attribute of the os-release file, if it follows the format of the distro release files. * the version number parsed from the "Description" attribute returned by the lsb_release command, if it follows the format of the distro release files. )r,rr6bests r/rr+sT ??64 ( ((r0c6t|S)a Return the version of the current OS distribution as a tuple ``(major, minor, build_number)`` with items as follows: * ``major``: The result of :func:`distro.major_version`. * ``minor``: The result of :func:`distro.minor_version`. * ``build_number``: The result of :func:`distro.build_number`. For a description of the *best* parameter, see the :func:`distro.version` method. )r,rr9s r/rrXs   & &&r0c6t|S)a5 Return the major version of the current OS distribution, as a string, if provided. Otherwise, the empty string is returned. The major version is the first part of the dot-separated version string. For a description of the *best* parameter, see the :func:`distro.version` method. )r, major_versionr;s r/r=r=j   & &&r0c6t|S)a6 Return the minor version of the current OS distribution, as a string, if provided. Otherwise, the empty string is returned. The minor version is the second part of the dot-separated version string. For a description of the *best* parameter, see the :func:`distro.version` method. )r, minor_versionr;s r/r@r@xr>r0c6t|S)a3 Return the build number of the current OS distribution, as a string, if provided. Otherwise, the empty string is returned. The build number is the third part of the dot-separated version string. For a description of the *best* parameter, see the :func:`distro.version` method. )r,rr;s r/rrs    % %%r0c4tS)a Return a space-separated list of distro IDs of distributions that are closely related to the current OS distribution in regards to packaging and programming interfaces, for example distributions the current distribution is a derivative from. **Lookup hierarchy:** This information item is only provided by the os-release file. For details, see the description of the "ID_LIKE" attribute in the `os-release man page `_. )r,rr2r0r/rrs <<>>r0c4tS)a Return the codename for the release of the current OS distribution, as a string. If the distribution does not have a codename, an empty string is returned. Note that the returned codename is not always really a codename. For example, openSUSE returns "x86_64". This function does not handle such cases in any special way and just returns the string it finds, if any. **Lookup hierarchy:** * the codename within the "VERSION" attribute of the os-release file, if provided, * the value of the "Codename" attribute returned by the lsb_release command, * the value of the "" field of the distro release file. )r,rr2r0r/rrs,     r0c8t||S)a Return certain machine-readable information items about the current OS distribution in a dictionary, as shown in the following example: .. sourcecode:: python { 'id': 'rhel', 'version': '7.0', 'version_parts': { 'major': '7', 'minor': '0', 'build_number': '' }, 'like': 'fedora', 'codename': 'Maipo' } The dictionary structure and keys are always the same, regardless of which information items are available in the underlying data sources. The values for the various keys are as follows: * ``id``: The result of :func:`distro.id`. * ``version``: The result of :func:`distro.version`. * ``version_parts -> major``: The result of :func:`distro.major_version`. * ``version_parts -> minor``: The result of :func:`distro.minor_version`. * ``version_parts -> build_number``: The result of :func:`distro.build_number`. * ``like``: The result of :func:`distro.like`. * ``codename``: The result of :func:`distro.codename`. For a description of the *pretty* and *best* parameters, see the :func:`distro.version` method. )r,infor8s r/rErEsT << % %%r0c4tS)z Return a dictionary containing key-value pairs for the information items from the os-release file data source of the current OS distribution. See `os-release file`_ for details about these information items. )r,os_release_infor2r0r/rGrGs  " " $ $$r0c4tS)z Return a dictionary containing key-value pairs for the information items from the lsb_release command data source of the current OS distribution. See `lsb_release command output`_ for details about these information items. )r,lsb_release_infor2r0r/rIrIs  # # % %%r0c4tS)z Return a dictionary containing key-value pairs for the information items from the distro release file data source of the current OS distribution. See `distro release file`_ for details about these information items. )r,distro_release_infor2r0r/rKrKs  & & ( ((r0c4tS)z Return a dictionary containing key-value pairs for the information items from the distro release file data source of the current OS distribution. )r, uname_infor2r0r/rMrMs     r0c6t|S)a Return a single named information item from the os-release file data source of the current OS distribution. Parameters: * ``attribute`` (string): Key of the information item. Returns: * (string): Value of the information item, if the item exists. The empty string, if the item does not exist. See `os-release file`_ for details about these information items. )r,os_release_attr attributes r/rOrOs"  " "9 - --r0c6t|S)a Return a single named information item from the lsb_release command output data source of the current OS distribution. Parameters: * ``attribute`` (string): Key of the information item. Returns: * (string): Value of the information item, if the item exists. The empty string, if the item does not exist. See `lsb_release command output`_ for details about these information items. )r,lsb_release_attrrPs r/rSrS+s$  # #I . ..r0c6t|S)a Return a single named information item from the distro release file data source of the current OS distribution. Parameters: * ``attribute`` (string): Key of the information item. Returns: * (string): Value of the information item, if the item exists. The empty string, if the item does not exist. See `distro release file`_ for details about these information items. )r,distro_release_attrrPs r/rUrU@s"  & &y 1 11r0c6t|S)aZ Return a single named information item from the distro release file data source of the current OS distribution. Parameters: * ``attribute`` (string): Key of the information item. Returns: * (string): Value of the information item, if the item exists. The empty string, if the item does not exist. )r, uname_attrrPs r/rWrWTs   i ( ((r0)cached_propertyceZdZdZdZdZdS)rXzA version of @property which caches the value. On access, it calls the underlying function and sets the value in `__dict__` so future accesses will not re-call the property. c,|j|_||_dS)N)__name___fname_f)selffs r/__init__zcached_property.__init__ps*DKDGGGr0c|"Jd|j||x}|j|j<|S)Nzcall {} on an instance)formatr\r]__dict__)r^objownerrets r/__get__zcached_property.__get__usD??$<$C$CDK$P$P???.2ggcll :C#,t{+Jr0N)r[ __module__ __qualname____doc__r`rgr2r0r/rXrXjs<           r0rXcxeZdZdZ d%dZdZd&dZdZd'd Zd(d Z d'd Z d'd Z d'dZ d'dZ dZdZd(dZdZdZdZdZdZdZdZdZedZedZedZedZedZed Z ed!Z!ed"Z"d#Z#ed$Z$dS))LinuxDistributiona  Provides information about a OS distribution. This package creates a private module-global instance of this class with default initialization arguments, that is used by the `consolidated accessor functions`_ and `single source accessor functions`_. By using default initialization arguments, that module-global instance returns data about the current OS distribution (i.e. the distro this package runs on). Normally, it is not necessary to create additional instances of this class. However, in situations where control is needed over the exact data sources that are used, instances of this class can be created with a specific distro release file, or a specific os-release file, or without invoking the lsb_release command. TNcP||_|r tj|dnt|_|r tj|dnt |_|r||_ntj|jt}tj|jt}tj |stj |s||_n||_|pd|_ ||_ ||_ dS)a The initialization method of this class gathers information from the available data sources, and stores that in private instance attributes. Subsequent access to the information items uses these private instance attributes, so that the data sources are read only once. Parameters: * ``include_lsb`` (bool): Controls whether the `lsb_release command output`_ is included as a data source. If the lsb_release command is not available in the program execution path, the data source for the lsb_release command will be empty. * ``os_release_file`` (string): The path name of the `os-release file`_ that is to be used as a data source. An empty string (the default) will cause the default path name to be used (see `os-release file`_ for details). If the specified or defaulted os-release file does not exist, the data source for the os-release file will be empty. * ``distro_release_file`` (string): The path name of the `distro release file`_ that is to be used as a data source. An empty string (the default) will cause a default search algorithm to be used (see `distro release file`_ for details). If the specified distro release file does not exist, or if no default distro release file can be found, the data source for the distro release file will be empty. * ``include_uname`` (bool): Controls whether uname command output is included as a data source. If the uname command is not available in the program execution path the data source for the uname command will be empty. * ``root_dir`` (string): The absolute path to the root directory to use to find distro-related information files. Public instance attributes: * ``os_release_file`` (string): The path name of the `os-release file`_ that is actually used as a data source. The empty string if no distro release file is used as a data source. * ``distro_release_file`` (string): The path name of the `distro release file`_ that is actually used as a data source. The empty string if no distro release file is used as a data source. * ``include_lsb`` (bool): The result of the ``include_lsb`` parameter. This controls whether the lsb information will be loaded. * ``include_uname`` (bool): The result of the ``include_uname`` parameter. This controls whether the uname information will be loaded. Raises: * :py:exc:`IOError`: Some I/O issue with an os-release file or distro release file. * :py:exc:`subprocess.CalledProcessError`: The lsb_release command had some issue (other than not being available in the program execution path). * :py:exc:`UnicodeError`: A data source has unexpected characters or uses an unexpected encoding. etczusr/librmN)root_dirospathjoin _UNIXCONFDIRetc_dir_UNIXUSRLIBDIR usr_lib_diros_release_file_OS_RELEASE_BASENAMEisfiledistro_release_file include_lsb include_uname)r^r|rxr{r}rpetc_dir_os_release_fileusr_lib_os_release_files r/r`zLinuxDistribution.__init__s ^! 8@Rrw||He444l 19 MBGLL9 - - -~   ?#2D &(gll4$#6#<" &*r0c.d|S)zReturn repr of all infoaeLinuxDistribution(os_release_file={self.os_release_file!r}, distro_release_file={self.distro_release_file!r}, include_lsb={self.include_lsb!r}, include_uname={self.include_uname!r}, _os_release_info={self._os_release_info!r}, _lsb_release_info={self._lsb_release_info!r}, _distro_release_info={self._distro_release_info!r}, _uname_info={self._uname_info!r})r^)rbrs r/__repr__zLinuxDistribution.__repr__s 017D0A0A r0c|r|n|||fS)z Return information about the OS distribution that is compatible with Python's :func:`platform.linux_distribution`, supporting a subset of its parameters. For details, see :func:`distro.linux_distribution`. )r4rrr)r^r.s r/r-z$LinuxDistribution.linux_distributions@2 @DIIKKKtwwyy LLNN MMOO  r0cLd}|d}|r||tS|d}|r||tS|d}|r||t S|d}|r||t SdS)zoReturn the distro ID of the OS distribution, as a string. For details, see :func:`distro.id`. c~|dd}|||S)N _)lowerreplaceget) distro_idtables r/ normalizez'LinuxDistribution.id..normalizes5!))11#s;;I99Y 22 2r0rdistributor_idrm)rONORMALIZED_OS_IDrSNORMALIZED_LSB_IDrUNORMALIZED_DISTRO_IDrW)r^rrs r/rzLinuxDistribution.ids 3 3 3 ((..  :9Y(899 9))*:;;  ;9Y(9:: :,,T22  >9Y(<== =OOD))  >9Y(<== =rr0Fc|dp>|dp)|dp|d}|rv|dp|d}|sJ|dp|d}|d}|r|dz|z}|pdS) zu Return the name of the OS distribution, as a string. For details, see :func:`distro.name`. r4r pretty_name descriptionTr5rrm)rOrSrUrWr)r^r6r4rs r/r4zLinuxDistribution.name4s   ( ( '$$%566 '''// 'v&&  0'' 66$:O:O;;D 0//77R4??6;R;R,,d,330#:/Dzrr0c |d|d|d||ddd||ddd|dg}d}|r:|D]6}|d|dks|dkr|}7n|D] }|dkr|}n |r>|r<|r(d||}|S)z{ Return the version of the OS distribution, as a string. For details, see :func:`distro.version`. version_idreleaserrmr.z {0} ({1})) rOrSrU_parse_distro_release_contentrrWcountrrb)r^r6r9versionsrvs r/rzLinuxDistribution.versionLsx   . .  ! !) , ,  $ $\ 2 2  . .t/C/CM/R/R S S W Wb    . .%%m44  c,## OOI & &       773<<'--"4"4442 G   77GE  Cg C$--// C!(($--//BBGr0c||}|rLtjd}||}|r!|\}}}||pd|pdfSdS)z Return the version of the OS distribution, as a tuple of version numbers. For details, see :func:`distro.version_parts`. r;z(\d+)\.?(\d+)?\.?(\d+)?rm)rmrmrm)rrecompilematchgroups)r^r9 version_str version_regexmatchesrrrs r/rzLinuxDistribution.version_partsqs{lll--  >J'ABBM#))+66G >-4^^-=-=*ulekr<+=2==zr0c8||dS)z Return the major version number of the current distribution. For details, see :func:`distro.major_version`. rrr^r9s r/r=zLinuxDistribution.major_version!!$''**r0c8||dS)z Return the minor version number of the current distribution. For details, see :func:`distro.minor_version`. rrs r/r@zLinuxDistribution.minor_versionrr0c8||dS)z} Return the build number of the current distribution. For details, see :func:`distro.build_number`. r'rrs r/rzLinuxDistribution.build_numberrr0c0|dpdS)z Return the IDs of distributions that are like the OS distribution. For details, see :func:`distro.like`. id_likerm)rOrs r/rzLinuxDistribution.likes##I..4"4r0c |jdS#t$r/|dp|dpdcYSwxYw)zp Return the codename of the OS distribution. For details, see :func:`distro.codename`. rrm)_os_release_infoKeyErrorrSrUrs r/rzLinuxDistribution.codenamesp (4 4   %%j11++J77    s 6AAc Pt||||t||||||||S)z Return certain machine-readable information about the OS distribution. For details, see :func:`distro.info`. rr)dictrrr=r@rrr)r^r6r9s r/rEzLinuxDistribution.infoswwyyLL..((..((..!..t44 ]]__    r0c|jS)z Return a dictionary containing key-value pairs for the information items from the os-release file data source of the OS distribution. For details, see :func:`distro.os_release_info`. )rrs r/rGz!LinuxDistribution.os_release_infos $$r0c|jS)z Return a dictionary containing key-value pairs for the information items from the lsb_release command data source of the OS distribution. For details, see :func:`distro.lsb_release_info`. )_lsb_release_infors r/rIz"LinuxDistribution.lsb_release_infos %%r0c|jS)z Return a dictionary containing key-value pairs for the information items from the distro release file data source of the OS distribution. For details, see :func:`distro.distro_release_info`. )_distro_release_infors r/rKz%LinuxDistribution.distro_release_infos ((r0c|jS)z Return a dictionary containing key-value pairs for the information items from the uname command data source of the OS distribution. For details, see :func:`distro.uname_info`. ) _uname_infors r/rMzLinuxDistribution.uname_infos r0c8|j|dS)z Return a single named information item from the os-release file data source of the OS distribution. For details, see :func:`distro.os_release_attr`. rm)rrr^rQs r/rOz!LinuxDistribution.os_release_attrs$((B777r0c8|j|dS)z Return a single named information item from the lsb_release command output data source of the OS distribution. For details, see :func:`distro.lsb_release_attr`. rm)rrrs r/rSz"LinuxDistribution.lsb_release_attrs%)))R888r0c8|j|dS)z Return a single named information item from the distro release file data source of the OS distribution. For details, see :func:`distro.distro_release_attr`. rm)rrrs r/rUz%LinuxDistribution.distro_release_attr s(,,Y;;;r0c8|j|dS)z Return a single named information item from the uname command output data source of the OS distribution. For details, see :func:`distro.uname_attr`. rm)rrrs r/rWzLinuxDistribution.uname_attrs##Ir222r0ctj|jrAt |j5}||cdddS#1swxYwYiS)z Get the information items from the specified os-release file. Returns: A dictionary containing all information items. N)rqrrrzrxopen_parse_os_release_content)r^ release_files r/rz"LinuxDistribution._os_release_infos 7>>$. / / Dd*++ D|55lCC D D D D D D D D D D D D D D D D sAA"Aci}tj|d}d|_tjddkr9t |jt r|jd|_t|}|D]7}d|vr1| dd\}}||| <78d|vr |d|d <nd |vr |d |d <nxd |vrttj d |d }|rW| }|d }|d}|}||d <|S)aD Parse the lines of an os-release file. Parameters: * lines: Iterable through the lines in the os-release file. Each line must be a unicode string or a UTF-8 encoded byte string. Returns: A dictionary containing all information items. T)posixrr'z iso-8859-1=rversion_codenamerubuntu_codenamerz(\(\D+\))|,(\s+)?\D+z(),)shlexwhitespace_splitsys version_info isinstance wordcharsbytesdecodelistsplitrrsearchgroupstrip) linespropslexertokenstokenkrrrs r/rz+LinuxDistribution._parse_os_release_content,sm E...!%  A ! # # 5?E(J(J ##o44\BBEOe  Ee||{{3**1#$aggii    & & !&&8 9E*   % ' ' %&7 8E*   %  I5uY7GHHE - ;;==#>>$//#>>#..#>>++$,j! r0cz|jsiSttjd5} d}t j||}n*#t tjf$ricYcdddSwxYw dddn #1swxYwY|| }| |S)z Get the information items from the lsb_release command output. Returns: A dictionary containing all information items. wb) lsb_releasez-astderrN) r|rrqdevnull subprocess check_outputOSErrorCalledProcessError_to_str splitlines_parse_lsb_release_contentr^rcmdstdoutcontents r/rz#LinuxDistribution._lsb_release_infons# I "*d # # w +#0WEEEZ:;                             ,,v&&1133..w777s1A6?A6A&A6%A&&A66A:=A:c6i}|D]}|ddd}t|dkr?|\}}||dd|i|S)aM Parse the output of the lsb_release command. Parameters: * lines: Iterable through the lines of the lsb_release output. Each line must be a unicode string or a UTF-8 encoded byte string. Returns: A dictionary containing all information items.  :rr'rr)rrlenupdaterr)rrlinekvrrs r/rz,LinuxDistribution._parse_lsb_release_contents C CDD!!''Q//B2ww!||DAq LL!))C--3355qwwyyA B B B B r0cPttjd5} d}tj||}n#t $ricYcdddSwxYw dddn #1swxYwY||}||S)Nr)unamez-rsr) rrqrrrrrr_parse_uname_contentrs r/rzLinuxDistribution._uname_infos "*d # # w &#0WEEE                             ,,v&&1133((111s1A!6A! AA!AA!!A%(A%ci}tjd|d}|r@|\}}|dkriS||d<||d<||d<|S)Nz^([^\s]+)\s+([\d\.]+)rLinuxrr4r)rrrrr)rrrr4rs r/rz&LinuxDistribution._parse_uname_contents{ 2E!HNN4D4DEE  '!LLNNMD' w **,,E$K E&M&E)  r0ctj}|dkrdn|}tjddkr+t|tr||Sn*t|t r||S|S)Nasciizutf-8r)rgetfilesystemencodingrrrrunicodeencode)textencodings r/rzLinuxDistribution._to_strs,..&'1177x  A ! # #$&& -{{8,,, -$(( -{{8,,, r0c(|jr||j}tj|j}t |}d|vr"d|dvrd|d<n|r|d|d<|S tj |j }| n#t$rgd}YnwxYw|D]}|tvr t |}|rtj|j |}||}d|vrD||_|d|d<d|dvrd|d<|cSiS)z Get the information items from the specified distro release file. Returns: A dictionary containing all information items. r4 cloudlinuxrr)z SuSE-releasez arch-releasez base-releasezcentos-releasezfedora-releasezgentoo-releasezmageia-releasezmandrake-releasezmandriva-releasezmandrivalinux-releasezmanjaro-releasezoracle-releasezredhat-releasez sl-releasezslackware-version)r{_parse_distro_release_filerqrrbasename _DISTRO_RELEASE_BASENAME_PATTERNrrrlistdirrusortr _DISTRO_RELEASE_IGNORE_BASENAMESrs)r^ distro_inforr basenamesfilepaths r/rz&LinuxDistribution._distro_release_infos  #: 99$:RSSKw''(@AAH 5::8DDE$$V9L9R9R9T9T)T)T$0 D!! 3$)KKNN D!  Jt|44           ,& + +???8>>xHH +!w||DL(CCH"&"A"A("K"KK,,3;0,1KKNN D)';v+>+D+D+F+FFF0|t#j|dddS|d|d|d}|d||}|d|dS)NzOS distro info tool)rz--jsonz-jz!Output in machine readable format store_true)helpactionz --root-dirz-rrpz5Path to the root filesystem directory (defaults to /))typedestrF)r|r}rpT)indent sort_keyszName: %sr5z Version: %sz Codename: %s)logging getLoggerr[setLevelDEBUG addHandler StreamHandlerrrargparseArgumentParser add_argumentstr parse_argsrprlr,jsonrEdumpsr4rr)loggerparserargsdistdistribution_versiondistribution_codenames r/mainr3Cs  x ( (F OOGM""" g+CJ77888  $1F G G GF $@    D      D } UT]    y; DJtyy{{1EEEFFFFF J  6 6777#||4|88 M#7888 $  N$9:::::r0__main__rrr)Arjr&r+r rqrrrrr) __version__typingrrrrrrr r r r r r)rrenvironrrtrvryrrrrrrrr-rr4rrr=r@rrrrErGrIrKrMrOrSrUrW functoolsrX ImportErrorobjectrlr,r3r[r2r0r/r;sW      <z~~mV44 <<# ('"*#)$#)   f ,62:H,,( $.2:.L#M#M $ (>(>(>(>VMMM`% % % % P*)*)*)*)Z''''$ ' ' ' ' ' ' ' ' & & & &$2*&*&*&*&Z%%% & & &)))   ...(///*222()))$)))))))&(A A A A A A A A H    #;#;#;L zDFFFFFsC$$C:9C: