Dpkg::Vendor(3perl) | libdpkg-perl | Dpkg::Vendor(3perl) |
Dpkg::Vendor - get access to some vendor specific information
The files in $Dpkg::CONFDIR/origins/ can provide information about various vendors who are providing Debian packages. Currently those files look like this:
Vendor: Debian Vendor-URL: https://www.debian.org/ Bugs: debbugs://bugs.debian.org
If the vendor derives from another vendor, the file should document the relationship by listing the base distribution in the Parent field:
Parent: Debian
The file should be named according to the vendor name. The usual convention is to name the vendor file using the vendor name in all lowercase, but some variation is permitted. Namely, spaces are mapped to dashes ('-'), and the file can have the same casing as the Vendor field, or it can be capitalized.
The vendor filename will be derived from the vendor name, by replacing any number of non-alphanumeric characters (that is [^A-Za-z0-9]) into "-", then the resulting name will be tried in sequence by lower-casing it, keeping it as is, lower-casing then capitalizing it, and capitalizing it.
In addition, for historical and backwards compatibility, the name will be tried keeping it as is without non-alphanumeric characters remapping, then the resulting name will be tried in sequence by lower-casing it, keeping it as is, lower-casing then capitalizing it, and capitalizing it. And finally the name will be tried by replacing only spaces to "-", then the resulting name will be tried in sequence by lower-casing it, keeping it as is, lower-casing then capitalizing it, and capitalizing it.
But these backwards compatible name lookups will be removed during the dpkg 1.22.x release cycle.
The module name will be derived from the vendor name, by splitting parts around groups of non alphanumeric character (that is [^A-Za-z0-9]) separators, by either capitalizing or lower-casing and capitalizing each part and then joining them without the separators. So the expected casing is based on the one from the Vendor field in the origins file.
In addition, for historical and backwards compatibility, the module name will also be looked up without non-alphanumeric character stripping, by capitalizing, lower-casing then capitalizing, as-is or lower-casing. But these name lookups will be removed during the 1.22.x release cycle.
Deprecated behavior: get_vendor_file() loading vendor files with no special characters remapping. get_vendor_object() loading vendor module names with no special character stripping.
New function: get_vendor_dir().
Mark the module as public.
2023-05-11 | 1.21.22 |