Conan-Kudo commented on this pull request.


> +#
+# Transform appdata/metainfo xml file into RPM appstream(filename) provides
+#
+# Author: Michael Schroeder <m...@suse.de>
+# Based on other provides scripts from RPM
+
+OLD_IFS="$IFS"
+while read instfile ; do
+       case "$instfile" in
+       *.appdata.xml)
+               echo "appstream()"
+               echo "appstream(${instfile##*/appdata/})"
+               ;;
+       *.metainfo.xml)
+               echo "appstream()"
+               echo "appstream(${instfile##*/metainfo/})"

`*.metainfo.xml` is being used for everything now. You can see this in new KDE 
AppStream files, and GNOME ones as well. They aren't called `*.appdata.xml` 
anymore.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/98
_______________________________________________
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint

Reply via email to