Changeset 0cf3733 for general


Ignore:
Timestamp:
09/15/2019 06:57:21 PM (5 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 9.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
ae39488
Parents:
0ec2262
Message:

Add the python2 module for MarkupSafe so that Jinja2 can use it,
and recommend Jinja2 for QtWebEngine, since it is used in the build,
otherwise a shipped version is used

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/markupsafe.xml

    r0ec2262 r0cf3733  
    7373    <sect3 role="installation">
    7474      <title>Installation of MarkupSafe</title>
    75 <!-- Editors note: Use - -root= instead of DESTDIR= when updating. -->
     75
     76      <note>
     77        <para>
     78          Both <application>Python 2</application> and
     79          <application>Python 3</application> modules can
     80          be built and installed without any conflicts.
     81        </para>
     82      </note>
    7683
    7784      <para>
    78         To build the module, run the following command:
     85        To build both Python 2 and Python 3 modules, run the following commands:
    7986      </para>
    8087
    81 <screen><userinput>python3 setup.py build</userinput></screen>
     88<screen><userinput>python2 setup.py build &amp;&amp;
     89python3 setup.py build</userinput></screen>
    8290
    8391      <para>
    84         To install the module, run the following command as the
     92        To install both modules, run the following commands as the
    8593        <systemitem class="username">root</systemitem> user:
    8694      </para>
    8795
    88 <screen role="root"><userinput>python3 setup.py install --optimize=1</userinput></screen>
     96<!-- Editors note: Use - -root= instead of DESTDIR= when updating. -->
     97<screen role="root"><userinput>python2 setup.py install --optimize=1 &amp;&amp;
     98python3 setup.py install --optimize=1</userinput></screen>
    8999
    90100    </sect3>
Note: See TracChangeset for help on using the changeset viewer.