-
Notifications
You must be signed in to change notification settings - Fork 3
/
x265.spec
344 lines (264 loc) · 10.8 KB
/
x265.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
# Use old cmake macro
%global __cmake_in_source_build 1
%global _so_version 212
Summary: H.265/HEVC encoder
Name: x265
Version: 4.0
Release: 1%{?dist}
URL: http://x265.org/
# source/Lib/TLibCommon - BSD
# source/Lib/TLibEncoder - BSD
# everything else - GPLv2+
License: GPLv2+ and BSD
Source0: https://bitbucket.org/multicoreware/%{name}_git/downloads/%{name}_%{version}.tar.gz
# fix building as PIC
Patch0: x265-pic.patch
Patch1: x265-high-bit-depth-soname.patch
Patch2: x265-pkgconfig_path_fix.patch
# https://bitbucket.org/multicoreware/x265_git/pull-requests/10
Patch3: https://bitbucket.org/harlancc/x265_git/commits/8454caf458c5f5d20cce711ff8ea8de55ec1ae50/raw#/x265-sei-length-crash-fix.patch
BuildRequires: gcc-c++
BuildRequires: git
BuildRequires: cmake
%{?el7:BuildRequires: epel-rpm-macros}
BuildRequires: nasm
BuildRequires: ninja-build
%ifnarch armv7hl armv7hnl s390 s390x
BuildRequires: numactl-devel
%endif
%description
The primary objective of x265 is to become the best H.265/HEVC encoder
available anywhere, offering the highest compression efficiency and the highest
performance on a wide variety of hardware platforms.
This package contains the command line encoder.
%package libs
Summary: H.265/HEVC encoder library
%description libs
The primary objective of x265 is to become the best H.265/HEVC encoder
available anywhere, offering the highest compression efficiency and the
highest performance on a wide variety of hardware platforms.
This package contains the shared library.
%package devel
Summary: H.265/HEVC encoder library development files
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%description devel
The primary objective of x265 is to become the best H.265/HEVC encoder
available anywhere, offering the highest compression efficiency and the highest
performance on a wide variety of hardware platforms.
This package contains the shared library development files.
%prep
%autosetup -p1 -n %{name}_%{version}
%build
# High depth libraries (from source/h265.h):
# If the requested bitDepth is not supported by the linked libx265,
# it will attempt to dynamically bind x265_api_get() from a shared
# library with an appropriate name:
# 8bit: libx265_main.so
# 10bit: libx265_main10.so
build() {
%cmake -Wno-dev -G "Ninja" \
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON \
-DCMAKE_SKIP_RPATH:BOOL=YES \
-DENABLE_PIC:BOOL=ON \
-DENABLE_SHARED=ON \
-DENABLE_TESTS:BOOL=ON \
-DENABLE_HDR10_PLUS=YES \
-DCMAKE_ASM_NASM_FLAGS=-w-macro-params-legacy \
$* \
../source
%cmake_build
}
# High depth 10/12 bit libraries are supported only on 64 bit. They require
# disabled AltiVec instructions for building on ppc64/ppc64le.
%ifarch x86_64 aarch64 ppc64 ppc64le
mkdir 10bit; pushd 10bit
build \
-DENABLE_CLI=OFF \
-DENABLE_ALTIVEC=OFF \
-DHIGH_BIT_DEPTH=ON
popd
mkdir 12bit; pushd 12bit
build \
-DENABLE_CLI=OFF \
-DENABLE_ALTIVEC=OFF \
-DHIGH_BIT_DEPTH=ON \
-DMAIN12=ON
popd
%endif
# 8 bit base library + encoder
mkdir 8bit; pushd 8bit
build
popd
%install
for i in 8 10 12; do
if [ -d ${i}bit ]; then
pushd ${i}bit
%cmake_install
# Remove unversioned library, should not be linked to
rm -f %{buildroot}%{_libdir}/libx265_main${i}.so
popd
fi
done
find %{buildroot} -name "*.a" -delete
%check
for i in 8 10 12; do
if [ -d ${i}bit ]; then
pushd ${i}bit
test/TestBench || :
popd
fi
done
%ldconfig_scriptlets libs
%files
%{_bindir}/x265
%files libs
%license COPYING
%{_libdir}/libhdr10plus.so
%{_libdir}/libx265.so.%{_so_version}
%ifarch x86_64 aarch64 ppc64 ppc64le
%{_libdir}/libx265_main10.so.%{_so_version}
%{_libdir}/libx265_main12.so.%{_so_version}
%endif
%files devel
%doc doc/*
%{_includedir}/hdr10plus.h
%{_includedir}/x265.h
%{_includedir}/x265_config.h
%{_libdir}/libx265.so
%{_libdir}/pkgconfig/x265.pc
%changelog
* Sun Sep 15 2024 Leigh Scott <[email protected]> - 4.0-1
- Update to 4.0
* Fri Aug 02 2024 RPM Fusion Release Engineering <[email protected]> - 3.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Thu May 16 2024 Dominik Mierzejewski <[email protected]> - 3.6-2
- Backport a fix for crashes when encoding with variable length SEI
* Sat Apr 06 2024 Leigh Scott <[email protected]> - 3.6-1
- Update to 3.6
* Sun Feb 04 2024 RPM Fusion Release Engineering <[email protected]> - 3.5-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Wed Aug 02 2023 RPM Fusion Release Engineering <[email protected]> - 3.5-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Thu Dec 29 2022 Nicolas Chauvet <[email protected]> - 3.5-5
- Enable ENABLE_HDR10_PLUS everywhere rfbz#6454
* Mon Aug 08 2022 RPM Fusion Release Engineering <[email protected]> - 3.5-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg
5.1
* Wed Feb 09 2022 RPM Fusion Release Engineering <[email protected]> - 3.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Tue Aug 03 2021 RPM Fusion Release Engineering <[email protected]> - 3.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Apr 13 2021 Leigh Scott <[email protected]> - 3.5-1
- Update to 3.5
* Tue Mar 16 2021 Leigh Scott <[email protected]> - 3.4-5
- Enable HDR10+.
* Thu Feb 04 2021 RPM Fusion Release Engineering <[email protected]> - 3.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Wed Aug 19 2020 RPM Fusion Release Engineering <[email protected]> - 3.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Thu Jul 23 2020 Leigh Scott <[email protected]> - 3.4-2
- Use old cmake macro
* Sun May 31 2020 Leigh Scott <[email protected]> - 3.4-1
- Update to 3.4
* Wed Mar 11 2020 Nicolas Chauvet <[email protected]> - 3.3-2
- Rebuilt for i686
* Sun Feb 23 2020 Leigh Scott <[email protected]> - 3.3-1
- Update to 3.3
* Wed Feb 05 2020 RPM Fusion Release Engineering <[email protected]> - 3.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Nov 28 2019 Leigh Scott <[email protected]> - 3.2.1-1
- Update to 3.2.1
- Switch upstream source url
* Fri Aug 09 2019 RPM Fusion Release Engineering <[email protected]> - 3.1.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Sun Aug 04 2019 Leigh Scott <[email protected]> - 3.1.2-1
- Update to 3.1.2
* Fri Jun 28 2019 Nicolas Chauvet <[email protected]> - 3.1-1
- Update to 3.1
- Switch to github mirror
* Tue Mar 05 2019 RPM Fusion Release Engineering <[email protected]> - 3.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Feb 28 2019 Leigh Scott <[email protected]> - 3.0-1
- Update to 3.0
* Sun Dec 30 2018 Leigh Scott <[email protected]> - 2.9-3
- Rebuild against newer nasm on el7 (rfbz #5128)
* Wed Nov 21 2018 Antonio Trande <[email protected]> - 2.9-2
- Rebuild for ffmpeg-3.* on el7
* Sun Nov 18 2018 Leigh Scott <[email protected]> - 2.9-1
- Update to 2.9
* Thu Oct 04 2018 Sérgio Basto <[email protected]> - 2.8-1
- Update to 2.8 more 2 patches to fix builds on non-x86 and arm
https://bitbucket.org/multicoreware/x265/issues/404/28-fails-to-build-on-ppc64le-gnu-linux
https://bitbucket.org/multicoreware/x265/issues/406/arm-assembly-fail-to-compile-on-18
* Sun Aug 19 2018 Leigh Scott <[email protected]> - 2.7-5
- Rebuilt for Fedora 29 Mass Rebuild binutils issue
* Fri Jul 27 2018 RPM Fusion Release Engineering <[email protected]> - 2.7-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Sun Apr 08 2018 Leigh Scott <[email protected]> - 2.7-3
- Fix pkgconfig file (rfbz #4853)
* Tue Feb 27 2018 Nicolas Chauvet <[email protected]> - 2.7-2
- Fix CFLAGS on ARM
* Tue Feb 27 2018 Leigh Scott <[email protected]> - 2.7-1
- update to 2.7
- Drop shared test patch as it causes nasm build to fail
- Fix scriptlets
- Use ninja to build
* Sat Dec 30 2017 Sérgio Basto <[email protected]> - 2.6-1
- Update x265 to 2.6
* Mon Oct 16 2017 Leigh Scott <[email protected]> - 2.5-1
- update to 2.5
* Thu Aug 31 2017 RPM Fusion Release Engineering <[email protected]> - 2.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Sat Apr 29 2017 Leigh Scott <[email protected]> - 2.4-1
- update to 2.4
* Mon Apr 10 2017 Simone Caronni <[email protected]> - 2.2-3
- Use source from multicoreware website.
- Clean up SPEC file a bit (formatting, 80 char wide descriptions).
- Enable shared 10/12 bit libraries on 64 bit architectures.
* Mon Mar 20 2017 RPM Fusion Release Engineering <[email protected]> - 2.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Tue Jan 03 2017 Dominik Mierzejewski <[email protected]> - 2.2-1
- update to 2.2
- spell out SO version in file list
- fix typo in patch
* Mon Nov 07 2016 Sérgio Basto <[email protected]> - 2.1-1
- Update to 2.1
* Thu Aug 18 2016 Sérgio Basto <[email protected]> - 1.9-3
- Clean spec, Vascom patches series, rfbz #4199, add license tag
* Tue Jul 19 2016 Dominik Mierzejewski <[email protected]> - 1.9-2
- use https for source URL
- enable NUMA support
- make sure Fedora compiler flags are used on ARM
* Fri Apr 08 2016 Adrian Reber <[email protected]> - 1.9-1
- Update to 1.9
* Sun Oct 25 2015 Dominik Mierzejewski <[email protected]> 1.8-2
- fix building as PIC
- update SO version in file list
* Sat Oct 24 2015 Nicolas Chauvet <[email protected]> - 1.8-1
- Update to 1.8
- Avoid tests for now
* Wed Apr 15 2015 Dominik Mierzejewski <[email protected]> 1.6-1
- update to 1.6 (ABI bump, rfbz#3593)
- release tarballs are now hosted on videolan.org
- drop obsolete patches
* Thu Dec 18 2014 Dominik Mierzejewski <[email protected]> 1.2-6
- fix build on armv7l arch (partially fix rfbz#3361, patch by Nicolas Chauvet)
- don't run tests on ARM for now (rfbz#3361)
* Sun Aug 17 2014 Dominik Mierzejewski <[email protected]> 1.2-5
- don't include contributor agreement in doc
- make sure /usr/share/doc/x265 is owned
- add a comment noting which files are BSD-licenced
* Fri Aug 08 2014 Dominik Mierzejewski <[email protected]> 1.2-4
- don't create bogus soname (patch by Xavier)
* Thu Jul 17 2014 Dominik Mierzejewski <[email protected]> 1.2-3
- fix tr call to remove DOS EOL
- build the library with -fPIC on arm and i686, too
* Sun Jul 13 2014 Dominik Mierzejewski <[email protected]> 1.2-2
- use version in source URL
- update License tag
- fix EOL in drag-uncrustify.bat
- don't link test binaries with shared binary on x86 (segfault)
* Thu Jul 10 2014 Dominik Mierzejewski <[email protected]> 1.2-1
- initial build
- fix pkgconfig file install location
- link test binaries with shared library