summaryrefslogtreecommitdiff
path: root/ui/qt5/resources/packages.txt
AgeCommit message (Collapse)AuthorFilesLines
2020-06-19Qt UI: Fix a few issues in the custom packages listMax Rees1-3/+2
* "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.
2019-12-14Qt UI: Implement custom package selectionA. Wilcox1-0/+62