mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 23:07:23 +08:00
Update to shfs-3.3.1.
Add docutils-0.14. git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19518 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
9dac80b0e5
commit
d3ea9e811e
@ -81,8 +81,8 @@
|
||||
Optional (Required to build the API and HTML Documentation)
|
||||
</bridgehead>
|
||||
<para role="optional">
|
||||
<ulink url="http://epydoc.sourceforge.net/">Epydoc</ulink> and
|
||||
<ulink url="http://docutils.sourceforge.net/">Docutils</ulink>
|
||||
<xref linkend="docutils"/> and
|
||||
<ulink url="http://epydoc.sourceforge.net/">Epydoc</ulink>
|
||||
</para>
|
||||
|
||||
<para condition="html" role="usernotes">User Notes:
|
||||
|
126
general/prog/docutils.xml
Normal file
126
general/prog/docutils.xml
Normal file
@ -0,0 +1,126 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
||||
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
||||
%general-entities;
|
||||
|
||||
<!ENTITY docutils-download-http "http://downloads.sourceforge.net/docutils/docutils-&docutils-version;.tar.gz">
|
||||
<!ENTITY docutils-download-ftp " ">
|
||||
<!ENTITY docutils-md5sum "c53768d63db3873b7d452833553469de">
|
||||
<!ENTITY docutils-size "1.6 MB">
|
||||
<!ENTITY docutils-buildsize "12 MB">
|
||||
<!ENTITY docutils-time "0.4 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin docutils -->
|
||||
<sect2 id="docutils" xreflabel="docutils-&docutils-version;">
|
||||
|
||||
<title>docutils-&docutils-version;</title>
|
||||
|
||||
<indexterm zone="docutils">
|
||||
<primary sortas="a-docutils">docutils</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to docutils</title>
|
||||
|
||||
<para>
|
||||
<application>docutils</application> is a set of
|
||||
<application>Python</application> modules and programs
|
||||
for processing plaintext docs into formats such as HTML, XML, or LaTeX.
|
||||
</para>
|
||||
|
||||
&lfs81_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&docutils-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&docutils-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &docutils-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &docutils-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &docutils-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &docutils-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para condition="html" role="usernotes">
|
||||
User Notes: <ulink url="&blfs-wiki;/docutils"/>
|
||||
</para>
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of docutils</title>
|
||||
|
||||
<!-- Editors note: Use - -root= instead of DESTDIR= when updating. -->
|
||||
|
||||
<para>
|
||||
To build the <application>Python 3</application> applications,
|
||||
run the following command:
|
||||
</para>
|
||||
|
||||
<screen><userinput>python3 setup.py build</userinput></screen>
|
||||
|
||||
<para>
|
||||
To install the <application>Python 3</application> applications
|
||||
run the following as the
|
||||
<systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>python3 setup.py install --optimize=1 &&
|
||||
|
||||
for f in /usr/bin/rst*.py; do
|
||||
ln -svf $(basename $f) /usr/bin/$(basename $f .py)
|
||||
done</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
rst2html4, rst2html5, rst2html, rst2latex, rst2man,
|
||||
rst2odt_prepstyles, rst2odt, rst2pseudoxml, rst2s5,
|
||||
rst2xetex, rst2xml, and rstpep2html
|
||||
</seg>
|
||||
<seg>
|
||||
None
|
||||
</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/docutils
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
||||
<!--End docutils -->
|
@ -68,6 +68,8 @@
|
||||
|
||||
<bridgehead renderas="sect4">Optional</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docutils"/>
|
||||
(required to build the documentation),
|
||||
<xref linkend="git"/>,
|
||||
<xref linkend="gnupg2"/> (<command>gpg2</command> with Python bindings),
|
||||
<xref role="runtime" linkend="openssh"/>
|
||||
@ -75,8 +77,6 @@
|
||||
<xref linkend="subversion"/> (with Python bindings),
|
||||
<ulink url="https://launchpad.net/bzr">Bazaar</ulink>,
|
||||
<ulink url="http://www.nongnu.org/cvs/">CVS</ulink>,
|
||||
<ulink url="http://docutils.sourceforge.net/">Docutils</ulink>
|
||||
(required to build the documentation),
|
||||
<ulink url="https://pypi.python.org/pypi/pyflakes">pyflakes</ulink>,
|
||||
<ulink url="http://pygments.org/">pygments</ulink>, and
|
||||
<ulink url="https://github.com/pyca/pyopenssl">pyOpenSSL</ulink>
|
||||
@ -96,8 +96,8 @@
|
||||
|
||||
<screen><userinput>make build</userinput></screen>
|
||||
|
||||
<para>To build the documentation (requires
|
||||
<application>Docutils</application>), issue:</para>
|
||||
<para>To build the documentation (requires <xref linkend="docutils"/>),
|
||||
issue:</para>
|
||||
|
||||
<screen><userinput>make doc</userinput></screen>
|
||||
|
||||
|
@ -36,18 +36,16 @@
|
||||
<xref linkend="dbus-python"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="docutils"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="pyatspi2"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<!--
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="py2cairo"/>
|
||||
</para>
|
||||
</listitem>
|
||||
-->
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="pycairo"/>
|
||||
@ -136,6 +134,9 @@
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="dbus-python.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="docutils.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="pyatspi2.xml"/>
|
||||
<!--
|
||||
|
@ -44,6 +44,13 @@
|
||||
<listitem>
|
||||
<para>November 18th, 2017</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to shfs-3.3.1. Fixes
|
||||
<ulink url="&blfs-ticket-root;10016">#10016</ulink>.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Add docutils-0.14. </para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to pciutils-3.5.6. Fixes
|
||||
<ulink url="&blfs-ticket-root;10043">#10043</ulink>.</para>
|
||||
|
@ -60,7 +60,7 @@
|
||||
<!ENTITY parted-version "3.2">
|
||||
<!ENTITY reiser-version "3.6.27">
|
||||
<!ENTITY smartmontools-version "6.6">
|
||||
<!ENTITY sshfs-version "3.2.0">
|
||||
<!ENTITY sshfs-version "3.3.1">
|
||||
<!--<!ENTITY sshfs-fuse-download-version "2_5">-->
|
||||
<!ENTITY xfsprogs-version "4.13.1">
|
||||
|
||||
@ -398,6 +398,7 @@
|
||||
|
||||
<!-- Python module versions used in the Python Modules instructions -->
|
||||
<!ENTITY Beaker-version "1.9.0">
|
||||
<!ENTITY docutils-version "0.14">
|
||||
<!ENTITY dbus-python-version "1.2.4">
|
||||
<!ENTITY funcsigs-version "1.0.2">
|
||||
<!ENTITY Jinja2-version "2.10">
|
||||
|
@ -7,8 +7,8 @@
|
||||
<!ENTITY sshfs-download-http
|
||||
"https://github.com/libfuse/sshfs/releases/download/sshfs-&sshfs-version;/sshfs-&sshfs-version;.tar.gz">
|
||||
<!ENTITY sshfs-download-ftp " ">
|
||||
<!ENTITY sshfs-md5sum "dee189442efb22e08d4f233af8626ce7">
|
||||
<!ENTITY sshfs-size "164 KB">
|
||||
<!ENTITY sshfs-md5sum "f261fe7ec77adc3a53f2116f3b8cb8ab">
|
||||
<!ENTITY sshfs-size "48 KB">
|
||||
<!ENTITY sshfs-buildsize "1.9 MB">
|
||||
<!ENTITY sshfs-time "less than 0.1 SBU">
|
||||
]>
|
||||
@ -83,6 +83,11 @@
|
||||
<xref linkend="openssh"/>.
|
||||
</para>
|
||||
|
||||
<bridgehead renderas="sect4">Optional</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docutils"/> (required to build the man page)
|
||||
</para>
|
||||
|
||||
<para condition="html" role="usernotes">
|
||||
User Notes: <ulink url="&blfs-wiki;/sshfs"/>
|
||||
</para>
|
||||
|
@ -87,8 +87,7 @@
|
||||
|
||||
<bridgehead renderas="sect4">Optional</bridgehead>
|
||||
<para role="optional">
|
||||
<ulink url="http://sourceforge.net/projects/docutils/">Docutils</ulink>
|
||||
(for the man pages)
|
||||
<xref linkend="docutils"/> (for the man pages)
|
||||
</para>
|
||||
|
||||
<bridgehead renderas="sect4" revision="sysv">Runtime Dependency</bridgehead>
|
||||
@ -197,8 +196,7 @@ install -v -dm755 -o sddm -g sddm /var/lib/sddm</userinput></screen>
|
||||
<para>
|
||||
<option>-DBUILD_MAN_PAGES=ON</option>: This switch may be used if you want
|
||||
the man pages to be installed. Notice that you need
|
||||
<ulink url="http://sourceforge.net/projects/docutils/">Docutils</ulink>
|
||||
to build them.
|
||||
<xref linkend="docutils"/> to build them.
|
||||
</para>
|
||||
|
||||
</sect2>
|
||||
|
Loading…
Reference in New Issue
Block a user