File: packaging.xml

package info (click to toggle)
libgda5 5.2.10-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 76,168 kB
  • sloc: ansic: 495,319; xml: 10,486; yacc: 5,165; sh: 4,451; makefile: 4,095; php: 1,416; java: 1,300; javascript: 1,298; python: 896; sql: 879; perl: 116
file content (298 lines) | stat: -rw-r--r-- 8,733 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<?xml version="1.0"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
          "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"[
<!ENTITY LIBGDA          "<application>Libgda</application>">
]>
<chapter id="libgda-packaging">
  <title>Packaging &LIBGDA;</title>
  <para>
    &LIBGDA; is made of several components and it installs a lot of
    files. This section gives hints as to how &LIBGDA; can be packaged, clearly
    separating the components so that packagers have a good overview, and can create
    the packages with a good understanding.
  </para>
  <sect1>
    <title>Overview of the components</title>
    <para>
      &LIBGDA;'s components are:
      <itemizedlist>
	<listitem>
	  <para>the runtime files (shared libraries and configuration files)
	  </para>
	</listitem>
	<listitem>
	  <para>the GObject introspection files (to be used by the GObject introspection framework)
	  </para>
	</listitem>
	<listitem>
	  <para>the tools, which require the runtime component
	  </para>
	</listitem>
	<listitem>
	  <para>the database providers which are the "drivers" to each database type, which also require
	    the runtime component
	  </para>
	</listitem>
	<listitem>
	  <para>the development files (the includes to compile C programs)
	  </para>
	</listitem>
	<listitem>
	  <para>the documentation files
	  </para>
	</listitem>
	<listitem>
	  <para>the localization files
	  </para>
	</listitem>
      </itemizedlist>
    </para>
  </sect1>

  <sect1>
    <title>Runtime component</title>
    <para>
      This component is the base component for Libgda, required by any application which uses &LIBGDA;,
      it contains the following files (located under the installation directory):
      <programlisting>
.
|-- bin
|   |-- gda_trml2html
|   |   |-- __init__.py
|   |   |-- trml2html.py
|   |   `-- utils.py
|   `-- gda_trml2pdf
|       |-- __init__.py
|       |-- color.py
|       |-- trml2pdf.py
|       `-- utils.py
|-- etc
|   `-- libgda-5.0
|       |-- config
|       `-- sales_test.db
|-- lib
|   |-- libgda-5.0.so -> libgda-5.0.so.4.1.0
|   |-- libgda-5.0.so.4 -> libgda-5.0.so.4.1.0
|   |-- libgda-5.0.so.4.1.0
|   |-- libgda-report-5.0.so -> libgda-report-5.0.so.4.1.0
|   |-- libgda-report-5.0.so.4 -> libgda-report-5.0.so.4.1.0
|   |-- libgda-report-5.0.so.4.1.0
|   |-- libgda-xslt-5.0.so -> libgda-xslt-5.0.so.4.1.0
|   |-- libgda-xslt-5.0.so.4 -> libgda-xslt-5.0.so.4.1.0
|   |-- libgda-xslt-5.0.so.4.1.0
`-- share
    `-- libgda-5.0
        |-- dtd
        |   |-- libgda-array.dtd
        |   |-- libgda-paramlist.dtd
        |   `-- libgda-server-operation.dtd
        |-- import_encodings.xml
        `-- information_schema.xml
      </programlisting>
    </para>
    <para>
      This component should be made dependent on the core libraries &LIBGDA; depends on such as GLib, LibXML and LibXSLT.
      Also, if &LIBGDA; was compiled using a system installed SQLite, then a dependency also needs to be added to SQLite
      (otherwise &LIBGDA; uses its own embedded version of SQLite, and no dependency needs to be defined on SQLite).
    </para>
    <para>
      Note that the file in the <filename class="directory">bin</filename> directory are used by the
      report library and have to be shipped with it.
    </para>
  </sect1>

  <sect1>
    <title>GObject introspection</title>
    <para>
      If GObject introspection has been compiled, &LIBGDA;'s introspection files are:
      <programlisting>
|-- share
|   `-- gir-1.0
|       `-- Gda-5.0.gir
`-- lib
    `-- girepository-1.0
        `-- Gda-5.0.typelib
      </programlisting>
    </para>
  </sect1>

  <sect1>
    <title>Tools</title>
    <para>
      &LIBGDA;'s offers several tools, the most useful being an SQL console which allows one to issue SQL statement
      from the command line. This component has the following files:
    </para>
    <sect2>
      <title>Diagnostic tools</title>
      <para>
	The diagnostic tools are useful to test connections. This component has the following files:
	<programlisting>
