is:
name-version-release.architecture.rpm
|
where:
name is a name describing the packaged software.
version is the version of the packaged software.
release is the number of times this version of the software has been packaged.
architecturesrc, or nosrc. Both of these strings indicate the file is an RPM source package. The nosrc string means that the file contains only package building files, while the src string means the file contains the necessary package building files and the software's source code.
— usually this occurs when the software is split into multiple "subpackages," each supporting a different set of functions. An example of this situation would be the way ncurses was packaged on Red Hat Linux Linux. The package incorporating ncurses basic functionality was called ncurses, while the package incorporating those parts of ncurses' program development functionality was named ncurses-devel.
The version number is normally taken verbatim from the package's version. The only restriction placed on the version is that it cannot contain a dash "-".
The release can be thought of as the package's however. Like the version number, the only restriction is that dashes are not allowed.
The architecture specifier is a string that indicates what hardware the package has been built for. There are a number of architectures defined:
i386 — The Intel x86 family of microprocessors, starting with the 80386.
alpha — The Digital Alpha/AXP series of microprocessors.
sparc — Sun Microsystem's SPARC series of chips.
mips — MIPS Technologies' processors.
ppc — The Power PC microprocessor family.
m68k — Motorola's 68000 series of CISC microprocessors.
SGI — Equivalent to "MIPS".
This list will almost certainly change. For the most up-to-date list, please refer to the file /usr/lib/rpmrc. It contains information used internally by RPM, including a list of architectures and equivalent code numbers.
| Главная |