source: postlfs/security/gpgme.xml@ 782bd40d

12.1 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18
Last change on this file since 782bd40d was 782bd40d, checked in by Xi Ruoyao <xry111@…>, 10 months ago

gpgme: --disable-gpg-test is an option, not a command

  • Property mode set to 100644
File size: 9.7 KB
RevLine 
[b358845]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[8dfc5c3]7 <!ENTITY gpgme-download-http "&gnupg-http;/gpgme/gpgme-&gpgme-version;.tar.bz2">
[d4e8cd93]8 <!ENTITY gpgme-download-ftp "&gnupg-ftp;/gpgme/gpgme-&gpgme-version;.tar.bz2">
[14d673a2]9 <!ENTITY gpgme-download-ftp " ">
[c226321]10 <!ENTITY gpgme-md5sum "828b8a1f9992826d7ad43741b349db01">
11 <!ENTITY gpgme-size "1.6 MB">
12 <!ENTITY gpgme-buildsize "307 MB (with tests)">
13 <!ENTITY gpgme-time "1.6 SBU (with all bindings and tests; with parallelism=4)">
[b358845]14]>
15
16<sect1 id="gpgme" xreflabel="GPGME-&gpgme-version;">
17 <?dbhtml filename="gpgme.html"?>
18
19
20 <title>GPGME-&gpgme-version;</title>
21
22 <indexterm zone="gpgme">
23 <primary sortas="a-GPGME">GPGME</primary>
24 </indexterm>
25
26 <sect2 role="package">
27 <title>Introduction to GPGME</title>
28
[d6da5da]29 <para>
[200bab29]30 The <application>GPGME</application> package is a C library
[bbacc9a]31 that allows cryptography support to be added to a
[d6da5da]32 program. It is designed to make access to public key crypto
33 engines like <application>GnuPG</application> or GpgSM easier
34 for applications. <application>GPGME</application> provides
35 a high-level crypto API for encryption, decryption, signing,
36 signature verification and key management.
37 </para>
[b358845]38
[fbd04125]39 &lfs120_checked;
[b358845]40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
[d6da5da]44 <para>
45 Download (HTTP): <ulink url="&gpgme-download-http;"/>
46 </para>
[b358845]47 </listitem>
48 <listitem>
[d6da5da]49 <para>
50 Download (FTP): <ulink url="&gpgme-download-ftp;"/>
51 </para>
[b358845]52 </listitem>
53 <listitem>
[d6da5da]54 <para>
55 Download MD5 sum: &gpgme-md5sum;
56 </para>
[b358845]57 </listitem>
58 <listitem>
[d6da5da]59 <para>
60 Download size: &gpgme-size;
61 </para>
[b358845]62 </listitem>
63 <listitem>
[d6da5da]64 <para>
65 Estimated disk space required: &gpgme-buildsize;
66 </para>
[b358845]67 </listitem>
68 <listitem>
[d6da5da]69 <para>
70 Estimated build time: &gpgme-time;
71 </para>
[b358845]72 </listitem>
73 </itemizedlist>
[e1d06c0]74<!--
[367cbd0]75 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
76 <itemizedlist spacing="compact">
77 <listitem>
78 <para>
79 Recommended patch (required if SWIG is installed):
80 <ulink url="&patch-root;/gpgme-&gpgme-version;-gpg_error_1_46-1.patch"/>
81 </para>
82 </listitem>
83 </itemizedlist>
[e1d06c0]84-->
[b358845]85 <bridgehead renderas="sect3">GPGME Dependencies</bridgehead>
86
87 <bridgehead renderas="sect4">Required</bridgehead>
[d6da5da]88 <para role="required">
89 <xref linkend="libassuan"/>
90 </para>
[b358845]91
92 <bridgehead renderas="sect4">Optional</bridgehead>
[289d262f]93 <para role="optional">
[33690a1]94 <xref linkend="doxygen"/> and
[cd074c2]95 <xref linkend="graphviz"/> (for API documentation),
[33690a1]96 <xref linkend="gnupg2"/> (required if Qt or SWIG are installed;
[48771ae]97 used during the test suite),
[33690a1]98 <xref linkend="clisp"/>,<!--
99gpgme can still use python 2.7, but can use python3 as well,
100so do not advertise python2
101 <xref linkend="python2"/>,-->
[c226321]102 &qt5-deps;, and
[30d6b736]103 <xref linkend="swig"/> (for language bindings)
[d6da5da]104 </para>
[b358845]105
106 </sect2>
107
108 <sect2 role="installation">
109 <title>Installation of GPGME</title>
110
[d6da5da]111 <para>
112 Install <application>GPGME</application> by running the following
113 commands:
114 </para>
[c226321]115<!--gpgme 1.22 FTBFS when building in tree. Upstream thinks building
116 should be done out of tree, but this is not in the doc yet
117 https://github.com/gpg/gpgme/commit/24a8c279da98fe7e586a9fc3cd91175c9e60ffef
118 -->
119<screen><userinput>mkdir build &amp;&amp;
120cd build &amp;&amp;
121
122../configure --prefix=/usr --disable-gpg-test &amp;&amp;
[c3ad4c38]123make PYTHONS=</userinput></screen>
124
125 <para>
126 If <xref linkend='swig'/> is installed, build the Python 3 binding as
127 a wheel:
128 </para>
129
130<screen><userinput>if swig -version > /dev/null; then
131 srcdir=$PWD/../lang/python \
132 top_builddir=$PWD \
133 pip3 wheel -w dist --no-build-isolation --no-deps --no-cache-dir \
134 $PWD/lang/python
135fi</userinput></screen>
[150992ab]136
[d6da5da]137 <para>
[14f0ab29]138 To test the results, you should have <xref linkend="gnupg2"/> installed
[782bd40d]139 and remove the <option>--disable-gpg-test</option> above. If
[c3ad4c38]140 <xref linkend='swig'/> is installed, it's necessary to adapt the
141 test suite to use the Python 3 binding just built as a wheel as well.
142 Issue:
[d6da5da]143 </para>
[b358845]144
[c3ad4c38]145<screen remap='test'><userinput>if swig -version > /dev/null; then
146 python3 -m venv testenv &amp;&amp;
147 testenv/bin/pip3 install --no-index --find-links=dist --no-cache-dir \
148 gpg &amp;&amp;
149 sed '/PYTHON/s#run-tests.py#&amp; --python-libdir=/dev/null#' \
150 -i lang/python/tests/Makefile
151fi &amp;&amp;
152
153make -k check PYTHONS= PYTHON=$PWD/testenv/bin/python3</userinput></screen>
154
[d6da5da]155 <para>
156 Now, as the <systemitem class="username">root</systemitem> user:
157 </para>
[b358845]158
[c3ad4c38]159<screen role="root"><userinput>make install PYTHONS=</userinput></screen>
160
161 <para>
162 If <xref linkend='swig'/> is installed, still as the &root; user,
163 install the Python 3 binding:
164 </para>
165
166<screen role="root"><userinput>if swig -version > /dev/null; then
167 pip3 install --no-index --find-links=dist --no-cache-dir --no-user gpg
168fi</userinput></screen>
[b358845]169
170 </sect2>
[f7ac7b2]171
[14f0ab29]172 <sect2 role="commands">
173 <title>Command Explanations</title>
174
175 <para>
176 <parameter>--disable-gpg-test</parameter>: if this parameter is not
177 passed to configure, the test programs are built during
178 <command>make</command> stage, which requires <xref linkend="gnupg2"/>.
179 This parameter is not needed if <xref linkend="gnupg2"/> is installed.
180 </para>
181
[c3ad4c38]182 <para>
183 <parameter>PYTHONS=</parameter>: Disable building Python binding
184 using the deprecated <command>python3 setup.py build</command>
185 command. The explicit instruction to build the Python 3 binding with
186 the <command>pip3 wheel</command> command is provided.
187 </para>
188
[14f0ab29]189 </sect2>
190
[b358845]191 <sect2 role="content">
192 <title>Contents</title>
193
194 <segmentedlist>
195 <segtitle>Installed Program</segtitle>
196 <segtitle>Installed Libraries</segtitle>
197 <segtitle>Installed Directory</segtitle>
198
199 <seglistitem>
[d6da5da]200 <seg>
[b3285de]201 gpgme-json, and gpgme-tool
[d6da5da]202 </seg>
203 <seg>
[c226321]204 libgpgme.so, libgpgmepp.so, and libqgpgme.so
[d6da5da]205 </seg>
206 <seg>
[cd074c2]207 /usr/include/{gpgme++,qgpgme,QGpgME},
208 /usr/lib/cmake/{Gpgmepp,QGpgme}.
[0425945]209 /usr/lib/python&python3-majorver;/site-packages/gpg{,-&gpgme-version;.dist-info}, and
[d6da5da]210 /usr/share/common-lisp/source/gpgme
211 </seg>
[b358845]212 </seglistitem>
213 </segmentedlist>
214
215 <variablelist>
216 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
217 <?dbfo list-presentation="list"?>
218 <?dbhtml list-presentation="table"?>
219
[cd074c2]220 <varlistentry id="gpgme-json">
221 <term><command>gpgme-json</command></term>
222 <listitem>
223 <para>
[4c24eb0a]224 outputs <application>GPGME</application> commands in JSON format
[cd074c2]225 </para>
226 <indexterm zone="gpgme gpgme-json">
227 <primary sortas="b-gpgme-json">gpgme-json</primary>
228 </indexterm>
229 </listitem>
230 </varlistentry>
231
[150992ab]232 <varlistentry id="gpgme-tool">
233 <term><command>gpgme-tool</command></term>
234 <listitem>
235 <para>
[d5f6e8e]236 is an assuan server exposing <application>GPGME</application>
237 operations, such as printing fingerprints and keyids with
[4c24eb0a]238 keyservers
[150992ab]239 </para>
240 <indexterm zone="gpgme gpgme-tool">
241 <primary sortas="b-gpgme-tool">gpgme-tool</primary>
242 </indexterm>
243 </listitem>
244 </varlistentry>
245
[cd074c2]246 <!-- As of 1.13.1, this library isn't present anymore.
[b358845]247 <varlistentry id="libgpgme-pthread">
[d6da5da]248 <term><filename class="libraryfile">libgpgme-pthread.so</filename></term>
[b358845]249 <listitem>
[d6da5da]250 <para>
251 contains the <application>GPGME</application> API functions for
252 applications using pthread.
253 </para>
[b358845]254 <indexterm zone="gpgme libgpgme-pthread">
[d6da5da]255 <primary sortas="c-libgpgme-pthread">libgpgme-pthread.so</primary>
[b358845]256 </indexterm>
257 </listitem>
258 </varlistentry>
[cd074c2]259 -->
[b358845]260
261 <varlistentry id="libgpgme">
[d6da5da]262 <term><filename class="libraryfile">libgpgme.so</filename></term>
[b358845]263 <listitem>
[d6da5da]264 <para>
[4c24eb0a]265 contains the <application>GPGME</application> API functions
[d6da5da]266 </para>
[b358845]267 <indexterm zone="gpgme libgpgme">
[d6da5da]268 <primary sortas="c-libgpgme">libgpgme.so</primary>
[b358845]269 </indexterm>
270 </listitem>
271 </varlistentry>
272
[48ad7d9]273 <varlistentry id="libgpgmepp">
274 <term><filename class="libraryfile">libgpgmepp.so</filename></term>
275 <listitem>
276 <para>
[4c24eb0a]277 contains the C++ <application>GPGME</application> API functions
[48ad7d9]278 </para>
279 <indexterm zone="gpgme libgpgmepp">
280 <primary sortas="c-libgpgmepp">libgpgmepp.so</primary>
281 </indexterm>
282 </listitem>
283 </varlistentry>
284
[cd074c2]285 <varlistentry id="libqgpgme">
286 <term><filename class="libraryfile">libqgpgme.so</filename></term>
287 <listitem>
288 <para>
289 contains API functions for handling GPG operations in
[4c24eb0a]290 <application>Qt</application> applications
[cd074c2]291 </para>
292 <indexterm zone="gpgme libqgpgme">
293 <primary sortas="c-libqgpgme">libqgpgme.so</primary>
294 </indexterm>
295 </listitem>
296 </varlistentry>
297
[b358845]298 </variablelist>
299
300 </sect2>
301
302</sect1>
Note: See TracBrowser for help on using the repository browser.