mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-26 08:42:12 +08:00
Add files referenced by sphinx
File content is totally bogus...
This commit is contained in:
parent
3d48ae4f2a
commit
0cf85fa1a7
@ -46,6 +46,7 @@
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="python2.xml"/>
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="python3.xml"/>
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="python-modules.xml"/>
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="python-dependencies.xml"/>
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ruby.xml"/>
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="rust.xml"/>
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="scons.xml"/>
|
||||
|
153
general/prog/python-dependencies.xml
Normal file
153
general/prog/python-dependencies.xml
Normal file
@ -0,0 +1,153 @@
|
||||
<?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;
|
||||
]>
|
||||
|
||||
<sect1 id="python-dependencies" xreflabel="Python Dependencies">
|
||||
<?dbhtml filename="python-dependencies.html" ?>
|
||||
|
||||
<sect1info>
|
||||
<date>$Date$</date>
|
||||
</sect1info>
|
||||
|
||||
<title>Python Dependencies</title>
|
||||
|
||||
<indexterm zone="python-dependencies">
|
||||
<primary sortas="a-Python-Dependencies">Python Dependencies</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect2 role="package">
|
||||
<title>Introduction to Python Dependencies</title>
|
||||
|
||||
<para>
|
||||
Python modules listed in <xref linkend="python-modules"/> have
|
||||
dependencies that are not referenced by other packages in BLFS.
|
||||
These dependencies are listed here. They will not get updated on
|
||||
regular basis, unless a more recent version is needed.
|
||||
</para>
|
||||
|
||||
<important>
|
||||
<para>
|
||||
In BLFS, we normally build and install Python 3 modules with
|
||||
<command>pip3</command>. Please take care that the
|
||||
<command>pip3 install</command> commands in the book should be
|
||||
run as &root; unless it's for a Python virtual environment. Running
|
||||
<command>pip3 install</command> as a non-&root; user may seem to
|
||||
work fine, but it will cause the installed module to be inaccessible by
|
||||
other users.
|
||||
</para>
|
||||
<para>
|
||||
<command>pip3 install</command> will not reinstall an already
|
||||
installed module by default. For using the
|
||||
<command>pip3 install</command> command to upgrade a module (for
|
||||
example, from meson-0.61.3 to meson-0.62.0), insert
|
||||
<parameter>--upgrade</parameter> into the command line. If it's really
|
||||
necessary to downgrade a module or reinstall the same version for
|
||||
some reason, insert <parameter>--force-reinstall</parameter> into
|
||||
the command line.
|
||||
</para>
|
||||
</important>
|
||||
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="alabaster"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="babel"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="imagesize"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="packaging"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="requests"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="snowballstemmer"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="sphinxcontrib-applehelp"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="sphinxcontrib-devhelp"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="sphinxcontrib-htmlhelp"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="sphinxcontrib-jsmath"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="sphinxcontrib-qthelp"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="sphinxcontrib-serializinghtml"/>
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</sect2>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/alabaster.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/babel.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/imagesize.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/packaging.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/requests.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/snowballstemmer.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/sphinxcontrib-applehelp.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/sphinxcontrib-devhelp.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/sphinxcontrib-htmlhelp.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/sphinxcontrib-jsmath.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/sphinxcontrib-qthelp.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-dependencies/sphinxcontrib-serializinghtml.xml"/>
|
||||
|
||||
</sect1>
|
169
general/prog/python-dependencies/alabaster.xml
Normal file
169
general/prog/python-dependencies/alabaster.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="alabaster" xreflabel="alabaster-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/babel.xml
Normal file
169
general/prog/python-dependencies/babel.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="babel" xreflabel="babel-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/imagesize.xml
Normal file
169
general/prog/python-dependencies/imagesize.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="imagesize" xreflabel="imagesize-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/packaging.xml
Normal file
169
general/prog/python-dependencies/packaging.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id=" packaging" xreflabel=" packaging-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/requests.xml
Normal file
169
general/prog/python-dependencies/requests.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="requests" xreflabel="requests-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/snowballstemmer.xml
Normal file
169
general/prog/python-dependencies/snowballstemmer.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="snowballstemmer" xreflabel="snowballstemmer-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/sphinxcontrib-applehelp.xml
Normal file
169
general/prog/python-dependencies/sphinxcontrib-applehelp.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="sphinxcontrib-applehelp" xreflabel="sphinxcontrib-applehelp-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/sphinxcontrib-devhelp.xml
Normal file
169
general/prog/python-dependencies/sphinxcontrib-devhelp.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="sphinxcontrib-devhelp" xreflabel="sphinxcontrib-devhelp-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/sphinxcontrib-htmlhelp.xml
Normal file
169
general/prog/python-dependencies/sphinxcontrib-htmlhelp.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="sphinxcontrib-htmlhelp" xreflabel="sphinxcontrib-htmlhelp-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/sphinxcontrib-jsmath.xml
Normal file
169
general/prog/python-dependencies/sphinxcontrib-jsmath.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="sphinxcontrib-jsmath" xreflabel="sphinxcontrib-jsmath-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
169
general/prog/python-dependencies/sphinxcontrib-qthelp.xml
Normal file
169
general/prog/python-dependencies/sphinxcontrib-qthelp.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="sphinxcontrib-qthelp" xreflabel="sphinxcontrib-qthelp-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="sphinxcontrib-serializinghtml" xreflabel="sphinxcontrib-serializinghtml-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="asciidoc">
|
||||
<primary sortas="a-asciidoc">asciidoc</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
@ -168,12 +168,11 @@
|
||||
<xref linkend="Mako"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<!-- <listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="python-slip"/>
|
||||
<xref linkend="pytest"/>
|
||||
</para>
|
||||
</listitem>
|
||||
-->
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="scour"/>
|
||||
@ -184,6 +183,11 @@
|
||||
<xref linkend="six"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="sphinx"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<xref linkend="PyYAML"/>
|
||||
@ -269,8 +273,8 @@
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-modules/mako.xml"/>
|
||||
|
||||
<!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-slip.xml"/>-->
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-modules/pytest.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-modules/pyyaml.xml"/>
|
||||
@ -281,4 +285,7 @@
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-modules/six.xml"/>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="python-modules/sphinx.xml"/>
|
||||
|
||||
</sect1>
|
||||
|
169
general/prog/python-modules/pytest.xml
Normal file
169
general/prog/python-modules/pytest.xml
Normal file
@ -0,0 +1,169 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE sect2 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 asciidoc-download-http "https://files.pythonhosted.org/packages/source/a/asciidoc/asciidoc-&asciidoc-version;.tar.gz">
|
||||
<!ENTITY asciidoc-download-ftp " ">
|
||||
<!ENTITY asciidoc-md5sum "ecac3af818f7a65596efc6e243b520a0">
|
||||
<!ENTITY asciidoc-size "212 KB">
|
||||
<!ENTITY asciidoc-buildsize "2.6 MB">
|
||||
<!ENTITY asciidoc-time "less than 0.1 SBU">
|
||||
]>
|
||||
|
||||
<!-- Begin Py3c -->
|
||||
<sect2 id="pytest" xreflabel="pytest-&asciidoc-version;">
|
||||
|
||||
<title>Asciidoc-&asciidoc-version;</title>
|
||||
|
||||
<indexterm zone="pytest">
|
||||
<primary sortas="a-pytest">pytest</primary>
|
||||
</indexterm>
|
||||
|
||||
<sect3 role="package">
|
||||
<title>Introduction to Asciidoc Module</title>
|
||||
|
||||
<para>
|
||||
The <application>Asciidoc</application> package is a text document
|
||||
format for writing notes, documentation, articles, books, ebooks,
|
||||
slideshows, web pages, man pages and blogs. AsciiDoc files can be
|
||||
translated to many formats including HTML, PDF, EPUB, and man page.
|
||||
</para>
|
||||
|
||||
&lfs112_checked;
|
||||
|
||||
<bridgehead renderas="sect4">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>
|
||||
Download (HTTP): <ulink url="&asciidoc-download-http;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download (FTP): <ulink url="&asciidoc-download-ftp;"/>
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download MD5 sum: &asciidoc-md5sum;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Download size: &asciidoc-size;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated disk space required: &asciidoc-buildsize;
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Estimated build time: &asciidoc-time;
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect4">Asciidoc Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect5">Optional (runtime)</bridgehead>
|
||||
<para role="optional">
|
||||
<xref linkend="docbook-xsl"/>,
|
||||
<xref linkend="fop"/>,
|
||||
<xref linkend="libxslt"/>,
|
||||
<xref linkend="lynx"/>,
|
||||
<ulink url="https://sourceforge.net/projects/dblatex/">dblatex</ulink>, and
|
||||
<ulink url="&w3m-url;">W3m</ulink>
|
||||
</para>
|
||||
|
||||
</sect3>
|
||||
|
||||
<sect3 role="installation">
|
||||
<title>Installation of Asciidoc</title>
|
||||
<!-- version 9.x is from blfs 11.0. We are now at 11.1
|
||||
<para>
|
||||
If you are upgrading from version 9.x, remove the previously installed
|
||||
executables, as the <systemitem class="username">root</systemitem>
|
||||
user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>rm -rf /usr/bin/{asciidoc*,a2x*}</userinput></screen>
|
||||
-->
|
||||
<para> Build the module: </para>
|
||||
|
||||
<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
|
||||
|
||||
<para>
|
||||
This package does not come with a test suite.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Now, as the <systemitem class="username">root</systemitem> user:
|
||||
</para>
|
||||
|
||||
<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user asciidoc</userinput></screen>
|
||||
|
||||
</sect3>
|
||||
|
||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
href="../../../xincludes/pip3-cmd-explain.xml"/>
|
||||
|
||||
<sect3 role="content">
|
||||
<title>Contents</title>
|
||||
|
||||
<segmentedlist>
|
||||
<segtitle>Installed Programs</segtitle>
|
||||
<segtitle>Installed Libraries</segtitle>
|
||||
<segtitle>Installed Directories</segtitle>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
a2x and
|
||||
asciidoc
|
||||
</seg>
|
||||
<seg>None</seg>
|
||||
<seg>
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc and
|
||||
/usr/lib/python&python3-majorver;/site-packages/asciidoc-&asciidoc-version;.dist-info
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
<?dbhtml list-presentation="table"?>
|
||||
|
||||
<varlistentry id="a2x">
|
||||
<term><command>a2x</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
is a toolchain manager for AsciiDoc
|
||||
(converts Asciidoc text files to other file formats)
|
||||
</para>
|
||||
<indexterm zone="asciidoc a2x">
|
||||
<primary sortas="b-a2x">a2x</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="asciidoc-prog">
|
||||
<term><command>asciidoc</command></term>
|
||||
<listitem>
|
||||
<para>
|
||||
converts an AsciiDoc text file to HTML or DocBook
|
||||
</para>
|
||||
<indexterm zone="asciidoc asciidoc-prog">
|
||||
<primary sortas="b-asciidoc-prog">asciidoc</primary>
|
||||
</indexterm>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
@ -73,7 +73,7 @@
|
||||
<xref linkend="babel"/>,
|
||||
<xref linkend="docutils"/>,
|
||||
<xref linkend="imagesize"/>,
|
||||
<phrase revision="sysv"><xref linkend="jinja2"/>,</phrase>
|
||||
<phrase revision="sysv"><xref linkend="Jinja2"/>,</phrase>
|
||||
<xref linkend="packaging"/>,
|
||||
<xref linkend="pygments"/>,
|
||||
<xref linkend="requests"/>,
|
||||
@ -172,7 +172,7 @@
|
||||
</seg>
|
||||
</seglistitem>
|
||||
</segmentedlist>
|
||||
|
||||
<!--
|
||||
<variablelist>
|
||||
<bridgehead renderas="sect5">Short Descriptions</bridgehead>
|
||||
<?dbfo list-presentation="list"?>
|
||||
@ -204,7 +204,7 @@
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
|
||||
-->
|
||||
</sect3>
|
||||
|
||||
</sect2>
|
||||
|
Loading…
Reference in New Issue
Block a user