Package platformids :: Package custom :: Module pentoo

Module pentoo

source code

Example for a dynamic added custom platform.

Here *Pentoo* Linux, which has the same encoding as *Gentoo*.


Version: 0.0.1

Author: Arno-Can Uestuensoez

License: Artistic-License-2.0 + Forced-Fairplay-Constraints

Functions
 
my_distrel2tuple(rte=RTE)
A custom example only.
source code
Variables
  __uuid__ = "7add5ded-c39b-4b6e-8c87-1b3a1c150ee9"
  RTE_PENTOO = RTE_LINUX+ custom_dist.add_enum()
PENTOO
  RTE_PENTOO20180 = RTE_PENTOO+ 0x00006000
PENTOO-2018.0 - offset 1970.1.1
  RTE_PENTOO20190 = RTE_PENTOO+ 0x00006200
PENTOO-2019.0 - offset 1970.1.1
Function Details

my_distrel2tuple(rte=RTE)

source code 

 A custom example only.
 
 Requires the same encoding as Gentoo - so currently some
 work to do in order to detect the version of the versionless...

 Convert the *Pentoo* specific *distrel* version layout
 to a tuple.
 
 A callback to be used by the function:
 
    platformids.decode_rte_distrel_to_segments(rte=RTE)
 
 Decodes the compressed *distrel* from the 32bit integer
 bitmask *rte* into the corresponding tuple of integer
 segments.

 Args:
    rte:
        The comppressed runtime environment identifier bitmask.
         
        default := RTE

 Returns:
    Tuple of Integer values of the encoded segments, either
    as defined by the default layout, or any known as defined
    by additional extended and/or custom criteria.
 
Raises:
    pass-through

Examples:
  ::

     decode_rte_distrel_to_segments()     
     =>  (2018, 0, 0)  # on PENTOO-2018.0
     =>  (2019, 0, 0)  # on PENTOO-2019.0

 

Decorators: