~ubuntu-branches/ubuntu/wily/gnome-software/wily-proposed

« back to all changes in this revision

Viewing changes to src/plugins/gs-plugin-dummy.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2015-07-22 00:03:04 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20150722000304-ctnkwytku720qft7
Tags: 3.16.4-1
* New upstream release.
* Update Build-Depends as per configure.ac:
  - Add appstream-util.
  - Add libpolkit-gobject-1-dev.
  - Bump libappstream-glib-dev to (>= 0.3.4).
  - Bump libgtk-3-dev to (>= 3.16).
* Drop hard-coded dependency on libappstream-glib7 now that the library
  provides a symbols file.
* Use dh_install's exclude (-X) functionality to not install the .a and .la
  files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
        gs_app_set_kind (app, GS_APP_KIND_NORMAL);
99
99
        gs_app_set_id_kind (app, AS_ID_KIND_DESKTOP);
100
100
        gs_plugin_add_app (list, app);
 
101
        g_object_unref (app);
101
102
 
102
103
        /* add an OS update */
103
104
        app = gs_app_new ("libvirt-glib-devel;0.0.1;noarch;fedora");
106
107
        gs_app_set_kind (app, GS_APP_KIND_PACKAGE);
107
108
        gs_app_set_id_kind (app, AS_ID_KIND_DESKTOP);
108
109
        gs_plugin_add_app (list, app);
 
110
        g_object_unref (app);
109
111
 
110
112
        /* add a second OS update */
111
113
        app = gs_app_new ("gnome-boxes-libs;0.0.1;i386;updates-testing");
114
116
        gs_app_set_kind (app, GS_APP_KIND_PACKAGE);
115
117
        gs_app_set_id_kind (app, AS_ID_KIND_DESKTOP);
116
118
        gs_plugin_add_app (list, app);
 
119
        g_object_unref (app);
117
120
 
118
121
        return TRUE;
119
122
}