rpms/k9copy/F-8 k9copy.spec,1.1,1.2
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/k9copy/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16341
Modified Files:
k9copy.spec
Log Message:
* Mon Sep 15 2008 Rex Dieter <rdieter(a)fedoraproject.org> 1.2.2-2
- rebuild for rpmfusion
Index: k9copy.spec
===================================================================
RCS file: /cvs/free/rpms/k9copy/F-8/k9copy.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- k9copy.spec 4 Aug 2008 19:05:40 -0000 1.1
+++ k9copy.spec 15 Sep 2008 20:12:58 -0000 1.2
@@ -1,6 +1,6 @@
Name: k9copy
Version: 1.2.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Video DVD backup and creation program
Group: Applications/Multimedia
License: GPLv2
@@ -105,6 +105,9 @@
%changelog
+* Mon Sep 15 2008 Rex Dieter <rdieter(a)fedoraproject.org> 1.2.2-2
+- rebuild for rpmfusion
+
* Sun Jan 06 2008 Ian Chapman <packages[AT]amiga-hardware.com> 1.2.2-1
- Upgrade to 1.2.2
- Added patch to fix buffer overflows (Thanks to Gustavo Maciel Dias Vieira)
16 years, 2 months
rpms/vlc/F-8 vlc-0.8.7-rpmfusion2_head.patch, NONE, 1.1 vlc.spec, 1.4, 1.5
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16284
Modified Files:
vlc.spec
Added Files:
vlc-0.8.7-rpmfusion2_head.patch
Log Message:
Sync from F-9
vlc-0.8.7-rpmfusion2_head.patch:
--- NEW FILE vlc-0.8.7-rpmfusion2_head.patch ---
diff --git a/extras/contrib/bootstrap b/extras/contrib/bootstrap
index 77c6733..38f50c2 100755
--- a/extras/contrib/bootstrap
+++ b/extras/contrib/bootstrap
@@ -88,6 +88,30 @@ case $HOST in
EXTRA_LDFLAGS=" -isysroot \${MACOSX_SDK} -Wl,-syslibroot,\${MACOSX_SDK}"
echo "PATH = /bin:/usr/bin:/usr/local/bin" >> config.mak
;;
+ i686-apple-darwin9)
+ SDK_TARGET=10.4
+ MIN_LD_VERSION_WITH_TEXT_RELOCATION=81
+ echo "SDK_TARGET = ${SDK_TARGET}" >> config.mak
+ echo "HAVE_DARWIN_OS = 1" >> config.mak
+ echo "HAVE_DARWIN_OS_ON_INTEL = 1" >> config.mak
+ echo "HAVE_DARWIN_9 = 1" >> config.mak
+ if test `ld -v 2> /dev/stdout | sed -E 's/.*ld64-([0-9]+).*/\1/'` -lt ${MIN_LD_VERSION_WITH_TEXT_RELOCATION}; then
+ echo "Please update your developer tools - ld is broken"
+ exit 1
+ fi
+ echo "ENVP = MACOSX_DEPLOYMENT_TARGET=${SDK_TARGET}" >> config.mak
+ echo "MACOSX_SDK = /Developer/SDKs/MacOSX10.4u.sdk" >> config.mak
+ CFLAGS_TUNING=" -march=pentium-m -mtune=prescott"
+ EXTRA_CFLAGS=" -D\${ENVP} -isysroot \${MACOSX_SDK} -mmacosx-version-min=\${SDK_TARGET}"
+ EXTRA_LDFLAGS=" -isysroot \${MACOSX_SDK} -Wl,-syslibroot,\${MACOSX_SDK}"
+ echo "PATH = /bin:/usr/bin:/usr/local/bin" >> config.mak
+ if test -e /Developer/SDKs; then
+ echo "SDKs found. Everything is fine." >&2
+ else
+ echo "ERROR:\nYour Developer Tools' SDKs were not found.\nYou need to add extra symbolic links to /Developer to achieve correctly\nbuilt contribs.\nHave a look at the OSX-Compile-HOWTO for details." >&2
+ exit 1
+ fi
+ ;;
i586-pc-beos)
echo "HAVE_BEOS = 1" >> config.mak
if test -f /boot/beos/system/lib/libbind.so; then
diff --git a/modules/access_output/http.c b/modules/access_output/http.c
index ecd1ea3..9ce8371 100644
--- a/modules/access_output/http.c
+++ b/modules/access_output/http.c
@@ -180,45 +180,36 @@ static int Open( vlc_object_t *p_this )
psz_bind_addr = psz_parser = strdup( p_access->psz_name );
i_bind_port = 0;
- psz_file_name = "";
- while( *psz_parser && *psz_parser != ':' && *psz_parser != '/' )
- {
- psz_parser++;
- }
- if( *psz_parser == ':' )
+ psz_parser = strchr( psz_bind_addr, '/' );
+ if( psz_parser )
{
+ psz_file_name = strdup( psz_parser );
*psz_parser = '\0';
- psz_parser++;
- i_bind_port = atoi( psz_parser );
-
- while( *psz_parser && *psz_parser != '/' )
- {
- psz_parser++;
- }
}
- if( *psz_parser == '/' )
- {
- *psz_parser = '\0';
- psz_parser++;
- psz_file_name = psz_parser;
- }
-
- if( !*psz_file_name )
- {
+ else
psz_file_name = strdup( "/" );
- }
- else if( *psz_file_name != '/' )
- {
- char *p = psz_file_name;
- psz_file_name = malloc( strlen( p ) + 2 );
- strcpy( psz_file_name, "/" );
- strcat( psz_file_name, p );
+ if( psz_bind_addr[0] == '[' )
+ {
+ psz_bind_addr++;
+ psz_parser = strstr( psz_bind_addr, "]:" );
+ if( psz_parser )
+ {
+ *psz_parser = '\0';
+ i_bind_port = atoi( psz_parser + 2 );
+ }
+ psz_parser = psz_bind_addr - 1;
}
else
{
- psz_file_name = strdup( psz_file_name );
+ psz_parser = strrchr( psz_bind_addr, ':' );
+ if( psz_parser )
+ {
+ *psz_parser = '\0';
+ i_bind_port = atoi( psz_parser + 1 );
+ }
+ psz_parser = psz_bind_addr;
}
/* SSL support */
@@ -244,14 +235,14 @@ static int Open( vlc_object_t *p_this )
psz_crl );
if( p_sys->p_httpd_host == NULL )
{
- msg_Err( p_access, "cannot listen on %s:%d",
+ msg_Err( p_access, "cannot listen on %s port %d",
psz_bind_addr, i_bind_port );
free( psz_file_name );
- free( psz_bind_addr );
+ free( psz_parser );
free( p_sys );
return VLC_EGENERIC;
}
- free( psz_bind_addr );
+ free( psz_parser );
if( p_access->psz_access && !strcmp( p_access->psz_access, "mmsh" ) )
{
diff --git a/modules/mux/mp4.c b/modules/mux/mp4.c
index 31e8f2e..85d6513 100644
--- a/modules/mux/mp4.c
+++ b/modules/mux/mp4.c
@@ -723,7 +723,6 @@ static void ConvertAVC1( sout_mux_t *p_mux, mp4_stream_t *tk, block_t *p_block )
memcpy( tk->avc.sps, &last[4], i_size );
tk->avc.i_profile = tk->avc.sps[1];
- tk->avc.i_profile = tk->avc.sps[2];
tk->avc.i_profile_compat = tk->avc.sps[2];
tk->avc.i_level = tk->avc.sps[3];
}
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-8/vlc.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vlc.spec 8 Sep 2008 16:15:53 -0000 1.4
+++ vlc.spec 15 Sep 2008 20:12:32 -0000 1.5
@@ -19,9 +19,8 @@
Summary: Multi-platform MPEG, DVD, and DivX player
Name: vlc
Version: 0.8.7
-%define release_tag 0.2
%define _version 0.8.6i
-Release: %{release_tag}%{?dist}
+Release: 0.3%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org/
@@ -54,7 +53,7 @@
# git-diff tags/vlc-0.8.6i HEAD > vlc-0.8.7-git_head-$(date +%Y%m%d ).patch
# tar cjvf vlc-0.8.7-git_head-$(date +%Y%m%d ).patch.tar.bz2
Patch99: vlc-0.8.7-git_head-20080908.patch.tar.bz2
-Patch100: vlc-trunk-default_font.patch
+Patch100: vlc-0.8.7-rpmfusion2_head.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -327,7 +326,8 @@
%patch90 -p1 -b .vlvc
%patch91 -p1 -b .vlvcfix
%endif
-%patch99 -p1 -b .vlc87
+%patch99 -p1 -b .vlc87_1
+%patch100 -p1 -b .vlc87_2
%{?_with_clinkcc:
#hack for clinkcc support - optional feature - under testing.
@@ -663,6 +663,10 @@
%changelog
+* Mon Sep 15 2008 kwizart < kwizart at gmail.com > - 0.8.7-0.3
+- Update to 20080915 from 0.8.6-bugfix
+- BR live555-devel only
+
* Mon Sep 8 2008 kwizart < kwizart at gmail.com > - 0.8.7-0.2
- Update to 0.8.6-bugfix
Security updates:
16 years, 2 months
rpms/vlc/F-9 vlc-trunk-default_font.patch,1.1,NONE
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15846
Removed Files:
vlc-trunk-default_font.patch
Log Message:
One more cleaning
--- vlc-trunk-default_font.patch DELETED ---
16 years, 2 months
rpms/vlc/F-9 vlc-0.8.7-rpmfusion2_head.patch, NONE, 1.1 vlc-0.8.6g-networkstream-seek.patch, 1.1, NONE
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15697
Added Files:
vlc-0.8.7-rpmfusion2_head.patch
Removed Files:
vlc-0.8.6g-networkstream-seek.patch
Log Message:
Fix patches availables
vlc-0.8.7-rpmfusion2_head.patch:
--- NEW FILE vlc-0.8.7-rpmfusion2_head.patch ---
diff --git a/extras/contrib/bootstrap b/extras/contrib/bootstrap
index 77c6733..38f50c2 100755
--- a/extras/contrib/bootstrap
+++ b/extras/contrib/bootstrap
@@ -88,6 +88,30 @@ case $HOST in
EXTRA_LDFLAGS=" -isysroot \${MACOSX_SDK} -Wl,-syslibroot,\${MACOSX_SDK}"
echo "PATH = /bin:/usr/bin:/usr/local/bin" >> config.mak
;;
+ i686-apple-darwin9)
+ SDK_TARGET=10.4
+ MIN_LD_VERSION_WITH_TEXT_RELOCATION=81
+ echo "SDK_TARGET = ${SDK_TARGET}" >> config.mak
+ echo "HAVE_DARWIN_OS = 1" >> config.mak
+ echo "HAVE_DARWIN_OS_ON_INTEL = 1" >> config.mak
+ echo "HAVE_DARWIN_9 = 1" >> config.mak
+ if test `ld -v 2> /dev/stdout | sed -E 's/.*ld64-([0-9]+).*/\1/'` -lt ${MIN_LD_VERSION_WITH_TEXT_RELOCATION}; then
+ echo "Please update your developer tools - ld is broken"
+ exit 1
+ fi
+ echo "ENVP = MACOSX_DEPLOYMENT_TARGET=${SDK_TARGET}" >> config.mak
+ echo "MACOSX_SDK = /Developer/SDKs/MacOSX10.4u.sdk" >> config.mak
+ CFLAGS_TUNING=" -march=pentium-m -mtune=prescott"
+ EXTRA_CFLAGS=" -D\${ENVP} -isysroot \${MACOSX_SDK} -mmacosx-version-min=\${SDK_TARGET}"
+ EXTRA_LDFLAGS=" -isysroot \${MACOSX_SDK} -Wl,-syslibroot,\${MACOSX_SDK}"
+ echo "PATH = /bin:/usr/bin:/usr/local/bin" >> config.mak
+ if test -e /Developer/SDKs; then
+ echo "SDKs found. Everything is fine." >&2
+ else
+ echo "ERROR:\nYour Developer Tools' SDKs were not found.\nYou need to add extra symbolic links to /Developer to achieve correctly\nbuilt contribs.\nHave a look at the OSX-Compile-HOWTO for details." >&2
+ exit 1
+ fi
+ ;;
i586-pc-beos)
echo "HAVE_BEOS = 1" >> config.mak
if test -f /boot/beos/system/lib/libbind.so; then
diff --git a/modules/access_output/http.c b/modules/access_output/http.c
index ecd1ea3..9ce8371 100644
--- a/modules/access_output/http.c
+++ b/modules/access_output/http.c
@@ -180,45 +180,36 @@ static int Open( vlc_object_t *p_this )
psz_bind_addr = psz_parser = strdup( p_access->psz_name );
i_bind_port = 0;
- psz_file_name = "";
- while( *psz_parser && *psz_parser != ':' && *psz_parser != '/' )
- {
- psz_parser++;
- }
- if( *psz_parser == ':' )
+ psz_parser = strchr( psz_bind_addr, '/' );
+ if( psz_parser )
{
+ psz_file_name = strdup( psz_parser );
*psz_parser = '\0';
- psz_parser++;
- i_bind_port = atoi( psz_parser );
-
- while( *psz_parser && *psz_parser != '/' )
- {
- psz_parser++;
- }
}
- if( *psz_parser == '/' )
- {
- *psz_parser = '\0';
- psz_parser++;
- psz_file_name = psz_parser;
- }
-
- if( !*psz_file_name )
- {
+ else
psz_file_name = strdup( "/" );
- }
- else if( *psz_file_name != '/' )
- {
- char *p = psz_file_name;
- psz_file_name = malloc( strlen( p ) + 2 );
- strcpy( psz_file_name, "/" );
- strcat( psz_file_name, p );
+ if( psz_bind_addr[0] == '[' )
+ {
+ psz_bind_addr++;
+ psz_parser = strstr( psz_bind_addr, "]:" );
+ if( psz_parser )
+ {
+ *psz_parser = '\0';
+ i_bind_port = atoi( psz_parser + 2 );
+ }
+ psz_parser = psz_bind_addr - 1;
}
else
{
- psz_file_name = strdup( psz_file_name );
+ psz_parser = strrchr( psz_bind_addr, ':' );
+ if( psz_parser )
+ {
+ *psz_parser = '\0';
+ i_bind_port = atoi( psz_parser + 1 );
+ }
+ psz_parser = psz_bind_addr;
}
/* SSL support */
@@ -244,14 +235,14 @@ static int Open( vlc_object_t *p_this )
psz_crl );
if( p_sys->p_httpd_host == NULL )
{
- msg_Err( p_access, "cannot listen on %s:%d",
+ msg_Err( p_access, "cannot listen on %s port %d",
psz_bind_addr, i_bind_port );
free( psz_file_name );
- free( psz_bind_addr );
+ free( psz_parser );
free( p_sys );
return VLC_EGENERIC;
}
- free( psz_bind_addr );
+ free( psz_parser );
if( p_access->psz_access && !strcmp( p_access->psz_access, "mmsh" ) )
{
diff --git a/modules/mux/mp4.c b/modules/mux/mp4.c
index 31e8f2e..85d6513 100644
--- a/modules/mux/mp4.c
+++ b/modules/mux/mp4.c
@@ -723,7 +723,6 @@ static void ConvertAVC1( sout_mux_t *p_mux, mp4_stream_t *tk, block_t *p_block )
memcpy( tk->avc.sps, &last[4], i_size );
tk->avc.i_profile = tk->avc.sps[1];
- tk->avc.i_profile = tk->avc.sps[2];
tk->avc.i_profile_compat = tk->avc.sps[2];
tk->avc.i_level = tk->avc.sps[3];
}
--- vlc-0.8.6g-networkstream-seek.patch DELETED ---
16 years, 2 months
rpms/vlc/F-9 vlc.spec,1.7,1.8
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15373
Modified Files:
vlc.spec
Log Message:
0.8.7-0.3
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-9/vlc.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- vlc.spec 8 Sep 2008 16:16:44 -0000 1.7
+++ vlc.spec 15 Sep 2008 20:06:50 -0000 1.8
@@ -19,9 +19,8 @@
Summary: Multi-platform MPEG, DVD, and DivX player
Name: vlc
Version: 0.8.7
-%define release_tag 0.2
%define _version 0.8.6i
-Release: %{release_tag}%{?dist}
+Release: 0.3%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org/
@@ -54,7 +53,7 @@
# git-diff tags/vlc-0.8.6i HEAD > vlc-0.8.7-git_head-$(date +%Y%m%d ).patch
# tar cjvf vlc-0.8.7-git_head-$(date +%Y%m%d ).patch.tar.bz2
Patch99: vlc-0.8.7-git_head-20080908.patch.tar.bz2
-Patch100: vlc-trunk-default_font.patch
+Patch100: vlc-0.8.7-rpmfusion2_head.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -327,7 +326,8 @@
%patch90 -p1 -b .vlvc
%patch91 -p1 -b .vlvcfix
%endif
-%patch99 -p1 -b .vlc87
+%patch99 -p1 -b .vlc87_1
+%patch100 -p1 -b .vlc87_2
%{?_with_clinkcc:
#hack for clinkcc support - optional feature - under testing.
@@ -663,6 +663,10 @@
%changelog
+* Mon Sep 15 2008 kwizart < kwizart at gmail.com > - 0.8.7-0.3
+- Update to 20080915 from 0.8.6-bugfix
+- BR live555-devel only
+
* Mon Sep 8 2008 kwizart < kwizart at gmail.com > - 0.8.7-0.2
- Update to 0.8.6-bugfix
Security updates:
16 years, 2 months
rpms/k3b-extras-freeworld/devel k3b-extras-freeworld.spec,1.1,1.2
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/k3b-extras-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3033
Modified Files:
k3b-extras-freeworld.spec
Log Message:
* Mon Sep 15 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.0.5-2
- omit ffmpeg support (for now)
Index: k3b-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/k3b-extras-freeworld/devel/k3b-extras-freeworld.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- k3b-extras-freeworld.spec 15 Sep 2008 15:54:30 -0000 1.1
+++ k3b-extras-freeworld.spec 15 Sep 2008 16:17:11 -0000 1.2
@@ -1,7 +1,9 @@
+#define ffmpeg 1
+
Name: k3b-extras-freeworld
Version: 1.0.5
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Additional codec plugins for the k3b CD/DVD burning application
Group: Applications/Multimedia
@@ -13,9 +15,12 @@
ExcludeArch: s390 s390x
BuildRequires: kdelibs3-devel
-BuildRequires: libmad-devel taglib-devel lame-devel
-BuildRequires: ffmpeg-devel libmusicbrainz-devel
+BuildRequires: lame-devel
+BuildRequires: libmad-devel
+%{?ffmpeg:BuildRequires: ffmpeg-devel}
+BuildRequires: libmusicbrainz-devel
BuildRequires: gettext
+BuildRequires: taglib-devel
Obsoletes: k3b-mp3 < 0.12.10
Provides: k3b-mp3 = %{version}-%{release}
@@ -65,7 +70,7 @@
# Now build individual plugins.
make %makeflags -C plugins/decoder/mp3
-make %makeflags -C plugins/decoder/ffmpeg
+%{?ffmpeg:make %makeflags -C plugins/decoder/ffmpeg}
make %makeflags -C plugins/encoder/lame
@@ -73,7 +78,7 @@
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT -C plugins/decoder/mp3
-make install DESTDIR=$RPM_BUILD_ROOT -C plugins/decoder/ffmpeg
+%{?ffmpeg:make install DESTDIR=$RPM_BUILD_ROOT -C plugins/decoder/ffmpeg}
make install DESTDIR=$RPM_BUILD_ROOT -C plugins/encoder/lame
@@ -83,15 +88,18 @@
%files
%defattr(-,root,root,-)
-%{_libdir}/kde3/libk3bmaddecoder.*
-%{_libdir}/kde3/libk3bffmpegdecoder.*
+%{?ffmpeg:%{_libdir}/kde3/libk3bffmpegdecoder.*}
+%{?ffmpeg:%{_datadir}/apps/k3b/plugins/k3bffmpegdecoder.plugin}
%{_libdir}/kde3/libk3blameencoder.*
-%{_datadir}/apps/k3b/plugins/k3bmaddecoder.plugin
-%{_datadir}/apps/k3b/plugins/k3bffmpegdecoder.plugin
%{_datadir}/apps/k3b/plugins/k3blameencoder.plugin
+%{_libdir}/kde3/libk3bmaddecoder.*
+%{_datadir}/apps/k3b/plugins/k3bmaddecoder.plugin
%changelog
+* Mon Sep 15 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.0.5-2
+- omit ffmpeg support (for now)
+
* Mon Sep 15 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.0.5-1
- k3b-extras-freeworld for rpmfusion
16 years, 2 months
rpms/kplayer/F-9 .cvsignore,1.2,1.3 sources,1.2,1.3
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/kplayer/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv2401
Modified Files:
.cvsignore sources
Log Message:
update sources
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/kplayer/F-9/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 4 Sep 2008 16:59:26 -0000 1.2
+++ .cvsignore 15 Sep 2008 16:07:17 -0000 1.3
@@ -1 +1 @@
-kplayer-0.6.2.tar.bz2
+kplayer-0.6.3.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/kplayer/F-9/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 4 Sep 2008 16:59:26 -0000 1.2
+++ sources 15 Sep 2008 16:07:17 -0000 1.3
@@ -1 +1 @@
-5bfd1bef05a55f2cac913818e4213d33 kplayer-0.6.2.tar.bz2
+f55dab07cefb666f745015ac4dc5de2a kplayer-0.6.3.tar.bz2
16 years, 2 months
rpms/kplayer/F-9 kplayer.spec,1.1,1.2
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/kplayer/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv1904
Modified Files:
kplayer.spec
Log Message:
* Thu Sep 04 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1:0.6.3-2
- kplayer-0.6.3
- License: GPLv3
Index: kplayer.spec
===================================================================
RCS file: /cvs/free/rpms/kplayer/F-9/kplayer.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kplayer.spec 4 Sep 2008 16:59:26 -0000 1.1
+++ kplayer.spec 15 Sep 2008 16:04:53 -0000 1.2
@@ -1,9 +1,14 @@
+%define kdelibs kdelibs
+%if 0%{?fedora} > 6
+%define kdelibs kdelibs3
+%endif
+
Name: kplayer
Epoch: 1
-Version: 0.6.2
-Release: 4%{?dist}
-Summary: A KDE media player based on MPlayer
+Version: 0.6.3
+Release: 2%{?dist}
+Summary: A media player based on MPlayer
Group: Applications/Multimedia
License: GPLv3
@@ -13,7 +18,7 @@
BuildRequires: automake
BuildRequires: desktop-file-utils
-BuildRequires: kdelibs3-devel
+BuildRequires: %{kdelibs}-devel
Requires: mplayer
#Requires(hint): libdvdcss
@@ -115,9 +120,12 @@
%changelog
+* Thu Sep 04 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1:0.6.3-2
+- kplayer-0.6.3
+- License: GPLv3
+
* Sun Aug 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1:0.6.2-4
- rebuild
-- GPLv3
* Fri Nov 02 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1:0.6.2-3
- revert to kplayer-0.6.2 (+Epoch), newer releases are gplv3, which
16 years, 2 months
rpms/k9copy/devel .cvsignore, 1.2, 1.3 k9copy-2.0.0-gcc43.patch, 1.1, 1.2 k9copy-2.0.0-libdvdread_so4.patch, 1.1, 1.2 k9copy.spec, 1.1, 1.2 sources, 1.2, 1.3
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/k9copy/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv1432
Modified Files:
.cvsignore k9copy-2.0.0-gcc43.patch
k9copy-2.0.0-libdvdread_so4.patch k9copy.spec sources
Log Message:
* Mon Sep 15 2008 Rex Dieter <rdieter(a)fedoraproject.org> 2.0.2-2
- respin for rpmfusion
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/k9copy/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 4 Aug 2008 19:03:04 -0000 1.2
+++ .cvsignore 15 Sep 2008 16:00:53 -0000 1.3
@@ -1 +1 @@
-k9copy-2.0.0-Source.tar.gz
+k9copy-2.0.2-Source.tar.gz
k9copy-2.0.0-gcc43.patch:
Index: k9copy-2.0.0-gcc43.patch
===================================================================
RCS file: /cvs/free/rpms/k9copy/devel/k9copy-2.0.0-gcc43.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- k9copy-2.0.0-gcc43.patch 4 Aug 2008 19:03:04 -0000 1.1
+++ k9copy-2.0.0-gcc43.patch 15 Sep 2008 16:00:53 -0000 1.2
@@ -1,6 +1,6 @@
-diff -up k9copy-2.0.0-Source/lib/import/k9avidecode.cpp.gcc43 k9copy-2.0.0-Source/lib/import/k9avidecode.cpp
---- k9copy-2.0.0-Source/lib/import/k9avidecode.cpp.gcc43 2008-03-24 02:07:21.000000000 -0500
-+++ k9copy-2.0.0-Source/lib/import/k9avidecode.cpp 2008-06-06 07:56:35.000000000 -0500
+diff -up k9copy-2.0.0-Source/src/import/k9avidecode.cpp.gcc43 k9copy-2.0.0-Source/lib/import/k9avidecode.cpp
+--- k9copy-2.0.0-Source/src/import/k9avidecode.cpp.gcc43 2008-03-24 02:07:21.000000000 -0500
++++ k9copy-2.0.0-Source/src/import/k9avidecode.cpp 2008-06-06 07:56:35.000000000 -0500
@@ -10,6 +10,7 @@
//
//
@@ -10,9 +10,9 @@
#include <qimage.h>
#include <dlfcn.h>
diff -up k9copy-2.0.0-Source/lib/backup/k9dvdbackup.cpp.gcc43 k9copy-2.0.0-Source/lib/backup/k9dvdbackup.cpp
-diff -up k9copy-2.0.0-Source/lib/main/k9glwidget.cpp.gcc43 k9copy-2.0.0-Source/lib/main/k9glwidget.cpp
---- k9copy-2.0.0-Source/lib/main/k9glwidget.cpp.gcc43 2008-03-24 02:07:21.000000000 -0500
-+++ k9copy-2.0.0-Source/lib/main/k9glwidget.cpp 2008-06-06 07:55:44.000000000 -0500
+diff -up k9copy-2.0.0-Source/src/main/k9glwidget.cpp.gcc43 k9copy-2.0.0-Source/lib/main/k9glwidget.cpp
+--- k9copy-2.0.0-Source/src/main/k9glwidget.cpp.gcc43 2008-03-24 02:07:21.000000000 -0500
++++ k9copy-2.0.0-Source/src/main/k9glwidget.cpp 2008-06-06 07:55:44.000000000 -0500
@@ -12,6 +12,7 @@
#include "k9glwidget.h"
k9copy-2.0.0-libdvdread_so4.patch:
Index: k9copy-2.0.0-libdvdread_so4.patch
===================================================================
RCS file: /cvs/free/rpms/k9copy/devel/k9copy-2.0.0-libdvdread_so4.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- k9copy-2.0.0-libdvdread_so4.patch 4 Aug 2008 19:03:04 -0000 1.1
+++ k9copy-2.0.0-libdvdread_so4.patch 15 Sep 2008 16:00:53 -0000 1.2
@@ -1,6 +1,6 @@
-diff -up k9copy-2.0.0-Source/lib/dvdnav/dvdread.c.so4 k9copy-2.0.0-Source/lib/dvdnav/dvdread.c
---- k9copy-2.0.0-Source/lib/dvdnav/dvdread.c.so4 2008-03-24 02:07:21.000000000 -0500
-+++ k9copy-2.0.0-Source/lib/dvdnav/dvdread.c 2008-06-06 07:38:00.000000000 -0500
+diff -up k9copy-2.0.0-Source/src/dvdnav/dvdread.c.so4 k9copy-2.0.0-Source/src/dvdnav/dvdread.c
+--- k9copy-2.0.0-Source/src/dvdnav/dvdread.c.so4 2008-03-24 02:07:21.000000000 -0500
++++ k9copy-2.0.0-Source/src/dvdnav/dvdread.c 2008-06-06 07:38:00.000000000 -0500
@@ -9,6 +9,9 @@ DvdreadFunctions_t f_dvdread;
void loadDvdread() {
Index: k9copy.spec
===================================================================
RCS file: /cvs/free/rpms/k9copy/devel/k9copy.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- k9copy.spec 4 Aug 2008 19:03:04 -0000 1.1
+++ k9copy.spec 15 Sep 2008 16:00:53 -0000 1.2
@@ -1,18 +1,18 @@
Name: k9copy
-Version: 2.0.0
-Release: 6%{?dist}
+Version: 2.0.2
+Release: 2%{?dist}
Summary: Video DVD backup and creation program
Group: Applications/Multimedia
License: GPLv2+
URL: http://k9copy.sourceforge.net/
-Source0: http://download.sourceforge.net/%{name}/%{name}-%{version}-Source.tar.gz
+Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}-Source.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Patch1: k9copy-2.0.0-libdvdread_so4.patch
Patch2: k9copy-2.0.0-gcc43.patch
-# build fails here
+# FIXME: build fails here
ExcludeArch: ppc ppc64
BuildRequires: cmake
@@ -85,15 +85,23 @@
%defattr(-,root,root,-)
%doc COPYING
%{_kde4_bindir}/k9copy
+%{_kde4_bindir}/k9play
%{_kde4_bindir}/k9xineplayer
%{_kde4_appsdir}/k9copy/
%{_kde4_datadir}/applications/kde4/k9copy.desktop
%{_kde4_datadir}/icons/hicolor/*/*/*
%{_kde4_datadir}/kde4/services/*
+
%changelog
-* Mon Aug 04 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.0.0-6
-- rebuild
+* Mon Sep 15 2008 Rex Dieter <rdieter(a)fedoraproject.org> 2.0.2-2
+- respin for rpmfusion
+
+* Mon Jun 16 2008 Rex Dieter <rdieter(a)fedoraproject.org> 2.0.2-1
+- k9copy-2.0.2
+
+* Sat Jun 14 2008 Rex Dieter <rdieter(a)fedoraproject.org> 2.0.1-1
+- k9copy-2.0.1
* Fri Jun 06 2008 Rex Dieter <rdieter(a)fedoraproject.org> 2.0.0-5
- gcc43 patch (forward port malloc patch from fedoraforum)
Index: sources
===================================================================
RCS file: /cvs/free/rpms/k9copy/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 4 Aug 2008 19:03:04 -0000 1.2
+++ sources 15 Sep 2008 16:00:53 -0000 1.3
@@ -1 +1 @@
-9e59d04535fb4b8fcb02dbee1a5de245 k9copy-2.0.0-Source.tar.gz
+3b9637a07e911184d3557097d42debb1 k9copy-2.0.2-Source.tar.gz
16 years, 2 months
rpms/k3b-extras-freeworld/devel k3b-extras-freeworld.spec,NONE,1.1
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/k3b-extras-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv979
Added Files:
k3b-extras-freeworld.spec
Log Message:
* Mon Sep 15 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.0.5-1
- k3b-extras-freeworld for rpmfusion
--- NEW FILE k3b-extras-freeworld.spec ---
Name: k3b-extras-freeworld
Version: 1.0.5
Release: 1%{?dist}
Summary: Additional codec plugins for the k3b CD/DVD burning application
Group: Applications/Multimedia
License: GPL
URL: http://www.k3b.org
Source0: http://downloads.sourceforge.net/sourceforge/k3b/k3b-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n)
ExcludeArch: s390 s390x
BuildRequires: kdelibs3-devel
BuildRequires: libmad-devel taglib-devel lame-devel
BuildRequires: ffmpeg-devel libmusicbrainz-devel
BuildRequires: gettext
Obsoletes: k3b-mp3 < 0.12.10
Provides: k3b-mp3 = %{version}-%{release}
# livna upgrade
Obsoletes: k3b-extras-nonfree < 1.0.4-3
Provides: k3b-extras-nonfree = %{version}-%{release}
Requires: k3b >= %{version}
%description
Additional decoder/encoder plugins for k3b, a feature-rich and easy to
handle CD/DVD burning application.
%prep
%setup -q -n k3b-%{version}
%build
unset QTDIR
[ -z "$QTDIR" ] && . /etc/profile.d/qt.sh
%configure --disable-rpath \
--with-external-libsamplerate=no \
--without-oggvorbis \
--without-flac \
--without-sndfile \
--without-hal \
--without-musepack \
--with-k3bsetup=no
%define makeflags %{?_smp_mflags}%{nil}
# We need just a few k3b core libs.
# As FC k3b package no longer includes the libtool archives,
# we cannot simply link them anymore.
pushd libk3bdevice
#ln -s %{_libdir}/libk3bdevice.la libk3bdevice.la
make %makeflags
popd
pushd libk3b
#ln -s %{_libdir}/libk3b.la libk3b.la
make %makeflags
popd
# Now build individual plugins.
make %makeflags -C plugins/decoder/mp3
make %makeflags -C plugins/decoder/ffmpeg
make %makeflags -C plugins/encoder/lame
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT -C plugins/decoder/mp3
make install DESTDIR=$RPM_BUILD_ROOT -C plugins/decoder/ffmpeg
make install DESTDIR=$RPM_BUILD_ROOT -C plugins/encoder/lame
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_libdir}/kde3/libk3bmaddecoder.*
%{_libdir}/kde3/libk3bffmpegdecoder.*
%{_libdir}/kde3/libk3blameencoder.*
%{_datadir}/apps/k3b/plugins/k3bmaddecoder.plugin
%{_datadir}/apps/k3b/plugins/k3bffmpegdecoder.plugin
%{_datadir}/apps/k3b/plugins/k3blameencoder.plugin
%changelog
* Mon Sep 15 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.0.5-1
- k3b-extras-freeworld for rpmfusion
* Thu Jan 31 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.0.4-2
- BR: kdelibs3-devel
* Mon Nov 26 2007 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.0.4-1
- Update to 1.0.4 (no relevant changes, however).
* Sat Nov 24 2007 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1.0.3-2
- rebuilt
* Tue Jul 24 2007 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.0.3-1
- Update to 1.0.3 (fix for mp3 without tags).
* Mon Jun 25 2007 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.0.2-1
- Update to 1.0.2.
* Wed May 30 2007 Rex Dieter <rexdieter[AT]users.sf.net>
- drop extraneous BR's
* Fri Apr 27 2007 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.0.1-1
- Update to 1.0.1 (LAME encoder plugin fix).
* Sat Mar 17 2007 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.0-1
- Upgrade to 1.0 final.
* Sun Feb 18 2007 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.0-0.2.rc6
- Upgrade to 1.0rc6 (which has appeared in Rawhide).
* Tue Feb 6 2007 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.12.17-3
- Rebuild for new ffmpeg.
* Fri Oct 06 2006 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> 0.12.17-2
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
* Sun Sep 24 2006 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.12.17-1
- Update to 0.12.17.
* Fri Mar 31 2006 Michael Schwendt <mschwendt[AT]users.sf.net> 0.12.14-2
- Don't build libsndfile plugin anymore, since it moves to k3b-extras.
* Wed Mar 15 2006 Michael Schwendt <mschwendt[AT]users.sf.net> 0.12.14-1
- Update to 0.12.14.
- The oh-so-clever build speed-up trick cannot be used anymore,
since libtool archives have been dropped from FC k3b package.
* Thu Mar 09 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- switch to new release field
* Tue Feb 28 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
- add dist
* Sat Dec 31 2005 Michael Schwendt <mschwendt[AT]users.sf.net> 0.12.10-0.lvn.1
- Update to 0.12.10.
- Rename package to k3b-extras-nonfree.
* Sun Jul 17 2005 Michael Schwendt <mschwendt[AT]users.sf.net> 0.12.2-0.lvn.1
- Update to 0.12.2 (for FC Development).
- Rename package to k3b-extras.
- Add plugins: ffmpeg decoder, libsndfile decoder, lame encoder.
- Use BR k3b to speed up build.
- Drop explicit Epoch 0.
* Fri May 20 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> 0:0.11.24-0.lvn.2
- Use configure-parm "--with-qt-libraries=$QTDIR/lib" to fix FC4-x86_64 build
* Wed May 11 2005 Michael Schwendt <mschwendt[AT]users.sf.net> 0:0.11.24-0.lvn.1
- Update to 0.11.24 (advertised as handling mp3 errors better).
- Remove GCC version check which blacklists FC4's GCC (d'oh!).
- Explicity disable external libsamplerate, which is in FE and
hence FC's k3b doesn't use it either.
- Merge statfs patch from FC's k3b package.
* Thu Mar 24 2005 Michael Schwendt <mschwendt[AT]users.sf.net> 0:0.11.22-0.lvn.1
- Update to 0.11.22 (MAD decoder update).
- Use new switches to disable OggVorbis and FLAC explicitly.
* Wed Jan 26 2005 Michael Schwendt <mschwendt[AT]users.sf.net> 0:0.11.19-0.lvn.1
- Update to 0.11.19 (for another mp3 detection fix).
* Tue Aug 10 2004 Michael Schwendt <mschwendt[AT]users.sf.net> 0:0.11.14-0.lvn.1
- Update to 0.11.14 (which obsoletes patches again).
* Tue Aug 10 2004 Michael Schwendt <mschwendt[AT]users.sf.net> 0:0.11.13-0.lvn.1
- Add patch from CVS to fix mp3 decoder.
* Sat Aug 7 2004 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:0.11.13-0.lvn.1
- Updated to 0.11.13 (includes new mp3 backport).
- Patch for k3bdiskinfo.cpp is obsolete.
- Now k3bdevice.cpp needs patch for Qt 3.1.
- Remove a few more unneeded BR.
* Thu May 27 2004 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:0.11.10-0.lvn.1
- Update to 0.11.10 (includes mp3 fixes).
- Fix k3bdiskinfo.cpp for Qt 3.1.
- Remove redundant BR qt-devel.
- Disable RPATH (seems to work now).
- Rename package to k3b-mp3, build just the plugin and all depending targets.
- Delete old changelog entries which are no longer relevant to this package.
* Mon Mar 29 2004 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:0.11.9-0.fdr.1
- Update to 0.11.9.
* Mon Mar 29 2004 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:0.11.8-0.fdr.1
- Update to 0.11.8.
* Sun Mar 28 2004 Michael Schwendt <mschwendt[AT]users.sf.net>
- Rewrite the conditional code sections, although they work fine in
normal build environments and the fedora.us build system. But 'mach'
makes some weird assumptions about build requirements in spec files
and causes unexpected results.
16 years, 2 months