rpms/xmms2-nonfree - New directory
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/xmms2-nonfree
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/nonfree/owners/tmpcvsM15392/rpms/xmms2-nonfree
Log Message:
Directory /cvs/nonfree/rpms/xmms2-nonfree added to the repository
15 years, 7 months
rpms/vlc/F-9 vlc-0.9.9-0.9.10git20090409.patch, NONE, 1.1 vlc.spec, 1.15, 1.16
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7332
Modified Files:
vlc.spec
Added Files:
vlc-0.9.9-0.9.10git20090409.patch
Log Message:
Add vlc-0.9.9-0.9.10git20090409.patch
vlc-0.9.9-0.9.10git20090409.patch:
--- NEW FILE vlc-0.9.9-0.9.10git20090409.patch ---
diff --git a/modules/access/http.c b/modules/access/http.c
index 66e32ff..c465fa4 100644
--- a/modules/access/http.c
+++ b/modules/access/http.c
@@ -452,7 +452,13 @@ connect:
if( i_ret == DIALOG_OK_YES )
{
msg_Dbg( p_access, "retrying with user=%s, pwd=%s",
- psz_login, psz_password );
+ psz_login,
+#if 1
+ "yeah right, like we're going to print a password."
+#else
+ psz_password
+#endif
+ );
if( psz_login ) p_sys->url.psz_username = strdup( psz_login );
if( psz_password ) p_sys->url.psz_password = strdup( psz_password );
free( psz_login );
diff --git a/modules/codec/avcodec/video.c b/modules/codec/avcodec/video.c
index 3fa837e..0e90b9f 100644
--- a/modules/codec/avcodec/video.c
+++ b/modules/codec/avcodec/video.c
@@ -301,6 +301,8 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
p_sys->p_context->pix_fmt != PIX_FMT_YUV422P &&
/* H264 uses too many reference frames */
p_sys->i_codec_id != CODEC_ID_H264 &&
+ /* No idea why ... but this fixes flickering on some TSCC streams */
+ p_sys->i_codec_id != CODEC_ID_TSCC &&
!p_sys->p_context->debug_mv )
{
/* Some codecs set pix_fmt only after the 1st frame has been decoded,
diff --git a/modules/codec/x264.c b/modules/codec/x264.c
index 68508c9..04fce89 100644
--- a/modules/codec/x264.c
+++ b/modules/codec/x264.c
@@ -75,7 +75,7 @@ static void Close( vlc_object_t * );
"I-frames are inserted only every other keyint frames, which probably " \
"leads to ugly encoding artifacts. Range 1 to 100." )
-#if X264_BUILD >= 55 /* r607 */
+#if X264_BUILD >= 55 /* r607 */ && X264_BUILD < 67 /* r1117 */
#define PRESCENE_TEXT N_("Faster, less precise scenecut detection" )
#define PRESCENE_LONGTEXT N_( "Faster, less precise scenecut detection. " \
"Required and implied by multi-threading." )
@@ -429,8 +429,12 @@ vlc_module_begin();
change_integer_range( -1, 100 );
#if X264_BUILD >= 55 /* r607 */
+# if X264_BUILD < 67 /* r1117 */
add_bool( SOUT_CFG_PREFIX "pre-scenecut", 0, NULL, PRESCENE_TEXT,
PRESCENE_LONGTEXT, false );
+# else
+ add_obsolete_bool( "pre-scenecut" )
+# endif
#endif
add_integer( SOUT_CFG_PREFIX "bframes", 0, NULL, BFRAMES_TEXT,
@@ -957,9 +961,12 @@ static int Open ( vlc_object_t *p_this )
p_sys->param.i_scenecut_threshold = val.i_int;
#endif
-#if X264_BUILD >= 55 /* r607 */
+#if X264_BUILD >= 55 /* r607 */ && X264_BUILD < 67 /* r1117 */
var_Get( p_enc, SOUT_CFG_PREFIX "pre-scenecut", &val );
p_sys->param.b_pre_scenecut = val.b_bool;
+#endif
+
+#if X264_BUILD >= 55 /* r607 */
var_Get( p_enc, SOUT_CFG_PREFIX "non-deterministic", &val );
p_sys->param.b_deterministic = val.b_bool;
#endif
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-9/vlc.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- vlc.spec 3 Apr 2009 19:45:48 -0000 1.15
+++ vlc.spec 9 Apr 2009 15:44:18 -0000 1.16
@@ -20,7 +20,7 @@
%else
Version: 0.9.9
%define _version %{version}
-%define release_tag 1
+%define release_tag 2
%endif
Release: %{release_tag}%{?dist}
License: GPLv2+
@@ -41,6 +41,7 @@
Patch4: 310_all_mmx_pic.patch
Patch5: vlc-pulse0071.patch
Patch6: vlc-0.9.9-fix_playlist.patch
+Patch7: vlc-0.9.9-0.9.10git20090409.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -277,6 +278,7 @@
%patch4 -p1 -b .mmx_pic
%patch5 -p1 -b .pulse0071
%patch6 -p1 -b .pl
+%patch7 -p1 -b .git10
chmod -x modules/gui/qt4/qt4*
@@ -551,6 +553,9 @@
%changelog
+* Thu Apr 9 2009 kwizart < kwizart at gmail.com > - 0.9.9-2
+- Add Patch vlc-0.9.9-0.9.10git20090409.patch
+
* Fri Apr 3 2009 kwizart < kwizart at gmail.com > - 0.9.9-1
- Update to 0.9.9 final
- backport playlist patch
15 years, 7 months
rpms/vlc/F-10 vlc-0.9.9-0.9.10git20090409.patch, NONE, 1.1 vlc.spec, 1.21, 1.22
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv6912
Modified Files:
vlc.spec
Added Files:
vlc-0.9.9-0.9.10git20090409.patch
Log Message:
Add patch vlc-0.9.9-0.9.10git20090409.patch
vlc-0.9.9-0.9.10git20090409.patch:
--- NEW FILE vlc-0.9.9-0.9.10git20090409.patch ---
diff --git a/modules/access/http.c b/modules/access/http.c
index 66e32ff..c465fa4 100644
--- a/modules/access/http.c
+++ b/modules/access/http.c
@@ -452,7 +452,13 @@ connect:
if( i_ret == DIALOG_OK_YES )
{
msg_Dbg( p_access, "retrying with user=%s, pwd=%s",
- psz_login, psz_password );
+ psz_login,
+#if 1
+ "yeah right, like we're going to print a password."
+#else
+ psz_password
+#endif
+ );
if( psz_login ) p_sys->url.psz_username = strdup( psz_login );
if( psz_password ) p_sys->url.psz_password = strdup( psz_password );
free( psz_login );
diff --git a/modules/codec/avcodec/video.c b/modules/codec/avcodec/video.c
index 3fa837e..0e90b9f 100644
--- a/modules/codec/avcodec/video.c
+++ b/modules/codec/avcodec/video.c
@@ -301,6 +301,8 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
p_sys->p_context->pix_fmt != PIX_FMT_YUV422P &&
/* H264 uses too many reference frames */
p_sys->i_codec_id != CODEC_ID_H264 &&
+ /* No idea why ... but this fixes flickering on some TSCC streams */
+ p_sys->i_codec_id != CODEC_ID_TSCC &&
!p_sys->p_context->debug_mv )
{
/* Some codecs set pix_fmt only after the 1st frame has been decoded,
diff --git a/modules/codec/x264.c b/modules/codec/x264.c
index 68508c9..04fce89 100644
--- a/modules/codec/x264.c
+++ b/modules/codec/x264.c
@@ -75,7 +75,7 @@ static void Close( vlc_object_t * );
"I-frames are inserted only every other keyint frames, which probably " \
"leads to ugly encoding artifacts. Range 1 to 100." )
-#if X264_BUILD >= 55 /* r607 */
+#if X264_BUILD >= 55 /* r607 */ && X264_BUILD < 67 /* r1117 */
#define PRESCENE_TEXT N_("Faster, less precise scenecut detection" )
#define PRESCENE_LONGTEXT N_( "Faster, less precise scenecut detection. " \
"Required and implied by multi-threading." )
@@ -429,8 +429,12 @@ vlc_module_begin();
change_integer_range( -1, 100 );
#if X264_BUILD >= 55 /* r607 */
+# if X264_BUILD < 67 /* r1117 */
add_bool( SOUT_CFG_PREFIX "pre-scenecut", 0, NULL, PRESCENE_TEXT,
PRESCENE_LONGTEXT, false );
+# else
+ add_obsolete_bool( "pre-scenecut" )
+# endif
#endif
add_integer( SOUT_CFG_PREFIX "bframes", 0, NULL, BFRAMES_TEXT,
@@ -957,9 +961,12 @@ static int Open ( vlc_object_t *p_this )
p_sys->param.i_scenecut_threshold = val.i_int;
#endif
-#if X264_BUILD >= 55 /* r607 */
+#if X264_BUILD >= 55 /* r607 */ && X264_BUILD < 67 /* r1117 */
var_Get( p_enc, SOUT_CFG_PREFIX "pre-scenecut", &val );
p_sys->param.b_pre_scenecut = val.b_bool;
+#endif
+
+#if X264_BUILD >= 55 /* r607 */
var_Get( p_enc, SOUT_CFG_PREFIX "non-deterministic", &val );
p_sys->param.b_deterministic = val.b_bool;
#endif
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-10/vlc.spec,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- vlc.spec 3 Apr 2009 19:46:23 -0000 1.21
+++ vlc.spec 9 Apr 2009 15:37:25 -0000 1.22
@@ -20,7 +20,7 @@
%else
Version: 0.9.9
%define _version %{version}
-%define release_tag 1
+%define release_tag 2
%endif
Release: %{release_tag}%{?dist}
License: GPLv2+
@@ -41,6 +41,7 @@
Patch4: 310_all_mmx_pic.patch
Patch5: vlc-pulse0071.patch
Patch6: vlc-0.9.9-fix_playlist.patch
+Patch7: vlc-0.9.9-0.9.10git20090409.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
@@ -277,6 +278,7 @@
%patch4 -p1 -b .mmx_pic
%patch5 -p1 -b .pulse0071
%patch6 -p1 -b .pl
+%patch7 -p1 -b .git10
chmod -x modules/gui/qt4/qt4*
@@ -551,6 +553,9 @@
%changelog
+* Thu Apr 9 2009 kwizart < kwizart at gmail.com > - 0.9.9-2
+- Add Patch vlc-0.9.9-0.9.10git20090409.patch
+
* Fri Apr 3 2009 kwizart < kwizart at gmail.com > - 0.9.9-1
- Update to 0.9.9 final
- backport playlist patch
15 years, 7 months
rpms/xine-lib-extras-freeworld/EL-5 .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 xine-lib-extras-freeworld.spec, 1.12, 1.13
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/xine-lib-extras-freeworld/EL-5
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32137
Modified Files:
.cvsignore sources xine-lib-extras-freeworld.spec
Log Message:
* Fri Apr 03 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.3-1
- xine-lib-1.1.16.3, plugin-abi 1.26
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/EL-5/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 11 Feb 2009 03:41:20 -0000 1.6
+++ .cvsignore 9 Apr 2009 13:29:48 -0000 1.7
@@ -1 +1 @@
-xine-lib-1.1.16.2.tar.bz2
+xine-lib-1.1.16.3.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/EL-5/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 11 Feb 2009 03:41:20 -0000 1.6
+++ sources 9 Apr 2009 13:29:48 -0000 1.7
@@ -1 +1 @@
-336dd1f6266e9f943430ca6009b7aa7e xine-lib-1.1.16.2.tar.bz2
+4f508abf088cf427a731f85634c8260d xine-lib-1.1.16.3.tar.bz2
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/EL-5/xine-lib-extras-freeworld.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- xine-lib-extras-freeworld.spec 11 Feb 2009 03:41:20 -0000 1.12
+++ xine-lib-extras-freeworld.spec 9 Apr 2009 13:29:48 -0000 1.13
@@ -1,7 +1,7 @@
# TODO:
# - external dvdnav - not compatible as of 1.1.11 and 4.1.1
-%define abiver 1.25
+%define plugin_abi 1.26
%if 0%{?fedora} > 6
%define _with_external_ffmpeg --with-external-ffmpeg
@@ -10,7 +10,7 @@
Name: xine-lib-extras-freeworld
Summary: Extra codecs for the Xine multimedia library
-Version: 1.1.16.2
+Version: 1.1.16.3
Release: 1%{?dist}
License: GPLv2+
Group: System Environment/Libraries
@@ -47,7 +47,7 @@
BuildConflicts: libfame-devel
Requires: vcdimager >= 0.7.23
-Requires: xine-lib(plugin-abi) = %{abiver}
+Requires: xine-lib(plugin-abi)%{?_isa} = %{plugin_abi}
# obsolete old livna package
Provides: xine-lib-extras-nonfree = %{version}-%{release}
@@ -182,11 +182,23 @@
%files
%defattr(-,root,root,-)
%doc doc/README.dxr3 doc/README.network_dvd
-%{_libdir}/xine/plugins/%{abiver}/xineplug_*.so
-%{_libdir}/xine/plugins/%{abiver}/post/xineplug_*.so
+%{_libdir}/xine/plugins/%{plugin_abi}/xineplug_*.so
+%{_libdir}/xine/plugins/%{plugin_abi}/post/xineplug_*.so
%changelog
+* Fri Apr 03 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.3-1
+- xine-lib-1.1.16.3, plugin-abi 1.26
+
+* Fri Mar 27 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-4
+- rebuild (faad)
+
+* Mon Mar 16 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-3
+- Requires: xine-lib(plugin-abi)%%{?_isa} = ...
+
+* Thu Mar 12 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-2
+- respin for newer rpm/hashes
+
* Tue Feb 10 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-1
- xine-lib-1.1.16.2
15 years, 7 months
rpms/xine-lib-extras-freeworld/F-9 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 xine-lib-extras-freeworld.spec, 1.9, 1.10 xine-lib-1.1.16-internal_ffmpeg.patch, 1.1, NONE
by Kevin Kofler
Author: kkofler
Update of /cvs/free/rpms/xine-lib-extras-freeworld/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16359/F-9
Modified Files:
.cvsignore sources xine-lib-extras-freeworld.spec
Removed Files:
xine-lib-1.1.16-internal_ffmpeg.patch
Log Message:
Sync from devel (matches Fedora security update for CVE-2009-1274):
* Fri Apr 03 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.3-1
- xine-lib-1.1.16.3, plugin-abi 1.26
* Fri Mar 27 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-4
- rebuild (faad)
* Mon Mar 16 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-3
- Requires: xine-lib(plugin-abi)%%{?_isa} = ...
* Thu Mar 12 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-2
- respin for newer rpm/hashes
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/F-9/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 11 Feb 2009 03:40:44 -0000 1.5
+++ .cvsignore 9 Apr 2009 08:48:58 -0000 1.6
@@ -1 +1 @@
-xine-lib-1.1.16.2.tar.bz2
+xine-lib-1.1.16.3.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/F-9/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 11 Feb 2009 03:40:44 -0000 1.5
+++ sources 9 Apr 2009 08:48:58 -0000 1.6
@@ -1 +1 @@
-336dd1f6266e9f943430ca6009b7aa7e xine-lib-1.1.16.2.tar.bz2
+4f508abf088cf427a731f85634c8260d xine-lib-1.1.16.3.tar.bz2
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/F-9/xine-lib-extras-freeworld.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xine-lib-extras-freeworld.spec 11 Feb 2009 03:40:44 -0000 1.9
+++ xine-lib-extras-freeworld.spec 9 Apr 2009 08:48:58 -0000 1.10
@@ -1,7 +1,7 @@
# TODO:
# - external dvdnav - not compatible as of 1.1.11 and 4.1.1
-%define abiver 1.25
+%define plugin_abi 1.26
%if 0%{?fedora} > 6
%define _with_external_ffmpeg --with-external-ffmpeg
@@ -10,7 +10,7 @@
Name: xine-lib-extras-freeworld
Summary: Extra codecs for the Xine multimedia library
-Version: 1.1.16.2
+Version: 1.1.16.3
Release: 1%{?dist}
License: GPLv2+
Group: System Environment/Libraries
@@ -47,7 +47,7 @@
BuildConflicts: libfame-devel
Requires: vcdimager >= 0.7.23
-Requires: xine-lib(plugin-abi) = %{abiver}
+Requires: xine-lib(plugin-abi)%{?_isa} = %{plugin_abi}
# obsolete old livna package
Provides: xine-lib-extras-nonfree = %{version}-%{release}
@@ -182,11 +182,23 @@
%files
%defattr(-,root,root,-)
%doc doc/README.dxr3 doc/README.network_dvd
-%{_libdir}/xine/plugins/%{abiver}/xineplug_*.so
-%{_libdir}/xine/plugins/%{abiver}/post/xineplug_*.so
+%{_libdir}/xine/plugins/%{plugin_abi}/xineplug_*.so
+%{_libdir}/xine/plugins/%{plugin_abi}/post/xineplug_*.so
%changelog
+* Fri Apr 03 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.3-1
+- xine-lib-1.1.16.3, plugin-abi 1.26
+
+* Fri Mar 27 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-4
+- rebuild (faad)
+
+* Mon Mar 16 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-3
+- Requires: xine-lib(plugin-abi)%%{?_isa} = ...
+
+* Thu Mar 12 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-2
+- respin for newer rpm/hashes
+
* Tue Feb 10 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-1
- xine-lib-1.1.16.2
--- xine-lib-1.1.16-internal_ffmpeg.patch DELETED ---
15 years, 7 months
rpms/xine-lib-extras-freeworld/F-10 .cvsignore, 1.6, 1.7 sources, 1.6, 1.7 xine-lib-extras-freeworld.spec, 1.13, 1.14
by Kevin Kofler
Author: kkofler
Update of /cvs/free/rpms/xine-lib-extras-freeworld/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16322/F-10
Modified Files:
.cvsignore sources xine-lib-extras-freeworld.spec
Log Message:
Sync from devel (matches Fedora security update for CVE-2009-1274):
* Fri Apr 03 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.3-1
- xine-lib-1.1.16.3, plugin-abi 1.26
* Fri Mar 27 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-4
- rebuild (faad)
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/F-10/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 11 Feb 2009 03:40:18 -0000 1.6
+++ .cvsignore 9 Apr 2009 08:48:33 -0000 1.7
@@ -1 +1 @@
-xine-lib-1.1.16.2.tar.bz2
+xine-lib-1.1.16.3.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/F-10/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 11 Feb 2009 03:40:18 -0000 1.6
+++ sources 9 Apr 2009 08:48:33 -0000 1.7
@@ -1 +1 @@
-336dd1f6266e9f943430ca6009b7aa7e xine-lib-1.1.16.2.tar.bz2
+4f508abf088cf427a731f85634c8260d xine-lib-1.1.16.3.tar.bz2
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/F-10/xine-lib-extras-freeworld.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- xine-lib-extras-freeworld.spec 16 Mar 2009 16:31:27 -0000 1.13
+++ xine-lib-extras-freeworld.spec 9 Apr 2009 08:48:33 -0000 1.14
@@ -1,7 +1,7 @@
# TODO:
# - external dvdnav - not compatible as of 1.1.11 and 4.1.1
-%define abiver 1.25
+%define plugin_abi 1.26
%if 0%{?fedora} > 6
%define _with_external_ffmpeg --with-external-ffmpeg
@@ -10,8 +10,8 @@
Name: xine-lib-extras-freeworld
Summary: Extra codecs for the Xine multimedia library
-Version: 1.1.16.2
-Release: 3%{?dist}
+Version: 1.1.16.3
+Release: 1%{?dist}
License: GPLv2+
Group: System Environment/Libraries
URL: http://xinehq.de/
@@ -47,7 +47,7 @@
BuildConflicts: libfame-devel
Requires: vcdimager >= 0.7.23
-Requires: xine-lib(plugin-abi)%{?_isa} = %{abiver}
+Requires: xine-lib(plugin-abi)%{?_isa} = %{plugin_abi}
# obsolete old livna package
Provides: xine-lib-extras-nonfree = %{version}-%{release}
@@ -182,11 +182,17 @@
%files
%defattr(-,root,root,-)
%doc doc/README.dxr3 doc/README.network_dvd
-%{_libdir}/xine/plugins/%{abiver}/xineplug_*.so
-%{_libdir}/xine/plugins/%{abiver}/post/xineplug_*.so
+%{_libdir}/xine/plugins/%{plugin_abi}/xineplug_*.so
+%{_libdir}/xine/plugins/%{plugin_abi}/post/xineplug_*.so
%changelog
+* Fri Apr 03 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.3-1
+- xine-lib-1.1.16.3, plugin-abi 1.26
+
+* Fri Mar 27 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-4
+- rebuild (faad)
+
* Mon Mar 16 2009 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.16.2-3
- Requires: xine-lib(plugin-abi)%%{?_isa} = ...
15 years, 7 months
rpms/kmediafactory/devel .cvsignore, 1.3, 1.4 kmediafactory.spec, 1.5, 1.6 sources, 1.3, 1.4
by Sebastian Vahl
Author: svahl
Update of /cvs/free/rpms/kmediafactory/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv1325
Modified Files:
.cvsignore kmediafactory.spec sources
Log Message:
new upstream version: 0.7.1
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/kmediafactory/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 22 Aug 2008 17:42:43 -0000 1.3
+++ .cvsignore 8 Apr 2009 08:40:13 -0000 1.4
@@ -1 +1 @@
-kmediafactory-0.7.0_rc2.tar.bz2
+kmediafactory-0.7.1.tar.bz2
Index: kmediafactory.spec
===================================================================
RCS file: /cvs/free/rpms/kmediafactory/devel/kmediafactory.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- kmediafactory.spec 29 Mar 2009 13:19:04 -0000 1.5
+++ kmediafactory.spec 8 Apr 2009 08:40:13 -0000 1.6
@@ -1,12 +1,12 @@
Name: kmediafactory
-Version: 0.7.0
-Release: 0.3.rc2%{?dist}
+Version: 0.7.1
+Release: 1%{?dist}
Summary: A template based DVD authoring tool
Group: User Interface/Desktops
License: GPLv2+
URL: http://aryhma.oy.cx/damu/software/kmediafactory/
-Source0: http://kmediafactory.googlecode.com/files/kmediafactory-%{version}_rc2.ta...
+Source0: http://kmediafactory.googlecode.com/files/kmediafactory-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: kde-filesystem >= 4
@@ -51,7 +51,7 @@
%prep
-%setup -qn kmediafactory-0.7.0_rc2
+%setup -q
%build
mkdir -p %{_target_platform}
@@ -138,6 +138,9 @@
%changelog
+* Wed Apr 08 2009 Sebastian Vahl <fedora(a)deadbabylon.de> - 0.7.1-1
+- new upstream version: 0.7.1
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.7.0-0.3.rc2
- rebuild for new F11 features
Index: sources
===================================================================
RCS file: /cvs/free/rpms/kmediafactory/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 22 Aug 2008 17:42:43 -0000 1.3
+++ sources 8 Apr 2009 08:40:13 -0000 1.4
@@ -1 +1 @@
-81c6ef1217ebca5730e1aa3a010da938 kmediafactory-0.7.0_rc2.tar.bz2
+ba7c87b05cfbce28e11a5381a7e7ed99 kmediafactory-0.7.1.tar.bz2
15 years, 7 months
rpms/libmpeg2/devel libmpeg2.spec,1.8,1.9
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/libmpeg2/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv6657
Modified Files:
libmpeg2.spec
Log Message:
Re-attempt
Index: libmpeg2.spec
===================================================================
RCS file: /cvs/free/rpms/libmpeg2/devel/libmpeg2.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libmpeg2.spec 8 Apr 2009 00:09:56 -0000 1.8
+++ libmpeg2.spec 8 Apr 2009 00:28:55 -0000 1.9
@@ -1,6 +1,6 @@
Name: libmpeg2
Version: 0.5.1
-Release: 7%{?dist}
+Release: 7%{?dist}.1
Summary: MPEG-2 decoder libraries
Group: System Environment/Libraries
@@ -49,7 +49,8 @@
rm AUTHORS.tmp
#Disable ppc altivec case
-sed -i -e 's/ppc-/ppc64-/' configure.ac configure
+sed -i -e 's/ppc-/noppc64-/' configure.ac configure
+sed -i -e 's/powerpc-/nopowerpc64-/' configure.ac configure
%build
%configure --disable-static \
15 years, 7 months
rpms/libmpeg2/devel libmpeg2.spec,1.7,1.8
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/libmpeg2/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5415
Modified Files:
libmpeg2.spec
Log Message:
bump
Index: libmpeg2.spec
===================================================================
RCS file: /cvs/free/rpms/libmpeg2/devel/libmpeg2.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libmpeg2.spec 8 Apr 2009 00:09:26 -0000 1.7
+++ libmpeg2.spec 8 Apr 2009 00:09:56 -0000 1.8
@@ -1,6 +1,6 @@
Name: libmpeg2
Version: 0.5.1
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: MPEG-2 decoder libraries
Group: System Environment/Libraries
15 years, 7 months
rpms/libmpeg2/devel libmpeg2.spec,1.6,1.7
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/libmpeg2/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5331
Modified Files:
libmpeg2.spec
Log Message:
Attempt
Index: libmpeg2.spec
===================================================================
RCS file: /cvs/free/rpms/libmpeg2/devel/libmpeg2.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libmpeg2.spec 29 Mar 2009 13:27:58 -0000 1.6
+++ libmpeg2.spec 8 Apr 2009 00:09:26 -0000 1.7
@@ -48,6 +48,8 @@
cp -p -f AUTHORS.tmp AUTHORS
rm AUTHORS.tmp
+#Disable ppc altivec case
+sed -i -e 's/ppc-/ppc64-/' configure.ac configure
%build
%configure --disable-static \
@@ -111,6 +113,9 @@
%changelog
+* Wed Apr 8 2009 kwizart < kwizart at gmail.com > - 0.5.1-7
+- New attempt
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.5.1-6
- rebuild for new F11 features
15 years, 7 months