.
`-- bin
    |-- gda-list-config -> gda-list-config-5.0
    |-- gda-list-config-5.0
    |-- gda-list-jdbc-providers-5.0
    |-- gda-list-server-op -> gda-list-server-op-5.0
    |-- gda-list-server-op-5.0
    `-- gda-test-connection-5.0
      </programlisting>
      </para>
      <para>
	This component should be made dependent on the runtime component.
      </para>
    </sect2>
    <sect2>
      <title>SQL console</title>
      <para>
	<programlisting>
.
|-- bin
|   `-- gda-sql-5.0
 `-- share
    |-- gnome
    |   `-- help
    |       `-- gda-sql
    |           |-- C
    |           `[ยทยทยท]
    |-- libgda-5.0
    |   `-- web
    |       |-- cnc.js
    |       |-- gda-print.css
    |       |-- gda.css
    |       |-- irb.css
    |       |-- irb.js
    |       |-- jquery.js
    |       |-- md5.js
    |       |-- mouseapp_2.js
    |       `-- mouseirb_2.js
    `-- man
        `-- man1
            |-- gda-sql-5.0.1
            `-- gda-sql.1 -> gda-sql-5.0.1
	</programlisting>
      </para>
      <para>
	This component should be made dependent on the runtime component.
      </para>
    </sect2>
  </sect1>

  <sect1>
    <title>Database providers</title>
    <para>
      Each database provider is composed of a shared library (loaded at runtime) and some configuration files,
      which are prefixed with the provider name. Also note that each provider comes with a PKG-CONFIG .pc file
      which allows one to check if a provider is installed (it does not, like most of the .pc files, define
      any CFLAGS or LIBS), and it's wise to include them in each provider's component.
    </para>

    <sect2>
      <title>'Generic' provider</title>
      <para>
	Most of the providers are 'generic' as they have the same files structure, here for example 
	the PostgreSQL provider's file are:
	<programlisting>
.
|-- lib
|   |-- libgda-5.0
|   |   `-- providers
|   |       `-- libgda-postgres.so
|   `-- pkgconfig
|       `-- libgda-postgres-5.0.pc
 `-- share
    `-- libgda-5.0
        |-- postgres_specs_add_column.xml
        |-- postgres_specs_create_db.xml
        |-- postgres_specs_create_index.xml
        |-- postgres_specs_create_table.xml
        |-- postgres_specs_create_view.xml
        |-- postgres_specs_drop_column.xml
        |-- postgres_specs_drop_db.xml
        |-- postgres_specs_drop_index.xml
        |-- postgres_specs_drop_table.xml
        |-- postgres_specs_drop_view.xml
        |-- postgres_specs_dsn.xml
        `-- postgres_specs_rename_table.xml
	</programlisting>
      </para>
    <para>
      This kind of component should be made dependent on the database's library which is used,
      such as LibPQ for PostgreSQL, and also on &LIBGDA;'s runtime component.
    </para>
    </sect2>

    <sect2>
      <title>The SQLite provider</title>
      <para>
	The SQLite provider uses the same files layout as the 'generic' provider, but there is no need to
	add a dependency on SQLite itself.
      </para>
    </sect2>

    <sect2>
      <title>The JDBC provider</title>
      <para>
	The JDBC provider allows one to access database through its JDBC driver, using the Java Native Interface
	(JNI), and a Java virtual machine runtime. The files to include in this component are:
	<programlisting>
.
|-- lib
|   |-- libgda-5.0
|   |   `-- providers
|   |       |-- gdaprovider-5.0.jar
|   |       `-- libgda-jdbc.so
|   `-- pkgconfig
|       `-- libgda-jdbc-5.0.pc
 `-- share
    `-- libgda-5.0
        |-- jdbc_specs_create_table.xml
        `-- jdbc_specs_dsn.xml
	</programlisting>
      </para>
    <para>
      This component should be made dependent on the Java virtual machine.
    </para>
    </sect2>
  </sect1>

  <sect1>
    <title>Development files</title>
    <para>
      The development files are the include files needed to compile C programs, the PKG-CONFIG .pc files and
      the static libraries.
      <programlisting>
|-- include
|   `-- libgda-5.0
|     [... except the libgdaui/ directory ...]
`-- lib
    |-- libgda-5.0
    |-- libgda-5.0.a
    |-- libgda-5.0.la
    |-- libgda-report-5.0.a
    |-- libgda-report-5.0.la
    |-- libgda-xslt-5.0.a
    |-- libgda-xslt-5.0.la
    `-- pkgconfig
        |-- libgda-5.0.pc
        |-- libgda-report-5.0.pc
        `-- libgda-xslt-5.0.pc
      </programlisting>
    </para>
  </sect1>

  <sect1>
    <title>Documentation</title>
    <para>
      The documentation is located in the <filename class="directory">share/gtk-doc/html</filename> directory.
    </para>
  </sect1>

  <sect1>
    <title>Localization</title>
    <para>
      The translation files are located in the <filename class="directory">share/locale</filename> directory.
    </para>
  </sect1>

</chapter>