rpms/vlc/F-17 vlc-backport-audio_decoder.patch, NONE, 1.1 vlc.spec, 1.160, 1.161
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29313/F-17
Modified Files:
vlc.spec
Added Files:
vlc-backport-audio_decoder.patch
Log Message:
Backport patch from 2.0.8a
vlc-backport-audio_decoder.patch:
audio.c | 2 --
1 file changed, 2 deletions(-)
--- NEW FILE vlc-backport-audio_decoder.patch ---
>From 68cf50be986313f7bb8e547dee3a547bc39926b7 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= <funman(a)videolan.org>
Date: Tue, 30 Jul 2013 23:40:12 +0200
Subject: [PATCH] avcodec audio decoder: update block pointer
fixes ed616a22067
---
modules/codec/avcodec/audio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/modules/codec/avcodec/audio.c b/modules/codec/avcodec/audio.c
index 27b307c..a60b45f 100644
--- a/modules/codec/avcodec/audio.c
+++ b/modules/codec/avcodec/audio.c
@@ -264,7 +264,6 @@ aout_buffer_t * DecodeAudio ( decoder_t *p_dec, block_t **pp_block )
if( !pp_block || !*pp_block ) return NULL;
block_t *p_block = *pp_block;
- pp_block = NULL;
if( !p_sys->p_context->extradata_size && p_dec->fmt_in.i_extra &&
p_sys->b_delayed_open)
--
1.7.10.4
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-17/vlc.spec,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- vlc.spec 30 Jul 2013 18:30:44 -0000 1.160
+++ vlc.spec 2 Aug 2013 10:14:51 -0000 1.161
@@ -31,13 +31,14 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 2.0.8
-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.2-xcb_discard.patch
Patch2: 0001-Switch-detection-of-smbclient-from-header-to-pkgconf.patch
+Patch3: vlc-backport-audio_decoder.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -231,6 +232,7 @@
}
%endif
%patch2 -p1 -b .samba4
+%patch3 -p1 -b .backport
%{?_with_bootstrap:
rm aclocal.m4 m4/lib*.m4 m4/lt*.m4 || :
@@ -524,6 +526,9 @@
%changelog
+* Fri Aug 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-2
+- Backport patch from 2.0.8a
+
* Tue Jul 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-1
- Update to 2.0.8
- Enable upnp - rfbz#2833
11 years, 3 months
rpms/vlc/F-18 vlc-backport-audio_decoder.patch, NONE, 1.1 vlc.spec, 1.169, 1.170
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29313/F-18
Modified Files:
vlc.spec
Added Files:
vlc-backport-audio_decoder.patch
Log Message:
Backport patch from 2.0.8a
vlc-backport-audio_decoder.patch:
audio.c | 2 --
1 file changed, 2 deletions(-)
--- NEW FILE vlc-backport-audio_decoder.patch ---
>From 68cf50be986313f7bb8e547dee3a547bc39926b7 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= <funman(a)videolan.org>
Date: Tue, 30 Jul 2013 23:40:12 +0200
Subject: [PATCH] avcodec audio decoder: update block pointer
fixes ed616a22067
---
modules/codec/avcodec/audio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/modules/codec/avcodec/audio.c b/modules/codec/avcodec/audio.c
index 27b307c..a60b45f 100644
--- a/modules/codec/avcodec/audio.c
+++ b/modules/codec/avcodec/audio.c
@@ -264,7 +264,6 @@ aout_buffer_t * DecodeAudio ( decoder_t *p_dec, block_t **pp_block )
if( !pp_block || !*pp_block ) return NULL;
block_t *p_block = *pp_block;
- pp_block = NULL;
if( !p_sys->p_context->extradata_size && p_dec->fmt_in.i_extra &&
p_sys->b_delayed_open)
--
1.7.10.4
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-18/vlc.spec,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- vlc.spec 30 Jul 2013 18:30:44 -0000 1.169
+++ vlc.spec 2 Aug 2013 10:14:51 -0000 1.170
@@ -31,13 +31,14 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 2.0.8
-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.2-xcb_discard.patch
Patch2: 0001-Switch-detection-of-smbclient-from-header-to-pkgconf.patch
+Patch3: vlc-backport-audio_decoder.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -231,6 +232,7 @@
}
%endif
%patch2 -p1 -b .samba4
+%patch3 -p1 -b .backport
%{?_with_bootstrap:
rm aclocal.m4 m4/lib*.m4 m4/lt*.m4 || :
@@ -524,6 +526,9 @@
%changelog
+* Fri Aug 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-2
+- Backport patch from 2.0.8a
+
* Tue Jul 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-1
- Update to 2.0.8
- Enable upnp - rfbz#2833
11 years, 3 months
rpms/vlc/F-19 vlc-backport-audio_decoder.patch, NONE, 1.1 vlc.spec, 1.178, 1.179
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29313/F-19
Modified Files:
vlc.spec
Added Files:
vlc-backport-audio_decoder.patch
Log Message:
Backport patch from 2.0.8a
vlc-backport-audio_decoder.patch:
audio.c | 2 --
1 file changed, 2 deletions(-)
--- NEW FILE vlc-backport-audio_decoder.patch ---
>From 68cf50be986313f7bb8e547dee3a547bc39926b7 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= <funman(a)videolan.org>
Date: Tue, 30 Jul 2013 23:40:12 +0200
Subject: [PATCH] avcodec audio decoder: update block pointer
fixes ed616a22067
---
modules/codec/avcodec/audio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/modules/codec/avcodec/audio.c b/modules/codec/avcodec/audio.c
index 27b307c..a60b45f 100644
--- a/modules/codec/avcodec/audio.c
+++ b/modules/codec/avcodec/audio.c
@@ -264,7 +264,6 @@ aout_buffer_t * DecodeAudio ( decoder_t *p_dec, block_t **pp_block )
if( !pp_block || !*pp_block ) return NULL;
block_t *p_block = *pp_block;
- pp_block = NULL;
if( !p_sys->p_context->extradata_size && p_dec->fmt_in.i_extra &&
p_sys->b_delayed_open)
--
1.7.10.4
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-19/vlc.spec,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- vlc.spec 30 Jul 2013 18:30:44 -0000 1.178
+++ vlc.spec 2 Aug 2013 10:14:50 -0000 1.179
@@ -31,13 +31,14 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 2.0.8
-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.2-xcb_discard.patch
Patch2: 0001-Switch-detection-of-smbclient-from-header-to-pkgconf.patch
+Patch3: vlc-backport-audio_decoder.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -231,6 +232,7 @@
}
%endif
%patch2 -p1 -b .samba4
+%patch3 -p1 -b .backport
%{?_with_bootstrap:
rm aclocal.m4 m4/lib*.m4 m4/lt*.m4 || :
@@ -524,6 +526,9 @@
%changelog
+* Fri Aug 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-2
+- Backport patch from 2.0.8a
+
* Tue Jul 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-1
- Update to 2.0.8
- Enable upnp - rfbz#2833
11 years, 3 months
rpms/vlc/EL-6 vlc-backport-audio_decoder.patch, NONE, 1.1 vlc.spec, 1.161, 1.162
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/EL-6
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29313/EL-6
Modified Files:
vlc.spec
Added Files:
vlc-backport-audio_decoder.patch
Log Message:
Backport patch from 2.0.8a
vlc-backport-audio_decoder.patch:
audio.c | 2 --
1 file changed, 2 deletions(-)
--- NEW FILE vlc-backport-audio_decoder.patch ---
>From 68cf50be986313f7bb8e547dee3a547bc39926b7 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= <funman(a)videolan.org>
Date: Tue, 30 Jul 2013 23:40:12 +0200
Subject: [PATCH] avcodec audio decoder: update block pointer
fixes ed616a22067
---
modules/codec/avcodec/audio.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/modules/codec/avcodec/audio.c b/modules/codec/avcodec/audio.c
index 27b307c..a60b45f 100644
--- a/modules/codec/avcodec/audio.c
+++ b/modules/codec/avcodec/audio.c
@@ -264,7 +264,6 @@ aout_buffer_t * DecodeAudio ( decoder_t *p_dec, block_t **pp_block )
if( !pp_block || !*pp_block ) return NULL;
block_t *p_block = *pp_block;
- pp_block = NULL;
if( !p_sys->p_context->extradata_size && p_dec->fmt_in.i_extra &&
p_sys->b_delayed_open)
--
1.7.10.4
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/EL-6/vlc.spec,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- vlc.spec 30 Jul 2013 18:30:44 -0000 1.161
+++ vlc.spec 2 Aug 2013 10:14:51 -0000 1.162
@@ -31,13 +31,14 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 2.0.8
-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.2-xcb_discard.patch
Patch2: 0001-Switch-detection-of-smbclient-from-header-to-pkgconf.patch
+Patch3: vlc-backport-audio_decoder.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -231,6 +232,7 @@
}
%endif
%patch2 -p1 -b .samba4
+%patch3 -p1 -b .backport
%{?_with_bootstrap:
rm aclocal.m4 m4/lib*.m4 m4/lt*.m4 || :
@@ -524,6 +526,9 @@
%changelog
+* Fri Aug 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-2
+- Backport patch from 2.0.8a
+
* Tue Jul 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-1
- Update to 2.0.8
- Enable upnp - rfbz#2833
11 years, 3 months
rpms/buildsys-build-rpmfusion/F-19 buildsys-build-rpmfusion-list-kernels.sh, 1.9, 1.10
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/buildsys-build-rpmfusion/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv15784
Modified Files:
buildsys-build-rpmfusion-list-kernels.sh
Log Message:
Sync kvarriant for f19
Index: buildsys-build-rpmfusion-list-kernels.sh
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-19/buildsys-build-rpmfusion-list-kernels.sh,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- buildsys-build-rpmfusion-list-kernels.sh 6 Sep 2012 22:28:27 -0000 1.9
+++ buildsys-build-rpmfusion-list-kernels.sh 1 Aug 2013 21:09:57 -0000 1.10
@@ -27,10 +27,10 @@
shopt -s extglob
-myver="0.2.0"
+myver="0.2.1"
repo=rpmfusion
myprog="buildsys-build-${repo}-kerneldevpkgs"
-supported_targetarchs="i686 x86_64 ppc ppc64 armv5tel armv7l armv7hl s390x"
+supported_targetarchs="i686 x86_64 ppc ppc64 ppc64p7 armv5tel armv7l armv7hl s390x"
if [[ -e ./buildsys-build-${repo}-kerneldevpkgs-current ]]; then
prefix=./buildsys-build-${repo}-
else
@@ -67,30 +67,29 @@
bb_list_kernels_ppc64()
{
+ bb_list_kernels_default ${1}
+}
+
+bb_list_kernels_ppc64p7()
+{
bb_list_kernels_default ${1}
}
+
bb_list_kernels_armv5tel()
{
bb_list_kernels_default ${1}
- echo ${1}kirkwood
}
bb_list_kernels_armv7l()
{
- echo ${1}highbank
- echo ${1}imx
- echo ${1}omap
- echo ${1}tegra
+ bb_list_kernels_default ${1}
}
bb_list_kernels_armv7hl()
{
bb_list_kernels_default ${1}
- echo ${1}highbank
- echo ${1}imx
- echo ${1}omap
- echo ${1}tegra
+ echo ${1}lpae
}
bb_list_kernels_s390x()
11 years, 3 months
rpms/mplayer/devel .cvsignore, 1.33, 1.34 mplayer-ffmpeg.patch, 1.9, 1.10 mplayer-snapshot.sh, 1.16, 1.17 mplayer.spec, 1.72, 1.73 sources, 1.34, 1.35
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/mplayer/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25686
Modified Files:
.cvsignore mplayer-ffmpeg.patch mplayer-snapshot.sh
mplayer.spec sources
Log Message:
* Thu Aug 01 2013 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.1-12.20130801svn
- 20130801 snapshot
- Updated the ffmpeg patch
- Re-numbered the patches
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/mplayer/devel/.cvsignore,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- .cvsignore 21 Apr 2013 19:57:42 -0000 1.33
+++ .cvsignore 1 Aug 2013 11:14:30 -0000 1.34
@@ -1,2 +1,2 @@
Blue-1.8.tar.bz2
-mplayer-export-2013-04-16.tar.bz2
+mplayer-export-2013-08-01.tar.bz2
mplayer-ffmpeg.patch:
Makefile | 2
configure | 4 -
ffmpeg/libavformat/internal.h | 32 ++++++++++++
ffmpeg/libavutil/x86/asm.h | 112 ++++++++++++++++++++++++++++++++++++++++++
4 files changed, 147 insertions(+), 3 deletions(-)
Index: mplayer-ffmpeg.patch
===================================================================
RCS file: /cvs/free/rpms/mplayer/devel/mplayer-ffmpeg.patch,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mplayer-ffmpeg.patch 28 Mar 2013 07:59:34 -0000 1.9
+++ mplayer-ffmpeg.patch 1 Aug 2013 11:14:30 -0000 1.10
@@ -1,7 +1,7 @@
-diff -up mplayer-export-2013-03-24/configure.ffmpeg mplayer-export-2013-03-24/configure
---- mplayer-export-2013-03-24/configure.ffmpeg 2013-03-23 08:28:55.993725707 +0100
-+++ mplayer-export-2013-03-24/configure 2013-03-23 08:28:56.003725776 +0100
-@@ -6973,7 +6973,7 @@ elif test "$ffmpeg_so" = auto ; then
+diff -up mplayer-export-2013-08-01/configure.ffmpeg mplayer-export-2013-08-01/configure
+--- mplayer-export-2013-08-01/configure.ffmpeg 2013-08-01 12:37:20.815714081 +0200
++++ mplayer-export-2013-08-01/configure 2013-08-01 12:37:20.817714096 +0200
+@@ -6987,7 +6987,7 @@ elif test "$ffmpeg_so" = auto ; then
inc_ffmpeg=$($_pkg_config --cflags libswscale libavformat libavcodec libavutil)
ld_tmp=$($_pkg_config --libs libswscale libavformat libavcodec libavutil)
header_check libavutil/avutil.h $inc_ffmpeg $ld_tmp &&
@@ -10,7 +10,7 @@
elif header_check libavutil/avutil.h -lswscale -lavformat -lavcodec -lavutil ; then
extra_ldflags="$extra_ldflags -lswscale -lavformat -lavcodec -lavutil"
ffmpeg_so=yes
-@@ -7682,7 +7682,7 @@ if test "$_gui" = yes ; then
+@@ -7696,7 +7696,7 @@ if test "$_gui" = yes ; then
# Required libraries
if test "$ffmpeg" != yes ||
@@ -19,9 +19,9 @@
die "The GUI requires libavcodec with PNG support (needs zlib)."
fi
test "$_freetype" = no && test "$_bitmap_font" = no &&
-diff -up mplayer-export-2013-03-24/ffmpeg/libavformat/internal.h.ffmpeg mplayer-export-2013-03-24/ffmpeg/libavformat/internal.h
---- mplayer-export-2013-03-24/ffmpeg/libavformat/internal.h.ffmpeg 2013-03-23 08:28:56.004725783 +0100
-+++ mplayer-export-2013-03-24/ffmpeg/libavformat/internal.h 2013-03-23 08:28:56.004725783 +0100
+diff -up mplayer-export-2013-08-01/ffmpeg/libavformat/internal.h.ffmpeg mplayer-export-2013-08-01/ffmpeg/libavformat/internal.h
+--- mplayer-export-2013-08-01/ffmpeg/libavformat/internal.h.ffmpeg 2013-08-01 12:37:20.818714103 +0200
++++ mplayer-export-2013-08-01/ffmpeg/libavformat/internal.h 2013-08-01 12:37:20.818714103 +0200
@@ -0,0 +1,32 @@
+/*
+ * copyright (c) 2001 Fabrice Bellard
@@ -50,15 +50,15 @@
+#include <libavformat/avformat.h>
+
+typedef struct AVCodecTag {
-+ enum CodecID id;
++ enum AVCodecID id;
+ unsigned int tag;
+} AVCodecTag;
+
+#endif /* AVFORMAT_INTERNAL_H */
-diff -up mplayer-export-2013-03-24/ffmpeg/libavutil/x86/asm.h.ffmpeg mplayer-export-2013-03-24/ffmpeg/libavutil/x86/asm.h
---- mplayer-export-2013-03-24/ffmpeg/libavutil/x86/asm.h.ffmpeg 2013-03-23 08:28:56.005725790 +0100
-+++ mplayer-export-2013-03-24/ffmpeg/libavutil/x86/asm.h 2013-03-23 08:28:56.005725790 +0100
-@@ -0,0 +1,110 @@
+diff -up mplayer-export-2013-08-01/ffmpeg/libavutil/x86/asm.h.ffmpeg mplayer-export-2013-08-01/ffmpeg/libavutil/x86/asm.h
+--- mplayer-export-2013-08-01/ffmpeg/libavutil/x86/asm.h.ffmpeg 2013-08-01 12:37:20.818714103 +0200
++++ mplayer-export-2013-08-01/ffmpeg/libavutil/x86/asm.h 2013-08-01 12:39:29.232657100 +0200
+@@ -0,0 +1,112 @@
+/*
+ * copyright (c) 2006 Michael Niedermayer <michaelni(a)gmx.at>
+ *
@@ -85,6 +85,8 @@
+#include <stdint.h>
+#include "config.h"
+
++typedef struct xmm_reg { uint64_t a, b; } xmm_reg;
++
+#if ARCH_X86_64
+# define OPSIZE "q"
+# define REG_a "rax"
@@ -169,10 +171,10 @@
+#define MANGLE(a) EXTERN_PREFIX LOCAL_MANGLE(a)
+
+#endif /* AVUTIL_X86_ASM_H */
-diff -up mplayer-export-2013-03-24/Makefile.ffmpeg mplayer-export-2013-03-24/Makefile
---- mplayer-export-2013-03-24/Makefile.ffmpeg 2013-03-23 08:28:55.000000000 +0100
-+++ mplayer-export-2013-03-24/Makefile 2013-03-23 08:29:01.000760529 +0100
-@@ -773,7 +773,7 @@ mencoder$(EXESUF) mplayer$(EXESUF):
+diff -up mplayer-export-2013-08-01/Makefile.ffmpeg mplayer-export-2013-08-01/Makefile
+--- mplayer-export-2013-08-01/Makefile.ffmpeg 2013-08-01 12:37:20.815714081 +0200
++++ mplayer-export-2013-08-01/Makefile 2013-08-01 12:37:20.818714103 +0200
+@@ -775,7 +775,7 @@ mencoder$(EXESUF) mplayer$(EXESUF):
codec-cfg-test$(EXESUF): HOSTCFLAGS := $(HOSTCFLAGS) -DTESTING
codec-cfg$(EXESUF) codecs2html$(EXESUF): HOSTCFLAGS := $(HOSTCFLAGS) -DCODECS2HTML
codec-cfg$(EXESUF) codec-cfg-test$(EXESUF) codecs2html$(EXESUF): codec-cfg.c codec-cfg.h help_mp.h
Index: mplayer-snapshot.sh
===================================================================
RCS file: /cvs/free/rpms/mplayer/devel/mplayer-snapshot.sh,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- mplayer-snapshot.sh 21 Apr 2013 19:57:43 -0000 1.16
+++ mplayer-snapshot.sh 1 Aug 2013 11:14:30 -0000 1.17
@@ -13,7 +13,7 @@
unset CDPATH
pwd=$(pwd)
svn=$(date +%Y-%m-%d)
-svn=2013-04-16
+svn=2013-08-01
dirname=mplayer-export-$svn
mplayer_rev={$svn}
#mplayer_rev=HEAD
Index: mplayer.spec
===================================================================
RCS file: /cvs/free/rpms/mplayer/devel/mplayer.spec,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- mplayer.spec 20 Jul 2013 09:58:30 -0000 1.72
+++ mplayer.spec 1 Aug 2013 11:14:30 -0000 1.73
@@ -1,12 +1,12 @@
%define codecdir %{_libdir}/codecs
-%define pre 20130416svn
+%define pre 20130801svn
%define svn 1
-%define svnbuild 2013-04-16
+%define svnbuild 2013-08-01
%define faad2min 1:2.6.1
Name: mplayer
Version: 1.1
-Release: 11.%{?pre}%{?dist}
+Release: 12.%{?pre}%{?dist}
Summary: Movie player playing most video formats and DVDs
%if 0%{!?_without_amr:1}
@@ -23,16 +23,14 @@
%endif
Source1: http://www.mplayerhq.hu/MPlayer/skins/Blue-1.8.tar.bz2
Source10: mplayer-snapshot.sh
-Patch0: mplayer-asx-parser.patch
-Patch1: mplayer-cpudetect.patch
# set defaults for Fedora
-Patch2: %{name}-config.patch
+Patch0: %{name}-config.patch
# use roff include statements instead of symlinks
-Patch8: %{name}-manlinks.patch
+Patch1: %{name}-manlinks.patch
# erase any trace of libdvdcss
-Patch14: %{name}-nodvdcss.patch
+Patch2: %{name}-nodvdcss.patch
# use system FFmpeg libraries
-Patch18: %{name}-ffmpeg.patch
+Patch3: %{name}-ffmpeg.patch
BuildRequires: SDL-devel
BuildRequires: a52dec-devel
@@ -223,12 +221,10 @@
%setup -q -n MPlayer-%{version}%{?pre}
rm -rf ffmpeg libdvdcss libdvdnav libdvdread4
%endif
-%patch0 -p0 -b .asx-parser
-%patch1 -p0 -b .cpudetect
-%patch2 -p1 -b .config
-%patch8 -p1 -b .manlinks
-%patch14 -p1 -b .nodvdcss
-%patch18 -p1 -b .ffmpeg
+%patch0 -p1 -b .config
+%patch1 -p1 -b .manlinks
+%patch2 -p1 -b .nodvdcss
+%patch3 -p1 -b .ffmpeg
mkdir GUI
cp -a `ls -1|grep -v GUI` GUI/
@@ -384,6 +380,11 @@
%{_datadir}/mplayer/*.fp
%changelog
+* Thu Aug 01 2013 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.1-12.20130801svn
+- 20130801 snapshot
+- Updated the ffmpeg patch
+- Re-numbered the patches
+
* Sat Jul 20 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.1-11.20130416svn
- Rebuilt for x264
Index: sources
===================================================================
RCS file: /cvs/free/rpms/mplayer/devel/sources,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- sources 21 Apr 2013 19:57:43 -0000 1.34
+++ sources 1 Aug 2013 11:14:30 -0000 1.35
@@ -1,2 +1,2 @@
340368f4e33f767d9df109990fb29c02 Blue-1.8.tar.bz2
-58b49829c9d0e04eece48bcc24912581 mplayer-export-2013-04-16.tar.bz2
+7703d611322a84f7fb9fca4691a78869 mplayer-export-2013-08-01.tar.bz2
11 years, 3 months
rpms/ffmpeg/devel .cvsignore, 1.45, 1.46 ffmpeg.spec, 1.91, 1.92 sources, 1.45, 1.46
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/ffmpeg/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25340
Modified Files:
.cvsignore ffmpeg.spec sources
Log Message:
* Thu Aug 01 2013 Julian Sikorski <belegdol(a)fedoraproject.org> - 2.0-1
- Updated to 2.0
- Dropped the no longer needed bogus man dir work-around
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/.cvsignore,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- .cvsignore 1 Aug 2013 08:49:11 -0000 1.45
+++ .cvsignore 1 Aug 2013 11:10:35 -0000 1.46
@@ -1 +1 @@
-ffmpeg-1.2.2.tar.bz2
+ffmpeg-2.0.tar.bz2
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/ffmpeg.spec,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ffmpeg.spec 1 Aug 2013 08:49:11 -0000 1.91
+++ ffmpeg.spec 1 Aug 2013 11:10:36 -0000 1.92
@@ -13,7 +13,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 1.2.2
+Version: 2.0
Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
@@ -241,11 +241,6 @@
popd
%endif
-#work around bogus man dir
-install -d $RPM_BUILD_ROOT%{_mandir}/man3
-mv $RPM_BUILD_ROOT%{_mandir}/man1/lib*.3 $RPM_BUILD_ROOT%{_mandir}/man3
-
-
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
@@ -259,9 +254,9 @@
%{_bindir}/ffserver
%{_bindir}/qt-faststart
%{_mandir}/man1/ffmpeg*.1*
-%{_mandir}/man1/ffplay.1*
-%{_mandir}/man1/ffprobe.1*
-%{_mandir}/man1/ffserver.1*
+%{_mandir}/man1/ffplay*.1*
+%{_mandir}/man1/ffprobe*.1*
+%{_mandir}/man1/ffserver*.1*
%{_datadir}/ffmpeg
%endif
@@ -287,6 +282,10 @@
%changelog
+* Thu Aug 01 2013 Julian Sikorski <belegdol(a)fedoraproject.org> - 2.0-1
+- Updated to 2.0
+- Dropped the no longer needed bogus man dir work-around
+
* Thu Aug 01 2013 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.2.2-1
- Updated to 1.2.2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/sources,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- sources 1 Aug 2013 08:49:11 -0000 1.45
+++ sources 1 Aug 2013 11:10:36 -0000 1.46
@@ -1 +1 @@
-4997660dfc077922e37d0583f9322f6b ffmpeg-1.2.2.tar.bz2
+13a0feb74474f89052f6b8ba1bce46be ffmpeg-2.0.tar.bz2
11 years, 3 months
rpms/buildsys-build-rpmfusion/devel buildsys-build-rpmfusion.spec, 1.39, 1.40
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/buildsys-build-rpmfusion/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv15759/devel
Modified Files:
buildsys-build-rpmfusion.spec
Log Message:
Bump for F-20
Index: buildsys-build-rpmfusion.spec
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/devel/buildsys-build-rpmfusion.spec,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- buildsys-build-rpmfusion.spec 6 Sep 2012 22:31:57 -0000 1.39
+++ buildsys-build-rpmfusion.spec 1 Aug 2013 08:54:53 -0000 1.40
@@ -2,8 +2,8 @@
Name: buildsys-build-%{repo}
Epoch: 10
-Version: 18
-Release: 0.2
+Version: 20
+Release: 0.1
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
@@ -86,6 +86,9 @@
%changelog
+* Thu Aug 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 10:20-0.1
+- Bump for F-20
+
* Fri Sep 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 10:18-0.2
- Bump for secondary
11 years, 3 months
rpms/ffmpeg/F-19 .cvsignore, 1.44, 1.45 ffmpeg.spec, 1.84, 1.85 sources, 1.44, 1.45
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/ffmpeg/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv15472
Modified Files:
.cvsignore ffmpeg.spec sources
Log Message:
* Thu Aug 01 2013 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.2.2-1
- Updated to 1.2.2
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/F-19/.cvsignore,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- .cvsignore 25 May 2013 07:40:43 -0000 1.44
+++ .cvsignore 1 Aug 2013 08:51:57 -0000 1.45
@@ -1 +1 @@
-ffmpeg-1.2.1.tar.bz2
+ffmpeg-1.2.2.tar.bz2
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/F-19/ffmpeg.spec,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ffmpeg.spec 21 Jun 2013 09:34:46 -0000 1.84
+++ ffmpeg.spec 1 Aug 2013 08:51:57 -0000 1.85
@@ -16,8 +16,8 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 1.2.1
-Release: 3%{?date}%{?date:git}%{?rel}%{?dist}
+Version: 1.2.2
+Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
@@ -290,6 +290,9 @@
%changelog
+* Thu Aug 01 2013 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.2.2-1
+- Updated to 1.2.2
+
* Wed Jun 19 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.2.1-3
- Enable neon on armv7hnl
- Enable thumb on all arm but armv6hl
Index: sources
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/F-19/sources,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- sources 25 May 2013 07:40:43 -0000 1.44
+++ sources 1 Aug 2013 08:51:57 -0000 1.45
@@ -1 +1 @@
-5071a26cc149f380908ce79ec2a677ef ffmpeg-1.2.1.tar.bz2
+4997660dfc077922e37d0583f9322f6b ffmpeg-1.2.2.tar.bz2
11 years, 3 months
rpms/ffmpeg/devel .cvsignore, 1.44, 1.45 ffmpeg.spec, 1.90, 1.91 sources, 1.44, 1.45
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/ffmpeg/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv15085
Modified Files:
.cvsignore ffmpeg.spec sources
Log Message:
* Thu Aug 01 2013 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.2.2-1
- Updated to 1.2.2
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/.cvsignore,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- .cvsignore 14 May 2013 18:07:12 -0000 1.44
+++ .cvsignore 1 Aug 2013 08:49:11 -0000 1.45
@@ -1 +1 @@
-ffmpeg-1.2.1.tar.bz2
+ffmpeg-1.2.2.tar.bz2
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/ffmpeg.spec,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ffmpeg.spec 20 Jul 2013 08:54:58 -0000 1.90
+++ ffmpeg.spec 1 Aug 2013 08:49:11 -0000 1.91
@@ -13,8 +13,8 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 1.2.1
-Release: 7%{?date}%{?date:git}%{?rel}%{?dist}
+Version: 1.2.2
+Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
@@ -287,6 +287,9 @@
%changelog
+* Thu Aug 01 2013 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.2.2-1
+- Updated to 1.2.2
+
* Sat Jul 20 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.2.1-7
- Rebuilt for x264
Index: sources
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/sources,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- sources 14 May 2013 18:07:12 -0000 1.44
+++ sources 1 Aug 2013 08:49:11 -0000 1.45
@@ -1 +1 @@
-5071a26cc149f380908ce79ec2a677ef ffmpeg-1.2.1.tar.bz2
+4997660dfc077922e37d0583f9322f6b ffmpeg-1.2.2.tar.bz2
11 years, 3 months