rpms/buildsys-build-rpmfusion/devel buildsys-build-rpmfusion-kerneldevpkgs-current, 1.23, 1.24 buildsys-build-rpmfusion.spec, 1.35, 1.36
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/buildsys-build-rpmfusion/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15702
Modified Files:
buildsys-build-rpmfusion-kerneldevpkgs-current
buildsys-build-rpmfusion.spec
Log Message:
* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 10:16-5
- rebuild for kernel 3.1.0-7.fc16
Index: buildsys-build-rpmfusion-kerneldevpkgs-current
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/devel/buildsys-build-rpmfusion-kerneldevpkgs-current,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- buildsys-build-rpmfusion-kerneldevpkgs-current 30 Oct 2011 15:19:25 -0000 1.23
+++ buildsys-build-rpmfusion-kerneldevpkgs-current 2 Nov 2011 21:00:51 -0000 1.24
@@ -1,3 +1,3 @@
-3.1.0-5.fc16
-3.1.0-5.fc16smp
-3.1.0-5.fc16PAE
+3.1.0-7.fc16
+3.1.0-7.fc16smp
+3.1.0-7.fc16PAE
Index: buildsys-build-rpmfusion.spec
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/devel/buildsys-build-rpmfusion.spec,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- buildsys-build-rpmfusion.spec 30 Oct 2011 15:34:25 -0000 1.35
+++ buildsys-build-rpmfusion.spec 2 Nov 2011 21:00:52 -0000 1.36
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 10
Version: 16
-Release: 4
+Release: 5
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
@@ -86,6 +86,9 @@
%changelog
+* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 10:16-5
+- rebuild for kernel 3.1.0-7.fc16
+
* Sun Oct 30 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 10:16-4
- rebuild for kernel 3.1.0-5.fc16
13 years
rpms/alsa-plugins-freeworld/F-16 alsa-plugins-1.0.24-backport.patch, NONE, 1.1 alsa-plugins-freeworld.spec, 1.6, 1.7
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/alsa-plugins-freeworld/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7477
Modified Files:
alsa-plugins-freeworld.spec
Added Files:
alsa-plugins-1.0.24-backport.patch
Log Message:
Sync from devel
alsa-plugins-1.0.24-backport.patch:
pcm_a52.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
--- NEW FILE alsa-plugins-1.0.24-backport.patch ---
X-Git-Url: http://git.alsa-project.org/?p=alsa-plugins.git;a=blobdiff_plain;f=a52%2F...
diff --git a/a52/pcm_a52.c b/a52/pcm_a52.c
index ed491b3..00c7c59 100644
--- a/a52/pcm_a52.c
+++ b/a52/pcm_a52.c
@@ -436,6 +436,11 @@ static int a52_prepare(snd_pcm_ioplug_t *io)
rec->avctx->bit_rate = rec->bitrate * 1000;
rec->avctx->sample_rate = io->rate;
rec->avctx->channels = io->channels;
+#if LIBAVCODEC_VERSION_MAJOR > 52 || (LIBAVCODEC_VERSION_MAJOR == 52 && LIBAVCODEC_VERSION_MINOR >= 95)
+ rec->avctx->sample_fmt = AV_SAMPLE_FMT_S16;
+#else
+ rec->avctx->sample_fmt = SAMPLE_FMT_S16;
+#endif
#if LIBAVCODEC_VERSION_MAJOR > 52 || (LIBAVCODEC_VERSION_MAJOR == 52 && LIBAVCODEC_VERSION_MINOR >= 3)
switch (io->channels) {
case 2:
@@ -699,8 +704,13 @@ SND_PCM_PLUGIN_DEFINE_FUNC(a52)
avcodec_init();
avcodec_register_all();
- rec->codec = avcodec_find_encoder(CODEC_ID_AC3);
- if (! rec->codec) {
+
+ rec->codec = avcodec_find_encoder_by_name("ac3_fixed");
+ if (rec->codec == NULL)
+ rec->codec = avcodec_find_encoder_by_name("ac3");
+ if (rec->codec == NULL)
+ rec->codec = avcodec_find_encoder(CODEC_ID_AC3);
+ if (rec->codec == NULL) {
SNDERR("Cannot find codec engine");
err = -EINVAL;
goto error;
Index: alsa-plugins-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/alsa-plugins-freeworld/F-16/alsa-plugins-freeworld.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- alsa-plugins-freeworld.spec 23 Sep 2011 14:11:33 -0000 1.6
+++ alsa-plugins-freeworld.spec 2 Nov 2011 19:52:58 -0000 1.7
@@ -1,6 +1,6 @@
Name: alsa-plugins-freeworld
Version: 1.0.24
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: The ALSA Plugins - freeworld version
# All packages are LGPLv2+ with the exception of samplerate which is GPLv2+
License: LGPLv2+
@@ -9,6 +9,7 @@
Source0: ftp://ftp.alsa-project.org/pub/plugins/alsa-plugins-%{version}.tar.bz2
Source1: a52.conf
Source2: lavcrate.conf
+Patch0: alsa-plugins-1.0.24-backport.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: alsa-lib-devel >= 1.0.24
@@ -46,6 +47,7 @@
%prep
%setup -q -n alsa-plugins-%{version}%{?prever}
+%patch0 -p1
%build
export CPPFLAGS="$(pkg-config --cflags libavcodec)"
@@ -105,6 +107,9 @@
%changelog
+* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.24-3
+- Fix transition to FFmpeg-0.8 - rfbz#2011
+
* Fri Sep 23 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.24-2
- Rebuild for FFmpeg
13 years
rpms/alsa-plugins-freeworld/devel alsa-plugins-1.0.24-backport.patch, NONE, 1.1 alsa-plugins-freeworld.spec, 1.6, 1.7
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/alsa-plugins-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7312
Modified Files:
alsa-plugins-freeworld.spec
Added Files:
alsa-plugins-1.0.24-backport.patch
Log Message:
Fix for rfbz#2011
alsa-plugins-1.0.24-backport.patch:
pcm_a52.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
--- NEW FILE alsa-plugins-1.0.24-backport.patch ---
X-Git-Url: http://git.alsa-project.org/?p=alsa-plugins.git;a=blobdiff_plain;f=a52%2F...
diff --git a/a52/pcm_a52.c b/a52/pcm_a52.c
index ed491b3..00c7c59 100644
--- a/a52/pcm_a52.c
+++ b/a52/pcm_a52.c
@@ -436,6 +436,11 @@ static int a52_prepare(snd_pcm_ioplug_t *io)
rec->avctx->bit_rate = rec->bitrate * 1000;
rec->avctx->sample_rate = io->rate;
rec->avctx->channels = io->channels;
+#if LIBAVCODEC_VERSION_MAJOR > 52 || (LIBAVCODEC_VERSION_MAJOR == 52 && LIBAVCODEC_VERSION_MINOR >= 95)
+ rec->avctx->sample_fmt = AV_SAMPLE_FMT_S16;
+#else
+ rec->avctx->sample_fmt = SAMPLE_FMT_S16;
+#endif
#if LIBAVCODEC_VERSION_MAJOR > 52 || (LIBAVCODEC_VERSION_MAJOR == 52 && LIBAVCODEC_VERSION_MINOR >= 3)
switch (io->channels) {
case 2:
@@ -699,8 +704,13 @@ SND_PCM_PLUGIN_DEFINE_FUNC(a52)
avcodec_init();
avcodec_register_all();
- rec->codec = avcodec_find_encoder(CODEC_ID_AC3);
- if (! rec->codec) {
+
+ rec->codec = avcodec_find_encoder_by_name("ac3_fixed");
+ if (rec->codec == NULL)
+ rec->codec = avcodec_find_encoder_by_name("ac3");
+ if (rec->codec == NULL)
+ rec->codec = avcodec_find_encoder(CODEC_ID_AC3);
+ if (rec->codec == NULL) {
SNDERR("Cannot find codec engine");
err = -EINVAL;
goto error;
Index: alsa-plugins-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/alsa-plugins-freeworld/devel/alsa-plugins-freeworld.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- alsa-plugins-freeworld.spec 23 Sep 2011 14:11:33 -0000 1.6
+++ alsa-plugins-freeworld.spec 2 Nov 2011 19:51:58 -0000 1.7
@@ -1,6 +1,6 @@
Name: alsa-plugins-freeworld
Version: 1.0.24
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: The ALSA Plugins - freeworld version
# All packages are LGPLv2+ with the exception of samplerate which is GPLv2+
License: LGPLv2+
@@ -9,6 +9,7 @@
Source0: ftp://ftp.alsa-project.org/pub/plugins/alsa-plugins-%{version}.tar.bz2
Source1: a52.conf
Source2: lavcrate.conf
+Patch0: alsa-plugins-1.0.24-backport.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: alsa-lib-devel >= 1.0.24
@@ -46,6 +47,7 @@
%prep
%setup -q -n alsa-plugins-%{version}%{?prever}
+%patch0 -p1
%build
export CPPFLAGS="$(pkg-config --cflags libavcodec)"
@@ -105,6 +107,9 @@
%changelog
+* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.24-3
+- Fix transition to FFmpeg-0.8 - rfbz#2011
+
* Fri Sep 23 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.24-2
- Rebuild for FFmpeg
13 years
rpms/rpmfusion-free-release/F-16 rpmfusion-free-release.spec, 1.26, 1.27
by Xavier Lamien
Author: laxathom
Update of /cvs/free/rpms/rpmfusion-free-release/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29921
Modified Files:
rpmfusion-free-release.spec
Log Message:
Fix symlink on RPM-GPG-key
Index: rpmfusion-free-release.spec
===================================================================
RCS file: /cvs/free/rpms/rpmfusion-free-release/F-16/rpmfusion-free-release.spec,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- rpmfusion-free-release.spec 28 Oct 2011 18:57:12 -0000 1.26
+++ rpmfusion-free-release.spec 2 Nov 2011 18:44:36 -0000 1.27
@@ -13,6 +13,7 @@
Source2: rpmfusion-%{repo}-updates.repo
Source3: rpmfusion-%{repo}-updates-testing.repo
Source4: rpmfusion-%{repo}-rawhide.repo
+Source14: RPM-GPG-KEY-rpmfusion-%{repo}-fedora-14-primary
Source15: RPM-GPG-KEY-rpmfusion-%{repo}-fedora-15-primary
Source16: RPM-GPG-KEY-rpmfusion-%{repo}-fedora-16-primary
Source17: RPM-GPG-KEY-rpmfusion-%{repo}-fedora-17-primary
@@ -93,6 +94,9 @@
%config(noreplace) %{_sysconfdir}/yum.repos.d/*
%changelog
+* Wed Nov 02 2011 Xavier Lamien <laxathom(a)fedoraproject.org> 16-1.1
+- Fix symlink on RPM-GPG-KEY-14.
+
* Thu Oct 27 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 16-1
- Add keys for Rawhide/F-17
- Build for F-16
13 years
rpms/wl-kmod/F-15 wl-kmod.spec,1.62,1.63
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv418
Modified Files:
wl-kmod.spec
Log Message:
* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 5.60.48.36-2.12
- rebuild for updated kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-15/wl-kmod.spec,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- wl-kmod.spec 30 Oct 2011 11:01:46 -0000 1.62
+++ wl-kmod.spec 2 Nov 2011 10:18:48 -0000 1.63
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.60.48.36
-Release: 2%{?dist}.11
+Release: 2%{?dist}.12
Summary: Kernel module for broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -88,6 +88,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 5.60.48.36-2.12
+- rebuild for updated kernel
+
* Sun Oct 30 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 5.60.48.36-2.11
- rebuild for updated kernel
13 years
rpms/nvidia-kmod/F-15 nvidia-kmod.spec,1.97,1.98
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32758
Modified Files:
nvidia-kmod.spec
Log Message:
* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.13-2.6
- rebuild for updated kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-15/nvidia-kmod.spec,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- nvidia-kmod.spec 30 Oct 2011 11:01:32 -0000 1.97
+++ nvidia-kmod.spec 2 Nov 2011 10:18:38 -0000 1.98
@@ -9,7 +9,7 @@
Epoch: 1
Version: 280.13
# Taken over by kmodtool
-Release: 2%{?dist}.5
+Release: 2%{?dist}.6
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -86,6 +86,9 @@
%changelog
+* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.13-2.6
+- rebuild for updated kernel
+
* Sun Oct 30 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.13-2.5
- rebuild for updated kernel
13 years
rpms/nvidia-173xx-kmod/F-15 nvidia-173xx-kmod.spec,1.46,1.47
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32632
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.31-1.6
- rebuild for updated kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-15/nvidia-173xx-kmod.spec,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- nvidia-173xx-kmod.spec 30 Oct 2011 11:01:18 -0000 1.46
+++ nvidia-173xx-kmod.spec 2 Nov 2011 10:18:27 -0000 1.47
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.31
# Taken over by kmodtool
-Release: 1%{?dist}.5
+Release: 1%{?dist}.6
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.31-1.6
+- rebuild for updated kernel
+
* Sun Oct 30 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.31-1.5
- rebuild for updated kernel
13 years
rpms/catalyst-kmod/F-15 catalyst-kmod.spec,1.20,1.21
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32506
Modified Files:
catalyst-kmod.spec
Log Message:
* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 11.9-1.4
- rebuild for updated kernel
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/F-15/catalyst-kmod.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- catalyst-kmod.spec 30 Oct 2011 11:01:04 -0000 1.20
+++ catalyst-kmod.spec 2 Nov 2011 10:18:15 -0000 1.21
@@ -13,7 +13,7 @@
Name: catalyst-kmod
Version: 11.9
-Release: 1%{?dist}.3
+Release: 1%{?dist}.4
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -97,6 +97,9 @@
%changelog
+* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 11.9-1.4
+- rebuild for updated kernel
+
* Sun Oct 30 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 11.9-1.3
- rebuild for updated kernel
13 years
rpms/xtables-addons-kmod/F-15 xtables-addons-kmod.spec,1.19,1.20
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32381
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.30-1.10
- rebuild for updated kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/F-15/xtables-addons-kmod.spec,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- xtables-addons-kmod.spec 30 Oct 2011 11:00:51 -0000 1.19
+++ xtables-addons-kmod.spec 2 Nov 2011 10:18:04 -0000 1.20
@@ -10,7 +10,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 1.30
-Release: 1%{?dist}.9
+Release: 1%{?dist}.10
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -68,6 +68,9 @@
rm -rf %{buildroot}
%changelog
+* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.30-1.10
+- rebuild for updated kernel
+
* Sun Oct 30 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.30-1.9
- rebuild for updated kernel
13 years
rpms/west-chamber-kmod/F-15 west-chamber-kmod.spec,1.15,1.16
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/west-chamber-kmod/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32250
Modified Files:
west-chamber-kmod.spec
Log Message:
* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-6.20101017svn.10
- rebuild for updated kernel
Index: west-chamber-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/west-chamber-kmod/F-15/west-chamber-kmod.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- west-chamber-kmod.spec 30 Oct 2011 11:00:36 -0000 1.15
+++ west-chamber-kmod.spec 2 Nov 2011 10:17:51 -0000 1.16
@@ -13,7 +13,7 @@
Name: west-chamber-kmod
Summary: Kernel module (kmod) for west-chamber
Version: 0.0.1
-Release: 6.%{?svndate}svn%{?dist}.9
+Release: 6.%{?svndate}svn%{?dist}.10
License: GPLv2+
Group: System Environment/Kernel
URL: http://code.google.com/p/scholarzhang/
@@ -84,6 +84,9 @@
rm -rf %{buildroot}
%changelog
+* Wed Nov 02 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-6.20101017svn.10
+- rebuild for updated kernel
+
* Sun Oct 30 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-6.20101017svn.9
- rebuild for updated kernel
13 years