diff mbox series

[meta-filesystems] fuse-exfat: upgrade 1.3.0 -> 1.4.0

Message ID 20231112095452.118629-1-alperyasinak1@gmail.com
State Accepted
Headers show
Series [meta-filesystems] fuse-exfat: upgrade 1.3.0 -> 1.4.0 | expand

Commit Message

Alper Ak Nov. 12, 2023, 9:54 a.m. UTC
Changelog:

* Added exfatattrib utility which prints or changes file attributes [Will
Thompson].
* Added FUSE 3 support. FUSE 2 continues to be supported.
* Added support for timezone offsets [Nathan Hunsperger].
* Fixed device opening error being reported as FS error.
* Fixed possible data leakage when uninitialized clusters were allocated using
NtSetInformationFile() call under Windows and FS was not unmounted correctly.
* Improved compatibility with autoconf 2.70.
* Fixed disk size reading on NetBSD [Dave Vasilevsky].
* Fixed "automounted" option handling on FreeBSD [Iouri V. Ivliev].
* Allowed to specify the "nonempty" mount option.
* Fixed file data contiguity handling bug which could cause performance
degradation [noctis].
* Fixed possible crashes on invalid UTF-8 sequences.
* Fixed a situation when FS could be erroneously marked as dirty (not cleanly
unmounted).

Signed-off-by: alperak <alperyasinak1@gmail.com>
---
 .../fuse-exfat/{fuse-exfat_1.3.0.bb => fuse-exfat_1.4.0.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-filesystems/recipes-filesystems/fuse-exfat/{fuse-exfat_1.3.0.bb => fuse-exfat_1.4.0.bb} (83%)

Comments

Khem Raj Nov. 12, 2023, 11:03 p.m. UTC | #1
On Sun, Nov 12, 2023 at 1:55 AM Alper Ak <alperyasinak1@gmail.com> wrote:
>
> Changelog:
>
> * Added exfatattrib utility which prints or changes file attributes [Will
> Thompson].
> * Added FUSE 3 support. FUSE 2 continues to be supported.
> * Added support for timezone offsets [Nathan Hunsperger].
> * Fixed device opening error being reported as FS error.
> * Fixed possible data leakage when uninitialized clusters were allocated using
> NtSetInformationFile() call under Windows and FS was not unmounted correctly.
> * Improved compatibility with autoconf 2.70.
> * Fixed disk size reading on NetBSD [Dave Vasilevsky].
> * Fixed "automounted" option handling on FreeBSD [Iouri V. Ivliev].
> * Allowed to specify the "nonempty" mount option.
> * Fixed file data contiguity handling bug which could cause performance
> degradation [noctis].
> * Fixed possible crashes on invalid UTF-8 sequences.
> * Fixed a situation when FS could be erroneously marked as dirty (not cleanly
> unmounted).
>
> Signed-off-by: alperak <alperyasinak1@gmail.com>
> ---
>  .../fuse-exfat/{fuse-exfat_1.3.0.bb => fuse-exfat_1.4.0.bb}   | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename meta-filesystems/recipes-filesystems/fuse-exfat/{fuse-exfat_1.3.0.bb => fuse-exfat_1.4.0.bb} (83%)
>
> diff --git a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.3.0.bb b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.4.0.bb
> similarity index 83%
> rename from meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.3.0.bb
> rename to meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.4.0.bb
> index ac18fe90f..2f5b1a333 100644
> --- a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.3.0.bb
> +++ b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.4.0.bb
> @@ -16,7 +16,7 @@ RRECOMMENDS:${PN} = "util-linux-mount"
>
>  inherit autotools pkgconfig
>
> -SRC_URI[md5sum] = "846b8c36bfa4684719f9e08e9d3a6bff"
> -SRC_URI[sha256sum] = "07652136064da5e4d32df5555f88c138ffa4835a23b88a5bae2015f21006e0d3"
> +SRC_URI[md5sum] = "765bf2484d48e5c253d0d8cb8de4f8c0"

We do not need md5sum anymore. So please drop it.

> +SRC_URI[sha256sum] = "a1cfedc55e0e7a12c184605aa0f0bf44b24a3fb272449b20b2c8bbe6edb3001e"
>
>  EXTRA_OECONF += "sbindir=${base_sbindir}"
> --
> 2.25.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#106582): https://lists.openembedded.org/g/openembedded-devel/message/106582
> Mute This Topic: https://lists.openembedded.org/mt/102540061/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
Alper Ak Nov. 13, 2023, 8:45 a.m. UTC | #2
These hash values are usually used to check the integrity of files and determine if they are corrupted during download, right? So why delete them? Do we delete md5 because sha256 already defined? Don't we need both at the same time?
Khem Raj Nov. 13, 2023, 6:33 p.m. UTC | #3
On Sun, 12 Nov 2023 12:54:52 +0300, alperak wrote:
> Changelog:
> 
> * Added exfatattrib utility which prints or changes file attributes [Will
> Thompson].
> * Added FUSE 3 support. FUSE 2 continues to be supported.
> * Added support for timezone offsets [Nathan Hunsperger].
> * Fixed device opening error being reported as FS error.
> * Fixed possible data leakage when uninitialized clusters were allocated using
> NtSetInformationFile() call under Windows and FS was not unmounted correctly.
> * Improved compatibility with autoconf 2.70.
> * Fixed disk size reading on NetBSD [Dave Vasilevsky].
> * Fixed "automounted" option handling on FreeBSD [Iouri V. Ivliev].
> * Allowed to specify the "nonempty" mount option.
> * Fixed file data contiguity handling bug which could cause performance
> degradation [noctis].
> * Fixed possible crashes on invalid UTF-8 sequences.
> * Fixed a situation when FS could be erroneously marked as dirty (not cleanly
> unmounted).
> 
> [...]

Applied, thanks!

[1/1] fuse-exfat: upgrade 1.3.0 -> 1.4.0
      commit: 12bd7824d245db95f7d8c9f815549884496b15ec

Best regards,
diff mbox series

Patch

diff --git a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.3.0.bb b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.4.0.bb
similarity index 83%
rename from meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.3.0.bb
rename to meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.4.0.bb
index ac18fe90f..2f5b1a333 100644
--- a/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.3.0.bb
+++ b/meta-filesystems/recipes-filesystems/fuse-exfat/fuse-exfat_1.4.0.bb
@@ -16,7 +16,7 @@  RRECOMMENDS:${PN} = "util-linux-mount"
 
 inherit autotools pkgconfig
 
-SRC_URI[md5sum] = "846b8c36bfa4684719f9e08e9d3a6bff"
-SRC_URI[sha256sum] = "07652136064da5e4d32df5555f88c138ffa4835a23b88a5bae2015f21006e0d3"
+SRC_URI[md5sum] = "765bf2484d48e5c253d0d8cb8de4f8c0"
+SRC_URI[sha256sum] = "a1cfedc55e0e7a12c184605aa0f0bf44b24a3fb272449b20b2c8bbe6edb3001e"
 
 EXTRA_OECONF += "sbindir=${base_sbindir}"