1
0
forked from pool/erofs-utils

- Update to release 1.0

OBS-URL: https://build.opensuse.org/package/show/filesystems/erofs-utils?expand=0&rev=13
This commit is contained in:
Jan Engelhardt 2019-11-08 08:14:45 +00:00 committed by Git OBS Bridge
parent 91e9c5ad08
commit 222447119a
6 changed files with 24 additions and 64 deletions

View File

@ -2,9 +2,9 @@
<service mode="disabled" 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">erofs-utils_20190826</param>
<param name="parent-tag">589ab3accd0908f4664c839c6a3a320fa56346ec</param>
<param name="versionformat">0.1+20190826</param>
<param name="revision">v1.0</param>
<param name="parent-tag">v1.0</param>
<param name="versionformat">1.0</param>
</service>
<service mode="disabled" name="recompress">
<param name="file">*.tar</param>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d1bf58a8da1c86d46e0122a40283cfd11c4010691990f5a4e971eb9604aa42c3
size 29220

3
erofs-utils-1.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6d4b9d16f8c4b39ed0bcb09fd04306106f0ee04d926d39ae8e3ce4e291d5857f
size 37460

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Fri Nov 8 08:00:40 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Update to release 1.0
* list available compressors for help command
* introduce long parameter option
* introduce shared xattr support
* introduce inline xattr support
* fix old kernel compatibility for non-lz4 compression
* introduce fixed UNIX timestamp
* complete extended inode support
* support 64-bit internal buffer cache
* keep up with in-kernel ondisk format naming
* resize image to the correct size
* complete special file support
- Drop long.patch (merged upstream)
-------------------------------------------------------------------
Sun Sep 8 14:26:05 UTC 2019 - Jan Engelhardt <jengelh@inai.de>

View File

@ -17,7 +17,7 @@
Name: erofs-utils
Version: 0.1+20190826
Version: 1.0
Release: 0
Summary: Utilities for the Extendable Read-Only Filesystem (EROFS)
License: GPL-2.0-or-later
@ -25,7 +25,6 @@ Group: System/Filesystems
URL: https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/
Source: %name-%version.tar.xz
Patch1: long.patch
BuildRequires: autoconf >= 2.69
BuildRequires: automake
BuildRequires: libtool

View File

@ -1,56 +0,0 @@
From 5c314e288719b59fb8bad90fd1a75b8076baceee Mon Sep 17 00:00:00 2001
From: Jan Engelhardt <jengelh@inai.de>
Date: Sun, 8 Sep 2019 16:52:56 +0200
Subject: [PATCH] build: cure compiler warnings
On i586 I observe:
In file included from inode.c:16:
inode.c: In function 'erofs_mkfs_build_tree':
../include/erofs/print.h:27:21: error: format '%lu' expects argument of type
'long unsigned int', but argument 7 has type 'erofs_nid_t' {aka 'long long unsigned int'} [-Werror=format=]
27 | #define pr_fmt(fmt) "EROFS: " FUNC_LINE_FMT fmt "\n"
../include/erofs/print.h:43:4: note: in expansion of macro 'pr_fmt'
43 | pr_fmt(fmt), \
inode.c:792:3: note: in expansion of macro 'erofs_info'
792 | erofs_info("add file %s/%s (nid %lu, type %d)",
inode.c:792:37: note: format string is defined here
792 | erofs_info("add file %s/%s (nid %lu, type %d)",
---
lib/compress.c | 4 ++--
lib/inode.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/compress.c b/lib/compress.c
index a977c87..cadf598 100644
--- a/lib/compress.c
+++ b/lib/compress.c
@@ -457,8 +457,8 @@ int erofs_write_compressed_file(struct erofs_inode *inode)
ret = erofs_bh_balloon(bh, blknr_to_addr(compressed_blocks));
DBG_BUGON(ret);
- erofs_info("compressed %s (%lu bytes) into %u blocks",
- inode->i_srcpath, inode->i_size, compressed_blocks);
+ erofs_info("compressed %s (%llu bytes) into %u blocks",
+ inode->i_srcpath, (unsigned long long)inode->i_size, compressed_blocks);
/*
* TODO: need to move erofs_bdrop to erofs_write_tail_end
diff --git a/lib/inode.c b/lib/inode.c
index 141a300..db9ad99 100644
--- a/lib/inode.c
+++ b/lib/inode.c
@@ -789,8 +789,8 @@ fail:
d->type = erofs_type_by_mode[d->inode->i_mode >> S_SHIFT];
erofs_d_invalidate(d);
- erofs_info("add file %s/%s (nid %lu, type %d)",
- dir->i_srcpath, d->name, d->nid, d->type);
+ erofs_info("add file %s/%s (nid %llu, type %d)",
+ dir->i_srcpath, d->name, (unsigned long long)d->nid, d->type);
}
erofs_write_dir_file(dir);
erofs_write_tail_end(dir);
--
2.23.0