Changes in / [daad1cdd:e5e327a]


Ignore:
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rdaad1cdd re5e327a  
    4545         <para>[bdubbs] - Update to LVM2.2.03.22. Fixes
    4646         <ulink url="&blfs-ticket-root;18369">#18369</ulink>.</para>
    47        </listitem>
    48        <listitem>
    49          <para>[renodr] - Update to seamonkey-2.53.17 (Security Update). Fixes
    50          <ulink url="&blfs-ticket-root;18362">#18362</ulink>.</para>
    51        </listitem>
    52        <listitem>
    53          <para>[renodr] - Update to mariadb-10.11.4 (Security Update). Fixes
    54          <ulink url="&blfs-ticket-root;18374">#18374</ulink>.</para>
    5547       </listitem>
    5648     </itemizedlist>
  • packages.ent

    rdaad1cdd re5e327a  
    744744<!ENTITY db-version                   "5.3.28">
    745745<!ENTITY lmdb-version                 "0.9.31">
    746 <!ENTITY mariadb-version              "10.11.4">
     746<!ENTITY mariadb-version              "10.6.12">
    747747<!ENTITY postgresql-version           "15.3">
    748748<!ENTITY sqlite-version               "3.42.0">
     
    985985<!-- falkon version is the same as KDE applications -->
    986986<!ENTITY firefox-version              "115.1.0">
    987 <!ENTITY seamonkey-version            "2.53.17">
     987<!ENTITY seamonkey-version            "2.53.16">
    988988
    989989<!-- Chapter 41 -->
  • server/databases/mariadb.xml

    rdaad1cdd re5e327a  
    88  <!ENTITY mariadb-download-http "https://downloads.mariadb.org/interstitial/mariadb-&mariadb-version;/source/mariadb-&mariadb-version;.tar.gz">
    99  <!ENTITY mariadb-download-ftp  "ftp://mirrors.fe.up.pt/pub/mariadb/mariadb-&mariadb-version;/source/mariadb-&mariadb-version;.tar.gz">
    10   <!ENTITY mariadb-md5sum        "b6f3b3af44f72bcf32cba31071e7642d">
    11   <!ENTITY mariadb-size          "92 MB">
    12   <!ENTITY mariadb-buildsize     "2.6 GB (723 MB installed)">
    13   <!ENTITY mariadb-time          "8.4 SBU (with parallelism=4, add 0.3 SBU for tests)">
     10  <!ENTITY mariadb-md5sum        "70b118a5a82846fe64adbf99d766d3e9">
     11  <!ENTITY mariadb-size          "91 MB">
     12  <!ENTITY mariadb-buildsize     "2.3 GB (659 MB installed)">
     13  <!ENTITY mariadb-time          "7.9 SBU (with parallelism=4, add 0.4 SBU for tests)">
    1414]>
    1515
     
    106106      <xref linkend="libxml2"/>,
    107107      <xref linkend="linux-pam"/>,
    108       <xref linkend="lzo"/>,
    109108      <xref linkend="mitkrb"/>,
    110109      <xref linkend="pcre2"/>,
     
    210209
    211210<screen role="root"><userinput>make install</userinput></screen>
    212 
    213     <para>
    214       If you have <xref linkend="linux-pam" role="nodep"/> installed, move the
    215       PAM module and configuration file installed by this package as the
    216       &root; user:
    217     </para>
    218 
    219 <screen role="nodump"><userinput>mv -v /usr/share/pam_use_map.so /lib/security &amp;&amp;
    220 mv -v /usr/share/user_map.conf /etc/security</userinput></screen>
    221211
    222212  </sect2>
  • xsoft/graphweb/seamonkey.xml

    rdaad1cdd re5e327a  
    77  <!ENTITY seamonkey-download-http "&mozilla-http;/seamonkey/releases/&seamonkey-version;/source/seamonkey-&seamonkey-version;.source.tar.xz">
    88  <!ENTITY seamonkey-download-ftp  " ">
    9   <!ENTITY seamonkey-md5sum        "5fd91a88005c2cc2a3ba4addfb5ff35e">
     9  <!ENTITY seamonkey-md5sum        "92ebcb6d9410442a9c1cf9c321f292f4">
    1010  <!ENTITY seamonkey-size          "254 MB">
    1111  <!ENTITY seamonkey-buildsize     "4.4 GB (159 MB installed)">
     
    260260    </note>
    261261
    262 <!--
     262<!-- Applied upstream
     263    <para>
     264      Apply a patch to fix a build failure with LLVM-16:
     265    </para>
     266
     267<screen><userinput>patch -Np1 -i ../seamonkey-&seamonkey-version;-upstream_fixes-1.patch</userinput></screen>
     268-->
    263269    <para>
    264270      First remove an obsolete flag in python code, that has been removed
     
    267273
    268274<screen><userinput>grep -rl \'rU\' | xargs sed -i "s/'rU'/'r'/"</userinput></screen>
    269 -->
    270 <!--
     275
     276<!-- Causes issues since xpidl is python2 in Seamonkey
     277    <para>
     278      Then fix an issue with regular expressions in python-3.11:
     279    </para>
     280
     281<screen><userinput>sed -e 's/?s)\./?s:.)/'               \
     282    -e '/?m)/{s/?m)/?m:/;s/\$"/$)"/}' \
     283    -e '/?s)%/{s/?s)/?s:/;s/?"/?)"/}' \
     284    -i xpcom/idl-parser/xpidl/xpidl.py</userinput></screen>
     285-->
     286
    271287    <para>
    272288      Next, work around a problem in the Python virtual environment:
     
    275291<screen><userinput>sed -i "/if sys.executable !=/i\    open(join(bin_dir, 'pyvenv.cfg'), 'w').close()" \
    276292    third_party/python/virtualenv/virtualenv.py</userinput></screen>
    277 -->
    278 
    279     <para>
    280       Fix a problem with the bundled 'distro' python module:
    281     </para>
    282 
    283 <screen><userinput>sed -e '1012 s/stderr=devnull/stderr=subprocess.DEVNULL/' \
    284     -e '1013 s/OSError/(OSError, subprocess.CalledProcessError)/' \
    285     -i third_party/python/distro/distro.py</userinput></screen>
     293
     294<!-- Applied upstream
     295    <para>
     296      Next, work around a crash that occurs when playing audio when Seamonkey
     297      is compiled with rustc-1.67 or higher:
     298    </para>
     299
     300<screen><userinput>sed -i '/USE_PULSE_RUST/d' media/libcubeb/src/moz.build</userinput></screen>
     301-->
    286302
    287303    <para>
     
    291307
    292308<screen><userinput>export CC=clang CXX=clang++          &amp;&amp;
    293 ./mach configure &amp;&amp;
     309./mach configure || ./mach configure &amp;&amp;
    294310./mach build</userinput></screen>
    295311
     
    335351
    336352    <para>
    337       <command>./mach configure</command>: This validates
     353      <command>./mach configure || ./mach configure</command>: This validates
    338354      the supplied dependencies and the <filename>mozconfig</filename>.
    339       <!--This is run twice because problems with mach will cause it to fail the
    340       first time.-->
     355      This is run twice because problems with mach will cause it to fail the
     356      first time.
    341357    </para>
    342358
Note: See TracChangeset for help on using the changeset viewer.