forked from pool/erofs-utils
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
This commit is contained in:
parent
3e55631565
commit
7f96393ab0
12
_service
12
_service
@ -1,14 +1,14 @@
|
||||
<services>
|
||||
<service mode="disabled" name="tar_scm">
|
||||
<service mode="manual" name="tar_scm">
|
||||
<param name="url">https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">v1.6</param>
|
||||
<param name="parent-tag">v1.6</param>
|
||||
<param name="versionformat">1.6</param>
|
||||
<param name="revision">v1.7</param>
|
||||
<param name="parent-tag">v1.7</param>
|
||||
<param name="versionformat">1.7</param>
|
||||
</service>
|
||||
<service mode="disabled" name="recompress">
|
||||
<service mode="manual" name="recompress">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service mode="disabled" name="set_version"/>
|
||||
<service mode="manual" name="set_version"/>
|
||||
</services>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ac08846ba82c0716a25647502840bab2b9516062e2e81568ce2684e78c187eb
|
||||
size 102064
|
3
erofs-utils-1.7.tar.xz
Normal file
3
erofs-utils-1.7.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05af5f6e641dfa4b1a2775406765fc6fd1814e1084e867cd852e0e9b93e0c7a7
|
||||
size 131556
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 11 12:00:38 UTC 2023 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- 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 <andrea.manzini@suse.com>
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user