Changeset 1937fe0


Ignore:
Timestamp:
04/18/2022 03:45:10 AM (2 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
multilib
Children:
644d5e0
Parents:
caf32c8 (diff), 5a2aca5 (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:

Automatic merge of trunk into multilib

Files:
1 added
8 edited

Legend:

Unmodified
Added
Removed
  • appendices/dependencies.xml

    rcaf32c8 r1937fe0  
    30793079      </segmentedlist>
    30803080
     3081<!-- Begin Wheel dependency info -->
     3082  <bridgehead renderas="sect2" id="wheel-dep">wheel</bridgehead>
     3083
     3084      <segmentedlist id="wheel-depends">
     3085        <segtitle>&dependencies;</segtitle>
     3086        <seglistitem>
     3087          <seg>Python</seg>
     3088        </seglistitem>
     3089      </segmentedlist>
     3090
     3091      <segmentedlist id="wheel-rundeps">
     3092        <segtitle>&runtime;</segtitle>
     3093        <seglistitem>
     3094          <seg>Python</seg>
     3095        </seglistitem>
     3096      </segmentedlist>
     3097
     3098      <segmentedlist id="wheel-testdeps">
     3099        <segtitle>&testsuites;</segtitle>
     3100        <seglistitem>
     3101          <seg>No test suite available</seg>
     3102        </seglistitem>
     3103      </segmentedlist>
     3104
     3105      <segmentedlist id="wheel-before">
     3106        <segtitle>&before;</segtitle>
     3107        <seglistitem>
     3108          <seg>Jinja2</seg>
     3109        </seglistitem>
     3110      </segmentedlist>
     3111
     3112      <segmentedlist id="wheel-optdeps">
     3113        <segtitle>&external;</segtitle>
     3114        <seglistitem>
     3115          <seg>None</seg>
     3116        </seglistitem>
     3117      </segmentedlist>
     3118
    30813119<!-- Begin XML::Parser dependency info -->
    30823120  <bridgehead renderas="sect2" id="xml-parser-dep">XML::Parser</bridgehead>
  • chapter01/changelog.xml

    rcaf32c8 r1937fe0  
    4545      <itemizedlist>
    4646        <listitem>
     47           <para>[bdubbs] - Add wheel-0.37.1 (Python module).</para>
     48        </listitem>
     49      </itemizedlist>
     50    </listitem>
     51
     52    <listitem>
     53      <para>2022-04-15</para>
     54      <itemizedlist>
     55        <listitem>
    4756          <para>[ken] - Patch Xz for a security fix.  Fixes
    4857          <ulink url="&lfs-ticket-root;5047">#5047</ulink>.</para>
  • chapter01/whatsnew.xml

    rcaf32c8 r1937fe0  
    282282    <listitem><para></para></listitem>  <!-- satisfy build -->
    283283    <listitem>
     284      <para>Wheel-&wheel-version;</para>
     285    </listitem>
     286    <listitem>
    284287      <para>&xz-upstream-fix-patch;</para>
    285288    </listitem>
  • chapter03/packages.xml

    rcaf32c8 r1937fe0  
    795795
    796796    <varlistentry>
     797      <term>Wheel (&wheel-version;) - <token>&wheel-size;</token>:</term>
     798      <listitem>
     799        <para>Home page: <ulink url="&wheel-home;"/></para>
     800        <para>Download: <ulink url="&wheel-url;"/></para>
     801        <para>MD5 sum: <literal>&wheel-md5;</literal></para>
     802      </listitem>
     803    </varlistentry>
     804
     805    <varlistentry>
    797806      <term>XML::Parser (&xml-parser-version;) - <token>&xml-parser-size;</token>:</term>
    798807      <listitem>
  • chapter08/chapter08.xml

    rcaf32c8 r1937fe0  
    6565  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libffi.xml"/>
    6666  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="python.xml"/>
     67  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="wheel.xml"/>
    6768  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ninja.xml"/>
    6869  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="meson.xml"/>
  • chapter08/python.xml

    rcaf32c8 r1937fe0  
    9292
    9393<screen><userinput remap="install">make install</userinput></screen>
     94
     95    <para>In serveral places we use the <command>pip3</command> command to
     96    install Python 3 programs and modules for all users as root. This conflicts
     97    with the Python developers recommendation to build packages in a virtual
     98    environment as a regular user. To this end, a multi-line warning is
     99    written when using <command>pip3</command> as the root user.  If desired,
     100    supress this warning by running the following command:</para>
     101
     102<screen><userinput remap="install">sed -e '/def warn_if_run_as_root/a\    return' \
     103    -i /usr/lib/python3.10/site-packages/pip/_internal/cli/req_command.py
     104</userinput></screen>
     105
    94106
    95107    <para>If desired, install the preformatted documentation:</para>
  • packages.ent

    rcaf32c8 r1937fe0  
    741741<!ENTITY vim-fin-sbu "2.4 SBU">
    742742
     743<!-- From https://files.pythonhosted.org/packages/c0/6c/9f840c2e55b67b90745af06a540964b73589256cb10cc10057c87ac78fc2/wheel-0.37.1.tar.gz -->
     744<!ENTITY wheel-version "0.37.1">
     745<!ENTITY wheel-size "65 KB">
     746<!ENTITY wheel-url "&anduin-sources;/wheel-&wheel-version;.tar.gz">
     747<!ENTITY wheel-md5 "f490f1399e5903706cb1d4fbed9ecb28">
     748<!ENTITY wheel-home "https://pypi.org/project/wheel/">
     749<!ENTITY wheel-fin-du "268 KB">
     750<!ENTITY wheel-fin-sbu "less than 0.1 SBU">
     751
    743752<!ENTITY xml-parser-version "2.46">
    744753<!ENTITY xml-parser-size "249 KB">
  • prologue/why.xml

    rcaf32c8 r1937fe0  
    594594
    595595      <listitem>
     596        <para>Wheel</para>
     597
     598        <para>This package contains a Python module that is the
     599        reference implementation of the Python wheel packaging standard.
     600        </para>
     601      </listitem>
     602
     603      <listitem>
    596604        <para>Vim</para>
    597605
Note: See TracChangeset for help on using the changeset viewer.