Update to fuse-3.15.0

This commit is contained in:
Douglas R. Reno 2023-06-11 11:05:22 -05:00
parent 7ed2cace05
commit 60e8d690db
3 changed files with 22 additions and 14 deletions

View File

@ -41,6 +41,10 @@
<listitem>
<para>June 11th, 2023</para>
<itemizedlist>
<listitem>
<para>[renodr] - Update to fuse-3.15.0. Fixes
<ulink url="&blfs-ticket-root;18159">#18159</ulink>.</para>
</listitem>
<listitem>
<para>[renodr] - Update to libadwaita-1.3.3. Fixes
<ulink url="&blfs-ticket-root;18163">#18163</ulink>.</para>

View File

@ -43,7 +43,7 @@
<!-- Chapter 5 -->
<!ENTITY btrfs-progs-version "6.3.1">
<!ENTITY dosfstools-version "4.2">
<!ENTITY fuse3-version "3.14.1">
<!ENTITY fuse3-version "3.15.0">
<!ENTITY jfsutils-version "1.1.15">
<!ENTITY lvm2-version "2.03.21">
<!ENTITY mdadm-version "4.2">

View File

@ -6,9 +6,9 @@
<!ENTITY fuse3-download-http "https://github.com/libfuse/libfuse/releases/download/fuse-&fuse3-version;/fuse-&fuse3-version;.tar.xz">
<!ENTITY fuse3-download-ftp " ">
<!ENTITY fuse3-md5sum "d5fec7879ffcbc57b789113e6c61c10b">
<!ENTITY fuse3-size "4.2 MB">
<!ENTITY fuse3-buildsize "108 MB (with tests and documentation)">
<!ENTITY fuse3-md5sum "2abc81e1e75c872ecbbb97eb945c408d">
<!ENTITY fuse3-size "4.4 MB">
<!ENTITY fuse3-buildsize "232 MB (with tests and documentation)">
<!ENTITY fuse3-time "0.2 SBU (add 0.3 SBU for tests)">
]>
@ -72,8 +72,10 @@
<bridgehead renderas="sect3">Fuse Dependencies</bridgehead>
<bridgehead renderas="sect4">Optional</bridgehead>
<para role="optional">
<xref linkend="doxygen"/> (to rebuild the API documentation) and
<xref linkend="pytest"/> (required for tests)
<xref linkend="doxygen"/> (to rebuild the API documentation),
<xref linkend="pytest"/> (required for tests), and
<ulink url="https://pypi.org/project/looseversion/">looseversion</ulink>
(for tests)
</para>
<para condition="html" role="usernotes">
@ -133,7 +135,7 @@ ninja</userinput></screen>
popd</userinput></screen>
<para>
To test the results, run (as the <systemitem
To test the results, issue the following commands (as the <systemitem
role="username">root</systemitem> user):
</para>
@ -141,18 +143,20 @@ popd</userinput></screen>
"short test summary info" at the end of your log. Below skipped tests,
you will see "X passed, X skipped, X failed (if any) in X seconds" -->
<screen role="root"
remap="test"><userinput>python3 -m pytest test/</userinput></screen>
<screen role="root" remap="test"><userinput>python3 -m venv --system-site-packages testenv &amp;&amp;
source testenv/bin/activate &amp;&amp;
pip3 install looseversion &amp;&amp;
pytest &amp;&amp;
deactivate</userinput></screen>
<para>
The <xref linkend="pytest"/> Python
module is required for the tests. One test named
module is required for the tests. One test named
<filename>test_cuse</filename> will fail if the
<parameter>CONFIG_CUSE</parameter> configuration item was not enabled
when the kernel was built. Two tests,
<filename>test_ctests.py</filename> and
<filename>test_examples.py</filename> will produce a warning because a
deprecated Python module is used.
when the kernel was built. One test,
<filename>test/util.py</filename>, will output a warning due to the usage
of an unknown mark in pytest.
</para>
<para>