Skip to content

Commit 98d7929

Browse files
author
Git for Windows Build Agent
committed
Update 2 packages
mingw-w64-i686 (7zip-23.01-1 -> 7zip-24.09-3) mingw-w64-i686-osslsigncode (2.7-1 -> 2.9-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent e2bd918 commit 98d7929

File tree

34 files changed

+241
-66
lines changed

34 files changed

+241
-66
lines changed

etc/rebase.db.i386

0 Bytes
Binary file not shown.

mingw32/bin/7z.dll

-8 KB
Binary file not shown.

mingw32/bin/7z.exe

-135 KB
Binary file not shown.

mingw32/bin/osslsigncode.exe

48.3 KB
Binary file not shown.

mingw32/lib/7zip/7zCon.sfx

24 KB
Binary file not shown.

mingw32/share/doc/7zip/7zip.hhp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ cmdline\switches\working_dir.htm
7171
cmdline\switches\exclude.htm
7272
fm\options.htm
7373
fm\benchmark.htm
74+
fm\temp.htm
7475
fm\index.htm
7576
fm\menu.htm
7677
fm\about.htm

mingw32/share/doc/7zip/7zip.wxs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22

3-
<?define VerMajor = "23" ?>
4-
<?define VerMinor = "01" ?>
3+
<?define VerMajor = "24" ?>
4+
<?define VerMinor = "09" ?>
55
<?define VerBuild = "00" ?>
66
<?define MmVer = "$(var.VerMajor).$(var.VerMinor)" ?>
77
<?define MmHex = "$(var.VerMajor)$(var.VerMinor)" ?>

mingw32/share/doc/7zip/License.txt

Lines changed: 103 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@
33
License for use and distribution
44
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
55

6-
7-Zip Copyright (C) 1999-2020 Igor Pavlov.
6+
7-Zip Copyright (C) 1999-2024 Igor Pavlov.
77

88
The licenses for files are:
99

10-
1) CPP/7zip/Compress/Rar* files: the "GNU LGPL" with "unRAR license restriction"
11-
2) CPP/7zip/Compress/LzfseDecoder.cpp: the "BSD 3-clause License"
12-
3) Some files are "public domain" files, if "public domain" status is stated in source file.
13-
4) the "GNU LGPL" for all other files. If there is no license information in
10+
- CPP/7zip/Compress/Rar* files: the "GNU LGPL" with "unRAR license restriction"
11+
- CPP/7zip/Compress/LzfseDecoder.cpp: the "BSD 3-clause License"
12+
- C/ZstdDec.c: the "BSD 3-clause License"
13+
- C/Xxh64.c: the "BSD 2-clause License"
14+
- Some files are "public domain" files, if "public domain" status is stated in source file.
15+
- the "GNU LGPL" for all other files. If there is no license information in
1416
some source file, that file is under the "GNU LGPL".
1517

1618
The "GNU LGPL" with "unRAR license restriction" means that you must follow both
@@ -19,8 +21,8 @@
1921

2022

2123

22-
GNU LGPL information
23-
--------------------
24+
GNU LGPL information
25+
--------------------
2426

2527
This library is free software; you can redistribute it and/or
2628
modify it under the terms of the GNU Lesser General Public
@@ -33,58 +35,117 @@
3335
Lesser General Public License for more details.
3436

3537
You should have received a copy of the GNU Lesser General Public
36-
License along with this library; if not, write to the Free Software
37-
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
38+
License along with this library; if not,
39+
you can get a copy of the GNU Lesser General Public License from
40+
http://www.gnu.org/
3841

3942

4043

4144

42-
BSD 3-clause License
43-
--------------------
45+
BSD 3-clause License in 7-Zip code
46+
----------------------------------
4447

45-
The "BSD 3-clause License" is used for the code in LzfseDecoder.cpp that implements LZFSE data decompression.
46-
That code was derived from the code in the "LZFSE compression library" developed by Apple Inc,
47-
that also uses the "BSD 3-clause License":
48+
The "BSD 3-clause License" is used for the following code in 7z.dll
49+
1) LZFSE data decompression.
50+
CPP/7zip/Compress/LzfseDecoder.cpp.
51+
That code was derived from the code in the "LZFSE compression library" developed by Apple Inc,
52+
that also uses the "BSD 3-clause License".
53+
2) ZSTD data decompression.
54+
C/ZstdDec.c
55+
that code was developed using original zstd decoder code as reference code.
56+
The original zstd decoder code was developed by Facebook Inc,
57+
that also uses the "BSD 3-clause License".
4858

