source: general/prog/python-dependencies/msgpack.xml@ b2787106

12.1 ken/TL2024 lazarus rahul/power-profiles-daemon trunk xry111/llvm18
Last change on this file since b2787106 was ab4fdfc, checked in by Pierre Labastie <pierre.labastie@…>, 5 months ago

Change all xml decl to encoding=utf-8

  • Property mode set to 100644
File size: 3.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE sect2 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 msgpack-download-http "https://files.pythonhosted.org/packages/source/m/msgpack/msgpack-&msgpack-version;.tar.gz">
8 <!ENTITY msgpack-download-ftp " ">
9 <!ENTITY msgpack-md5sum "&msgpack-md5sum;">
10 <!ENTITY msgpack-size "126 KB">
11 <!ENTITY msgpack-buildsize "1.9 MB (add 0.3 MB for tests)">
12 <!ENTITY msgpack-time "less than 0.1 SBU">
13]>
14
15 <sect2 id="msgpack" xreflabel="msgpack-&msgpack-version;">
16
17 <title>Msgpack-&msgpack-version;</title>
18
19 <indexterm zone="msgpack">
20 <primary sortas="a-msgpack">msgpack</primary>
21 </indexterm>
22
23 <sect3 role="package">
24 <title>Introduction to Msgpack Module</title>
25
26 <para>
27 <application>Msgpack</application> is an efficient binary
28 serialization format. It lets you exchange data among multiple
29 languages like JSON. But it's faster and smaller. This package
30 provides CPython bindings for reading and writing Msgpack data.
31 </para>
32
33 &lfs120_checked;
34
35 <bridgehead renderas="sect4">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>
39 Download (HTTP): <ulink url="&msgpack-download-http;"/>
40 </para>
41 </listitem>
42 <listitem>
43 <para>
44 Download (FTP): <ulink url="&msgpack-download-ftp;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download MD5 sum: &msgpack-md5sum;
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download size: &msgpack-size;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Estimated disk space required: &msgpack-buildsize;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated build time: &msgpack-time;
65 </para>
66 </listitem>
67 </itemizedlist>
68
69 <bridgehead renderas="sect4">Msgpack Dependencies</bridgehead>
70
71 <bridgehead renderas="sect5">Required</bridgehead>
72 <para role="required">
73 <xref linkend="cython"/> and
74 <xref linkend="setuptools_scm"/>
75 </para>
76
77 <bridgehead renderas="sect5">Optional (for testing)</bridgehead>
78 <para role="optional">
79 <xref linkend="pluggy"/> and
80 <xref linkend="pytest"/>
81 </para>
82
83 </sect3>
84
85 <sect3 role="installation">
86 <title>Installation of Msgpack</title>
87
88 <para> Build the module: </para>
89
90&build-wheel;
91
92 <para>
93 Now, as the <systemitem class="username">root</systemitem> user:
94 </para>
95
96<screen role="root"><userinput>&install-wheel; msgpack</userinput></screen>
97
98 <para>
99 To test the installation issue <command>pytest</command>.
100 </para>
101
102 </sect3>
103
104 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
105 href="../../../xincludes/pip3-cmd-explain.xml"/>
106
107 <sect3 role="content">
108 <title>Contents</title>
109
110 <segmentedlist>
111 <segtitle>Installed Programs</segtitle>
112 <segtitle>Installed Libraries</segtitle>
113 <segtitle>Installed Directories</segtitle>
114
115 <seglistitem>
116 <seg>None</seg>
117 <seg>None</seg>
118 <seg>
119 /usr/lib/python&python3-majorver;/site-packages/msgpack-&msgpack-version;.dist-info and
120 /usr/lib/python&python3-majorver;/site-packages/msgpack
121 </seg>
122 </seglistitem>
123 </segmentedlist>
124
125 </sect3>
126
127 </sect2>
Note: See TracBrowser for help on using the repository browser.