rpms/vlc/devel vlc-backport-ffmpeg54.patch, NONE, 1.1 vlc.spec, 1.152, 1.153 vlc-2.0.1-fftype.patch, 1.1, NONE
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv14784/devel
Modified Files:
vlc.spec
Added Files:
vlc-backport-ffmpeg54.patch
Removed Files:
vlc-2.0.1-fftype.patch
Log Message:
Backport merged patch available since March
vlc-backport-ffmpeg54.patch:
switcher.c | 36 ++++++++++++++++++++++++------------
1 file changed, 24 insertions(+), 12 deletions(-)
--- NEW FILE vlc-backport-ffmpeg54.patch ---
X-Git-Url: http://git.videolan.org/?p=vlc%2Fvlc-2.0.git;a=blobdiff_plain;f=modules%2...
diff --git a/modules/stream_out/switcher.c b/modules/stream_out/switcher.c
index 372eef8..1830132 100644
--- a/modules/stream_out/switcher.c
+++ b/modules/stream_out/switcher.c
@@ -51,12 +51,6 @@
# include <avcodec.h>
#endif
-#ifdef HAVE_POSTPROC_POSTPROCESS_H
-# include <postproc/postprocess.h>
-#else
-# include <libpostproc/postprocess.h>
-#endif
-
#include "../codec/avcodec/avcodec.h"
#define SOUT_CFG_PREFIX "sout-switcher-"
@@ -292,7 +286,9 @@ static int Open( vlc_object_t *p_this )
p_stream->pf_send = Send;
p_stream->p_sys = p_sys;
+#if LIBAVCODEC_VERSION_MAJOR < 54
avcodec_init();
+#endif
avcodec_register_all();
return VLC_SUCCESS;
@@ -355,7 +351,11 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
return NULL;
}
+#if LIBAVCODEC_VERSION_MAJOR < 54
id->ff_enc_c = avcodec_alloc_context();
+#else
+ id->ff_enc_c = avcodec_alloc_context3( id->ff_enc );
+#endif
/* Set CPU capabilities */
unsigned i_cpu = vlc_CPU();
@@ -388,7 +388,11 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
id->ff_enc_c->bit_rate = p_fmt->i_bitrate;
vlc_avcodec_lock();
+#if LIBAVCODEC_VERSION_MAJOR >= 54
+ if( avcodec_open2( id->ff_enc_c, id->ff_enc, NULL /* options */ ) )
+#else
if( avcodec_open( id->ff_enc_c, id->ff_enc ) )
+#endif
{
vlc_avcodec_unlock();
msg_Err( p_stream, "cannot open encoder" );
@@ -748,7 +752,11 @@ static mtime_t VideoCommand( sout_stream_t *p_stream, sout_stream_id_t *id )
return 0;
}
+#if LIBAVCODEC_VERSION_MAJOR < 54
id->ff_enc_c = avcodec_alloc_context();
+#else
+ id->ff_enc_c = avcodec_alloc_context3( id->ff_enc );
+#endif
/* Set CPU capabilities */
unsigned i_cpu = vlc_CPU();
@@ -803,7 +811,11 @@ static mtime_t VideoCommand( sout_stream_t *p_stream, sout_stream_id_t *id )
id->ff_enc_c->pix_fmt = PIX_FMT_YUV420P;
vlc_avcodec_lock();
+#if LIBAVCODEC_VERSION_MAJOR >= 54
+ if( avcodec_open2( id->ff_enc_c, id->ff_enc, NULL /* options */ ) )
+#else
if( avcodec_open( id->ff_enc_c, id->ff_enc ) )
+#endif
{
vlc_avcodec_unlock();
msg_Err( p_stream, "cannot open encoder" );
@@ -844,7 +856,7 @@ static block_t *VideoGetBuffer( sout_stream_t *p_stream, sout_stream_id_t *id,
if ( id->i_nb_pred >= p_sys->i_gop )
{
- id->p_frame->pict_type = FF_I_TYPE;
+ id->p_frame->pict_type = AV_PICTURE_TYPE_I;
#if 0
id->p_frame->me_threshold = 0;
id->p_frame->mb_threshold = 0;
@@ -853,7 +865,7 @@ static block_t *VideoGetBuffer( sout_stream_t *p_stream, sout_stream_id_t *id,
}
else
{
- id->p_frame->pict_type = FF_P_TYPE;
+ id->p_frame->pict_type = AV_PICTURE_TYPE_P;
#if 0
if ( id->p_frame->mb_type != NULL )
{
@@ -873,7 +885,7 @@ static block_t *VideoGetBuffer( sout_stream_t *p_stream, sout_stream_id_t *id,
#if 0
if ( id->p_frame->mb_type == NULL
- && id->ff_enc_c->coded_frame->pict_type != FF_I_TYPE )
+ && id->ff_enc_c->coded_frame->pict_type != AV_PICTURE_TYPE_I )
{
int mb_width = (id->ff_enc_c->width + 15) / 16;
int mb_height = (id->ff_enc_c->height + 15) / 16;
@@ -926,13 +938,13 @@ static block_t *VideoGetBuffer( sout_stream_t *p_stream, sout_stream_id_t *id,
switch ( id->ff_enc_c->coded_frame->pict_type )
{
- case FF_I_TYPE:
+ case AV_PICTURE_TYPE_I:
p_out->i_flags |= BLOCK_FLAG_TYPE_I;
break;
- case FF_P_TYPE:
+ case AV_PICTURE_TYPE_P:
p_out->i_flags |= BLOCK_FLAG_TYPE_P;
break;
- case FF_B_TYPE:
+ case AV_PICTURE_TYPE_B:
p_out->i_flags |= BLOCK_FLAG_TYPE_B;
break;
default:
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/vlc.spec,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -r1.152 -r1.153
--- vlc.spec 2 May 2012 22:49:21 -0000 1.152
+++ vlc.spec 18 Jun 2012 12:21:29 -0000 1.153
@@ -22,12 +22,12 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 2.0.1
-Release: 1%{?dist}
+Release: 2%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
Source0: http://download.videolan.org/pub/videolan/vlc/%{version}/vlc-%{version}%{...
-Patch0: vlc-2.0.1-fftype.patch
+Patch0: vlc-backport-ffmpeg54.patch
Patch5: vlc-1.1.8-bugfix.opencv22.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -488,6 +488,9 @@
%changelog
+* Mon Jun 18 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.1-2
+- Backport patch for ffmpeg54
+
* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.1-1
- Update to 2.0.1
--- vlc-2.0.1-fftype.patch DELETED ---
12 years, 5 months
rpms/nvidia-xconfig/devel .cvsignore, 1.14, 1.15 nvidia-xconfig.spec, 1.14, 1.15 sources, 1.14, 1.15
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-xconfig/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv17775
Modified Files:
.cvsignore nvidia-xconfig.spec sources
Log Message:
* Sun Jun 17 2012 leigh scott <leigh123linux(a)googlemail.com> - 1.0-18
- Update to 302.17
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-xconfig/devel/.cvsignore,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- .cvsignore 22 May 2012 20:11:42 -0000 1.14
+++ .cvsignore 17 Jun 2012 20:10:08 -0000 1.15
@@ -1 +1 @@
-nvidia-xconfig-302.11.tar.bz2
+nvidia-xconfig-302.17.tar.bz2
Index: nvidia-xconfig.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-xconfig/devel/nvidia-xconfig.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- nvidia-xconfig.spec 22 May 2012 20:11:42 -0000 1.14
+++ nvidia-xconfig.spec 17 Jun 2012 20:10:08 -0000 1.15
@@ -1,14 +1,14 @@
-%global nversion 302.11
+%global nversion 302.17
Name: nvidia-xconfig
Version: 1.0
-Release: 17%{?dist}
+Release: 18%{?dist}
Summary: NVIDIA X configuration file editor
Group: Applications/System
License: GPLv2+
URL: http://cgit.freedesktop.org/~aplattner/nvidia-xconfig/
-Source0: ftp://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-%{nversio...
+Source0: http://cgit.freedesktop.org/~aplattner/nvidia-xconfig/snapshot/nvidia-xco...
Patch0: nvidia-xconfig-1.0-default.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -66,6 +66,9 @@
%{_mandir}/man1/nvidia-xconfig.1.*
%changelog
+* Sun Jun 17 2012 leigh scott <leigh123linux(a)googlemail.com> - 1.0-18
+- Update to 302.17
+
* Tue May 22 2012 leigh scott <leigh123linux(a)googlemail.com> - 1.0-17
- Update to 302.11
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-xconfig/devel/sources,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- sources 22 May 2012 20:11:42 -0000 1.14
+++ sources 17 Jun 2012 20:10:08 -0000 1.15
@@ -1 +1 @@
-0fb588e5ffca9f0e9d3c80dbe1207a65 nvidia-xconfig-302.11.tar.bz2
+70930965c4aab6daaec4f24e96912c73 nvidia-xconfig-302.17.tar.bz2
12 years, 5 months
rpms/nvidia-settings/devel .cvsignore, 1.15, 1.16 nvidia-settings.spec, 1.17, 1.18 sources, 1.15, 1.16
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-settings/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv17428
Modified Files:
.cvsignore nvidia-settings.spec sources
Log Message:
* Sun Jun 17 2012 leigh scott <leigh123linux(a)googlemail.com> - 1.0-20
- Update to 302.17
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-settings/devel/.cvsignore,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- .cvsignore 22 May 2012 20:08:02 -0000 1.15
+++ .cvsignore 17 Jun 2012 20:06:23 -0000 1.16
@@ -1 +1 @@
-nvidia-settings-302.11.tar.bz2
+nvidia-settings-302.17.tar.bz2
Index: nvidia-settings.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-settings/devel/nvidia-settings.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- nvidia-settings.spec 22 May 2012 20:08:02 -0000 1.17
+++ nvidia-settings.spec 17 Jun 2012 20:06:23 -0000 1.18
@@ -1,7 +1,7 @@
# We use the driver version as a snapshot internal number
# The real version of the package remains 1.0
# This will prevent missunderstanding and versioning changes on the nvidia driver
-%global nversion 302.11
+%global nversion 302.17
#Possible replacement/complement:
#http://willem.engen.nl/projects/disper/
@@ -9,7 +9,7 @@
Name: nvidia-settings
Version: 1.0
-Release: 19%{?dist}
+Release: 20%{?dist}
Summary: Configure the NVIDIA graphics driver
Group: Applications/System
@@ -97,6 +97,9 @@
%changelog
+* Sun Jun 17 2012 leigh scott <leigh123linux(a)googlemail.com> - 1.0-20
+- Update to 302.17
+
* Tue May 22 2012 leigh scott <leigh123linux(a)googlemail.com> - 1.0-19
- Update to 302.11
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-settings/devel/sources,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- sources 22 May 2012 20:08:02 -0000 1.15
+++ sources 17 Jun 2012 20:06:23 -0000 1.16
@@ -1 +1 @@
-b24c13bb87ed50217131f3fab9e4ee4d nvidia-settings-302.11.tar.bz2
+ebd91100442335fbb1fc3bfd77896df5 nvidia-settings-302.17.tar.bz2
12 years, 5 months
rpms/wl-kmod/F-17 wl-kmod.spec,1.73,1.74
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16763
Modified Files:
wl-kmod.spec
Log Message:
* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-3.1
- Rebuilt for updated kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-17/wl-kmod.spec,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- wl-kmod.spec 8 Jun 2012 19:40:56 -0000 1.73
+++ wl-kmod.spec 17 Jun 2012 19:53:33 -0000 1.74
@@ -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
-%define buildforkernels current
+%define buildforkernels newest
Name: wl-kmod
Version: 5.100.82.112
-Release: 3%{?dist}
+Release: 3%{?dist}.1
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-3.1
+- Rebuilt for updated kernel
+
* Fri Jun 08 2012 Nicolas Vieville <nicolas.vieville(a)univ-valenciennes.fr> - 5.100.82.112-3
- Added patch to build for kernel >= 3.4
12 years, 5 months
rpms/nvidia-kmod/F-17 nvidia-kmod.spec,1.115,1.116
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16627
Modified Files:
nvidia-kmod.spec
Log Message:
* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.59-1.1
- Rebuilt for updated kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-17/nvidia-kmod.spec,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- nvidia-kmod.spec 11 Jun 2012 18:33:46 -0000 1.115
+++ nvidia-kmod.spec 17 Jun 2012 19:53:23 -0000 1.116
@@ -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
-%define buildforkernels current
+%define buildforkernels newest
Name: nvidia-kmod
Epoch: 1
Version: 295.59
# 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
@@ -77,6 +77,9 @@
%changelog
+* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.59-1.1
+- Rebuilt for updated kernel
+
* Mon Jun 11 2012 leigh scott <leigh123linux(a)googlemail.com> - 1:295.59-1
- Update to 295.59
12 years, 5 months
rpms/nvidia-173xx-kmod/F-17 nvidia-173xx-kmod.spec,1.52,1.53
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16498
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.35-1.1
- Rebuilt for updated kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-17/nvidia-173xx-kmod.spec,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- nvidia-173xx-kmod.spec 5 Jun 2012 21:25:27 -0000 1.52
+++ nvidia-173xx-kmod.spec 17 Jun 2012 19:53:14 -0000 1.53
@@ -3,12 +3,12 @@
# "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
-%define buildforkernels current
+%define buildforkernels newest
Name: nvidia-173xx-kmod
Version: 173.14.35
# Taken over by kmodtool
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.35-1.1
+- Rebuilt for updated kernel
+
* Tue Jun 05 2012 leigh scott <leigh123linux(a)googlemail.com> - 173.14.35-1
- Update to 173.14.35
12 years, 5 months
rpms/catalyst-kmod/F-17 catalyst-kmod.spec,1.26,1.27
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16364
Modified Files:
catalyst-kmod.spec
Log Message:
* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 11.11-1.14
- Rebuilt for updated kernel
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/F-17/catalyst-kmod.spec,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- catalyst-kmod.spec 5 Jun 2012 11:30:52 -0000 1.26
+++ catalyst-kmod.spec 17 Jun 2012 19:53:04 -0000 1.27
@@ -13,7 +13,7 @@
Name: catalyst-kmod
Version: 11.11
-Release: 1%{?dist}.13
+Release: 1%{?dist}.14
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -97,6 +97,9 @@
%changelog
+* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 11.11-1.14
+- Rebuilt for updated kernel
+
* Tue Jun 05 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 11.11-1.13
- Rebuilt for updated kernel
12 years, 5 months
rpms/xtables-addons-kmod/F-17 xtables-addons-kmod.spec,1.35,1.36
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16233
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.42-2.8
- Rebuilt for updated kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/F-17/xtables-addons-kmod.spec,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- xtables-addons-kmod.spec 5 Jun 2012 11:30:40 -0000 1.35
+++ xtables-addons-kmod.spec 17 Jun 2012 19:52:55 -0000 1.36
@@ -8,7 +8,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 1.42
-Release: 2%{?dist}.7
+Release: 2%{?dist}.8
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -66,6 +66,9 @@
rm -rf %{buildroot}
%changelog
+* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.42-2.8
+- Rebuilt for updated kernel
+
* Tue Jun 05 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.42-2.7
- Rebuilt for updated kernel
12 years, 5 months
rpms/west-chamber-kmod/F-17 west-chamber-kmod.spec,1.26,1.27
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/west-chamber-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16104
Modified Files:
west-chamber-kmod.spec
Log Message:
* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.18
- Rebuilt for updated kernel
Index: west-chamber-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/west-chamber-kmod/F-17/west-chamber-kmod.spec,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- west-chamber-kmod.spec 5 Jun 2012 11:30:28 -0000 1.26
+++ west-chamber-kmod.spec 17 Jun 2012 19:52:46 -0000 1.27
@@ -11,7 +11,7 @@
Name: west-chamber-kmod
Summary: Kernel module (kmod) for west-chamber
Version: 0.0.1
-Release: 7.%{?svndate}svn%{?dist}.17
+Release: 7.%{?svndate}svn%{?dist}.18
License: GPLv2+
Group: System Environment/Kernel
URL: http://code.google.com/p/scholarzhang/
@@ -82,6 +82,9 @@
rm -rf %{buildroot}
%changelog
+* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.18
+- Rebuilt for updated kernel
+
* Tue Jun 05 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.17
- Rebuilt for updated kernel
12 years, 5 months
rpms/VirtualBox-kmod/F-17 VirtualBox-kmod.spec,1.5,1.6
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/VirtualBox-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv15977
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.16-1.2
- Rebuilt for updated kernel
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/F-17/VirtualBox-kmod.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- VirtualBox-kmod.spec 5 Jun 2012 11:30:07 -0000 1.5
+++ VirtualBox-kmod.spec 17 Jun 2012 19:52:38 -0000 1.6
@@ -18,7 +18,7 @@
Name: VirtualBox-kmod
Version: 4.1.16
-Release: 1%{?dist}.1
+Release: 1%{?dist}.2
Summary: Kernel module for VirtualBox
Group: System Environment/Kernel
@@ -96,6 +96,9 @@
%changelog
+* Sun Jun 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.16-1.2
+- Rebuilt for updated kernel
+
* Tue Jun 05 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.16-1.1
- Rebuilt for updated kernel
12 years, 5 months