rpms/smplayer/devel .cvsignore, 1.23, 1.24 smplayer.spec, 1.36, 1.37 sources, 1.25, 1.26
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/smplayer/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv382
Modified Files:
.cvsignore smplayer.spec sources
Log Message:
* Wed Mar 25 2015 Sérgio Basto <sergio(a)serjux.com> - 14.9.0.6690-2
- Update smplayer to smplayer-14.9.0.6690 and smtube to smtube-15.1.26
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/smplayer/devel/.cvsignore,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- .cvsignore 15 Sep 2014 01:07:16 -0000 1.23
+++ .cvsignore 25 Mar 2015 18:49:24 -0000 1.24
@@ -1,2 +1,2 @@
-smplayer-14.9.0.tar.bz2
-smtube-14.8.0.tar.bz2
+smplayer-14.9.0.6690.tar.bz2
+smtube-15.1.26.tar.bz2
Index: smplayer.spec
===================================================================
RCS file: /cvs/free/rpms/smplayer/devel/smplayer.spec,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- smplayer.spec 15 Sep 2014 01:07:16 -0000 1.36
+++ smplayer.spec 25 Mar 2015 18:49:25 -0000 1.37
@@ -1,8 +1,8 @@
-%global smtube_ver 14.8.0
+%global smtube_ver 15.1.26
Name: smplayer
-Version: 14.9.0
-Release: 1%{?dist}
+Version: 14.9.0.6690
+Release: 2%{?dist}
Summary: A graphical frontend for mplayer
Group: Applications/Multimedia
@@ -130,6 +130,9 @@
%{_datadir}/kde4/services/ServiceMenus/smplayer_enqueue.desktop
%changelog
+* Wed Mar 25 2015 Sérgio Basto <sergio(a)serjux.com> - 14.9.0.6690-2
+- Update smplayer to smplayer-14.9.0.6690 and smtube to smtube-15.1.26
+
* Mon Sep 15 2014 Sérgio Basto <sergio(a)serjux.com> - 14.9.0-1
- New upstream releases smplayer 14.9.0 and smtube 14.8.0
- Rebase patches 1 and 3 .
Index: sources
===================================================================
RCS file: /cvs/free/rpms/smplayer/devel/sources,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- sources 15 Sep 2014 01:07:16 -0000 1.25
+++ sources 25 Mar 2015 18:49:25 -0000 1.26
@@ -1,2 +1,2 @@
-34bd6762f684064bafdaea0afa4e2d40 smplayer-14.9.0.tar.bz2
-21d9341a1a5de13a7064296f6625d399 smtube-14.8.0.tar.bz2
+75d8947682de96f7bf29c6f1a2f21391 smplayer-14.9.0.6690.tar.bz2
+88e63bbfa0a5fc6d90c88a72a802c3fb smtube-15.1.26.tar.bz2
9 years, 8 months
rpms/xpra-codecs-freeworld/F-20 xpra-codecs-freeworld.spec, NONE, 1.1 sources, 1.1, 1.2
by T.C. Hollingsworth
Author: patches
Update of /cvs/free/rpms/xpra-codecs-freeworld/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29643
Modified Files:
sources
Added Files:
xpra-codecs-freeworld.spec
Log Message:
initial import (#2733)
--- NEW FILE xpra-codecs-freeworld.spec ---
# This package provides H.264 and swscale support for Xpra.
#
# Remove private provides from .so files in the python_sitearch directory
%global __provides_exclude_from ^%{python_sitearch}/.*\\.so$
Name: xpra-codecs-freeworld
Version: 0.14.21
Release: 2%{?dist}
Summary: Additional codecs for xpra using x264 and ffmpeg
License: GPLv2+
URL: http://www.xpra.org/
Source0: http://xpra.org/src/xpra-%{version}.tar.xz
BuildRequires: python2-devel pygobject2-devel pygtk2-devel
BuildRequires: libXtst-devel
BuildRequires: libxkbfile-devel
BuildRequires: Cython
BuildRequires: desktop-file-utils
BuildRequires: libvpx-devel
BuildRequires: libwebp-devel
BuildRequires: x264-devel
BuildRequires: ffmpeg-devel
Requires: xpra = %{version}
Requires: gstreamer-plugins-ugly
%description
Provides support for H.264 encoding and swscale support in xpra using
x264 and ffmpeg.
%prep
%setup -q -n xpra-%{version}
%build
CFLAGS="%{optflags}" %{__python} setup.py build \
--with-vpx \
--with-webp \
--with-enc_x264 \
--with-dec_avcodec \
--with-csc_swscale \
--with-Xdummy \
--with-Xdummy_wrapper
%install
mkdir destdir
%{__python} setup.py install --skip-build --root destdir
mkdir -p %{buildroot}%{python_sitearch}/xpra/codecs/
pushd destdir%{python_sitearch}/xpra/codecs/
cp -pr csc_swscale dec_avcodec enc_x264 \
%{buildroot}%{python_sitearch}/xpra/codecs/
popd
#drop shebangs from python_sitearch
find %{buildroot}%{python_sitearch}/xpra -name '*.py' \
-exec sed -i '1{\@^#!/usr/bin/env python@d}' {} \;
#fix permissions on shared objects
find %{buildroot}%{python_sitearch}/xpra -name '*.so' \
-exec chmod 0755 {} \;
%files
%{python_sitearch}/xpra/codecs/*
%doc COPYING
%changelog
* Tue Mar 24 2015 Jonathan G. Underwood <jonathan.underwood(a)gmail.com> - 0.14.21-2
- Remove vpx codec - that's now packaged with the main xpra package
* Mon Mar 23 2015 Jonathan G. Underwood <jonathan.underwood(a)gmail.com> - 0.14.21-1
- Update to 0.14.21
- Update summary and description
- Tighten xpra requirement to be same version
- Remove out of date comment about libvpx
* Fri Oct 18 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.10.6-1
- new upstream release 0.10.6
http://lists.devloop.org.uk/pipermail/shifter-users/2013-October/000726.html
* Tue Oct 08 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.10.4-2
- ship webp support in Fedora package (it is actually useful there)
- include explanation from upstream as to why libswscale is required
- require gstreamer-plugins-ugly (for MP3 audio streams)
* Mon Oct 07 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.10.4-1
- rebase to 0.10.4
- loosen dependency on main xpra package
- add comment explaining libvpx situation
* Thu Mar 28 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.8.8-2
- split off plugins that can't be in Fedora proper
* Thu Mar 14 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.8.8-1
- initial package
Index: sources
===================================================================
RCS file: /cvs/free/rpms/xpra-codecs-freeworld/F-20/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Oct 2013 20:48:08 -0000 1.1
+++ sources 25 Mar 2015 15:45:37 -0000 1.2
@@ -0,0 +1 @@
+f22af4f2942dd2fa6224af45a7363ab2 xpra-0.14.21.tar.xz
9 years, 8 months
rpms/xpra-codecs-freeworld/devel xpra-codecs-freeworld.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by T.C. Hollingsworth
Author: patches
Update of /cvs/free/rpms/xpra-codecs-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29026/devel
Modified Files:
.cvsignore sources
Added Files:
xpra-codecs-freeworld.spec
Log Message:
initial import (#2733)
--- NEW FILE xpra-codecs-freeworld.spec ---
# This package provides H.264 and swscale support for Xpra.
#
# Remove private provides from .so files in the python_sitearch directory
%global __provides_exclude_from ^%{python_sitearch}/.*\\.so$
Name: xpra-codecs-freeworld
Version: 0.14.21
Release: 2%{?dist}
Summary: Additional codecs for xpra using x264 and ffmpeg
License: GPLv2+
URL: http://www.xpra.org/
Source0: http://xpra.org/src/xpra-%{version}.tar.xz
BuildRequires: python2-devel pygobject2-devel pygtk2-devel
BuildRequires: libXtst-devel
BuildRequires: libxkbfile-devel
BuildRequires: Cython
BuildRequires: desktop-file-utils
BuildRequires: libvpx-devel
BuildRequires: libwebp-devel
BuildRequires: x264-devel
BuildRequires: ffmpeg-devel
Requires: xpra = %{version}
Requires: gstreamer-plugins-ugly
%description
Provides support for H.264 encoding and swscale support in xpra using
x264 and ffmpeg.
%prep
%setup -q -n xpra-%{version}
%build
CFLAGS="%{optflags}" %{__python} setup.py build \
--with-vpx \
--with-webp \
--with-enc_x264 \
--with-dec_avcodec \
--with-csc_swscale \
--with-Xdummy \
--with-Xdummy_wrapper
%install
mkdir destdir
%{__python} setup.py install --skip-build --root destdir
mkdir -p %{buildroot}%{python_sitearch}/xpra/codecs/
pushd destdir%{python_sitearch}/xpra/codecs/
cp -pr csc_swscale dec_avcodec enc_x264 \
%{buildroot}%{python_sitearch}/xpra/codecs/
popd
#drop shebangs from python_sitearch
find %{buildroot}%{python_sitearch}/xpra -name '*.py' \
-exec sed -i '1{\@^#!/usr/bin/env python@d}' {} \;
#fix permissions on shared objects
find %{buildroot}%{python_sitearch}/xpra -name '*.so' \
-exec chmod 0755 {} \;
%files
%{python_sitearch}/xpra/codecs/*
%doc COPYING
%changelog
* Tue Mar 24 2015 Jonathan G. Underwood <jonathan.underwood(a)gmail.com> - 0.14.21-2
- Remove vpx codec - that's now packaged with the main xpra package
* Mon Mar 23 2015 Jonathan G. Underwood <jonathan.underwood(a)gmail.com> - 0.14.21-1
- Update to 0.14.21
- Update summary and description
- Tighten xpra requirement to be same version
- Remove out of date comment about libvpx
* Fri Oct 18 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.10.6-1
- new upstream release 0.10.6
http://lists.devloop.org.uk/pipermail/shifter-users/2013-October/000726.html
* Tue Oct 08 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.10.4-2
- ship webp support in Fedora package (it is actually useful there)
- include explanation from upstream as to why libswscale is required
- require gstreamer-plugins-ugly (for MP3 audio streams)
* Mon Oct 07 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.10.4-1
- rebase to 0.10.4
- loosen dependency on main xpra package
- add comment explaining libvpx situation
* Thu Mar 28 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.8.8-2
- split off plugins that can't be in Fedora proper
* Thu Mar 14 2013 T.C. Hollingsworth <tchollingsworth(a)gmail.com> - 0.8.8-1
- initial package
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/xpra-codecs-freeworld/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 23 Oct 2013 20:48:07 -0000 1.1
+++ .cvsignore 25 Mar 2015 15:19:20 -0000 1.2
@@ -0,0 +1 @@
+xpra-0.14.21.tar.xz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/xpra-codecs-freeworld/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 23 Oct 2013 20:48:08 -0000 1.1
+++ sources 25 Mar 2015 15:19:20 -0000 1.2
@@ -0,0 +1 @@
+f22af4f2942dd2fa6224af45a7363ab2 xpra-0.14.21.tar.xz
9 years, 8 months
rpms/staging-kmod-addons/devel sources, 1.10, 1.11 staging-kmod-addons.spec, 1.12, 1.13
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod-addons/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23618
Modified Files:
sources staging-kmod-addons.spec
Log Message:
* Tue Mar 24 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.19.2-1
- Update to 3.19.2
- Drop BCM_WIMAX, dropped upstream
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/devel/sources,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sources 15 Jan 2015 19:37:51 -0000 1.10
+++ sources 24 Mar 2015 19:11:55 -0000 1.11
@@ -1 +1 @@
-5b811e302b1f317d711500721ab00387 linux-staging-3.18.2.tar.xz
+1a55d353d0d56480b5dc28e7caa92a16 linux-staging-3.19.2.tar.xz
Index: staging-kmod-addons.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/devel/staging-kmod-addons.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- staging-kmod-addons.spec 15 Jan 2015 19:37:51 -0000 1.12
+++ staging-kmod-addons.spec 24 Mar 2015 19:11:55 -0000 1.13
@@ -1,12 +1,12 @@
# drivers that we ship; to be synced with staging-kmod.spec
-%global stgdrvs BCM_WIMAX FB_XGI FT1000 LINE6_USB LTE_GDM724X PRISM2_USB R8188EU RTL8192U SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_WPAN_HCD VT6655 VT6656 WIMAX_GDM72XX
+%global stgdrvs FB_XGI FT1000 LINE6_USB LTE_GDM724X PRISM2_USB R8188EU RTL8192U SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_WPAN_HCD VT6655 VT6656 WIMAX_GDM72XX
# makes handling for rc kernels a whole lot easier:
#global prever rc8
Name: staging-kmod-addons
-Version: 3.18.2
+Version: 3.19.2
Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
Summary: Documentation and shared parts for the kmod-staging packages
@@ -53,6 +53,10 @@
%changelog
+* Tue Mar 24 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.19.2-1
+- Update to 3.19.2
+- Drop BCM_WIMAX, dropped upstream
+
* Sun Jan 11 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.18.2-1
- Update to 3.18.2
9 years, 8 months
rpms/staging-kmod/devel .cvsignore, 1.10, 1.11 sources, 1.10, 1.11 staging-kmod.spec, 1.43, 1.44
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23484
Modified Files:
.cvsignore sources staging-kmod.spec
Log Message:
* Tue Mar 24 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.19.2-1
- Update to 3.19.2
- Drop BCM_WIMAX, dropped upstream
- Disable VIDEO_TLG2300, which is enabled in Fedora
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/devel/.cvsignore,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- .cvsignore 15 Jan 2015 19:36:04 -0000 1.10
+++ .cvsignore 24 Mar 2015 19:11:17 -0000 1.11
@@ -1 +1 @@
-linux-staging-3.18.2.tar.xz
+linux-staging-3.19.2.tar.xz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/devel/sources,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sources 15 Jan 2015 19:36:04 -0000 1.10
+++ sources 24 Mar 2015 19:11:17 -0000 1.11
@@ -1 +1 @@
-5b811e302b1f317d711500721ab00387 linux-staging-3.18.2.tar.xz
+1a55d353d0d56480b5dc28e7caa92a16 linux-staging-3.19.2.tar.xz
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/devel/staging-kmod.spec,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- staging-kmod.spec 23 Mar 2015 09:01:05 -0000 1.43
+++ staging-kmod.spec 24 Mar 2015 19:11:17 -0000 1.44
@@ -1,7 +1,7 @@
# akmods not supported
# which drivers to built
-%global stgdrvs BCM_WIMAX FB_XGI FT1000 LINE6_USB LTE_GDM724X PRISM2_USB R8188EU RTL8192U SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_WPAN_HCD VT6655 VT6656 WIMAX_GDM72XX
+%global stgdrvs FB_XGI FT1000 LINE6_USB LTE_GDM724X PRISM2_USB R8188EU RTL8192U SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_WPAN_HCD VT6655 VT6656 WIMAX_GDM72XX
%ifnarch %{arm}
%global stgdrvs %{stgdrvs} SLICOSS
%endif
@@ -16,8 +16,8 @@
#global prever rc8
Name: staging-kmod
-Version: 3.18.2
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.10
+Version: 3.19.2
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -47,7 +47,7 @@
%setup -q -c -T -a 0
# disable drivers that are enabled in Fedora's kernel, as those otherweise would get build
-sed -i '/.CRYSTALH/ d; /.FIREWIRE_SERIAL/ d; /.LIRC/ d; /.R8712U/ d; /.RTL8192E/ d; /.R8192EE/ d; /.R8723AU/ d; /.IMX/ d; /.DWC2/ d;' $(find linux-staging-%{version}%{?prever:-%{prever}}/drivers/staging/ -name 'Makefile')
+sed -i '/.CRYSTALH/ d; /.FIREWIRE_SERIAL/ d; /.LIRC/ d; /.R8712U/ d; /.RTL8192E/ d; /.R8192EE/ d; /.R8723AU/ d; /.IMX/ d; /.DWC2/ d; /.VIDEO_TLG2300/ d;' $(find linux-staging-%{version}%{?prever:-%{prever}}/drivers/staging/ -name 'Makefile')
# broken in 3.13
sed -i 's!#include "dot11d.h"!#include "ieee80211/dot11d.h"!' linux-staging-%{version}/drivers/staging/rtl8192u/{r8192U_core.c,r8192U_wx.c,r819xU_phy.c}
@@ -129,35 +129,10 @@
rm -rf $RPM_BUILD_ROOT
%changelog
-* Mon Mar 23 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.10
-- Rebuilt for kernel
-
-* Sat Mar 21 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.9
-- Rebuilt for kernel
-
-* Tue Mar 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.8
-- Rebuilt for kernel
-
-* Fri Mar 06 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.7
-- Rebuilt for kernel
-
-* Sat Feb 14 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.6
-- Rebuilt for kernel
-
-* Sun Feb 08 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.5
-- Rebuilt for kernel
-
-* Wed Feb 04 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.4
-- Rebuilt for kernel
-
-* Mon Feb 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.3
-- Rebuilt for kernel
-
-* Wed Jan 21 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.2
-- Rebuilt for kernel
-
-* Thu Jan 15 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 3.18.2-1.1
-- Rebuilt for kernel
+* Tue Mar 24 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.19.2-1
+- Update to 3.19.2
+- Drop BCM_WIMAX, dropped upstream
+- Disable VIDEO_TLG2300, which is enabled in Fedora
* Sun Jan 11 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.18.2-1
- Update to 3.18.2
9 years, 8 months
rpms/staging-kmod-addons/F-20 staging-kmod-addons.spec,1.18,1.19
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod-addons/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23024
Modified Files:
staging-kmod-addons.spec
Log Message:
* Tue Mar 24 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.18.2-2
- Rebuild
Index: staging-kmod-addons.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-20/staging-kmod-addons.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- staging-kmod-addons.spec 8 Feb 2015 11:59:43 -0000 1.18
+++ staging-kmod-addons.spec 24 Mar 2015 18:55:45 -0000 1.19
@@ -7,7 +7,7 @@
Name: staging-kmod-addons
Version: 3.18.2
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
+Release: %{?prever:0.}2%{?prever:.%{prever}}%{?dist}
Summary: Documentation and shared parts for the kmod-staging packages
Group: System Environment/Kernel
@@ -53,6 +53,9 @@
%changelog
+* Tue Mar 24 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.18.2-2
+- Rebuild
+
* Sun Jan 11 2015 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.18.2-1
- Update to 3.18.2
9 years, 8 months
rpms/VirtualBox-kmod/devel VirtualBox-kmod.spec,1.55,1.56
by Leigh Scott
Author: leigh123linux
Update of /cvs/free/rpms/VirtualBox-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv14187
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Tue Mar 24 2015 Leigh Scott <leigh123linux(a)googlemail.com> - 4.3.26-1
- New upstream release.
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/devel/VirtualBox-kmod.spec,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- VirtualBox-kmod.spec 23 Mar 2015 09:01:12 -0000 1.55
+++ VirtualBox-kmod.spec 24 Mar 2015 10:07:57 -0000 1.56
@@ -3,7 +3,7 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%global buildforkernels newest
+%global buildforkernels current
# In prerelease builds (such as betas), this package has the same
# major version number, while the kernel module abi is not guarranteed
@@ -20,8 +20,8 @@
%bcond_with hardening
Name: VirtualBox-kmod
-Version: 4.3.20
-Release: 4%{?prerel:.%{prerel}}%{?dist}.8
+Version: 4.3.26
+Release: 1%{?prerel:.%{prerel}}%{?dist}
Summary: Kernel module for VirtualBox
Group: System Environment/Kernel
@@ -99,6 +99,9 @@
%changelog
+* Tue Mar 24 2015 Leigh Scott <leigh123linux(a)googlemail.com> - 4.3.26-1
+- New upstream release.
+
* Mon Mar 23 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.20-4.8
- Rebuilt for kernel
9 years, 8 months
rpms/VirtualBox/devel .cvsignore, 1.59, 1.60 VirtualBox.spec, 1.70, 1.71 sources, 1.59, 1.60
by Leigh Scott
Author: leigh123linux
Update of /cvs/free/rpms/VirtualBox/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv14015
Modified Files:
.cvsignore VirtualBox.spec sources
Log Message:
* Tue Mar 24 2015 Leigh Scott <leigh123linux(a)googlemail.com> - 4.3.26-1
- New upstream release .
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/devel/.cvsignore,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- .cvsignore 23 Nov 2014 03:14:15 -0000 1.59
+++ .cvsignore 24 Mar 2015 10:07:09 -0000 1.60
@@ -1 +1 @@
-VirtualBox-4.3.20.tar.bz2
+VirtualBox-4.3.26.tar.bz2
Index: VirtualBox.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/devel/VirtualBox.spec,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- VirtualBox.spec 26 Dec 2014 05:06:30 -0000 1.70
+++ VirtualBox.spec 24 Mar 2015 10:07:10 -0000 1.71
@@ -26,8 +26,8 @@
#endif
Name: VirtualBox
-Version: 4.3.20
-Release: 3%{?prerel:.%{prerel}}%{?dist}
+Version: 4.3.26
+Release: 1%{?prerel:.%{prerel}}%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
Group: Development/Tools
@@ -619,6 +619,9 @@
%changelog
+* Tue Mar 24 2015 Leigh Scott <leigh123linux(a)googlemail.com> - 4.3.26-1
+- New upstream release .
+
* Fri Dec 26 2014 Sérgio Basto <sergio(a)serjux.com> - 4.3.20-3
- Improved strings.patch asking to install kmods VirtualBox and also intructions for devel versions.
- Improved description of VirtualBox-guest, alerting to not install on Host, one conclusion on rfbz #3425 .
Index: sources
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/devel/sources,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- sources 23 Nov 2014 03:14:15 -0000 1.59
+++ sources 24 Mar 2015 10:07:10 -0000 1.60
@@ -1 +1 @@
-cf3f25644aa0fae1029e8b362bd4375e VirtualBox-4.3.20.tar.bz2
+df8fa3b1820773556b33ae0405553120 VirtualBox-4.3.26.tar.bz2
9 years, 8 months
rpms/wl-kmod/devel wl-kmod-009_kernel_4.0.patch, NONE, 1.1 wl-kmod.spec, 1.102, 1.103
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv13851
Modified Files:
wl-kmod.spec
Added Files:
wl-kmod-009_kernel_4.0.patch
Log Message:
Add patch for 4.0 kernel
wl-kmod-009_kernel_4.0.patch:
wl_cfg80211_hybrid.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- NEW FILE wl-kmod-009_kernel_4.0.patch ---
--- a/src/wl/sys/wl_cfg80211_hybrid.c 2014-06-26 11:42:08.000000000 +0100
+++ b/src/wl/sys/wl_cfg80211_hybrid.c 2015-03-02 12:37:17.128248174 +0000
@@ -1441,7 +1441,7 @@ wl_cfg80211_get_station(struct wiphy *wi
WL_DBG(("Could not get rate (%d)\n", err));
} else {
rate = dtoh32(rate);
- sinfo->filled |= STATION_INFO_TX_BITRATE;
+ sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE);
sinfo->txrate.legacy = rate * 5;
WL_DBG(("Rate %d Mbps\n", (rate / 2)));
}
@@ -1454,7 +1454,7 @@ wl_cfg80211_get_station(struct wiphy *wi
return err;
}
rssi = dtoh32(scb_val.val);
- sinfo->filled |= STATION_INFO_SIGNAL;
+ sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL);
sinfo->signal = rssi;
WL_DBG(("RSSI %d dBm\n", rssi));
}
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- wl-kmod.spec 23 Mar 2015 09:01:48 -0000 1.102
+++ wl-kmod.spec 23 Mar 2015 09:39:58 -0000 1.103
@@ -3,11 +3,11 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%global buildforkernels newest
+#global buildforkernels newest
Name: wl-kmod
Version: 6.30.223.248
-Release: 6%{?dist}.6
+Release: 7%{?dist}
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -24,6 +24,7 @@
Patch6: wl-kmod-007_kernel_3.17.patch
Patch7: wl-kmod-008_kernel_3.18.patch
Patch8: wl-kmod-009_kernel_3.18_null_pointer.patch
+Patch9: wl-kmod-009_kernel_4.0.patch
BuildRequires: %{_bindir}/kmodtool
@@ -71,6 +72,7 @@
%patch6 -p1 -b .kernel-3.17
%patch7 -p1 -b .kernel-3.18
%patch8 -p1 -b .kernel-3.18_null_pointer
+%patch9 -p1 -b .kernel-4.0
popd
for kernel_version in %{?kernel_versions} ; do
@@ -100,6 +102,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Mar 23 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-7
+- Add patch for 4.0 kernel
+
* Mon Mar 23 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-6.6
- Rebuilt for kernel
9 years, 8 months
rpms/wl-kmod/devel wl-kmod.spec,1.101,1.102
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12495
Modified Files:
wl-kmod.spec
Log Message:
* Mon Mar 23 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-6.6
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- wl-kmod.spec 21 Mar 2015 09:09:55 -0000 1.101
+++ wl-kmod.spec 23 Mar 2015 09:01:48 -0000 1.102
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 6.30.223.248
-Release: 6%{?dist}.5
+Release: 6%{?dist}.6
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -100,6 +100,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Mar 23 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-6.6
+- Rebuilt for kernel
+
* Sat Mar 21 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-6.5
- Rebuilt for kernel
9 years, 8 months