Changeset e6fe729d for general/prog


Ignore:
Timestamp:
07/02/2012 01:49:19 PM (12 years ago)
Author:
Krejzi <krejzi@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2e69a84b
Parents:
fee14fb
Message:

Added Pyrex, a Python module.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@10387 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/python-modules.xml

    rfee14fb re6fe729d  
    7575  <!ENTITY pyatspi2-buildsize     "3.7 MB">
    7676  <!ENTITY pyatspi2-time          "less than 0.1 SBU">
     77
     78  <!ENTITY pyrex-download-http
     79  "http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/Pyrex-&pyrex-version;.tar.gz">
     80  <!ENTITY pyrex-download-ftp  " ">
     81  <!ENTITY pyrex-md5sum        "515dee67d15d4393841e2d60e8341947">
     82  <!ENTITY pyrex-size          "252 KB">
     83  <!ENTITY pyrex-buildsize     "4.0 MB">
     84  <!ENTITY pyrex-time          "less than 0.1 SBU">
    7785
    7886  <!ENTITY pyxdg-download-http
     
    161169      <listitem>
    162170        <para>
     171          <xref linkend="pyrex"/>
     172        </para>
     173      </listitem>
     174      <listitem>
     175        <para>
    163176          <xref linkend="pyxdg"/>
    164177        </para>
     
    12971310  <!-- End pyatspi2 -->
    12981311
     1312  <!-- Begin Pyrex -->
     1313  <sect2 id="pyrex" xreflabel="Pyrex-&pyrex-version;">
     1314
     1315    <title>Pyrex-&pyrex-version;</title>
     1316
     1317    <indexterm zone="pyrex">
     1318      <primary sortas="a-Pyrex">pyrex</primary>
     1319    </indexterm>
     1320
     1321    <sect3 role="package">
     1322      <title>Introduction to Pyrex Module</title>
     1323
     1324      <para>
     1325        <application>Pyrex</application> is language used for writing
     1326        <application>Python</application> extension modules.
     1327      </para>
     1328
     1329      <bridgehead renderas="sect4">Package Information</bridgehead>
     1330      <itemizedlist spacing="compact">
     1331        <listitem>
     1332          <para>
     1333          Download (HTTP): <ulink url="&pyrex-download-http;"/>
     1334          </para>
     1335        </listitem>
     1336        <listitem>
     1337          <para>
     1338            Download (FTP): <ulink url="&pyrex-download-ftp;"/>
     1339          </para>
     1340        </listitem>
     1341        <listitem>
     1342          <para>
     1343            Download MD5 sum: &pyrex-md5sum;
     1344          </para>
     1345        </listitem>
     1346        <listitem>
     1347          <para>
     1348            Download size: &pyrex-size;
     1349          </para>
     1350        </listitem>
     1351        <listitem>
     1352          <para>
     1353            Estimated disk space required: &pyrex-buildsize;
     1354          </para>
     1355        </listitem>
     1356        <listitem>
     1357          <para>
     1358            Estimated build time: &pyrex-time;
     1359          </para>
     1360        </listitem>
     1361      </itemizedlist>
     1362
     1363      <bridgehead renderas="sect4">Pyrex Dependencies</bridgehead>
     1364
     1365      <bridgehead renderas="sect5">Required</bridgehead>
     1366      <para role="required">
     1367        <xref linkend="python2"/>
     1368      </para>
     1369
     1370      <para condition="html" role="usernotes">
     1371        User Notes: <ulink url="&blfs-wiki;/pyrex"/>
     1372      </para>
     1373    </sect3>
     1374
     1375    <sect3 role="installation">
     1376      <title>Installation of Pyrex</title>
     1377
     1378      <para>
     1379        Install <application>pyrex</application> by running the following
     1380        commands as the <systemitem class="username">root</systemitem> user:
     1381      </para>
     1382
     1383<screen role="root"><userinput>python setup.py install</userinput></screen>
     1384    </sect3>
     1385
     1386    <sect3 role="commands">
     1387      <title>Command Explanations</title>
     1388
     1389      <para>
     1390        <command>python setup.py install</command>: This command installs
     1391        the package. There are other options available, see
     1392        <command>python setup.py --help-commands</command> for details.
     1393      </para>
     1394
     1395    </sect3>
     1396
     1397    <sect3 role="content">
     1398      <title>Contents</title>
     1399
     1400      <segmentedlist>
     1401        <segtitle>Installed Programs</segtitle>
     1402        <segtitle>Installed Directories</segtitle>
     1403
     1404        <seglistitem>
     1405          <seg>
     1406            pyrexc
     1407          </seg>
     1408          <seg>
     1409            /usr/lib/python&python2-majorver;/site-packages/Pyrex
     1410          </seg>
     1411        </seglistitem>
     1412      </segmentedlist>
     1413
     1414    </sect3>
     1415
     1416  </sect2>
     1417  <!-- End Pyrex -->
     1418
    12991419  <!-- Begin pyxdg -->
    13001420  <sect2 id="pyxdg" xreflabel="PyXDG-&pyxdg-version;">
Note: See TracChangeset for help on using the changeset viewer.