Neon/Appstream
Duplicated Components
https://build.neon.kde.org/view/mgmt/job/mgmt_appstream-components_bionic_user
Our duplicated component QA tech checks that there aren't likely overlaps between "our" components. Because we stack our appstream data on top of Ubuntu's there is a good chance that KDE software changes the component id between what is in Ubuntu and what is in neon. That's where the automated QA comes in. It checks that likely variants of a name do not appear at the same time.
Each component has an "active" ID and permutations thereof. The active ID is the one we have in our dep11 data of archive.neon.kde.org. Permutations are simply likely alternate IDs this may be available as.
When a possibly duplicate is found something like this is printed in the QA job:
org.kde.kopete also has permutation: kopete.desktop
this means that the "active" ID org.kde.kopete is conceivably the same as the also available ID kopete.desktop.
To determine what to do about this we'll have to look at where the components come from. One option is to look at the raw xml:
With the commands
appstreamcli dump org.kde.kopete
and
appstreamcli dump kopete.desktop
Looking at the raw XML you might notice that one component uses neon domains and the other ubuntu domains.
Alternatively one can grep the underlying data from dep11
zgrep -i 'ID:' /var/lib/app-info/yaml/* |grep kopete
/var/lib/app-info/yaml/archive.neon.kde.org_user_dists_bionic_main_dep11_Components-amd64.yml.gz:ID: org.kde.kopete /var/lib/app-info/yaml/archive.ubuntu.com_ubuntu_dists_bionic_universe_dep11_Components-amd64.yml.gz:ID: kopete.desktop
When you've made sure that the permutation is simply coming from ubuntu the solution is easy: mark the component for removal by our appstream-generator. You'll want to add it to the removed-components.json of https://invent.kde.org/sitter/neon-appstream-extra-metainfo and note that the old name is from ubuntu in the removed-components.md. Also note the README.md in that repo.
Remember |
---|
The neon component ID must be the active ID, if it is not there's another bug that needs looking into! |
If it is not clear why the components appears as duplicates, or where one of the components actually comes from, the problem will need additional investigation by someone who understands appstream.