meta_package_manager.managers.zef module¶
- class meta_package_manager.managers.zef.Zef[source]¶
Bases:
PackageManagerZef, the module manager of the Raku language.
A package is a Raku distribution, identified by the bare name its identity string opens with. Raku names are colon-separated (
JSON::Fast) and the identity appends its own colon-prefixed fields to them (JSON::Fast:ver<0.20>:auth<zef:timo>), so every pattern here matches the name lazily up to the literal:ver<rather than splitting on colons.Note
Two distributions may share a name and differ only by the
authfield, and several versions of one may be installed side by side. mpm keys a package on its id alone, so both listings are reduced here to one entry per name, keeping the highest version. That reduction is what makes this a class rather than a bundled definition.Note
Search compounds the same problem rather than avoiding it: it answers with a pipe-delimited table carrying one row per (distribution, version) pair, so a single module comes back once per release it has ever published.
Note
No
outdated: zef reports no staleness of its own.upgradecovers both the bulk and the single-package cases natively, so neither is synthesized.Documentation: zef README.
Initialize
cli_errorslist.- homepage_url: str | None = 'https://github.com/ugexe/zef'¶
Home page of the project, only used in documentation for reference.
- platforms: frozenset[Platform] | Group | Platform | Iterable[Platform | Group] = frozenset({Platform(id='aix', name='IBM AIX'), Platform(id='almalinux', name='AlmaLinux'), Platform(id='alpine', name='Alpine Linux'), Platform(id='altlinux', name='ALT Linux'), Platform(id='amzn', name='Amazon Linux'), Platform(id='android', name='Android'), Platform(id='arch', name='Arch Linux'), Platform(id='buildroot', name='Buildroot'), Platform(id='cachyos', name='CachyOS'), Platform(id='centos', name='CentOS'), Platform(id='chromeos', name='ChromeOS'), Platform(id='clearlinux', name='Clear Linux OS'), Platform(id='cloudlinux', name='CloudLinux OS'), Platform(id='cygwin', name='Cygwin'), Platform(id='debian', name='Debian'), Platform(id='dragonfly_bsd', name='DragonFly BSD'), Platform(id='endeavouros', name='EndeavourOS'), Platform(id='exherbo', name='Exherbo Linux'), Platform(id='fedora', name='Fedora'), Platform(id='freebsd', name='FreeBSD'), Platform(id='generic_linux', name='Generic Linux'), Platform(id='gentoo', name='Gentoo Linux'), Platform(id='guix', name='Guix System'), Platform(id='haiku', name='Haiku'), Platform(id='hurd', name='GNU/Hurd'), Platform(id='ibm_powerkvm', name='IBM PowerKVM'), Platform(id='illumos', name='illumos'), Platform(id='kali', name='Kali Linux'), Platform(id='kvmibm', name='KVM for IBM z Systems'), Platform(id='linuxmint', name='Linux Mint'), Platform(id='macos', name='macOS'), Platform(id='mageia', name='Mageia'), Platform(id='mandriva', name='Mandriva Linux'), Platform(id='manjaro', name='Manjaro Linux'), Platform(id='midnightbsd', name='MidnightBSD'), Platform(id='netbsd', name='NetBSD'), Platform(id='nixos', name='NixOS'), Platform(id='nobara', name='Nobara'), Platform(id='openbsd', name='OpenBSD'), Platform(id='opensuse', name='openSUSE'), Platform(id='openwrt', name='OpenWrt'), Platform(id='oracle', name='Oracle Linux'), Platform(id='os400', name='IBM i'), Platform(id='parallels', name='Parallels'), Platform(id='pidora', name='Pidora'), Platform(id='pikaos', name='PikaOS'), Platform(id='raspbian', name='Raspbian'), Platform(id='rhel', name='RedHat Enterprise Linux'), Platform(id='rocky', name='Rocky Linux'), Platform(id='scientific', name='Scientific Linux'), Platform(id='slackware', name='Slackware'), Platform(id='sles', name='SUSE Linux Enterprise Server'), Platform(id='slitaz', name='SliTaz GNU/Linux'), Platform(id='solaris', name='Solaris'), Platform(id='sourcemage', name='Source Mage GNU/Linux'), Platform(id='sunos', name='SunOS'), Platform(id='tuxedo', name='Tuxedo OS'), Platform(id='ubuntu', name='Ubuntu'), Platform(id='ultramarine', name='Ultramarine'), Platform(id='void', name='Void Linux'), Platform(id='windows', name='Windows'), Platform(id='wsl1', name='Windows Subsystem for Linux v1'), Platform(id='wsl2', name='Windows Subsystem for Linux v2'), Platform(id='xenserver', name='XenServer')})¶
List of platforms supported by the manager.
Allows for a mishmash of platforms and groups of platforms. Will be normalized into a
frozensetofPlatforminstances at instantiation.
- version_regexes: tuple[str, ...] = ('^(?P<version>\\d+\\.\\d+\\.\\d+)',)¶
Search the bare version zef prints on its own.
$ zef --version 1.1.3
- property installed: Iterator[Package]¶
Fetch installed packages.
$ zef list --installed ===> Found via inst#/opt/homebrew/Cellar/rakudo-star/2026.07/share/perl6/site App::Prove6:ver<0.0.18>:auth<zef:leont> Config::TOML:ver<0.1.3>:auth<zef:raku-community-modules> Config:ver<3.0.4>:auth<cpan:TYIL>:api<3> Crane:ver<0.1.2>:auth<zef:raku-community-modules> Digest:ver<1.1.0>:auth<zef:grondilu>
- search(query, extended, exact)[source]¶
Fetch matching packages.
Caution
Search does not support extended or exact matching.
$ zef search JSON::Fast ===> Found 50 results ------------------------------------------------------------------------------- ID|From |Package |Description ------------------------------------------------------------------------------- 0 |Zef::Repository::Ecosystems<fez>|JSON::Fast:ver<0.20>:auth<zef:timo> |A naive, fast json parser and serializer 1 |Zef::Repository::Ecosystems<fez>|JSON::Fast:ver<0.20.1>:auth<zef:timo>|A naive, fast json parser and serializer
- install(package_id, version=None)[source]¶
Install one package.
$ zef install JSON::Fast::Hyper ===> Testing: hyperize:ver<0.0.4>:auth<zef:lizmat> ===> Testing [OK] for hyperize:ver<0.0.4>:auth<zef:lizmat> ===> Testing: JSON::Fast::Hyper:ver<0.0.11>:auth<zef:lizmat> ===> Testing [OK] for JSON::Fast::Hyper:ver<0.0.11>:auth<zef:lizmat> ===> Installing: hyperize:ver<0.0.4>:auth<zef:lizmat> ===> Installing: JSON::Fast::Hyper:ver<0.0.11>:auth<zef:lizmat>
- Return type:
- cli_names: tuple[str, ...] = ('zef',)¶
List of CLI names the package manager is known as.
This list of recognized CLI names is ordered by priority. That way we can influence the search of the right binary.
- ..hint::
This was helpful in the case of the Python transition from 2.x to 3.x, where multiple versions of the same executable were named
pythonorpython3.
By default, this property’s value is derived from the manager’s ID (see the
MetaPackageManager.__init__method above).
- id: str = 'zef'¶
Package manager’s ID.
Derived by defaults from the lower-cased class name in which underscores
_are replaced by dashes-.This ID must be unique among all package manager definitions and lower-case, as they’re used as feature flags for the mpm CLI.
- upgrade_one_cli(package_id, version=None)[source]¶
Generate the CLI to upgrade one package.
$ zef upgrade JSON::Fast
- virtual: bool = False¶
Should we expose the package manager to the user?
Virtual package manager are just skeleton classes used to factorize code among managers of the same family.