summaryrefslogtreecommitdiff
path: root/libappstream-glib/as-app.h
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2016-08-22 14:12:14 +0100
committerRichard Hughes <richard@hughsie.com>2016-08-22 14:19:12 +0100
commite83da4ad01e6eaa50b45124706ef9f6b31bcd071 (patch)
tree27cc8aa655510e9a945b8df776f5827db7eedec8 /libappstream-glib/as-app.h
parent47bdeafc778ed1d83bef46ce50963c5513a6cd2d (diff)
downloadappstream-glib-e83da4ad01e6eaa50b45124706ef9f6b31bcd071.tar.gz
Remove the inf parsing from appstream-glib
I don't want to maintain this large chunk of complex code in the main library, especially as it's basically unused except for the validation of .cab files. The latter has a python implmentation as used on the LVFS, so it's really just dead code now. Move the (unused) implementation to libginf for archival, but leave stubs in to avoid upsetting the API/ABI checkers. We can remove the symbols when we next break soname.
Diffstat (limited to 'libappstream-glib/as-app.h')
-rw-r--r--libappstream-glib/as-app.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libappstream-glib/as-app.h b/libappstream-glib/as-app.h
index 01fa789..bb21512 100644
--- a/libappstream-glib/as-app.h
+++ b/libappstream-glib/as-app.h
@@ -264,12 +264,12 @@ typedef enum {
* The source kind.
**/
typedef enum {
- AS_APP_SOURCE_KIND_UNKNOWN, /* Since: 0.1.4 */
- AS_APP_SOURCE_KIND_APPSTREAM, /* Since: 0.1.4 */
- AS_APP_SOURCE_KIND_DESKTOP, /* Since: 0.1.4 */
- AS_APP_SOURCE_KIND_APPDATA, /* Since: 0.1.4 */
- AS_APP_SOURCE_KIND_METAINFO, /* Since: 0.1.7 */
- AS_APP_SOURCE_KIND_INF, /* Since: 0.3.5 */
+ AS_APP_SOURCE_KIND_UNKNOWN, /* Since: 0.1.4 */
+ AS_APP_SOURCE_KIND_APPSTREAM, /* Since: 0.1.4 */
+ AS_APP_SOURCE_KIND_DESKTOP, /* Since: 0.1.4 */
+ AS_APP_SOURCE_KIND_APPDATA, /* Since: 0.1.4 */
+ AS_APP_SOURCE_KIND_METAINFO, /* Since: 0.1.7 */
+ AS_APP_SOURCE_KIND_INF, /* Since: 0.3.5 (deprecated 0.6.2) */
/*< private >*/
AS_APP_SOURCE_KIND_LAST
} AsAppSourceKind;