[qtav] Initial version of qtav
by Martin Gansser
commit 405f56385e97f65fe98615d6d021704993b409ed
Author: Martin Gansser <mgansser(a)alice.de>
Date: Fri Sep 2 21:20:10 2016 +0200
Initial version of qtav
.gitignore | 1 +
qtav.spec | 268 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
sources | 1 +
3 files changed, 270 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..0f1808d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/QtAV-c5db90b.tar.gz
diff --git a/qtav.spec b/qtav.spec
new file mode 100644
index 0000000..b1a6e71
--- /dev/null
+++ b/qtav.spec
@@ -0,0 +1,268 @@
+# https://github.com/wang-bin/QtAV/commit/c5db90b2ac4724808f738a39796f24a62...
+%global commit0 c5db90b2ac4724808f738a39796f24a627704c31
+%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
+
+%global project QtAV
+%global repo %{project}
+
+Name: qtav
+Version: 1.11.0
+Release: 0.3git%{shortcommit0}%{?dist}
+Summary: A media playback framework based on Qt and FFmpeg
+License: LGPLv2+ and GPLv3+ and BSD
+Group: Development/Libraries
+Url: http://www.qtav.org/
+Source0: https://github.com/wang-bin/QtAV/archive/%{commit0}/%{project}-%{commit0}...
+
+BuildRequires: desktop-file-utils
+BuildRequires: qt5-qtbase-devel
+BuildRequires: qt5-qtdeclarative-devel
+BuildRequires: libass-devel
+BuildRequires: ffmpeg-devel
+BuildRequires: openal-soft-devel
+BuildRequires: libXv-devel
+BuildRequires: libva-devel
+BuildRequires: pulseaudio-libs-devel
+BuildRequires: dos2unix
+Requires: hicolor-icon-theme
+
+%description
+QtAV is a multimedia playback library based on Qt and FFmpeg.
+It can help you to write a player with less effort than ever before.
+
+Features include:
+ * Hardware decoding suppprt: DXVA2, VAAPI, VDA, CedarX, CUDA.
+ * OpenGL and ES2 support for Hi10P and other 16-bit YUV videos.
+ * Video capture in rgb and yuv format.
+ * OSD and custom filters.
+ * filters in libavfilter, for example stero3d, blur.
+ * Subtitle.
+ * Transform video using GraphicsItemRenderer. (rotate, shear, etc)
+ * Playing frame by frame (currently support forward playing).
+ * Playback speed control. At any speed.
+ * Variant streams: locale file, http, rtsp, etc.
+ * Choose audio channel.
+ * Choose media stream, e.g. play a desired audio track.
+ * Multiple render engine support. Currently supports QPainter, GDI+, Direct2D,
+ XV and OpenGL(and ES2).
+ * Dynamically change render engine when playing.
+ * Multiple video outputs for 1 player.
+ * Region of interest(ROI), i.e. video cropping.
+ * Video eq: brightness, contrast, saturation, hue.
+ * QML support as a plugin. Most playback APIs are compatible with QtMultiMedia
+ module.
+
+%package -n lib%{name}
+Summary: QtAV library
+Requires: ffmpeg
+
+%description -n lib%{name}
+QtAV is a multimedia playback library based on Qt and FFmpeg.
+It can help you to write a player with less effort than ever before.
+
+This package contains the QtAV library.
+
+%package -n lib%{name}widgets
+Summary: QtAV Widgets module
+Requires: libqtav%{?_isa} = %{version}-%{release}
+
+%description -n lib%{name}widgets
+QtAV is a multimedia playback library based on Qt and FFmpeg.
+It can help you to write a player with less effort than ever before.
+
+This package contains a set of widgets to play media.
+
+%package devel
+Summary: QtAV development files
+Requires: libqtav%{?_isa} = %{version}-%{release}
+Requires: libqtavwidgets%{?_isa} = %{version}-%{release}
+Requires: qt5-qtbase-devel
+
+%description devel
+QtAV is a multimedia playback library based on Qt and FFmpeg.
+It can help you to write a player with less effort than ever before.
+
+This package contains the header development files for building some
+QtAV applications using QtAV headers.
+
+%package qml-module
+Summary: QtAV QML module
+
+%description qml-module
+QtAV is a multimedia playback library based on Qt and FFmpeg.
+It can help you to write a player with less effort than ever before.
+
+This package contains the QtAV QML module for Qt declarative.
+
+%package players
+Summary: QtAV/QML players
+License: GPLv3
+Requires: libqtav%{?_isa} = %{version}-%{release}
+Requires: libqtavwidgets%{?_isa} = %{version}-%{release}
+Requires: qtav-qml-module%{?_isa} = %{version}-%{release}
+
+%description players
+QtAV is a multimedia playback framework based on Qt and FFmpeg.
+High performance. User & developer friendly.
+
+This package contains the QtAV based players.
+
+%prep
+%autosetup -n %repo-%{commit0}
+
+# E: script-without-shebang /usr/share/icons/hicolor/scalable/apps/QtAV.svg
+# ignore them src/QtAV.svg: SVG Scalable Vector Graphics image
+
+# delete .jar File from examples
+rm -rf examples/QMLPlayer/android/gradle/wrapper/gradle-wrapper.jar
+
+# W: doc-file-dependency /usr/share/doc/qtav-devel/examples/QMLPlayer/android/gradlew /usr/bin/env
+# An included file marked as %%doc creates a possible additional dependency in
+# the package. Usually, this is not wanted and may be caused by eg. example
+# scripts with executable bits set included in the package's documentation.
+chmod -x examples/QMLPlayer/android/gradlew
+
+# prepare example dir for -devel
+mkdir -p _tmpdoc/examples
+cp -pr examples/* _tmpdoc/examples
+
+%build
+export CPATH="`pkg-config --variable=includedir libavformat`"
+mkdir build; pushd build
+%{_qt5_qmake} \
+ QMAKE_CFLAGS="%{optflags}" \
+ QMAKE_CXXFLAGS="%{optflags}" \
+ QMAKE_LFLAGS="-Wl,--as-needed" \
+ CONFIG+="no_rpath recheck config_libass_link debug" \
+ ..
+%make_build
+
+%install
+%make_install INSTALL_ROOT=%{buildroot} -C build
+
+rm -rf %{buildroot}%{_datadir}/doc/*
+rm -rf %{buildroot}%{_qt5_archdatadir}/bin/libcommon.*
+rm -rf %{buildroot}%{_qt5_headerdir}/*.h
+install -d %{buildroot}%{_bindir}
+ln -sfv %{_qt5_bindir}/Player %{buildroot}%{_bindir}
+ln -sfv %{_qt5_bindir}/QMLPlayer %{buildroot}%{_bindir}
+install -D src/QtAV.svg %{buildroot}%{_datadir}/icons/hicolor/scalable/apps/QtAV.svg
+
+# library links
+ln -sfv %{_libdir}/libQtAV.so %{buildroot}%{_libdir}/libQt5AV.so
+ln -sfv %{_libdir}/libQtAVWidgets.so %{buildroot}%{_libdir}/libQt5AVWidgets.so
+
+%check
+desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
+
+%post -n lib%{name} -p /sbin/ldconfig
+%post -n lib%{name}widgets -p /sbin/ldconfig
+
+%post players
+/usr/bin/update-desktop-database &> /dev/null || :
+touch --no-create %{_datadir}/icons/hicolor &>/dev/null ||:
+
+%postun -n lib%{name} -p /sbin/ldconfig
+%postun -n lib%{name}widgets -p /sbin/ldconfig
+
+%postun players
+/usr/bin/update-desktop-database &> /dev/null || :
+if [ $1 -eq 0 ]; then
+ touch --no-create %{_datadir}/icons/hicolor &>/dev/null ||:
+ /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans players
+/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+%files -n lib%{name}
+%doc README.md Changelog
+%license lgpl-2.1.txt
+%{_libdir}/libQtAV.so.*
+
+%files -n lib%{name}widgets
+%{_libdir}/libQtAVWidgets.so.*
+
+%files devel
+%{_qt5_headerdir}/QtAV/*
+%{_qt5_headerdir}/QtAVWidgets/*
+%dir %{_qt5_headerdir}/QtAV/
+%dir %{_qt5_headerdir}/QtAVWidgets/
+%{_libdir}/libQtAV.so
+%{_libdir}/libQtAV.prl
+%{_libdir}/libQt5AV.so
+%{_libdir}/libQtAVWidgets.so
+%{_libdir}/libQtAVWidgets.prl
+%{_libdir}/libQt5AVWidgets.so
+%{_qt5_archdatadir}/mkspecs/features/av.prf
+%{_qt5_archdatadir}/mkspecs/features/avwidgets.prf
+%{_qt5_archdatadir}/mkspecs/modules/qt_lib_av.pri
+%{_qt5_archdatadir}/mkspecs/modules/qt_lib_avwidgets.pri
+%{_qt5_archdatadir}/mkspecs/modules/qt_lib_av_private.pri
+%{_qt5_archdatadir}/mkspecs/modules/qt_lib_avwidgets_private.pri
+
+%files qml-module
+%doc README.md Changelog
+%license lgpl-2.1.txt
+%{_qt5_archdatadir}/qml/QtAV/libQmlAV.so
+%{_qt5_archdatadir}/qml/QtAV/plugins.qmltypes
+%{_qt5_archdatadir}/qml/QtAV/qmldir
+%{_qt5_archdatadir}/qml/QtAV/Video.qml
+%dir %{_qt5_archdatadir}/qml/QtAV/
+
+%files players
+%doc README.md Changelog
+%license gpl-3.0.txt
+%{_qt5_bindir}/Player
+%{_qt5_bindir}/QMLPlayer
+%{_bindir}/Player
+%{_bindir}/QMLPlayer
+%{_datadir}/applications/Player.desktop
+%{_datadir}/applications/QMLPlayer.desktop
+%{_datadir}/icons/hicolor/*/apps/QtAV.svg
+
+%changelog
+* Mon Aug 29 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.11.0-0.3gitc5db90b
+- update to last git release
+
+* Sun Jul 24 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.11.0-0.2git116b90d
+- update to last git release
+
+* Tue Jun 21 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.11.0-0.1git3b418cb
+- update to last git release
+
+* Thu Mar 24 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.10.0-0.2gitd930be8
+- update to last git release
+- added debug flag
+- renamed player to Player due conflicts with the package player
+
+* Fri Mar 18 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.10.0-0.1git97e5d32
+- update to last git release
+
+* Tue Feb 09 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.9.0-0.5gited374dc
+- update to last git release
+- spec file cleanup
+- removed BR portaudio-devel
+
+* Sun Feb 07 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.9.0-0.4gite7da6d1
+- added QMAKE_LFLAGS flag due unused-direct-shlib-dependency warnings
+- update to last git release
+
+* Sun Feb 07 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.9.0-0.3gitfafd3b0
+- corrected license tag
+- added QMAKE flag CONFIG+=no_rpath
+- added Requires ffmpeg to libqtav sub-package
+- removed ldconfig for devel sub-package
+- append private-devel files to devel sub-package
+- removed jar file
+- removed documentation and license files from devel and libqtavwidgets sub-package
+- removed empty sdk sub-package
+
+* Sat Feb 06 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.9.0-0.2gitfafd3b0
+- added BR desktop-file-utils
+- corrected Pre-Release tag
+- deleted llvm stuff
+- fix Optimization flags are not honored
+
+* Wed Feb 03 2016 Martin Gansser <martinkg(a)fedoraproject.org> - 1.9.0-0.1gitfafd3b0
+- initial build
diff --git a/sources b/sources
index e69de29..42e1af2 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+a20f891a15362b3c5cfbad8487638696 QtAV-c5db90b.tar.gz
8 years, 2 months
[vlc/f24] (4 commits) ...Fixup from a lost commit
by nchauvet
Summary of changes:
c866a27... Clean spec, Vascom patches series, rfbz #4196, add license (*)
f31107e... Update to 20160901 (*)
5231d0d... Add missing vlc_rc (*)
afd8e3f... Fixup from a lost commit (*)
(*) This commit already existed in another branch; no separate mail sent
8 years, 2 months
[vlc/f25] (4 commits) ...Fixup from a lost commit
by nchauvet
Summary of changes:
c866a27... Clean spec, Vascom patches series, rfbz #4196, add license (*)
f31107e... Update to 20160901 (*)
5231d0d... Add missing vlc_rc (*)
afd8e3f... Fixup from a lost commit (*)
(*) This commit already existed in another branch; no separate mail sent
8 years, 2 months
[vlc] Fixup from a lost commit
by nchauvet
commit afd8e3f868d336a616c5650e1f036c37c8bd6dd3
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Sep 2 20:32:12 2016 +0200
Fixup from a lost commit
vlc.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/vlc.spec b/vlc.spec
index 5cc082f..c50f0f4 100644
--- a/vlc.spec
+++ b/vlc.spec
@@ -229,7 +229,7 @@ JACK audio plugin for the VLC media player.
%prep
-%setup -q -n %{name}-%{version}%{?vlc_rc}
+%setup -q -n %{name}-%{version}%{?vlc_rc:-git}
%{?_with_bootstrap:
rm aclocal.m4 m4/lib*.m4 m4/lt*.m4 || :
./bootstrap
8 years, 2 months
[vlc] Add missing vlc_rc
by nchauvet
commit 5231d0d5513bca93deb25070eff11fa1d4e8a88c
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Sep 2 18:46:46 2016 +0200
Add missing vlc_rc
vlc.spec | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/vlc.spec b/vlc.spec
index 0c8ba54..5cc082f 100644
--- a/vlc.spec
+++ b/vlc.spec
@@ -1,5 +1,5 @@
-%global vlc_rc -git
-%global _with_bootstrap 1
+%global vlc_rc -20160901-0221-git
+#global _with_bootstrap 1
%global _with_workaround_circle_deps 1
%if 0%{?!_without_freeworld:1}
%global _with_a52dec 1
8 years, 2 months
[vlc] Update to 20160901
by nchauvet
commit f31107e0c4856668bdf73c0c26fe3ba338f8259c
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Fri Sep 2 18:38:01 2016 +0200
Update to 20160901
sources | 2 +-
vlc.spec | 28 ++++++++++++++++------------
2 files changed, 17 insertions(+), 13 deletions(-)
---
diff --git a/sources b/sources
index 7a1df40..5f999e5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c7710363d580e9a0a5670e96823ef240 vlc-3.0.0-git.tar.xz
+f4e1ea2323b576936ea55c7938d4f1c5 vlc-3.0.0-20160901-0221-git.tar.xz
diff --git a/vlc.spec b/vlc.spec
index 74cbda3..0c8ba54 100644
--- a/vlc.spec
+++ b/vlc.spec
@@ -32,7 +32,7 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 3.0.0
-Release: 0.6%{?dist}
+Release: 0.7%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -328,14 +328,14 @@ ln -sf ../../../fonts/dejavu/DejaVuSans-Bold.ttf \
rm -rf %{buildroot}%{_docdir}/vlc
#Ghost the plugins cache
-touch %{buildroot}%{_libdir}/vlc/plugins.dat
+touch %{buildroot}%{_libdir}/vlc/plugins/plugins.dat
%find_lang %{name}
%post
-%{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc &>/dev/null
+%{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc/plugins &>/dev/null
%{_bindir}/touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor
@@ -345,7 +345,7 @@ fi
%post core -p /sbin/ldconfig
%postun
-%{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc &>/dev/null
+%{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc/plugins &>/dev/null
%{_bindir}/update-desktop-database %{_datadir}/applications &>/dev/null
%{_bindir}/touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
@@ -355,26 +355,26 @@ fi || :
%postun core -p /sbin/ldconfig
%posttrans core
-%{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc &>/dev/null || :
+%{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc/plugins &>/dev/null || :
%post extras
if [ $1 == 1 ] ; then
- %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc &>/dev/null || :
+ %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc/plugins &>/dev/null || :
fi
%post plugin-jack
if [ $1 == 1 ] ; then
- %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc &>/dev/null || :
+ %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc/plugins &>/dev/null || :
fi
%postun extras
if [ $1 == 0 ] ; then
- %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc &>/dev/null || :
+ %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc/plugins &>/dev/null || :
fi
%postun plugin-jack
if [ $1 == 0 ] ; then
- %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc &>/dev/null || :
+ %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc/plugins &>/dev/null || :
fi
%preun core
@@ -471,7 +471,7 @@ fi || :
}
%exclude %{_libdir}/vlc/plugins/audio_output/libjack_plugin.so
%exclude %{_libdir}/vlc/plugins/audio_output/libpulse_plugin.so
-%ghost %{_libdir}/vlc/plugins.dat
+%ghost %{_libdir}/vlc/plugins/plugins.dat
%{_libdir}/vlc/
%{_mandir}/man1/vlc*.1*
@@ -506,6 +506,10 @@ fi || :
%changelog
+* Fri Sep 02 2016 Nicolas Chauvet <kwizart(a)gmail.com> - 3.0.0-0.7
+- Bump to 20160901 nightly
+- Fix plugins.dat path - rfbz#4184
+
* Thu Aug 18 2016 Sérgio Basto <sergio(a)serjux.com> - 3.0.0-0.6
- Clean spec, Vascom patches series, rfbz #4196, add license tag
@@ -515,10 +519,10 @@ fi || :
* Sat Jul 30 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 3.0.0-0.4
- Rebuilt for ffmpeg-3.1.1
-* Fri Jul 29 2016 Nicolas Chauvet <nicolas.chauvet(a)kwizart.fr> - 3.0.0-0.3
+* Fri Jul 29 2016 Nicolas Chauvet <kwizart(a)gmail.com> - 3.0.0-0.3
- Update to today snapshoot
-* Fri Jul 01 2016 Nicolas Chauvet <nicolas.chauvet(a)kwizart.fr> - 3.0.0-0.2
+* Fri Jul 01 2016 Nicolas Chauvet <kwizart(a)gmail.com> - 3.0.0-0.2
- Update to today snapshot
* Tue Jun 14 2016 Nicolas Chauvet <kwizart(a)gmail.com> - 3.0.0-0.1
8 years, 2 months
[wl-kmod/f23] (4 commits) ...Fix 4.7 kernel patch
by Leigh Scott
Summary of changes:
3f4b4e0... Fixup don't use lookaside cache for this file (*)
c0f022c... Add patch to replace IEEE80211_BAND_x macros with NL80211_B (*)
9da558c... Re-add sources (rfpkg new-sources ...) (*)
7aab64d... Fix 4.7 kernel patch (*)
(*) This commit already existed in another branch; no separate mail sent
8 years, 2 months
[wl-kmod/f24] (4 commits) ...Fix 4.7 kernel patch
by Leigh Scott
Summary of changes:
3f4b4e0... Fixup don't use lookaside cache for this file (*)
c0f022c... Add patch to replace IEEE80211_BAND_x macros with NL80211_B (*)
9da558c... Re-add sources (rfpkg new-sources ...) (*)
7aab64d... Fix 4.7 kernel patch (*)
(*) This commit already existed in another branch; no separate mail sent
8 years, 2 months
[wl-kmod/f25] (3 commits) ...Fix 4.7 kernel patch
by Leigh Scott
Summary of changes:
c0f022c... Add patch to replace IEEE80211_BAND_x macros with NL80211_B (*)
9da558c... Re-add sources (rfpkg new-sources ...) (*)
7aab64d... Fix 4.7 kernel patch (*)
(*) This commit already existed in another branch; no separate mail sent
8 years, 2 months
[wl-kmod] Fix 4.7 kernel patch
by Leigh Scott
commit 7aab64d0cd2e61a752e1c5260c13856df1378e91
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Fri Sep 2 11:41:43 2016 +0100
Fix 4.7 kernel patch
wl-kmod-005_kernel_4.7_IEEE80211_BAND_to_NL80211_BAND.patch | 2 +-
wl-kmod.spec | 5 ++++-
2 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/wl-kmod-005_kernel_4.7_IEEE80211_BAND_to_NL80211_BAND.patch b/wl-kmod-005_kernel_4.7_IEEE80211_BAND_to_NL80211_BAND.patch
index 85e61c4..2256e7c 100644
--- a/wl-kmod-005_kernel_4.7_IEEE80211_BAND_to_NL80211_BAND.patch
+++ b/wl-kmod-005_kernel_4.7_IEEE80211_BAND_to_NL80211_BAND.patch
@@ -102,7 +102,7 @@ diff -Naur hybrid-v35_64-nodebug-pcoem-6_30_223_271.orig/src/wl/sys/wl_cfg80211_
}
chan = wf_chspec_ctlchan(chanspec);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 7, 0)
-+ band = (chan <= CH_MAX_2G_CHANNEL) ? NL80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
++ band = (chan <= CH_MAX_2G_CHANNEL) ? NL80211_BAND_2GHZ : NL80211_BAND_5GHZ;
+#else
band = (chan <= CH_MAX_2G_CHANNEL) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
+#endif
diff --git a/wl-kmod.spec b/wl-kmod.spec
index a1389a7..e3daceb 100644
--- a/wl-kmod.spec
+++ b/wl-kmod.spec
@@ -8,7 +8,7 @@
Name: wl-kmod
Version: 6.30.223.271
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -95,6 +95,9 @@ chmod 0755 $RPM_BUILD_ROOT%{kmodinstdir_prefix}*%{kmodinstdir_postfix}/* || :
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Sep 02 2016 Leigh Scott <leigh123linux(a)googlemail.com> - 6.30.223.271-6
+- Fix 4.7 kernel patch
+
* Mon Aug 29 2016 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.271-5
- Add patch to replace IEEE80211_BAND_x macros with NL80211_BAND_x ones for kernel >= 4.7
thanks to Tim Thomas
8 years, 2 months