Changeset 72729a79


Ignore:
Timestamp:
09/10/2023 06:17:18 PM (8 months ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
12.1, ken/TL2024, ken/tuningfonts, lazarus, plabs/newcss, python3.11, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18
Children:
9ec8e6a
Parents:
87e1d46 (diff), 3b411d49 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'trunk' of git.linuxfromscratch.org:blfs into trunk

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general/prog/python-dependencies/sphinxcontrib-serializinghtml.xml

    r87e1d46 r72729a79  
    7979      <title>Installation of Sphinxcontrib-serializinghtml</title>
    8080
    81     <para> Build the module: </para>
     81      <para>
     82        First remove a spurious circular dependency:
     83      </para>
     84
     85<screen><userinput>sed /^dependencies/,+2d -i pyproject.toml</userinput></screen>
     86
     87      <para> Build the module: </para>
    8288
    8389<screen><userinput>pip3 wheel -w dist --no-build-isolation --no-deps $PWD</userinput></screen>
    8490
    85     <para>
    86       Now, as the <systemitem class="username">root</systemitem> user:
    87     </para>
     91      <para>
     92        Now, as the <systemitem class="username">root</systemitem> user:
     93      </para>
    8894
    8995<screen role="root"><userinput>pip3 install --no-index --find-links dist --no-cache-dir --no-user sphinxcontrib-serializinghtml</userinput></screen>
    9096
    9197      <para>
    92         To test the installation, run <command>pytest</command>.
     98        To test the installation, first install <xref linkend="sphinx"/>, then
     99        run <command>pytest</command>.
    93100      </para>
    94101
  • multimedia/libdriv/alsa-utils.xml

    r87e1d46 r72729a79  
    173173
    174174      <para>
    175         As the &root; user, apply the default setting for the sound card:
    176       </para>
    177 
    178 <screen role="root"><userinput>alsactl init</userinput></screen>
     175        As the &root; user, apply the default setting for the sound card.
     176        Note that this command may return an exit code of 99 although the
     177        card is correctly initialized:
     178      </para>
     179
     180<screen role="nodump"><userinput>alsactl init</userinput></screen>
    179181
    180182      <para>
  • x/installing/libxcb.xml

    r87e1d46 r72729a79  
    101101            --without-doxygen \
    102102            --docdir='${datadir}'/doc/libxcb-&libxcb-version; &amp;&amp;
    103 make</userinput></screen>
     103LC_ALL=en_US.UTF-8 make</userinput></screen>
    104104
    105105    <para>
     
    126126    <title>Command Explanations</title>
    127127
    128 <!-- No longer needed with 1.16, it now requires Python-3.0 or higher.
     128    <!-- https://gitlab.freedesktop.org/xorg/lib/libxcb/-/issues/72 -->
    129129    <para>
    130       <parameter>PYTHON=python3</parameter>: This variable forces configure to
    131       use python3 instead of python2. The configure script for this package
    132       will automatically default to python2 if it is present.
     130      <envar>LC_ALL=en_US.UTF-8</envar>: Some Python 3 script in the
     131      building system of this package may fail with certain system
     132      locale settings.  This environment variable forces a locale setting
     133      known to work.
    133134    </para>
    134 -->
    135135
    136136    <para>
Note: See TracChangeset for help on using the changeset viewer.