source: general/prog/pycryptodome.xml@ 5ff8c3a

11.3 12.0 12.1 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/llvm18 xry111/soup3 xry111/xf86-video-removal
Last change on this file since 5ff8c3a was 5ff8c3a, checked in by Bruce Dubbs <bdubbs@…>, 20 months ago

Add --no-user in Python module installation instructions.

  • Property mode set to 100644
File size: 3.6 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 pycryptodome-download-http "https://github.com/Legrandin/pycryptodome/archive/v&pycryptodome-version;/pycryptodome-&pycryptodome-version;.tar.gz">
8 <!ENTITY pycryptodome-download-ftp " ">
9 <!ENTITY pycryptodome-md5sum "6b3d3639172861d5ecc03017dc70206c">
10 <!ENTITY pycryptodome-size "16 MB">
11 <!ENTITY pycryptodome-buildsize "53 MB">
12 <!ENTITY pycryptodome-time "0.1 SBU">
13]>
14
15 <!-- Begin pycryptodome -->
16 <sect2 id="pycryptodome" xreflabel="PyCryptodome-&pycryptodome-version;">
17
18 <title>PyCryptodome-&pycryptodome-version;</title>
19
20 <indexterm zone="pycryptodome">
21 <primary sortas="a-pycryptodome">pycryptodome</primary>
22 </indexterm>
23
24 <sect3 role="package">
25 <title>Introduction to the PyCryptodome Module</title>
26
27 <para>
28 <application>PyCryptodome</application> is a collection of both secure
29 hash functions (such as SHA256 and RIPEMD160), and various encryption
30 algorithms (AES, DES, RSA, ElGamal, etc.), and is a drop-in replacement
31 for PyCrypto.
32 </para>
33
34 &lfs112_checked;
35
36 <bridgehead renderas="sect4">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>
40 Download (HTTP): <ulink url="&pycryptodome-download-http;"/>
41 </para>
42 </listitem>
43 <listitem>
44 <para>
45 Download (FTP): <ulink url="&pycryptodome-download-ftp;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download MD5 sum: &pycryptodome-md5sum;
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download size: &pycryptodome-size;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Estimated disk space required: &pycryptodome-buildsize;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated build time: &pycryptodome-time;
66 </para>
67 </listitem>
68 </itemizedlist>
69
70 <para condition="html" role="usernotes">
71 User Notes: <ulink url="&blfs-wiki;/pycryptodome"/>
72 </para>
73 </sect3>
74
75 <sect3 role="installation">
76 <title>Installation of PyCryptodome</title>
77
78 <para>
79 To build <application>PyCryptodome</application> as a Python 3
80 module, run the following command:
81 </para>
82
83<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
84
85 <para>
86 To install the module, run the following command as the &root; user:
87 </para>
88
89<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user pycryptodome</userinput></screen>
90
91 </sect3>
92
93 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
94 href="../../xincludes/pip3-cmd-explain.xml"/>
95
96 <sect3 role="content">
97 <title>Contents</title>
98
99 <segmentedlist>
100 <segtitle>Installed Programs</segtitle>
101 <segtitle>Installed Libraries</segtitle>
102 <segtitle>Installed Directories</segtitle>
103
104 <seglistitem>
105 <seg>
106 None
107 </seg>
108 <seg>
109 None
110 </seg>
111 <seg>
112 /usr/lib/python&python3-majorver;/site-packages/pycryptodome-&pycryptodome-version;.dist-info
113 </seg>
114 </seglistitem>
115 </segmentedlist>
116
117 </sect3>
118
119 </sect2>
Note: See TracBrowser for help on using the repository browser.