-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP yum_repo_status: generate a table showing how much outdated 8.3 i…
…s from xs8 FIXME: - include successive xs8 update waves - migrate infos from Sam's wiki page to package_status.csv - show binrpms? - include "current" el7 versions - link proprietary packages replaced by ours - should take import_reason from provenance.csv as tooltip? - include upstream releases from GH?
- Loading branch information
Showing
4 changed files
with
416 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
SRPM_name;status;comment | ||
auto-cert-kit;ignored;unused, why? | ||
automake16;ignored;unused, why? | ||
bpftool;ignored;unused, why? | ||
capstone;ignored;unused, why? | ||
citrix-crypto-module;ignored;proprietary, patched FIPS openssl | ||
compiler-rt18;ignored;unused, why? | ||
dlm;ignored;previous dependency for corosync | ||
emu-manager;ignored;proprietary, replaced by xcp-emu-manager | ||
epel-release;ignored;unused, why? | ||
forkexecd;ignored;now in xapi | ||
fuse;;breq for e2fsprogs 1.47 | ||
gfs2-utils;ignored;unsupported fs | ||
glib2;ignored;same version as el7, why? | ||
golang;ignored;for newer xe-guest-utilities | ||
hcp_nss;ignored;unused, “enforce any permitted user login as root” | ||
hwloc;ignored;unused, why? | ||
libbpf;ignored;unused, why? | ||
libcgroup;ignored;unused, same version as el7, why? | ||
libhbalinux;;unused? el7 fork, “Fix crash in fcoeadm/elxhbamgr on certain machines” | ||
libnbd;ignored;unused, dep for xapi-storage-plugins | ||
linuxconsoletools;ignored;unused, same version as el7, why? | ||
mbootpack;;for secureboot? | ||
message-switch;ignored;now in xapi | ||
mpdecimal;ignored;unused, why? | ||
ninja-build;ignored;unused | ||
pbis-open;ignored;unused, likely linked to upgrade-pbis-to-winbind | ||
pbis-open-upgrade;ignored;unused, likely linked to upgrade-pbis-to-winbind | ||
pvsproxy;ignored;proprietary | ||
python-monotonic;ignored;previous dependency for sm | ||
python-tqdm;ignored;unused, dependency for pvsproxy | ||
rrdd-plugins;ignored;now in xapi | ||
ruby;ignored;unused, why? | ||
sbd;;unused? "storage-based death functionality" | ||
sm-cli;ignored;now in xapi | ||
secureboot-certificates;ignored;proprietary, needs alternative? | ||
security-tools;ignored;proprietary, pool_secret tool | ||
sm-transport-lib;ignored;proprietary | ||
squeezed;ignored;now in xapi | ||
tix;ignored;unused, why? | ||
upgrade-pbis-to-winbind;ignored;proprietary | ||
v6d;ignored;proprietary, replaced by xcp-featured | ||
varstored-guard;ignored;now in xapi | ||
vendor-update-keys;ignored;proprietary | ||
vgpu;ignored;proprietary | ||
vhd-tool;ignored;now in xapi | ||
wsproxy;ignored;now in xapi | ||
xapi-clusterd;ignored;proprietary | ||
xapi-nbd;ignored;now in xapi | ||
xapi-storage;ignored;now in xapi | ||
xapi-storage-plugins;ignored;proprietarized, forked as xcp-ng-xapi-storage | ||
xapi-storage-script;ignored;now in xapi | ||
xcp-networkd;ignored;now in xapi | ||
xcp-rrdd;ignored;now in xapi | ||
xencert;;"automated testkit for certifying storage hardware with XenServer" | ||
xenopsd;ignored;now in xapi | ||
xenserver-release;forked;xcp-ng-release | ||
xenserver-snmp-agent;ignored;proprietary, SNMP MIB | ||
xenserver-telemetry;ignored;proprietary, xapi plugin | ||
xs-clipboardd;ignored;proprietary, replaced by xcp-clipboardd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
table { | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
} | ||
td { | ||
padding: 2px 5px; | ||
/* background-color: lightblue; */ | ||
} | ||
|
||
tr.header { | ||
vertical-align: top; | ||
} | ||
tr.ignored { | ||
color: #888888; | ||
background-color: #cccccc; | ||
} | ||
tr.notused { /* still to check */ | ||
color: red; | ||
background-color: #cccccc; | ||
} | ||
|
||
th.xs { | ||
background-color: #ddddff; | ||
} | ||
th.xcp { | ||
background-color: #ddffdd; | ||
} | ||
|
||
.nosource { | ||
color: red; | ||
background-color: black; | ||
} | ||
|
||
.unexpected { | ||
color: red; | ||
} | ||
|
||
.outdated { | ||
background-color: red; | ||
} | ||
|
||
.uptodate { | ||
background-color: lightgreen; | ||
} | ||
|
||
.upstream { | ||
background-color: #88ffdd; | ||
} | ||
|
||
.better { | ||
background-color: #77cc00; | ||
} |
Oops, something went wrong.