rpms/vdr-softhddevice/devel .cvsignore, 1.21, 1.22 sources, 1.21, 1.22 vdr-softhddevice.spec, 1.25, 1.26
by Martin Gansser
Author: martinkg
Update of /cvs/free/rpms/vdr-softhddevice/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23391/devel
Modified Files:
.cvsignore sources vdr-softhddevice.spec
Log Message:
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vdr-softhddevice/devel/.cvsignore,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- .cvsignore 19 Jun 2015 18:24:24 -0000 1.21
+++ .cvsignore 30 Jun 2015 16:18:29 -0000 1.22
@@ -1 +1 @@
-vdr-plugin-softhddevice-396d5fac055aae8afeb4626d2b56e4bf989f8fd6.tar.bz2
+vdr-plugin-softhddevice-ec58e456072d962a18cb50f4324d266ba4a2aae8.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vdr-softhddevice/devel/sources,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- sources 19 Jun 2015 18:24:24 -0000 1.21
+++ sources 30 Jun 2015 16:18:29 -0000 1.22
@@ -1 +1 @@
-7a75c2c782dc49560cff731b3b8e11cc vdr-plugin-softhddevice-396d5fac055aae8afeb4626d2b56e4bf989f8fd6.tar.bz2
+226f9150c292e4f75b0d99676b3833c1 vdr-plugin-softhddevice-ec58e456072d962a18cb50f4324d266ba4a2aae8.tar.bz2
Index: vdr-softhddevice.spec
===================================================================
RCS file: /cvs/free/rpms/vdr-softhddevice/devel/vdr-softhddevice.spec,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- vdr-softhddevice.spec 29 Jun 2015 18:36:32 -0000 1.25
+++ vdr-softhddevice.spec 30 Jun 2015 16:18:29 -0000 1.26
@@ -1,10 +1,10 @@
-%global commit 396d5fac055aae8afeb4626d2b56e4bf989f8fd6
+%global commit ec58e456072d962a18cb50f4324d266ba4a2aae8
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global gitdate 20150619
+%global gitdate 20150630
Name: vdr-softhddevice
Version: 0.6.0
-Release: 28.%{gitdate}git%{shortcommit}%{?dist}
+Release: 29.%{gitdate}git%{shortcommit}%{?dist}
Summary: A software and GPU emulated HD output device plugin for VDR
License: AGPLv3
@@ -82,6 +82,9 @@
%license AGPL-3.0.txt
%changelog
+* Tue Jun 30 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 0.6.0-29.20150630gitec58e45
+- update for new git snapshot
+
* Mon Jun 29 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 0.6.0-28.20150619git396d5fa
- added R xorg-x11-server-Xorg
- added exit-crash.patch
9 years, 4 months
rpms/vdr-softhddevice/devel arm.patch, NONE, 1.1 exit-crash.patch, NONE, 1.1 vdr-softhddevice.spec, 1.24, 1.25
by Martin Gansser
Author: martinkg
Update of /cvs/free/rpms/vdr-softhddevice/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26218/devel
Modified Files:
vdr-softhddevice.spec
Added Files:
arm.patch exit-crash.patch
Log Message:
arm.patch:
softhddev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- NEW FILE arm.patch ---
--- softhddev.c.orig 2015-06-29 09:54:49.192694598 +0200
+++ softhddev.c 2015-06-29 09:55:25.527691030 +0200
@@ -92,7 +92,7 @@
static signed char ConfigStartSuspended; ///< flag to start in suspend mode
static char ConfigFullscreen; ///< fullscreen modus
static const char *X11ServerArguments; ///< default command arguments
-static char ConfigStillDecoder; ///< hw/sw decoder for still picture
+static signed char ConfigStillDecoder; ///< hw/sw decoder for still picture
static pthread_mutex_t SuspendLockMutex; ///< suspend lock mutex
exit-crash.patch:
video.c | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
--- NEW FILE exit-crash.patch ---
diff --git a/video.c b/video.c
index 56cae36..456a9ac 100644
--- a/video.c
+++ b/video.c
@@ -9458,6 +9458,41 @@ static void NoopReleaseSurface(
}
///
+/// Set noop decoder video clock.
+///
+/// Can be called while exiting.
+///
+/// @param decoder noop hardware decoder
+/// @param pts audio presentation timestamp
+///
+void NoopSetClock(__attribute__ ((unused)) VideoHwDecoder * decoder,
+ __attribute__ ((unused)) int64_t pts)
+{
+}
+
+///
+/// Set noop decoder closing stream flag.
+///
+/// Can be called while exiting.
+///
+/// @param decoder noop hw decoder
+///
+static void NoopSetClosing(__attribute__ ((unused)) VideoHwDecoder * decoder)
+{
+}
+
+///
+/// Reset start of frame counter.
+///
+/// Can be called while exiting.
+///
+/// @param decoder noop decoder
+///
+static void NoopResetStart(__attribute__ ((unused)) VdpauDecoder * decoder)
+{
+}
+
+///
/// Set noop background color.
///
/// @param rgba 32 bit RGBA color.
@@ -9564,10 +9599,14 @@ static const VideoModule NoopModule = {
const AVCodecContext *, const AVFrame *))NoopSyncRenderFrame,
.GetHwAccelContext = (void *(*const)(VideoHwDecoder *))
DummyGetHwAccelContext,
+#endif
.SetClock = (void (*const) (VideoHwDecoder *, int64_t))NoopSetClock,
+#if 0
.GetClock = (int64_t(*const) (const VideoHwDecoder *))NoopGetClock,
+#endif
.SetClosing = (void (*const) (const VideoHwDecoder *))NoopSetClosing,
.ResetStart = (void (*const) (const VideoHwDecoder *))NoopResetStart,
+#if 0
.SetTrickSpeed =
(void (*const) (const VideoHwDecoder *, int))NoopSetTrickSpeed,
.GrabOutput = NoopGrabOutputSurface,
Index: vdr-softhddevice.spec
===================================================================
RCS file: /cvs/free/rpms/vdr-softhddevice/devel/vdr-softhddevice.spec,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- vdr-softhddevice.spec 19 Jun 2015 18:24:24 -0000 1.24
+++ vdr-softhddevice.spec 29 Jun 2015 18:36:32 -0000 1.25
@@ -4,7 +4,7 @@
Name: vdr-softhddevice
Version: 0.6.0
-Release: 27.%{gitdate}git%{shortcommit}%{?dist}
+Release: 28.%{gitdate}git%{shortcommit}%{?dist}
Summary: A software and GPU emulated HD output device plugin for VDR
License: AGPLv3
@@ -12,6 +12,10 @@
Source0: http://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git/snapsho...
# Configuration files for plugin parameters. These are Fedora specific and not in upstream.
Source1: %{name}.conf
+# http://projects.vdr-developer.org/issues/1417
+Patch0: exit-crash.patch
+# http://projects.vdr-developer.org/issues/1916
+Patch1: arm.patch
BuildRequires: vdr-devel >= 1.7.22
BuildRequires: gettext
@@ -25,6 +29,7 @@
BuildRequires: mesa-libGLU-devel
BuildRequires: mesa-libGL-devel
Requires: vdr(abi)%{?_isa} = %{vdr_apiversion}
+Requires: xorg-x11-server-Xorg
%description
A software and GPU emulated HD output device plugin for VDR.
@@ -48,6 +53,8 @@
%prep
%setup -qn vdr-plugin-softhddevice-%{commit}
+%patch0 -p1
+%patch1 -p0
# remove .git files and Gentoo files
rm -f .indent.pro .gitignore .gitattributes
@@ -75,7 +82,12 @@
%license AGPL-3.0.txt
%changelog
-* Fri Jun 19 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 0.6.0-27.20150619gitf0d31ad
+* Mon Jun 29 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 0.6.0-28.20150619git396d5fa
+- added R xorg-x11-server-Xorg
+- added exit-crash.patch
+- added arm.patch
+
+* Fri Jun 19 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 0.6.0-27.20150619git396d5fa
- update for new git snapshot
* Wed Apr 22 2015 Martin Gansser <martinkg(a)fedoraproject.org> - 0.6.0-26.20150422gitf0d31ad
9 years, 4 months
rpms/wl-kmod/devel wl-kmod.spec,1.120,1.121
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27174
Modified Files:
wl-kmod.spec
Log Message:
* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-8.4
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- wl-kmod.spec 10 Jun 2015 13:55:00 -0000 1.120
+++ wl-kmod.spec 28 Jun 2015 21:19:38 -0000 1.121
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 6.30.223.248
-Release: 8%{?dist}.3
+Release: 8%{?dist}.4
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -102,6 +102,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-8.4
+- Rebuilt for kernel
+
* Wed Jun 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-8.3
- Rebuilt for kernel
9 years, 4 months
rpms/nvidia-kmod/devel nvidia-kmod.spec,1.209,1.210
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27053
Modified Files:
nvidia-kmod.spec
Log Message:
* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:352.21-1.1
- Rebuilt for kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- nvidia-kmod.spec 16 Jun 2015 05:25:55 -0000 1.209
+++ nvidia-kmod.spec 28 Jun 2015 21:19:30 -0000 1.210
@@ -3,13 +3,13 @@
# "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 current
+%global buildforkernels newest
Name: nvidia-kmod
Epoch: 1
Version: 352.21
# Taken over by kmodtool
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -90,6 +90,9 @@
%changelog
+* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:352.21-1.1
+- Rebuilt for kernel
+
* Mon Jun 15 2015 Leigh Scott <leigh123linux(a)googlemail.com> - 1:352.21-1
- Update to 352.21
9 years, 4 months
rpms/nvidia-340xx-kmod/devel nvidia-340xx-kmod.spec,1.25,1.26
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-340xx-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26931
Modified Files:
nvidia-340xx-kmod.spec
Log Message:
* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-2.15
- Rebuilt for kernel
Index: nvidia-340xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-340xx-kmod/devel/nvidia-340xx-kmod.spec,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- nvidia-340xx-kmod.spec 10 Jun 2015 13:54:46 -0000 1.25
+++ nvidia-340xx-kmod.spec 28 Jun 2015 21:19:23 -0000 1.26
@@ -9,7 +9,7 @@
Epoch: 1
Version: 340.76
# Taken over by kmodtool
-Release: 2%{?dist}.14
+Release: 2%{?dist}.15
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-2.15
+- Rebuilt for kernel
+
* Wed Jun 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-2.14
- Rebuilt for kernel
9 years, 4 months
rpms/nvidia-304xx-kmod/devel nvidia-304xx-kmod.spec,1.47,1.48
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26804
Modified Files:
nvidia-304xx-kmod.spec
Log Message:
* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.125-3.13
- Rebuilt for kernel
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/nvidia-304xx-kmod.spec,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- nvidia-304xx-kmod.spec 10 Jun 2015 13:54:39 -0000 1.47
+++ nvidia-304xx-kmod.spec 28 Jun 2015 21:19:14 -0000 1.48
@@ -8,7 +8,7 @@
Name: nvidia-304xx-kmod
Version: 304.125
# Taken over by kmodtool
-Release: 3%{?dist}.12
+Release: 3%{?dist}.13
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
%changelog
+* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.125-3.13
+- Rebuilt for kernel
+
* Wed Jun 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.125-3.12
- Rebuilt for kernel
9 years, 4 months
rpms/xtables-addons-kmod/devel xtables-addons-kmod.spec,1.62,1.63
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26683
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 2.6-1.25
- Rebuilt for kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/devel/xtables-addons-kmod.spec,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- xtables-addons-kmod.spec 10 Jun 2015 13:54:32 -0000 1.62
+++ xtables-addons-kmod.spec 28 Jun 2015 21:19:07 -0000 1.63
@@ -8,7 +8,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 2.6
-Release: 1%{?dist}.24
+Release: 1%{?dist}.25
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -65,6 +65,9 @@
rm -rf %{buildroot}
%changelog
+* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 2.6-1.25
+- Rebuilt for kernel
+
* Wed Jun 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 2.6-1.24
- Rebuilt for kernel
9 years, 4 months
rpms/VirtualBox-kmod/devel VirtualBox-kmod.spec,1.70,1.71
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/VirtualBox-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26562
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.28-1.5
- Rebuilt for kernel
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/devel/VirtualBox-kmod.spec,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- VirtualBox-kmod.spec 10 Jun 2015 13:54:26 -0000 1.70
+++ VirtualBox-kmod.spec 28 Jun 2015 21:19:00 -0000 1.71
@@ -21,7 +21,7 @@
Name: VirtualBox-kmod
Version: 4.3.28
-Release: 1%{?prerel:.%{prerel}}%{?dist}.4
+Release: 1%{?prerel:.%{prerel}}%{?dist}.5
Summary: Kernel module for VirtualBox
Group: System Environment/Kernel
@@ -99,6 +99,9 @@
%changelog
+* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.28-1.5
+- Rebuilt for kernel
+
* Wed Jun 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.28-1.4
- Rebuilt for kernel
9 years, 4 months
rpms/staging-kmod/devel staging-kmod.spec,1.61,1.62
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/staging-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26441
Modified Files:
staging-kmod.spec
Log Message:
* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 4.0.4-1.4
- Rebuilt for kernel
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/devel/staging-kmod.spec,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- staging-kmod.spec 10 Jun 2015 13:54:20 -0000 1.61
+++ staging-kmod.spec 28 Jun 2015 21:18:53 -0000 1.62
@@ -17,7 +17,7 @@
Name: staging-kmod
Version: 4.0.4
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.3
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.4
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -134,6 +134,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 4.0.4-1.4
+- Rebuilt for kernel
+
* Wed Jun 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 4.0.4-1.3
- Rebuilt for kernel
9 years, 4 months
rpms/ndiswrapper-kmod/devel ndiswrapper-kmod.spec,1.92,1.93
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ndiswrapper-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26315
Modified Files:
ndiswrapper-kmod.spec
Log Message:
* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-8.3
- Rebuilt for kernel
Index: ndiswrapper-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/ndiswrapper-kmod/devel/ndiswrapper-kmod.spec,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ndiswrapper-kmod.spec 10 Jun 2015 13:54:13 -0000 1.92
+++ ndiswrapper-kmod.spec 28 Jun 2015 21:18:46 -0000 1.93
@@ -10,7 +10,7 @@
Summary: Ndiswrapper kernel module
Name: ndiswrapper-kmod
Version: 1.59
-Release: 8%{?pre}%{?dist}.2
+Release: 8%{?pre}%{?dist}.3
License: GPLv2
Group: System Environment/Kernel
URL: http://ndiswrapper.sourceforge.net
@@ -79,6 +79,9 @@
%changelog
+* Sun Jun 28 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-8.3
+- Rebuilt for kernel
+
* Wed Jun 10 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-8.2
- Rebuilt for kernel
9 years, 4 months