source: networking/netlibs/libsoup3.xml@ 7b6b9e7

11.2 11.3 12.0 12.1 12.2 gimp3 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/for-12.3 xry111/llvm18 xry111/soup3 xry111/spidermonkey128 xry111/xf86-video-removal
Last change on this file since 7b6b9e7 was bf2ef33, checked in by Xi Ruoyao <xry111@…>, 2 years ago

libsoup3: nghttp2 is required

  • Property mode set to 100644
File size: 7.0 KB
Line 
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
7 <!ENTITY libsoup3-download-http
8 "&gnome-download-http;/libsoup/&libsoup3-minor;/libsoup-&libsoup3-version;.tar.xz">
9 <!ENTITY libsoup3-download-ftp
10 "&gnome-download-ftp;/libsoup/&libsoup3-minor;/libsoup-&libsoup3-version;.tar.xz">
11 <!ENTITY libsoup3-md5sum "fdf023fdb560967d6d2d4386d179e473">
12 <!ENTITY libsoup3-size "1.5 MB">
13 <!ENTITY libsoup3-buildsize "19 MB (with tests)">
14 <!ENTITY libsoup3-time "0.2 SBU (Using parallelism=4; with tests)">
15]>
16
17<sect1 id="libsoup3" xreflabel="libsoup-&libsoup3-version;">
18 <?dbhtml filename="libsoup3.html"?>
19
20 <sect1info>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>libsoup-&libsoup3-version;</title>
25
26 <indexterm zone="libsoup3">
27 <primary sortas="a-libsoup3">libsoup3</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to libsoup3</title>
32
33 <para>
34 The <application>libsoup3</application> is a HTTP client/server library for
35 <application>GNOME</application>. It uses GObject and the GLib main loop
36 to integrate with <application>GNOME</application> applications and
37 it also has an asynchronous API for use in threaded applications.
38 </para>
39
40 &lfs111_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&libsoup3-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&libsoup3-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &libsoup3-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &libsoup3-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &libsoup3-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &libsoup3-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75<!--
76 <warning>
77 <para>
78 You may have noticed newer libsoup releases versioned 3.x.y is
79 available. However, currently some downstream packages support
80 libsoup-3.x, while the others do not. Installing libsoup-3.x into
81 BLFS is known to cause troubles, even if both libsoup-2.x and 3.x
82 are installed. So, do <emphasis role='bold'>not</emphasis> install
83 libsoup-3.x into BLFS unless you know what you are doing. We plan
84 to keep using libsoup-2.x for BLFS until GNOME-43 release.
85 </para>
86 </warning>
87-->
88 <bridgehead renderas="sect3">libsoup3 Dependencies</bridgehead>
89
90 <bridgehead renderas="sect4">Required</bridgehead>
91 <para role="required">
92 <xref linkend="glib-networking"/>,
93 <xref linkend="libpsl"/>,
94 <xref linkend="libxml2"/>,
95 <xref linkend="nghttp2"/>, and
96 <xref linkend="sqlite"/>
97 </para>
98
99 <bridgehead renderas="sect4">Recommended</bridgehead>
100 <para role="recommended">
101 <xref linkend="gobject-introspection"/> and
102 <xref linkend="vala"/>
103 </para>
104
105 <bridgehead renderas="sect4">Optional</bridgehead>
106 <para role="optional">
107 <xref linkend="apache"/> (required to run the test suite),
108 <xref linkend="brotli"/>,
109 <xref linkend="curl"/> (required to run the test suite),
110 <xref linkend="sysprof"/> (for profiling),
111 <xref linkend="mitkrb"/> (required to run the test suite),
112 <xref linkend="gtk-doc"/>,
113 <!-- It seems that XMLRPC is part of PHP 5.4.10 -->
114 <xref linkend="php"/> compiled with XMLRPC-EPI
115 support (only used for the XMLRPC regression tests), and
116 <xref linkend="samba"/> (ntlm_auth is required to run the test suite)
117 </para>
118
119 <para condition="html" role="usernotes">
120 User Notes: <ulink url="&blfs-wiki;/libsoup3"/>
121 </para>
122 </sect2>
123
124 <sect2 role="installation">
125 <title>Installation of libsoup3</title>
126
127 <para>
128 Install <application>libsoup3</application> by running the following
129 commands:
130 </para>
131
132<screen><userinput>mkdir build &amp;&amp;
133cd build &amp;&amp;
134
135meson --prefix=/usr \
136 --buildtype=release \
137 -Dvapi=enabled \
138 -Dgssapi=disabled \
139 -Dsysprof=disabled \
140 .. &amp;&amp;
141ninja</userinput></screen>
142
143 <para>
144 To test the results, issue: <command>ninja test</command>.
145 </para>
146
147 <para>
148 Now, as the <systemitem class="username">root</systemitem> user:
149 </para>
150
151<screen role="root"><userinput>ninja install</userinput></screen>
152
153 </sect2>
154
155 <sect2 role="commands">
156 <title>Command Explanations</title>
157
158 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
159 href="../../xincludes/meson-buildtype-release.xml"/>
160
161 <para>
162 <option>-Dvapi=disabled</option>: Use this if you have not installed
163 <application>Vala</application>, e.g. because you are not building
164 <application>GNOME</application>.
165 </para>
166
167 <para>
168 <option>-Ddoc=enabled</option>: Use this option if you want to build
169 the documentation. Note that you must have <xref linkend="gtk-doc"/> installed.
170 </para>
171
172 <para>
173 <parameter>-Dgssapi=disabled</parameter>: libsoup3 defaults to building with GSSAPI support,
174 which requires Kerberos (as does the test suite).
175 </para>
176
177 <para>
178 <parameter>-Dsysprof=disabled</parameter>: libsoup3 will automatically download
179 a git version of <xref linkend="sysprof"/> if git is available or use the installed
180 version if available. If you need profiling, remove this option.
181 </para>
182
183 </sect2>
184
185 <sect2 role="content">
186 <title>Contents</title>
187
188 <segmentedlist>
189 <segtitle>Installed Programs</segtitle>
190 <segtitle>Installed Libraries</segtitle>
191 <segtitle>Installed Directories</segtitle>
192
193 <seglistitem>
194 <seg>
195 None
196 </seg>
197 <seg>
198 libsoup-3.0.so
199 </seg>
200 <seg>
201 /usr/include/libsoup-3.0,
202 /usr/share/gtk-doc/html/libsoup-3.0 (only installed if -Ddoc=true is passed)
203 </seg>
204 </seglistitem>
205 </segmentedlist>
206
207 <variablelist>
208 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
209 <?dbfo list-presentation="list"?>
210 <?dbhtml list-presentation="table"?>
211
212 <varlistentry id="libsoup-3">
213 <term><filename class="libraryfile">libsoup-3.0.so</filename></term>
214 <listitem>
215 <para>
216 provides functions for asynchronous HTTP connections
217 </para>
218 <indexterm zone="libsoup libsoup-3">
219 <primary sortas="c-libsoup-3">libsoup-3.0.so</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223
224 </variablelist>
225
226 </sect2>
227
228</sect1>
Note: See TracBrowser for help on using the repository browser.