[libgda] Vala: changing documentation package name to camel case name



commit 0802883968583c7bcecc3af6c63f6331562a1f85
Author: Daniel Espinosa <esodan gmail com>
Date:   Wed Aug 1 21:54:51 2018 -0500

    Vala: changing documentation package name to camel case name

 .gitlab-ci.yml    |  4 ++--
 doc/index.html.in |  4 ++--
 doc/meson.build   | 10 +++++-----
 3 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3e1ef7e37..43d8085fa 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -88,8 +88,8 @@ pages:
   - mkdir ../public/C
   - mv doc/C/* ../public/C/
   - mkdir ../public/vala
-  - mv doc/vala/libgda-6.0 ../public/vala
-  - mv doc/valaui/libgdaui-6.0 ../public/vala
+  - mv doc/Gda-6.0 ../public/vala
+  - mv doc/Gdaui-6.0 ../public/vala
   - cp libgda/libgda-6.0.vapi ../public/vala
   - cp libgda-ui/libgdaui-6.0.vapi ../public/vala
   artifacts:
diff --git a/doc/index.html.in b/doc/index.html.in
index 55700f84d..f99cab8c6 100644
--- a/doc/index.html.in
+++ b/doc/index.html.in
@@ -5,8 +5,8 @@
     <h2>C API</h2>
     <p>GDA is written in C, checkout API <a href="C">documentation</a></p>
     <h2>Vala API</h2>
-    <p>GDA has GObject Introspection support, <a href="vala/libgda-@GDA_API_VERSION@.vapi">Vala Bindings</a> 
and <a href="vala/libgda-@GDA_API_VERSION@/index.htm">Vala Bindings Documentation</a></p>
+    <p>GDA has GObject Introspection support, <a href="vala/libgda-@GDA_API_VERSION@.vapi">Vala Bindings</a> 
and <a href="vala/Gda-@GDA_API_VERSION@/index.htm">Vala Bindings Documentation</a></p>
     <h2>GTK+ Widgets Vala API</h2>
-    <p>GDA provides a set of GTK+ widgets you can use in your application, <a 
href="vala/libgdaui-@GDA_API_VERSION@.vapi">Vala Bindings</a> and <a 
href="vala/libgdaui-@GDA_API_VERSION@/index.htm">Vala Bindings Documentation</a></p>
+    <p>GDA provides a set of GTK+ widgets you can use in your application, <a 
href="vala/libgdaui-@GDA_API_VERSION@.vapi">Vala Bindings</a> and <a 
href="vala/Gdaui-@GDA_API_VERSION@/index.htm">Vala Bindings Documentation</a></p>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/meson.build b/doc/meson.build
index 01505018e..fe3882747 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -18,13 +18,13 @@ if valadoc.found()
                        '--metadatadir='+join_paths(meson.source_root(),'libgda'),
                        '--vapidir='+join_paths(meson.build_root(),'libgda'),
                        '--package-version='+project_version,
-                       '--package-name='+'libgda-'+project_api_version,
+                       '--package-name='+'Gda-'+project_api_version,
                        '--doclet=devhelp',
                        '-o', '@OUTPUT@',
                        '@INPUT@'
                        ],
                input: libgda_vapi,
-               output: 'vala',
+               output: 'Gda-'+project_api_version,
                build_by_default: true,
                install: true,
                install_dir: join_paths (get_option ('datadir'), 'devhelp','books'),
@@ -42,13 +42,13 @@ if valadoc.found()
                        '--vapidir='+join_paths(meson.build_root(),'libgda'),
                        '--vapidir='+join_paths(meson.build_root(),'libgda-ui'),
                        '--package-version='+project_version,
-                       '--package-name='+'libgdaui-'+project_api_version,
+                       '--package-name='+'Gdaui-'+project_api_version,
                        '--doclet=devhelp',
-                       '-o', '@OUTPUT@',
+                       '-o', meson.current_build_dir(),
                        '@INPUT@'
                        ],
                input: libgdaui_vapi,
-               output: 'valaui',
+               output: 'Gdaui-'+project_api_version,
                build_by_default: true,
                install: true,
                install_dir: join_paths (get_option ('datadir'), 'devhelp','books'),


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]