| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- 32-bits Solaris is no longer supported on recent versions, older
versions of Solaris are no longer usable (e.g. no GCC support) and we
don't have profiles for them for a long time
- Sparc64 is still around, but we don't have access to it any more, and
not tested it for ages either
- Windows/Cygwin is not working for a long time, and there is noone to
really support it
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
|
| | |
|
|\| |
|
| |
| |
| |
| | |
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
|
| | |
|
|\| |
|
| |
| |
| |
| | |
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
|
| | |
|
|\| |
|
| |
| |
| |
| |
| |
| | |
Signed-off-by: Robert Siebeck <gentoo.2019@r123.de>
Closes: https://github.com/gentoo/gentoo/pull/31139
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
|
| |
| |
| |
| |
| | |
Signed-off-by: Robert Siebeck <gentoo.2019@r123.de>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
|
| | |
|
|\| |
|
| |
| |
| |
| |
| |
| | |
Bug: https://bugs.gentoo.org/883653
Closes: https://bugs.gentoo.org/892764
Signed-off-by: William Hubbs <williamh@gentoo.org>
|
| | |
|
|\| |
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| | |
|
|\| |
|
| |
| |
| |
| |
| |
| | |
Closes: https://bugs.gentoo.org/907055
Closes: https://bugs.gentoo.org/907056
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
|
| | |
|
|\| |
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: Michał Górny <mgorny@gentoo.org>
|
| | |
|
|\| |
|
| |
| |
| |
| | |
Signed-off-by: William Hubbs <williamh@gentoo.org>
|
| |
| |
| |
| | |
Signed-off-by: William Hubbs <williamh@gentoo.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Udev rules should be installed in rules.d directory (so in
`/usr/lib/udev/rules.d`), currently they are installed in
`/usr/lib/udev`. This mistake probably comes from a build system
change, where for old build system (in version 1.16), UDEVDIR was
supposed to be specified, and the build system defined UDEVRULESDIR
based on the former (see
https://github.com/linux-nvme/nvme-cli/blob/v1.16/Makefile#L17-L18). The
new build system expects the udev rules directory to be passed as a
parameter.
Similar mistake happened for the systemd unit directory - the systemd
unit files are installed in `/usr/lib/systemd/system`, not in
`/usr/lib/systemd`. This one stems from a change in meaning of the
`systemddir` option in the build system - in the old build system it
meant to be `/usr/lib/systemd` and the `system` subdirectory was
appended by the old build system when installing the units (see
https://github.com/linux-nvme/nvme-cli/blob/v1.16/Makefile#L142-L144).
The new build system does not do it any more - it just installs the
units to `systemddir` (see
https://github.com/linux-nvme/nvme-cli/blob/v1.16/Makefile#L142-L144),
thus making the `systemddir` option name rather misleading - probably
should be named `systemdunitdir`, as `systemddir` is not used for
anything else (see
https://github.com/linux-nvme/nvme-cli/blob/v2.4/Makefile#L49).
Signed-off-by: Krzesimir Nowak <knowak@microsoft.com>
Closes: https://github.com/gentoo/gentoo/pull/31159
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
|
| | |
|
|\| |
|