Compare commits

...

12 Commits

Author SHA1 Message Date
openeuler-ci-bot
d1179680f5
!13 upgrade version to 1.3.2 and Fix CVE-2023-46228
From: @duyiwei7w 
Reviewed-by: @fu-shanqing 
Signed-off-by: @fu-shanqing
2023-10-19 09:05:08 +00:00
duyiwei
5f693f6fb1 upgrade version to 1.3.2 and Fix CVE-2023-46228 2023-10-19 16:53:56 +08:00
openeuler-ci-bot
5eb63d366d
!11 Specification NestOS Project Component Description File
From: @duyiwei7w 
Reviewed-by: @fu-shanqing 
Signed-off-by: @fu-shanqing
2023-06-21 06:59:48 +00:00
duyiwei
d8683b1539
Specification NestOS Project Component Description File
Signed-off-by: duyiwei <duyiwei@kylinos.cn>
2023-06-21 05:51:48 +00:00
openeuler-ci-bot
6c135e7450
!8 【NestOS-22.03-LTS-SP2】升级zchunk至上游最新版本
From: @duyiwei7w 
Reviewed-by: @fu-shanqing 
Signed-off-by: @fu-shanqing
2023-05-30 09:26:20 +00:00
duyiwei
4a70cf603f upgrade version to 1.3.1 2023-05-30 16:43:37 +08:00
openeuler-ci-bot
46b915dd83
!6 【NestOS】22.03-lts-SP1选型升级至1.2.3
From: @duyiwei7w 
Reviewed-by: @fu-shanqing 
Signed-off-by: @fu-shanqing
2022-11-14 05:47:24 +00:00
duyiwei
6f13abf66b upgrade to 1.2.3 2022-11-10 15:07:25 +08:00
openeuler-ci-bot
9c078ac76e
!3 upgrade zchunk to 1.2.1
From: @duyiwei7w 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2022-04-24 07:05:42 +00:00
openeuler-ci-bot
89b87fc979
!2 Submit yaml file into this repository
From: @duyiwei7w 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2022-04-24 07:00:34 +00:00
duyiwei
36e9d7525a upgrade to 1.2.1 2022-04-21 08:29:28 +08:00
duyiwei
775067a549
add zchunk.yaml. 2022-04-20 11:38:20 +00:00
5 changed files with 60 additions and 17 deletions

View File

@ -1,30 +1,54 @@
# zchunk # zchunk
#### 介绍 #### 介绍
zchunk is a compressed file format that splits the file into independent chunks. zchunk 是一种压缩文件格式,专为高效增量而设计,同时保持良好的压缩性能,可将文件拆分为独立的块。 这允许在下载文件的新版本时仅下载更改的块。zchunk 文件受到强校验和的保护,以验证下载的文件实际上是想要的文件。
zchunk is a compressed file format that splits the file into independent chunks. This allows you to only download changed chunks when downloading a new version of the file. Files can hosted on any web server that supports HTTP ranged requests, with no special software required to serve the files (though to download only the changed chunks, your client must be zchunk-aware).
#### 软件架构
软件架构说明
#### 安装教程 #### 安装教程
1. xxxx Install zchunk rpm package:
2. xxxx
3. xxxx yum install zchunk
要从源码构建和安装 zchunk首先安装 meson 并运行
meson build
cd build
ninja
ninja test
sudo ninja install
如果正在构建一些库存储在 /usr/local 中的操作系统,则需要替换上面的 meson build如下所示
CFLAGS=-I/usr/local/include CXXFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib meson build
#### 使用说明 #### 使用说明
1. xxxx To decompress a zchunk file, simply run:
2. xxxx
3. xxxx unzck <filename>
To compress a new zchunk file, run:
zck <filename>
To download a zchunk file, run:
zckdl -s <source> <url of target>
To read a zchunk header, run:
zck_read_header <file>
#### 参与贡献 #### 参与贡献
1. Fork 本仓库 master分支使用最新的上游版本如果检测到上游有最新版本发布先形成issue后再提交对应PR更新流程如下。
2. 新建 Feat_xxx 分支 1. 提交issue
3. 提交代码 2. Fork 本仓库
4. 新建 Pull Request 3. 新建 Feat_xxx 分支
4. 提交代码
5. 新建 Pull Request
#### 特技 #### 特技

Binary file not shown.

BIN
zchunk-1.3.2.tar.gz Normal file

Binary file not shown.

View File

@ -1,8 +1,8 @@
Name: zchunk Name: zchunk
Version: 1.1.15 Version: 1.3.2
Release: 1 Release: 1
Summary: Compressed file format that allows easy deltas Summary: Compressed file format that allows easy deltas
License: BSD-2 License: BSD-2-Clause
URL: https://github.com/zchunk/zchunk URL: https://github.com/zchunk/zchunk
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc BuildRequires: gcc
@ -72,5 +72,20 @@ install contrib/gen_xml_dictionary %{buildroot}%{_libexecdir}/zck_gen_xml_dictio
%{_includedir}/zck.h %{_includedir}/zck.h
%changelog %changelog
* Thu Oct 19 2023 duyiwei <duyiwei@kylinos.cn> - 1.3.2-1
- upgrade version to 1.3.2 and Fix CVE-2023-46228
* Tue May 30 2023 duyiwei <duyiwei@kylinos.cn> - 1.3.1-1
- upgrade version to 1.3.1
* Mon Nov 07 2022 duyiwei <duyiwei@kylinos.cn> - 1.2.3-1
- upgrade version to 1.2.3
* Fri Jul 29 2022 liukuo <liukuo@kylinos.cn> - 1.2.1-2
- License compliance rectification
* Wed Apr 20 2022 duyiwei <duyiwei@kylinos.cn> - 1.2.1-1
- upgrade to 1.2.1
* Wed Jan 5 2022 duyiwei <duyiwei@kylinos.cn> - 1.1.15-1 * Wed Jan 5 2022 duyiwei <duyiwei@kylinos.cn> - 1.1.15-1
- Package init - Package init

4
zchunk.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: github
src_repo: zchunk/zchunk
tag_prefix: ""
separator: "."