49-
----
50-
Copyright (c) 2015-2016, Apple Inc. All rights reserved.
59+
Copyright (c) 2015-2016, Apple Inc. All rights reserved.
60+
Copyright (c) Facebook, Inc. All rights reserved.
61+
Copyright (c) 2023-2024 Igor Pavlov.
5162

52-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
63+
Text of the "BSD 3-clause License"
64+
----------------------------------
5365

54-
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
66+
Redistribution and use in source and binary forms, with or without modification,
67+
are permitted provided that the following conditions are met:
5568

56-
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
57-
in the documentation and/or other materials provided with the distribution.
69+
1. Redistributions of source code must retain the above copyright notice, this
70+
list of conditions and the following disclaimer.
5871

59-
3. Neither the name of the copyright holder(s) nor the names of any contributors may be used to endorse or promote products derived
60-
from this software without specific prior written permission.
72+
2. Redistributions in binary form must reproduce the above copyright notice,
73+
this list of conditions and the following disclaimer in the documentation
74+
and/or other materials provided with the distribution.
6175

62-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
63-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
64-
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
65-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66-
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
67-
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
68-
----
76+
3. Neither the name of the copyright holder nor the names of its contributors may
77+
be used to endorse or promote products derived from this software without
78+
specific prior written permission.
6979

80+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
81+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
82+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
83+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
84+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
85+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
86+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
87+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
88+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
89+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7090

91+
---
7192

7293

73-
unRAR license restriction
74-
-------------------------
7594

76-
The decompression engine for RAR archives was developed using source
77-
code of unRAR program.
78-
All copyrights to original unRAR code are owned by Alexander Roshal.
7995

80-
The license for original unRAR code has the following restriction:
96+
BSD 2-clause License in 7-Zip code
97+
----------------------------------
8198

82-
The unRAR sources cannot be used to re-create the RAR compression algorithm,
83-
which is proprietary. Distribution of modified unRAR sources in separate form
84-
or as a part of other software is permitted, provided that it is clearly
85-
stated in the documentation and source comments that the code may
86-
not be used to develop a RAR (WinRAR) compatible archiver.
99+
The "BSD 2-clause License" is used for the XXH64 code in 7-Zip.
100+
C/Xxh64.c
87101

102+
XXH64 code in 7-Zip was derived from the original XXH64 code developed by Yann Collet.
88103

89-
--
90-
Igor Pavlov
104+
Copyright (c) 2012-2021 Yann Collet.
105+
Copyright (c) 2023-2024 Igor Pavlov.
106+
107+
Text of the "BSD 2-clause License"
108+
----------------------------------
109+
110+
Redistribution and use in source and binary forms, with or without modification,
111+
are permitted provided that the following conditions are met:
112+
113+
1. Redistributions of source code must retain the above copyright notice, this
114+
list of conditions and the following disclaimer.
115+
116+
2. Redistributions in binary form must reproduce the above copyright notice,
117+
this list of conditions and the following disclaimer in the documentation
118+
and/or other materials provided with the distribution.
119+
120+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
121+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
122+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
123+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
124+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
125+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
126+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
127+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
128+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
129+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
130+
131+
---
132+
133+
134+
135+
136+
unRAR license restriction
137+
-------------------------
138+
139+
The decompression engine for RAR archives was developed using source
140+
code of unRAR program.
141+
All copyrights to original unRAR code are owned by Alexander Roshal.
142+
143+
The license for original unRAR code has the following restriction:
144+
145+
The unRAR sources cannot be used to re-create the RAR compression algorithm,
146+
which is proprietary. Distribution of modified unRAR sources in separate form
147+
or as a part of other software is permitted, provided that it is clearly
148+
stated in the documentation and source comments that the code may
149+
not be used to develop a RAR (WinRAR) compatible archiver.
150+
151+
--

mingw32/share/doc/7zip/Methods.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
7-Zip method IDs for 7z and xz archives
22
---------------------------------------
33

4-
Version: 23.01
5-
Date: 2023-06-30
4+
Version: 24.02
5+
Date: 2024-03-22
66

77
Each compression or crypto method in 7z is associated with unique binary value (ID).
88
The length of ID in bytes is arbitrary but it can not exceed 63 bits (8 bytes).
@@ -38,6 +38,7 @@ List of defined IDs
3838
08 - ARMT (little-endian)
3939
09 - SPARC
4040
0A - ARM64
41+
0B - RISCV
4142

4243
21 - LZMA2
4344

mingw32/share/doc/7zip/lzma.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
LZMA compression
22
----------------
3-
Version: 23.01
3+
Version: 24.07
44

55
This file describes LZMA encoding and decoding functions written in C language.
66

0 commit comments

Comments
 (0)