Skip to content

Commit 53ae0e3

Browse files
AkarshHCLSumitJenaHCL
authored andcommitted
Upgrade:wavpack to version 5.7.0 (microsoft#11645)
1 parent 507d933 commit 53ae0e3

File tree

3 files changed

+134
-88
lines changed

3 files changed

+134
-88
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"Signatures": {
3-
"wavpack-5.6.0.tar.bz2": "8cbfa15927d29bcf953db35c0cfca7424344ff43ebe4083daf161577fb839cc1"
3+
"wavpack-5.7.0.tar.bz2": "8944b237968a1b3976a1eb47cd556916e041a2aa8917495db65f82c3fcc2a225"
44
}
55
}

SPECS-EXTENDED/wavpack/wavpack.spec

Lines changed: 131 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,55 @@
1-
Summary: A completely open audiocodec
2-
Name: wavpack
3-
Version: 5.6.0
4-
Release: 1%{?dist}
5-
License: BSD
61
Vendor: Microsoft Corporation
72
Distribution: Azure Linux
8-
URL: https://www.wavpack.com/
9-
Source: https://www.wavpack.com/%{name}-%{version}.tar.bz2
3+
Name: wavpack
4+
Summary: A completely open audiocodec
5+
Version: 5.7.0
6+
Release: 4%{?dist}
7+
License: BSD-3-Clause AND BSD-2-Clause AND LicenseRef-Fedora-Public-Domain
8+
Url: https://www.wavpack.com/
9+
Source: https://www.wavpack.com/%{name}-%{version}.tar.bz2
10+
# For autoreconf
1011
BuildRequires: autoconf
1112
BuildRequires: automake
1213
BuildRequires: libtool
13-
# For autoreconf
1414
BuildRequires: make
15-
15+
BuildRequires: gettext-devel
16+
1617
%description
1718
WavPack is a completely open audio compression format providing lossless,
1819
high-quality lossy, and a unique hybrid compression mode. Although the
1920
technology is loosely based on previous versions of WavPack, the new
2021
version 4 format has been designed from the ground up to offer unparalleled
2122
performance and functionality.
22-
23+
2324
%package devel
24-
Summary: WavPack - development files
25-
Requires: %{name}%{?_isa} = %{version}-%{release}
26-
Requires: pkgconfig
27-
25+
Summary: WavPack - development files
26+
Requires: %{name}%{?_isa} = %{version}-%{release}
27+
Requires: pkgconfig
28+
2829
%description devel
2930
Files needed for developing apps using wavpack
30-
31+
3132
%prep
3233
%autosetup -p1
33-
34+
3435
%build
3536
autoreconf -ivf
3637
# Debian and Buildroot recomendation:
3738
# WavPack "autodetects" CPU type to enable ASM code. However, the assembly code
3839
# for ARM is written for ARMv7 only and building WavPack for an ARM-non-v7
3940
# architecture will fail.
4041
# http://lists.busybox.net/pipermail/buildroot/2015-October/142117.html
41-
%configure --disable-static \
42-
%ifarch armv3l armv4b armv4l armv4tl armv5tel armv5tejl armv6l armv6hl
43-
--disable-asm \
44-
%endif
45-
46-
%make_build
47-
42+
%configure --disable-static --disable-rpath --disable-asm
43+
44+
make %{?_smp_mflags}
45+
4846
%install
4947
%make_install
5048
rm -f %{buildroot}/%{_libdir}/*.la
51-
# Documentation installed through the %doc macro
49+
# we will install the documentation ourselves through the %doc macro
5250
rm -rf %{buildroot}/%{_docdir}/
53-
51+
5452
%ldconfig_scriptlets
55-
5653
%files
5754
%{_bindir}/*
5855
%{_libdir}/libwavpack.so.*
@@ -62,187 +59,236 @@ rm -rf %{buildroot}/%{_docdir}/
6259
%{_mandir}/man1/wvtag.1*
6360
%doc AUTHORS doc/wavpack_doc.html doc/style.css
6461
%license COPYING
65-
62+
6663
%files devel
6764
%{_includedir}/*
6865
%{_libdir}/pkgconfig/*
6966
%{_libdir}/libwavpack.so
7067
%doc ChangeLog doc/WavPack5PortingGuide.pdf doc/WavPack5LibraryDoc.pdf doc/WavPack5FileFormat.pdf
71-
68+
7269
%changelog
73-
* Wed Sep 06 2023 Archana Choudhary <archana1@microsoft.com> - 5.6.0-1
74-
- Upgrade to 5.6.0 - CVE-2021-44269 CVE-2022-2476
70+
* Fri Dec 20 2024 Akarsh Chaudhary <v-akarshc@microsoft.com> - 5.7.0-4
71+
- Initial Azure Linux import from Fedora 41 (license: MIT).
7572
- License verified
7673

77-
* Fri Oct 15 2021 Pawel Winogrodzki <[email protected]> - 5.4.0-2
78-
- Initial CBL-Mariner import from Fedora 33 (license: MIT).
79-
74+
* Mon Jul 29 2024 Tomas Korbar <[email protected]> - 5.7.0-3
75+
- Disable asm code parts
76+
- ASM code parts break support for cf-protection on x86_64,
77+
since they do not contain such feature. This situation is
78+
likely to repeat in the future and thus all code parts
79+
should be compiled by compiler which knows distribution
80+
settings.
81+
82+
* Sat Jul 20 2024 Fedora Release Engineering <[email protected]> - 5.7.0-2
83+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
84+
85+
* Wed Mar 13 2024 Tomas Korbar <[email protected]> - 5.7.0-1
86+
- Rebase to 5.7.0
87+
- Resolves: rhbz#2267425
88+
89+
* Sat Jan 27 2024 Fedora Release Engineering <[email protected]> - 5.6.0-6
90+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
91+
92+
* Thu Nov 02 2023 Tomas Korbar <[email protected]> - 5.6.0-5
93+
- Add licenses to fully conform to SPDX
94+
95+
* Sat Jul 22 2023 Fedora Release Engineering <[email protected]> - 5.6.0-4
96+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
97+
98+
* Sat Mar 11 2023 Tomas Korbar <[email protected]> - 5.6.0-3
99+
- Change the License tag to the SPDX format
100+
101+
* Sat Jan 21 2023 Fedora Release Engineering <[email protected]> - 5.6.0-2
102+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
103+
104+
* Thu Dec 08 2022 Tomas Korbar <[email protected]> - 5.6.0-1
105+
- Rebase to 5.6.0
106+
- Resolves: rhbz#2148994
107+
108+
* Sat Jul 23 2022 Fedora Release Engineering <[email protected]> - 5.5.0-2
109+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
110+
111+
* Wed Jul 13 2022 Tomas Korbar <[email protected]> - 5.5.0-1
112+
- Rebase to 5.5.0
113+
- Resolves: rhbz#2105686
114+
115+
* Wed Apr 6 2022 Peter Lemenkov <[email protected]> - 5.4.0-5
116+
- Fix for CVE-2021-44269
117+
118+
* Sat Jan 22 2022 Fedora Release Engineering <[email protected]> - 5.4.0-4
119+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
120+
121+
* Fri Jul 23 2021 Fedora Release Engineering <[email protected]> - 5.4.0-3
122+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
123+
124+
* Wed Jan 27 2021 Fedora Release Engineering <[email protected]> - 5.4.0-2
125+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
126+
80127
* Sun Jan 17 2021 Sérgio Basto <[email protected]> - 5.4.0-1
81128
- Update wavpack to 5.4.0 (#1915740)
82129
- Security fix for CVE-2020-35738
83-
130+
84131
* Wed Jul 29 2020 Fedora Release Engineering <[email protected]> - 5.3.0-2
85132
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
86-
133+
87134
* Sat Apr 18 2020 Peter Lemenkov <[email protected]> - 5.3.0-1
88135
- Update to 5.3.0
89-
136+
90137
* Fri Jan 31 2020 Fedora Release Engineering <[email protected]> - 5.2.0-2
91138
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
92-
139+
93140
* Thu Jan 09 2020 Tomas Korbar <[email protected]> - 5.2.0-1
94141
- Update to 5.2.0
95-
142+
96143
* Mon Aug 19 2019 Tomas Korbar <[email protected]> - 5.1.0-16
97144
- Fix for CVE-2019-1010317
98-
145+
99146
* Mon Aug 19 2019 Tomas Korbar <[email protected]> - 5.1.0-15
100147
- Fix for CVE-2019-1010319
101-
148+
102149
* Sat Jul 27 2019 Fedora Release Engineering <[email protected]> - 5.1.0-14
103150
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
104-
151+
105152
* Fri May 17 2019 Peter Lemenkov <[email protected]> - 5.1.0-13
106153
- Fix for CVE-2019-11498
107-
154+
108155
* Wed Apr 10 2019 Peter Lemenkov <[email protected]> - 5.1.0-12
109156
- Fix for CVE-2018-19840, CVE-2018-19841
110-
157+
111158
* Thu Feb 28 2019 Sérgio Basto <[email protected]> - 5.1.0-11
112159
- Make the manual pages decompression format agnostic
113-
160+
114161
* Sun Feb 03 2019 Fedora Release Engineering <[email protected]> - 5.1.0-10
115162
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
116-
163+
117164
* Sat Jul 14 2018 Fedora Release Engineering <[email protected]> - 5.1.0-9
118165
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
119-
166+
120167
* Tue May 22 2018 Miroslav Lichvar <[email protected]> - 5.1.0-8
121168
- Fix for CVE-2018-10536, CVE-2018-10537, CVE-2018-10538, CVE-2018-10539,
122169
CVE-2018-10540
123-
170+
124171
* Tue Feb 20 2018 Peter Lemenkov <[email protected]> - 5.1.0-7
125172
- Fix for CVE-2018-6767, CVE-2018-7253, and two more GH issues
126-
173+
127174
* Fri Feb 09 2018 Fedora Release Engineering <[email protected]> - 5.1.0-6
128175
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
129-
176+
130177
* Sat Feb 03 2018 Igor Gnatenko <[email protected]> - 5.1.0-5
131178
- Switch to %%ldconfig_scriptlets
132-
133179
* Thu Aug 03 2017 Fedora Release Engineering <[email protected]> - 5.1.0-4
134180
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
135-
181+
136182
* Thu Jul 27 2017 Fedora Release Engineering <[email protected]> - 5.1.0-3
137183
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
138-
184+
139185
* Sat Feb 11 2017 Fedora Release Engineering <[email protected]> - 5.1.0-2
140186
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
141-
187+
142188
* Wed Feb 01 2017 Sérgio Basto <[email protected]> - 5.1.0-1
143189
- Update wavpack to 5.1.0
144-
190+
145191
* Thu Apr 21 2016 Sérgio Basto <[email protected]> - 4.80.0-1
146192
- Update wavpack to 4.80.0
147-
193+
148194
* Mon Mar 28 2016 Sérgio Basto <[email protected]> - 4.75.2-1
149195
- Update to 4.75.2
150-
196+
151197
* Fri Feb 05 2016 Fedora Release Engineering <[email protected]> - 4.70.0-6
152198
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
153-
199+
154200
* Fri Jun 19 2015 Fedora Release Engineering <[email protected]> - 4.70.0-5
155201
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
156-
202+
157203
* Sat Feb 21 2015 Till Maas <[email protected]> - 4.70.0-4
158204
- Rebuilt for Fedora 23 Change
159205
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
160-
206+
161207
* Mon Aug 18 2014 Fedora Release Engineering <[email protected]> - 4.70.0-3
162208
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
163-
209+
164210
* Sun Jun 08 2014 Fedora Release Engineering <[email protected]> - 4.70.0-2
165211
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
166-
212+
167213
* Mon Feb 17 2014 Peter Lemenkov <[email protected]> - 4.70.0-1
168214
- Ver. 4.70.0
169-
215+
170216
* Sun Aug 04 2013 Fedora Release Engineering <[email protected]> - 4.60.1-8
171217
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
172-
218+
173219
* Sun Jul 21 2013 Peter Lemenkov <[email protected]> - 4.60.1-7
174220
- Reconfigure to allow building on AArch64
175221
- Cleanup spec-file
176-
222+
177223
* Fri Feb 15 2013 Fedora Release Engineering <[email protected]> - 4.60.1-6
178224
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
179-
225+
180226
* Thu Jan 3 2013 Miroslav Lichvar <[email protected]> 4.60.1-5
181227
- Fix -Wstrict-aliasing compiler warnings
182-
228+
183229
* Sun Jul 22 2012 Fedora Release Engineering <[email protected]> - 4.60.1-4
184230
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
185-
231+
186232
* Sat Jan 14 2012 Fedora Release Engineering <[email protected]> - 4.60.1-3
187233
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
188-
234+
189235
* Mon Feb 07 2011 Fedora Release Engineering <[email protected]> - 4.60.1-2
190236
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
191-
237+
192238
* Sun Jan 9 2011 Peter Lemenkov <[email protected]> 4.60.1-1
193239
- Version 4.60.1 (bugfix release)
194240
- Added man-pages
195241
- The only patch was rebased
196242
- Small cosmetic spec-file cleanups
197-
243+
198244
* Mon Sep 28 2009 Peter Lemenkov <[email protected]> 4.60-1
199245
- Version 4.60
200-
246+
201247
* Mon Jul 27 2009 Fedora Release Engineering <[email protected]> - 4.50.1-4
202248
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
203-
249+
204250
* Wed Feb 25 2009 Fedora Release Engineering <[email protected]> - 4.50.1-3
205251
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
206-
252+
207253
* Sat Aug 30 2008 Peter Lemenkov <[email protected]> 4.50.1-2
208254
- Fixes to meet the Fedora Packaging Guidelines
209-
255+
210256
* Sun Aug 24 2008 Peter Lemenkov <[email protected]> 4.50.1-1
211257
- Version 4.50.1
212-
258+
213259
* Wed Jun 18 2008 Peter Lemenkov <[email protected]> 4.50-1
214260
- Version 4.50
215-
261+
216262
* Tue Feb 19 2008 Fedora Release Engineering <[email protected]> - 4.41-2
217263
- Autorebuild for GCC 4.3
218-
264+
219265
* Sat May 12 2007 Peter Lemenkov <[email protected]> 4.41-1
220266
- Version 4.41
221267
- Removed unnecessary --with-pic
222-
268+
223269
* Fri Dec 15 2006 Peter Lemenkov <[email protected]> 4.40-1.1
224270
- Rebuild
225-
271+
226272
* Fri Dec 15 2006 Peter Lemenkov <[email protected]> 4.40-1
227273
- Version 4.40
228-
274+
229275
* Tue Sep 12 2006 Peter Lemenkov <[email protected]> 4.32-3%{?dist}
230276
- Rebuild for FC6
231-
277+
232278
* Sat Jul 01 2006 Peter Lemenkov <[email protected]> 4.32-2%{?dist}
233279
- force PIC-only code
234-
280+
235281
* Wed Jun 28 2006 Peter Lemenkov <[email protected]> 4.32-1%{?dist}
236282
- Version 4.32
237-
283+
238284
* Thu Mar 30 2006 Peter Lemenkov <[email protected]> 4.31-2%{?dist}
239285
- rebuild
240-
286+
241287
* Sat Jan 07 2006 Peter Lemenkov <[email protected]> 4.31-1
242288
- Fixed several issues with wavpack.pc.in
243289
- Cosmetic fixes.
244290
- Version 4.31
245-
291+
246292
* Sun Nov 13 2005 Peter Lemenkov <[email protected]> 4.3-1
247293
- Initial build for FC-Extras
248294
- Version 4.3

cgmanifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29736,8 +29736,8 @@
2973629736
"type": "other",
2973729737
"other": {
2973829738
"name": "wavpack",
29739-
"version": "5.6.0",
29740-
"downloadUrl": "https://www.wavpack.com/wavpack-5.6.0.tar.bz2"
29739+
"version": "5.7.0",
29740+
"downloadUrl": "https://www.wavpack.com/wavpack-5.7.0.tar.bz2"
2974129741
}
2974229742
}
2974329743
},

0 commit comments

Comments
 (0)