From 2e68ed13a6155af34ff5a76b03b0fd1f5f17d796 Mon Sep 17 00:00:00 2001 From: Travis Reitter Date: Thu, 27 Jun 2013 15:31:03 -0700 Subject: [PATCH] Add namespace and version to libfolks-libsocialweb GIR Bug: https://bugzilla.gnome.org/show_bug.cgi?id=703402 --- backends/libsocialweb/lib/Makefile.am | 1 + backends/libsocialweb/lib/swf-namespace.vala | 30 ++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 backends/libsocialweb/lib/swf-namespace.vala diff --git a/backends/libsocialweb/lib/Makefile.am b/backends/libsocialweb/lib/Makefile.am index eae61e5..a09c8fd 100644 --- a/backends/libsocialweb/lib/Makefile.am +++ b/backends/libsocialweb/lib/Makefile.am @@ -28,6 +28,7 @@ pkgconfig_DATA = $(pkgconfig_in:.in=) libfolks_libsocialweb_la_vala.stamp: folks_libsocialweb_valasources = \ + swf-namespace.vala \ swf-persona.vala \ swf-persona-store.vala \ $(NULL) diff --git a/backends/libsocialweb/lib/swf-namespace.vala b/backends/libsocialweb/lib/swf-namespace.vala new file mode 100644 index 0000000..8d2e9c3 --- /dev/null +++ b/backends/libsocialweb/lib/swf-namespace.vala @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2013 Collabora Ltd. + * + * This library is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 2.1 of the License, or + * (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library. If not, see . + * + * Authors: + * Travis Reitter + */ + +/* + * This file serves as the representation for the FolksTelepathy namespace + * itself (mostly so that we can set its namespace and version attributes for + * GIR) + */ + +[CCode (gir_namespace = "FolksLibsocialweb", gir_version = "0.6")] +namespace Swf +{ +} -- 2.7.4