-
Notifications
You must be signed in to change notification settings - Fork 10
/
kodi.spec
896 lines (698 loc) · 27.1 KB
/
kodi.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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
#global PRERELEASE rc2
%global DIRVERSION %{version}
#global GITCOMMIT db40b2a
# use the line below for pre-releases
#global DIRVERSION %{version}-%{GITCOMMIT}
#global DIRVERSION %{version}%{PRERELEASE}
%global _hardened_build 1
%ifarch %{arm} %{arm64}
# Disable LTO for arm, see http://koji.rpmfusion.org/koji/taskinfo?taskID=424139
%global _lto_cflags %{nil}
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
%endif
# Needed for F36 build issue
%undefine _package_note_file
# We support hte following options:
# --with,
# * dvdcss - Include DVD decryption support
#
# Default: Do not ship DVD decryption for legal reasons
%bcond_with dvdcss
# Optional deps (not in EPEL)
%if 0%{?fedora}
# (libbluray in EPEL 6 is too old.)
%global _with_libbluray 1
%global _with_cwiid 0
%global _with_libssh 1
%global _with_libcec 1
%global _with_external_ffmpeg 1
%global _with_wayland 1
%endif
%if 0%{?_with_wayland}
%global kodi_backends x11 wayland gbm
%else
%global kodi_backends x11 gbm
%endif
Name: kodi
Version: 21.1
Release: 2%{?dist}
Summary: Media center
License: GPLv2+ and GPLv3+ and LGPLv2+ and BSD and MIT
# Main binary and all supporting files are GPLv2+/GPLv3+
# Some supporting libraries use the LGPL / BSD / MIT license
Group: Applications/Multimedia
URL: https://www.kodi.tv/
Source0: %{name}-%{DIRVERSION}-patched.tar.xz
# kodi contains code that we cannot ship, as well as redundant private
# copies of upstream libraries that we already distribute. Therefore
# we use this script to remove the code before shipping it.
# Invoke this script while in the directory where the tarball is located:
# ./kodi-generate-tarball-xz.sh
Source1: kodi-generate-tarball-xz.sh
# kodi uses modified libdvd{css,nav,read} source and downloads at build time
# wget -O kodi-libdvdnav-6.1.1-Next-Nexus-Alpha2-2.tar.gz https://github.com/xbmc/libdvdnav/archive/6.1.1-Next-Nexus-Alpha2-2.tar.gz
Source2: kodi-libdvdnav-6.1.1-Next-Nexus-Alpha2-2.tar.gz
# wget -O kodi-libdvdread-6.1.3-Next-Nexus-Alpha2-2.tar.gz https://github.com/xbmc/libdvdread/archive/6.1.3-Next-Nexus-Alpha2-2.tar.gz
Source3: kodi-libdvdread-6.1.3-Next-Nexus-Alpha2-2.tar.gz
%if %{with dvdcss}
# wget -O kodi-libdvdcss-1.4.3-Next-Nexus-Alpha2-2.tar.gz https://github.com/xbmc/libdvdcss/archive/1.4.3-Next-Nexus-Alpha2-2.tar.gz
Source4: kodi-libdvdcss-1.4.3-Next-Nexus-Alpha2-2.tar.gz
%endif
%if ! 0%{?_with_external_ffmpeg}
# wget -O ffmpeg-5.1.2-Nexus-Alpha3.tar.gz https://github.com/xbmc/FFmpeg/archive/5.1.2-Nexus-Alpha3.tar.gz
Source5: ffmpeg-5.1.2-Nexus-Alpha3.tar.gz
%endif
# Build dependency ONLY
# wget -O apache-groovy-binary-4.0.16.zip http://mirrors.kodi.tv/build-deps/sources/apache-groovy-binary-4.0.16.zip
Source6: apache-groovy-binary-4.0.16.zip
# Set program version parameters
Patch0: kodi-20-versioning.patch
# Python-3.13 fix
Patch1: fix_py313.patch
# ffmpeg-7 fix
# https://github.com/xbmc/xbmc/pull/24972
# https://salsa.debian.org/multimedia-team/kodi-media-center/kodi/-/blob/debian/sid/debian/patches/workarounds/0004-ffmpeg7.patch
Patch2: 0004-ffmpeg7.patch
%ifarch x86_64
%global _with_crystalhd 1
%endif
# Upstream does not support ppc64
ExcludeArch: %{power64}
BuildRequires: a52dec-devel
BuildRequires: afpfs-ng-devel
BuildRequires: alsa-lib-devel
BuildRequires: apache-commons-lang3
BuildRequires: apache-commons-text
BuildRequires: avahi-devel
BuildRequires: bluez-libs-devel
BuildRequires: boost-devel
BuildRequires: bzip2-devel
BuildRequires: cmake
BuildRequires: crossguid-devel
%if 0%{?_with_cwiid}
BuildRequires: cwiid-devel
%endif
BuildRequires: dbus-devel
BuildRequires: desktop-file-utils
BuildRequires: e2fsprogs-devel
BuildRequires: enca-devel
BuildRequires: expat-devel
BuildRequires: faad2-devel
BuildRequires: firewalld-filesystem
%if 0%{?_with_external_ffmpeg}
BuildRequires: ffmpeg-devel
%else
BuildRequires: trousers-devel
%endif
BuildRequires: flac-devel
BuildRequires: flatbuffers-compiler
BuildRequires: flatbuffers-devel
BuildRequires: flex
BuildRequires: fmt-devel
BuildRequires: fontconfig-devel
BuildRequires: fontpackages-devel
BuildRequires: freetype-devel
BuildRequires: fribidi-devel
BuildRequires: fstrcmp-devel
BuildRequires: gettext-autopoint
BuildRequires: gcc
BuildRequires: gcc-c++
BuildRequires: giflib-devel
BuildRequires: glew-devel
BuildRequires: glib2-devel
BuildRequires: gperf
BuildRequires: gtest-devel
BuildRequires: jasper-devel
# F41 java is to new for kodi-20
%if 0%{?fedora} && 0%{?fedora} > 40
BuildRequires: java-17-devel
%else
BuildRequires: java-devel
%endif
BuildRequires: lame-devel
BuildRequires: lcms2-devel
BuildRequires: libXinerama-devel
BuildRequires: libXmu-devel
BuildRequires: libXrandr-devel
BuildRequires: libXtst-devel
BuildRequires: libappstream-glib
BuildRequires: libass-devel >= 0.9.7
%if 0%{?_with_libbluray}
BuildRequires: libbluray-devel
%endif
BuildRequires: libcap-devel
BuildRequires: libcdio-devel
%if 0%{?_with_libcec}
BuildRequires: libcec-devel >= 4.0.0
%endif
%if 0%{?_with_crystalhd}
BuildRequires: libcrystalhd-devel
%endif
BuildRequires: libcurl-devel
BuildRequires: libdav1d-devel
BuildRequires: libdca-devel
BuildRequires: libdisplay-info-devel
BuildRequires: libdrm-devel
BuildRequires: libidn2-devel
BuildRequires: libinput-devel
BuildRequires: libjpeg-turbo-devel
BuildRequires: libmad-devel
BuildRequires: libmicrohttpd-devel
BuildRequires: libmms-devel
BuildRequires: libmodplug-devel
BuildRequires: libmpcdec-devel
BuildRequires: libmpeg2-devel
BuildRequires: libnfs-devel
BuildRequires: libogg-devel
# for AirPlay support
BuildRequires: shairplay-devel
BuildRequires: libplist-devel
BuildRequires: libpng-devel
BuildRequires: librtmp-devel
BuildRequires: libsamplerate-devel
BuildRequires: libsmbclient-devel
%if 0%{?_with_libssh}
BuildRequires: libssh-devel
%endif
BuildRequires: libtiff-devel
BuildRequires: libtool
BuildRequires: libunistring-devel
BuildRequires: libuuid-devel
BuildRequires: libva-devel
BuildRequires: libvdpau-devel
BuildRequires: libvorbis-devel
%if 0%{?_with_wayland}
BuildRequires: libxkbcommon-devel
%endif
BuildRequires: libxml2-devel
BuildRequires: libxslt-devel
BuildRequires: lirc-devel
BuildRequires: lzo-devel
BuildRequires: mariadb-connector-c-devel
BuildRequires: mesa-libEGL-devel
BuildRequires: mesa-libGLES-devel
BuildRequires: mesa-libgbm-devel
BuildRequires: nasm
BuildRequires: ninja-build
BuildRequires: pcre-devel
BuildRequires: pixman-devel
BuildRequires: pipewire-devel
BuildRequires: pulseaudio-libs-devel
BuildRequires: python3-devel
BuildRequires: python3-pillow
BuildRequires: python3-setuptools
BuildRequires: rapidjson-devel
BuildRequires: spdlog-devel
BuildRequires: sqlite-devel
BuildRequires: swig
BuildRequires: systemd-devel
BuildRequires: taglib-devel >= 1.10
BuildRequires: tinyxml-devel
BuildRequires: tinyxml2-devel
BuildRequires: tre-devel
BuildRequires: wavpack-devel
%if 0%{?_with_wayland}
BuildRequires: wayland-protocols-devel
BuildRequires: waylandpp-devel
%endif
BuildRequires: yajl-devel
BuildRequires: zlib-devel
Requires: (%{name}-firewalld = %{version}-%{release} if firewalld)
# need explicit requires for these packages
# as they are dynamically loaded via XBMC's arcane
# pseudo-DLL loading scheme (sigh)
%if 0%{?_with_libbluray}
Requires: libbluray%{?_isa}
%endif
%if 0%{?_with_libcec}
Requires: libcec%{?_isa} >= 4.0.0
%endif
%if 0%{?_with_crystalhd}
Requires: libcrystalhd%{?_isa}
%endif
Requires: libmad%{?_isa}
Requires: librtmp%{?_isa}
Requires: shairplay-libs%{?_isa}
# This is just symlinked to, but needed both at build-time
# and for installation
Requires: python3-pillow%{?_isa}
# https://github.com/xbmc/xbmc/pull/18534
Provides: kodi-common = %{version}-%{release}
Obsoletes: kodi-common < %{version}-%{release}
Provides: kodi-gbm = %{version}-%{release}
Obsoletes: kodi-gbm < %{version}-%{release}
Provides: kodi-wayland = %{version}-%{release}
Obsoletes: kodi-wayland < %{version}-%{release}
Provides: kodi-x11 = %{version}-%{release}
Obsoletes: kodi-x11 < %{version}-%{release}
%description
Kodi is a free cross-platform media-player jukebox and entertainment hub.
Kodi can play a spectrum of of multimedia formats, and featuring playlist,
audio visualizations, slideshow, and weather forecast functions, together
third-party plugins.
%package devel
Summary: Development files needed to compile C programs against kodi
Requires: %{name}%{?_isa} = %{version}-%{release}
Obsoletes: xbmc-devel < 14.0
Provides: xbmc-devel = %{version}
%description devel
Kodi is a free cross-platform media-player jukebox and entertainment hub.
If you want to develop programs which use Kodi's libraries, you need to
install this package.
%package eventclients
Summary: Media center event client remotes
Obsoletes: xbmc-eventclients < 14.0
Provides: xbmc-eventclients = %{version}
%description eventclients
This package contains support for using Kodi with the PS3 Remote, the Wii
Remote, a J2ME based remote and the command line xbmc-send utility.
%package eventclients-devel
Summary: Media center event client remotes development files
Requires: %{name}-eventclients%{?_isa} = %{version}-%{release}
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
Obsoletes: xbmc-eventclients-devel < 14.0
Provides: xbmc-eventclients-devel = %{version}
%description eventclients-devel
This package contains the development header files for the eventclients
library.
%package firewalld
Summary: FirewallD metadata files for Kodi
Requires: firewalld-filesystem
Requires(post): firewalld-filesystem
%description firewalld
This package contains FirewallD files for Kodi.
%prep
%setup -q -n %{name}-%{DIRVERSION}
pushd ..
unzip %{SOURCE6}
popd
%patch -P 0 -p1 -b.versioning
%patch -P 1 -p1 -b.py313
%patch -P 2 -p1 -b.ffmpeg7
# Fix up Python shebangs
%py3_shebang_fix \
tools/EventClients/lib/python/zeroconf.py \
tools/EventClients/Clients/PS3BDRemote/ps3_remote.py \
tools/EventClients/lib/python/ps3/sixaxis.py \
tools/EventClients/lib/python/ps3/sixpair.py \
tools/EventClients/lib/python/ps3/sixwatch.py \
tools/EventClients/Clients/KodiSend/kodi-send.py \
tools/EventClients/lib/python/xbmcclient.py
%build
export PKG_CONFIG_PATH="%{_libdir}/compat-ffmpeg4/pkgconfig"
%cmake \
%if %{with dvdcss}
-DLIBDVDCSS_URL=%{SOURCE4} \
%else
-DENABLE_DVDCSS=OFF \
%endif
%if ! 0%{?_with_external_ffmpeg}
-DFFMPEG_URL=%{SOURCE5} \
%endif
-Dgroovy_SOURCE_DIR=%{_builddir}/groovy-4.0.16 \
-Dapache-commons-lang_SOURCE_DIR=/usr/share/java \
-Dapache-commons-text_SOURCE_DIR=/usr/share/java/apache-commons-text \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="-DNDEBUG" \
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING="-DNDEBUG" \
-DCMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING="-DNDEBUG" \
-DENABLE_DEBUGFISSION=OFF \
-GNinja \
-DENABLE_EVENTCLIENTS=ON \
-DENABLE_INTERNAL_CROSSGUID=OFF \
-DLIRC_DEVICE=/var/run/lirc/lircd \
-DLIBDVDNAV_URL=%{SOURCE2} \
-DLIBDVDREAD_URL=%{SOURCE3} \
-DPYTHON_EXECUTABLE=%{__python3} \
-DCORE_PLATFORM_NAME="%{kodi_backends}" \
-DAPP_RENDER_SYSTEM=gl \
-DENABLE_INTERNAL_RapidJSON=OFF
%cmake_build
%install
%cmake_install
# remove the doc files from unversioned /usr/share/doc/xbmc, they should be in versioned docdir
rm -r %{buildroot}/%{_datadir}/doc/
desktop-file-install \
--dir=%{buildroot}%{_datadir}/applications \
%{buildroot}%{_datadir}/applications/kodi.desktop
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/org.xbmc.kodi.metainfo.xml
# Stop shipping the duplicate xsession file
rm -f %{buildroot}/%{_datadir}/xsessions/xbmc.desktop
# Normally we are expected to build these manually. But since we are using
# the system Python interpreter, we also want to use the system libraries
install -d %{buildroot}%{_libdir}/kodi/addons/script.module.pil/lib
ln -s %{python3_sitearch}/PIL %{buildroot}%{_libdir}/kodi/addons/script.module.pil/lib/PIL
# Move man-pages into system dir
mkdir -p %{buildroot}%{_mandir}/
mv docs/manpages %{buildroot}%{_mandir}/man1/
# Remove wiiremote man page if support was disabled
%if ! 0%{?_with_cwiid}
rm -f %{buildroot}%{_mandir}/man1/kodi-wiiremote.1
%endif
# Remove duplicate binary
rm -f %{buildroot}%{_bindir}/TexturePacker
%post firewalld
%firewalld_reload
%files
%license LICENSE.md LICENSES/
%doc README.md docs
%{_bindir}/kodi
%{_bindir}/kodi-standalone
%{_bindir}/kodi-TexturePacker
%{_libdir}/kodi/
%{_datadir}/kodi/
%{_datadir}/wayland-sessions/kodi-gbm.desktop
%{_datadir}/xsessions/kodi.desktop
%{_datadir}/applications/kodi.desktop
%{_datadir}/icons/hicolor/*/*/*.png
%{_datadir}/icons/hicolor/scalable/apps/kodi.svg
%{_metainfodir}/org.xbmc.kodi.metainfo.xml
%{_mandir}/man1/kodi.1.*
%{_mandir}/man1/kodi.bin.1.*
%{_mandir}/man1/kodi-standalone.1.*
%{_mandir}/man1/kodi-TexturePacker.1.*
%files devel
%{_includedir}/kodi
%files eventclients
%license LICENSE.md LICENSES/
%{python3_sitelib}/kodi
%dir %{_datadir}/pixmaps/kodi
%{_datadir}/pixmaps/kodi/*.png
%{_bindir}/kodi-ps3remote
%{_bindir}/kodi-send
%if 0%{?_with_cwiid}
%{_bindir}/kodi-wiiremote
%endif
%{_mandir}/man1/kodi-ps3remote.1.*
%{_mandir}/man1/kodi-send.1.*
%if 0%{?_with_cwiid}
%{_mandir}/man1/kodi-wiiremote.1.*
%endif
%files eventclients-devel
%{_includedir}/kodi/xbmcclient.h
%files firewalld
%license LICENSE.md LICENSES/
%{_prefix}/lib/firewalld/services/kodi-eventserver.xml
%{_prefix}/lib/firewalld/services/kodi-http.xml
%{_prefix}/lib/firewalld/services/kodi-jsonrpc.xml
%changelog
* Tue Oct 08 2024 Nicolas Chauvet <[email protected]> - 21.1-2
- Rebuilt
* Tue Aug 20 2024 Leigh Scott <[email protected]> - 21.1-1
- Update to 21.1
* Sat Jul 27 2024 Leigh Scott <[email protected]> - 21.0-3
- Rebuild for new fmt
* Thu Jun 13 2024 Leigh Scott <[email protected]> - 21.0-2
- Rebuilt for Python 3.13
* Sun Apr 07 2024 Michael Cronenworth <[email protected]> - 21.0-1
- Kodi 21.0 Final
* Thu Mar 21 2024 Michael Cronenworth <[email protected]> - 21.0-0.0rc2
- Kodi 21.0 RC2
* Mon Mar 11 2024 Michael Cronenworth <[email protected]> - 21.0-0.0rc1
- Kodi 21.0 RC1
* Mon Mar 04 2024 Leigh Scott <[email protected]> - 20.5-1
- Kodi 20.5 Final
* Wed Feb 14 2024 Leigh Scott <[email protected]> - 20.4-1
- Kodi 20.4 Final
* Wed Jan 10 2024 Michael Cronenworth <[email protected]> - 20.3-1
- Kodi 20.3 Final
* Fri Nov 10 2023 Michael Cronenworth <[email protected]> - 20.2-7
- Another upstream python-3.12 fix (RFBZ#6783)
* Tue Oct 31 2023 Leigh Scott <[email protected]> - 20.2-6
- Use upstream python-3.12 fix
* Thu Sep 28 2023 Michael Cronenworth <[email protected]> - 20.2-5
- Update mariadb BR (RFBZ#6771)
* Fri Aug 11 2023 Leigh Scott <[email protected]> - 20.2-4
- Rebuild for new libplist
* Wed Aug 02 2023 Sérgio Basto <[email protected]> - 20.2-3
- Rebuild for spdlog soname bump
* Sat Jul 08 2023 Leigh Scott <[email protected]> - 20.2-2
- Rebuilt for Python 3.12
* Thu Jun 29 2023 Michael Cronenworth <[email protected]> - 20.2-1
- Kodi 20.2 Final
* Wed Mar 15 2023 Michael Cronenworth <[email protected]> - 20.1-1
- Kodi 20.1 Final
* Mon Jan 16 2023 Michael Cronenworth <[email protected]> - 20.0-1
- Kodi 20.0 Final
* Fri Jan 13 2023 Michael Cronenworth <[email protected]> - 20.0-0.rc2.0
- Kodi 20.0 RC2
* Sat Dec 24 2022 Leigh Scott <[email protected]> - 19.5-1
- Kodi 19.5 Final
* Sun Aug 07 2022 Leigh Scott <[email protected]> - 19.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg
5.1
* Sat Jun 25 2022 Robert-André Mauchin <[email protected]> - 19.4-3
- Rebuilt for Python 3.11
* Thu Jun 23 2022 Robert-André Mauchin <[email protected]> - 19.4-2
- Rebuilt for new dav1d
* Tue Mar 08 2022 Michael Cronenworth <[email protected]> - 19.4-1
- Kodi 19.4 Final
* Sun Feb 20 2022 Michael Cronenworth <[email protected]> - 19.3-3
- Patch for AC3 transcoding (RHBZ#6000)
* Sat Feb 19 2022 Leigh Scott <[email protected]> - 19.3-2
- Switch to compat-ffmpeg4
- Disable package note
* Wed Oct 27 2021 Michael Cronenworth <[email protected]> - 19.3-1
- Kodi 19.3 Final
* Sat Oct 09 2021 Michael Cronenworth <[email protected]> - 19.2-1
- Kodi 19.2 Final
* Tue Aug 03 2021 RPM Fusion Release Engineering <[email protected]> - 19.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Sun Jul 11 2021 Leigh Scott <[email protected]> - 19.1-4
- Rebuild for new fmt version
* Tue Jun 15 2021 Leigh Scott <[email protected]> - 19.1-3
- Rebuild for python-3.10
* Thu Jun 03 2021 Michael Cronenworth <[email protected]> - 19.1-2
- FFmpeg 4.4 support
* Mon May 10 2021 Michael Cronenworth <[email protected]> - 19.1-1
- Kodi 19.1 Final
* Fri Apr 23 2021 Michael Cronenworth <[email protected]> - 19.0-3
- Drop old dependencies
* Thu Apr 22 2021 Michael Cronenworth <[email protected]> - 19.0-2
- Update dependency on xdpyinfo (rfbz#5979)
* Sat Feb 20 2021 Michael Cronenworth <[email protected]> - 19.0-1
- Kodi 19.0 Final
* Wed Feb 03 2021 RPM Fusion Release Engineering <[email protected]> - 19.0-0.10.20210115git90a1e12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Fri Jan 22 2021 Michael Cronenworth <[email protected]> - 19.0-0.9.20210115git90a1e12
- Kodi 19.0 RC1
* Mon Dec 07 2020 Michael Cronenworth <[email protected]> - 19.0-0.8.20201207git8cc9e80
- Kodi 19.0 beta 2
* Fri Nov 20 2020 Michael Cronenworth <[email protected]> - 19.0-0.7.20201119gitc08d72a
- Kodi 19.0 beta 1
* Mon Nov 02 2020 Michael Cronenworth <[email protected]> - 19.0-0.6.20201031gitbb0699d
- Kodi 19.0 alpha 3
* Thu Oct 29 2020 Michael Cronenworth <[email protected]> - 19.0-0.5.20201005git54be31b
- Python 3.9 support
* Tue Oct 27 2020 Michael Cronenworth <[email protected]> - 19.0-0.4.20201005git54be31b
- Kodi 19.0 alpha 2
* Sun Sep 13 2020 Nicolas Chauvet <[email protected]> - 19.0-0.3.20200727gitdb40b2a
- rebuilt
* Tue Aug 25 2020 Nicolas Chauvet <[email protected]> - 19.0-0.2.20200727gitdb40b2a
- Update release tag
- Revert java change to workaround glibc issue
- Use gl by default on all arches
* Sat Aug 08 2020 Michael Cronenworth <[email protected]> - 19.0-0.20200727gitdb40b2a
- Kodi 19.0 alpha 1
* Sun Aug 02 2020 Leigh Scott <[email protected]> - 19.0-0.20200706gitb6daed5
- Rebuild for libfmt
* Mon Jul 06 2020 Michael Cronenworth <[email protected]> - 19.0-0.20200705gitb6daed5
- Initial version 19 snapshot
* Sun Apr 26 2020 Michael Cronenworth <[email protected]> - 18.6-3
- Python 3 and libfmt fixes
* Fri Apr 10 2020 Leigh Scott <[email protected]> - 18.6-2
- Rebuild for new libcdio version
* Wed Mar 04 2020 Michael Cronenworth <[email protected]> - 18.6-1
- Kodi 18.6 final
* Sat Feb 22 2020 RPM Fusion Release Engineering <[email protected]> - 18.5-3
- Rebuild for ffmpeg-4.3 git
* Tue Feb 04 2020 RPM Fusion Release Engineering <[email protected]> - 18.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Sun Dec 22 2019 Michael Cronenworth <[email protected]> - 18.5-1
- Kodi 18.5 final
* Wed Sep 11 2019 Leigh Scott <[email protected]> - 18.4-2
- Rebuild for new libnfs version
* Mon Sep 02 2019 Michael Cronenworth <[email protected]> - 18.4-1
- Kodi 18.4 final
* Wed Aug 07 2019 Leigh Scott <[email protected]> - 18.3-2
- Rebuild for new ffmpeg version
* Sat Jun 29 2019 Michael Cronenworth <[email protected]> - 18.3-1
- Kodi 18.3 final
* Wed May 08 2019 Leigh Scott <[email protected]> - 18.2-4
- Bump release for koji failed task
* Mon May 06 2019 Michael Cronenworth <[email protected]> - 18.2-3
- Release build with debugging symbols
* Sun May 05 2019 Michael Cronenworth <[email protected]> - 18.2-2
- Build with debugging symbols (rfbz#5248)
* Tue Apr 23 2019 Michael Cronenworth <[email protected]> - 18.2-1
- Kodi 18.2 final
* Mon Mar 04 2019 RPM Fusion Release Engineering <[email protected]> - 18.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Tue Feb 26 2019 Nicolas Chauvet <[email protected]> - 18.1-2
- Apply patch by Gaël Stephan to fix kodi on aarch64 - rfbz#5171
* Tue Feb 19 2019 Michael Cronenworth <[email protected]> - 18.1-1
- Kodi 18.1 final
* Tue Jan 29 2019 Leigh Scott <[email protected]> - 18.0-1
- Kodi 18.0 final
* Sat Jan 12 2019 Leigh Scott <[email protected]> - 18.0-0.24.rc5
- Kodi 18.0 RC5
* Sun Dec 30 2018 Leigh Scott <[email protected]> - 18.0-0.23.rc4
- Kodi 18.0 RC4
* Tue Dec 25 2018 Michael Cronenworth <[email protected]> - 18.0-0.22.rc3
- Add upstream patches to fix a few crashers
* Sun Dec 16 2018 Michael Cronenworth <[email protected]> - 18.0-0.21.rc3
- Kodi 18.0 RC3
* Thu Dec 06 2018 Nicolas Chauvet <[email protected]> - 18.0-0.20.rc2
- Rebuilt for fmt
* Mon Dec 03 2018 Michael Cronenworth <[email protected]> - 18.0-0.19.rc2
- Kodi 18.0 RC2
* Fri Nov 23 2018 Leigh Scott <[email protected]> - 18.0-0.18.rc1
- Kodi 18.0 RC1
* Mon Nov 19 2018 Michael Cronenworth <[email protected]> - 18.0-0.17.b5
- Add patch to fix video calibration
* Sun Nov 04 2018 Michael Cronenworth <[email protected]> - 18.0-0.16.b5
- Kodi 18.0 beta 5
* Sat Nov 03 2018 Michael Cronenworth <[email protected]> - 18.0-0.15.b4
- Add patch to fix SMB browsing (RFBZ#5001)
* Fri Oct 26 2018 Leigh Scott <[email protected]> - 18.0-0.14.b4
- Switch to ninja-build
* Fri Oct 26 2018 Leigh Scott <[email protected]> - 18.0-0.13.b4
- Rebuild for fmt-5.2.1
* Wed Oct 24 2018 Nicolas Chauvet <[email protected]> - 18.0-0.12.b4
- Update to beta4
- Fixup versioning
* Sat Oct 20 2018 Leigh Scott <[email protected]> - 18.0-0.11.b3
- Add BuildRequires lirc-devel (rfbz#5037)
* Thu Oct 11 2018 Nicolas Chauvet <[email protected]> - 18.0-0.10.b3
- Update to beta3
- Enable arm build
- Build EGL/GLES everywhere
- Add firewalld sub-package when relevant
* Thu Sep 27 2018 Michael Cronenworth <[email protected]> - 18.0-0.9.b2
- Kodi 18.0 beta 2
* Fri Aug 31 2018 Michael Cronenworth <[email protected]> - 18.0-0.8.b1
- Fix Requires and versioning in new split packages
* Thu Aug 30 2018 Michael Cronenworth <[email protected]> - 18.0-0.7.b1
- Update Requires for new split packages
* Tue Aug 28 2018 Michael Cronenworth <[email protected]> - 18.0-0.6.b1
- Build wayland and GBM binaries
* Tue Aug 28 2018 Michael Cronenworth <[email protected]> - 18.0-0.5.b1
- Kodi 18.0 beta 1 v2
* Sun Aug 19 2018 Leigh Scott <[email protected]> - 18.0-0.4.a2
- Rebuilt for Fedora 29 Mass Rebuild binutils issue
* Thu Jul 26 2018 RPM Fusion Release Engineering <[email protected]> - 18.0-0.3.a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Sun Jun 24 2018 Michael Cronenworth <[email protected]> - 18.0-0.2.a2
- Kodi 18.0 alpha 2
* Thu May 03 2018 Michael Cronenworth <[email protected]> - 18.0-0.1.a1
- Add patch to fix assert on start.
* Fri Mar 16 2018 Michael Cronenworth <[email protected]> - 18.0-0.0.a1
- Kodi 18.0 alpha 1
* Thu Mar 08 2018 RPM Fusion Release Engineering <[email protected]> - 17.6-7
- Rebuilt for new ffmpeg snapshot
* Thu Mar 01 2018 RPM Fusion Release Engineering <[email protected]> - 17.6-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Tue Feb 06 2018 Leigh Scott <[email protected]> - 17.6-5
- Rebuild for boost-1.66
* Wed Jan 24 2018 Michael Cronenworth <[email protected]> - 17.6-4
- ffmpeg-3.5 support
- Make dvd support an rpm build conditional
* Thu Jan 18 2018 Leigh Scott <[email protected]> - 17.6-3
- Rebuilt for ffmpeg-3.5 git
* Mon Jan 15 2018 Nicolas Chauvet <[email protected]> - 17.6-2
- Rebuilt for VA-API 1.0.0
* Fri Nov 17 2017 Michael Cronenworth <[email protected]> - 17.6-1
- Kodi 17.6 final
* Wed Oct 25 2017 Michael Cronenworth <[email protected]> - 17.5-1
- Kodi 17.5 final
* Wed Aug 23 2017 Michael Cronenworth <[email protected]> - 17.4-1
- Kodi 17.4 final
* Wed May 31 2017 Michael Cronenworth <[email protected]> - 17.3-1
- Kodi 17.3 final
* Wed May 24 2017 Michael Cronenworth <[email protected]> - 17.2-1
- Kodi 17.2 final
* Sat Apr 29 2017 Leigh Scott <[email protected]> - 17.1-2
- Rebuild for ffmpeg update
* Tue Mar 28 2017 Michael Cronenworth <[email protected]> - 17.1-1
- Kodi 17.1 final
* Sun Mar 19 2017 RPM Fusion Release Engineering <[email protected]> - 17.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Thu Feb 02 2017 Michael Cronenworth <[email protected]> - 17.0-1
- Kodi 17.0 final
* Fri Jan 27 2017 Michael Cronenworth <[email protected]> - 17.0-0.12.rc4
- Kodi 17 RC4
* Mon Jan 16 2017 Michael Cronenworth <[email protected]> - 17.0-0.12.rc3
- Kodi 17 RC3
- Check for new installs (RFBZ#4409)
- Drop the XBMC xsession file (RFBZ#4422)
* Wed Jan 04 2017 Michael Cronenworth <[email protected]> - 17.0-0.11.rc2
- Kodi 17 RC2
* Thu Dec 29 2016 Michael Cronenworth <[email protected]> - 17.0-0.11.rc1
- Kodi 17 RC1
* Mon Dec 19 2016 Michael Cronenworth <[email protected]> - 17.0-0.10
- Kodi 17 beta 7
* Sun Dec 11 2016 Michael Cronenworth <[email protected]> - 17.0-0.9
- Kodi 17 beta 6
- Drop libcec patch, now upstream
* Mon Oct 31 2016 Michael Cronenworth <[email protected]> - 17.0-0.8
- Kodi 17 beta 5
- Include patch for libcec 4.0 support
- Drop ARM support
* Mon Oct 10 2016 Michael Cronenworth <[email protected]> - 17.0-0.7
- Kodi 17 beta 3
* Mon Sep 19 2016 Michael Cronenworth <[email protected]> - 17.0-0.6
- Kodi 17 beta 2
* Fri Aug 26 2016 Michael Cronenworth <[email protected]> - 17.0-0.5
- Kodi 17 beta 1
* Fri Aug 05 2016 Michael Cronenworth <[email protected]> - 17.0-0.4
- Kodi 17 alpha 3
* Sun Jul 31 2016 Julian Sikorski <[email protected]> - 17.0-0.3
- Rebuilt for ffmpeg-3.1.1
- Fixed the verbose build
- Ensured $RPM_LD_FLAGS are used
* Tue Jul 05 2016 Michael Cronenworth <[email protected]> - 17.0-0.2
- Kodi 17.0 alpha 2
* Wed Jun 22 2016 Michael Cronenworth <[email protected]> - 17.0-0.1
- Kodi 17.0 alpha 1
* Mon Apr 25 2016 Michael Cronenworth <[email protected]> - 16.1-1
- Kodi 16.1 final
* Sat Feb 20 2016 Michael Cronenworth <[email protected]> - 16.0-1
- Kodi 16.0 final
* Fri Jan 22 2016 Michael Cronenworth <[email protected]> - 16.0-0.2
- Kodi 16.0 RC1
* Sun Dec 06 2015 Michael Cronenworth <[email protected]> - 16.0-0.1
- Kodi 16.0 beta 3
- Drop libhdhomerun support (dropped by Kodi)
* Wed Nov 25 2015 Michael Cronenworth <[email protected]> - 15.2-3
- Enable AirPlay support (shairplay library)
* Sat Oct 24 2015 Michael Cronenworth <[email protected]> - 15.2-2
- Enable NFS client support
* Thu Oct 22 2015 Michael Cronenworth <[email protected]> - 15.2-1
- Kodi 15.2 final
* Sun Aug 16 2015 Michael Cronenworth <[email protected]> - 15.1-1
- Kodi 15.1 final
* Wed Jul 22 2015 Michael Cronenworth <[email protected]> - 15.0-1
- Kodi 15.0 final
* Tue Jun 16 2015 Michael Cronenworth <[email protected]> - 15.0-0.1
- Kodi 15.0 beta 2
* Fri May 22 2015 Michael Cronenworth <[email protected]> - 14.2-2
- GCC5 fixes
* Sun Mar 29 2015 Michael Cronenworth <[email protected]> - 14.2-1
- Update to 14.2 final
- Build with SDL2 to enable joystick support
* Fri Jan 30 2015 Michael Cronenworth <[email protected]> - 14.1-1
- Update to 14.1 final
- Fix Obsoletes for -devel
* Mon Jan 05 2015 Michael Cronenworth <[email protected]> - 14.0-2
- Fix xbmc upgrade path
* Sun Dec 28 2014 Michael Cronenworth <[email protected]> - 14.0-1
- Update to 14.0 final
* Tue Dec 09 2014 Michael Cronenworth <[email protected]> - 14.0-0.4.rc3
- Update to 14.0 RC3
* Sun Nov 09 2014 Michael Cronenworth <[email protected]> - 14.0-0.3.beta2
- Update to 14.0 beta 2
* Tue Sep 02 2014 Michael Cronenworth <[email protected]> - 14.0-0.2.alpha3
- Update to 14.0 alpha 3
* Sun Aug 24 2014 Michael Cronenworth <[email protected]> - 14.0-0.1.alpha2
- Update to 14.0 alpha 2
- Renamed XBMC to Kodi