From 7f96393ab01e9fc4dd3c8d4c717fe54f038d0f60f222110ffceabeb107b7c6d6 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 11 Oct 2023 13:05:26 +0000 Subject: [PATCH 1/3] Accepting request 1116971 from home:dimstar:Factory - Update to version 1.7: * support arbitrary valid block sizes in addition to page size * (mkfs.erofs) arrange on-disk meta with Breadth-First Traversal instead * support long xattr name prefixes * support UUID functionality without libuuid * (mkfs.erofs, experimental) add DEFLATE algorithm support * (mkfs.erofs, experimental) support building images directly from tarballs * (dump.erofs) print more superblock fields * (mkfs.erofs, experimental) introduce preliminary rebuild mode * various bugfixes and cleanups (CVE-2023-33551, CVE-2023-33552) - Switch service to mode=manual, as 'disabled' is deprecated. - Pass spec file through spec-cleaner. OBS-URL: https://build.opensuse.org/request/show/1116971 OBS-URL: https://build.opensuse.org/package/show/filesystems/erofs-utils?expand=0&rev=22 --- _service | 12 ++++++------ erofs-utils-1.6.tar.xz | 3 --- erofs-utils-1.7.tar.xz | 3 +++ erofs-utils.changes | 18 ++++++++++++++++++ erofs-utils.spec | 20 ++++++++++---------- 5 files changed, 37 insertions(+), 19 deletions(-) delete mode 100644 erofs-utils-1.6.tar.xz create mode 100644 erofs-utils-1.7.tar.xz diff --git a/_service b/_service index 47d9703..a428fe8 100644 --- a/_service +++ b/_service @@ -1,14 +1,14 @@ - + https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/ git - v1.6 - v1.6 - 1.6 + v1.7 + v1.7 + 1.7 - + *.tar xz - + diff --git a/erofs-utils-1.6.tar.xz b/erofs-utils-1.6.tar.xz deleted file mode 100644 index 5760a28..0000000 --- a/erofs-utils-1.6.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ac08846ba82c0716a25647502840bab2b9516062e2e81568ce2684e78c187eb -size 102064 diff --git a/erofs-utils-1.7.tar.xz b/erofs-utils-1.7.tar.xz new file mode 100644 index 0000000..085d48f --- /dev/null +++ b/erofs-utils-1.7.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05af5f6e641dfa4b1a2775406765fc6fd1814e1084e867cd852e0e9b93e0c7a7 +size 131556 diff --git a/erofs-utils.changes b/erofs-utils.changes index 7fb5554..90fc1b4 100644 --- a/erofs-utils.changes +++ b/erofs-utils.changes @@ -1,3 +1,21 @@ +------------------------------------------------------------------- +Wed Oct 11 12:00:38 UTC 2023 - Dominique Leuenberger + +- Update to version 1.7: + * support arbitrary valid block sizes in addition to page size + * (mkfs.erofs) arrange on-disk meta with Breadth-First Traversal + instead + * support long xattr name prefixes + * support UUID functionality without libuuid + * (mkfs.erofs, experimental) add DEFLATE algorithm support + * (mkfs.erofs, experimental) support building images directly + from tarballs + * (dump.erofs) print more superblock fields + * (mkfs.erofs, experimental) introduce preliminary rebuild mode + * various bugfixes and cleanups (CVE-2023-33551, CVE-2023-33552) +- Switch service to mode=manual, as 'disabled' is deprecated. +- Pass spec file through spec-cleaner. + ------------------------------------------------------------------- Mon Apr 17 13:44:38 UTC 2023 - Andrea Manzini diff --git a/erofs-utils.spec b/erofs-utils.spec index c364b10..bdaf9a3 100644 --- a/erofs-utils.spec +++ b/erofs-utils.spec @@ -17,22 +17,22 @@ Name: erofs-utils -Version: 1.6 +Version: 1.7 Release: 0 Summary: Utilities for the Extendable Read-Only Filesystem (EROFS) License: GPL-2.0-or-later Group: System/Filesystems URL: https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/ - -Source: %name-%version.tar.xz +Source: %{name}-%{version}.tar.xz BuildRequires: autoconf >= 2.69 BuildRequires: automake -BuildRequires: libtool -BuildRequires: pkg-config -BuildRequires: xz -Supplements: filesystem(erofs) BuildRequires: liblz4-devel >= 1.9 +BuildRequires: libtool BuildRequires: libuuid-devel +BuildRequires: pkgconfig +BuildRequires: xz +BuildRequires: pkgconfig(zlib) +Supplements: filesystem(erofs) %description mkfs.erofs is a user-space tool to create erofs filesystem images. It @@ -50,7 +50,7 @@ uncompressed: %build autoreconf -fiv -%configure --bindir="%_sbindir" +%configure --bindir="%{_sbindir}" %make_build %install @@ -58,7 +58,7 @@ autoreconf -fiv %files %license COPYING -%_sbindir/*erofs -%_mandir/man1/*erofs* +%{_sbindir}/*erofs +%{_mandir}/man1/*erofs* %changelog From a249c29e801543b396da5d88c0dd561ca848dad8893f1fd36125fa896872dd95 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 11 Oct 2023 13:05:53 +0000 Subject: [PATCH 2/3] remove change noise OBS-URL: https://build.opensuse.org/package/show/filesystems/erofs-utils?expand=0&rev=23 --- erofs-utils.changes | 1 - erofs-utils.spec | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/erofs-utils.changes b/erofs-utils.changes index 90fc1b4..f23fa02 100644 --- a/erofs-utils.changes +++ b/erofs-utils.changes @@ -14,7 +14,6 @@ Wed Oct 11 12:00:38 UTC 2023 - Dominique Leuenberger * (mkfs.erofs, experimental) introduce preliminary rebuild mode * various bugfixes and cleanups (CVE-2023-33551, CVE-2023-33552) - Switch service to mode=manual, as 'disabled' is deprecated. -- Pass spec file through spec-cleaner. ------------------------------------------------------------------- Mon Apr 17 13:44:38 UTC 2023 - Andrea Manzini diff --git a/erofs-utils.spec b/erofs-utils.spec index bdaf9a3..e7ce674 100644 --- a/erofs-utils.spec +++ b/erofs-utils.spec @@ -23,7 +23,7 @@ Summary: Utilities for the Extendable Read-Only Filesystem (EROFS) License: GPL-2.0-or-later Group: System/Filesystems URL: https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/ -Source: %{name}-%{version}.tar.xz +Source: %name-%version.tar.xz BuildRequires: autoconf >= 2.69 BuildRequires: automake BuildRequires: liblz4-devel >= 1.9 @@ -50,7 +50,7 @@ uncompressed: %build autoreconf -fiv -%configure --bindir="%{_sbindir}" +%configure --bindir="%_sbindir" %make_build %install @@ -58,7 +58,7 @@ autoreconf -fiv %files %license COPYING -%{_sbindir}/*erofs -%{_mandir}/man1/*erofs* +%_sbindir/*erofs +%_mandir/man1/*erofs* %changelog From 3a0944e64e80307ce33417956321a1ed80c1f9a6e86d4c739056680dd32b5771 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 11 Oct 2023 13:06:37 +0000 Subject: [PATCH 3/3] and dereference package aliases OBS-URL: https://build.opensuse.org/package/show/filesystems/erofs-utils?expand=0&rev=24 --- erofs-utils.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erofs-utils.spec b/erofs-utils.spec index e7ce674..c356c6e 100644 --- a/erofs-utils.spec +++ b/erofs-utils.spec @@ -29,7 +29,7 @@ BuildRequires: automake BuildRequires: liblz4-devel >= 1.9 BuildRequires: libtool BuildRequires: libuuid-devel -BuildRequires: pkgconfig +BuildRequires: pkg-config BuildRequires: xz BuildRequires: pkgconfig(zlib) Supplements: filesystem(erofs)