|
* "doc" is a typo; should be "docs".
* otter-browser is no longer available. It may be added back at some
point.
* there is no openjdk8-jdk, only openjdk8-jre and openjdk. Since this is
in the programming section I assume they want the whole JDK and not
just the runtime environment.
Script used to find issues:
$ awk -F '\t' '$2 {print $2}' ui/qt5/resources/packages.txt | sort -u > packages_want
$ apk search -qx $(cat packages_want) | sort -u > packages_have
$ comm -23 packages_want packages_have
doc
openjdk8-jdk
otter-browser
This only checked against x86_64 but I think these should all be
available for all arches.
|